Jeff Fisher

Results 18 issues of Jeff Fisher

One big difference in the downlevel output is there aren't any map files. Maybe it's too out of scope, since the original offsets would no longer line up?

enhancement

Original d.ts ```ts export { WebResource } ``` Generated d.ts ```ts export { WebResource }; ``` This is pretty minor, not sure that it hurts anything, but noticed it when...

enhancement
help wanted

`snap-shot-core` released 10.2.1 9 months ago to deal with the mkdirp dependency on old minimist (see #514) Consumers can't benefit from this still because `snap-shot-it` doesn't use version ranges and...

The naive answer is to accept whatever the user passes as the second argument (as Firefox appears to), but there are plenty of styles that don't make sense to allow...

Currently, logging occurs after the retryPhase (and nominally after the tracing and redirect policies), but authentication (added by core-client) comes earlier. However, now that we've added the `sign` phase after...

Azure.Core

Small tweak to make sure we're extending the correct public interface.

v6
feature
MVP

Cat and Dog have an Animal base model but we generate `type AnimalUnion = Animal | Cat | Dog` instead of `type Animal = Cat | Dog` In these cases...

v6
feature
MVP

We often end up with bad names, like: - names with suffixes with incrementally higher numbers - things like ApiVersion20200630Preview - Acronyms looking bad: #430 We should come up with...

v6
feature
breaking-change
MVP

Today when we create operation groups, it might look something like ```ts interface OperationGroup { doFoo(param1: string, param2: string, options: FooOptions): Promise; doBar(param1: string, param2: string, options: BarOptions): Promise; doBaz(param1:...

v6
feature
breaking-change
MVP

Commonly services will describe their API surface using multiple swagger files, but we often wish to still ship this out of one JS package. Minimal work here would be to...

v6
feature
MVP