@typespec/compiler 0.55.0-dev.5 → 0.55.0-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated-defs/TypeSpec.d.ts +498 -0
- package/dist/generated-defs/TypeSpec.d.ts.map +1 -0
- package/dist/generated-defs/TypeSpec.js +2 -0
- package/dist/generated-defs/TypeSpec.js.map +1 -0
- package/dist/generated-defs/TypeSpec.ts-test.d.ts +2 -0
- package/dist/generated-defs/TypeSpec.ts-test.d.ts.map +1 -0
- package/dist/generated-defs/TypeSpec.ts-test.js +45 -0
- package/dist/generated-defs/TypeSpec.ts-test.js.map +1 -0
- package/dist/manifest.js +2 -2
- package/dist/src/lib/decorators.d.ts +40 -40
- package/dist/src/lib/decorators.d.ts.map +1 -1
- package/dist/src/lib/decorators.js +84 -80
- package/dist/src/lib/decorators.js.map +1 -1
- package/dist/src/lib/service.d.ts +3 -2
- package/dist/src/lib/service.d.ts.map +1 -1
- package/dist/src/lib/service.js +10 -2
- package/dist/src/lib/service.js.map +1 -1
- package/dist/src/server/tmlanguage.d.ts.map +1 -1
- package/dist/src/server/tmlanguage.js +3 -2
- package/dist/src/server/tmlanguage.js.map +1 -1
- package/dist/typespec.tmLanguage +12 -0
- package/package.json +2 -1
- package/dist/.scripts/build-init-templates.d.ts +0 -2
- package/dist/.scripts/build-init-templates.d.ts.map +0 -1
- package/dist/.scripts/build-init-templates.js +0 -48
- package/dist/.scripts/build-init-templates.js.map +0 -1
- package/dist/.scripts/helpers.d.ts +0 -4
- package/dist/.scripts/helpers.d.ts.map +0 -1
- package/dist/.scripts/helpers.js +0 -44
- package/dist/.scripts/helpers.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DeprecatedDecorator, DiscriminatorDecorator, DocDecorator, EncodeDecorator, ErrorDecorator, ErrorsDocDecorator, FormatDecorator, FriendlyNameDecorator, InspectTypeDecorator, InspectTypeNameDecorator, KeyDecorator, ListDecorator, MaxItemsDecorator, MaxLengthDecorator, MaxValueDecorator, MaxValueExclusiveDecorator, MinItemsDecorator, MinLengthDecorator, MinValueDecorator, MinValueExclusiveDecorator, OverloadDecorator, ParameterVisibilityDecorator, PatternDecorator, ProjectedNameDecorator, ReturnTypeVisibilityDecorator, ReturnsDocDecorator, SecretDecorator, SummaryDecorator, TagDecorator, VisibilityDecorator, WithDefaultKeyVisibilityDecorator, WithOptionalPropertiesDecorator, WithUpdateablePropertiesDecorator, WithVisibilityDecorator, WithoutDefaultValuesDecorator, WithoutOmittedPropertiesDecorator } from "../../generated-defs/TypeSpec.js";
|
|
2
2
|
import { Program, ProjectedProgram } from "../core/program.js";
|
|
3
|
-
import { ArrayModelType, DecoratorContext, Enum,
|
|
3
|
+
import { ArrayModelType, DecoratorContext, Enum, Interface, Model, ModelIndexer, ModelProperty, Namespace, Operation, Scalar, Type, Union } from "../core/types.js";
|
|
4
4
|
export { $encodedName, resolveEncodedName } from "./encoded-names.js";
|
|
5
5
|
export * from "./service.js";
|
|
6
6
|
export declare const namespace = "TypeSpec";
|
|
@@ -13,7 +13,7 @@ export declare const namespace = "TypeSpec";
|
|
|
13
13
|
*
|
|
14
14
|
* @summary can be specified on any language element -- a model, an operation, a namespace, etc.
|
|
15
15
|
*/
|
|
16
|
-
export declare
|
|
16
|
+
export declare const $summary: SummaryDecorator;
|
|
17
17
|
export declare function getSummary(program: Program, type: Type): string | undefined;
|
|
18
18
|
type DocTarget = "self" | "returns" | "errors";
|
|
19
19
|
export interface DocData {
|
|
@@ -36,7 +36,7 @@ export interface DocData {
|
|
|
36
36
|
*
|
|
37
37
|
* @doc can be specified on any language element -- a model, an operation, a namespace, etc.
|
|
38
38
|
*/
|
|
39
|
-
export declare
|
|
39
|
+
export declare const $doc: DocDecorator;
|
|
40
40
|
/**
|
|
41
41
|
* Get the documentation information for the given type. In most cases you probably just want to use {@link getDoc}
|
|
42
42
|
* @param program Program
|
|
@@ -58,7 +58,7 @@ export declare function getDocData(program: Program, target: Type): DocData | un
|
|
|
58
58
|
* @returns Documentation value
|
|
59
59
|
*/
|
|
60
60
|
export declare function getDoc(program: Program, target: Type): string | undefined;
|
|
61
|
-
export declare
|
|
61
|
+
export declare const $returnsDoc: ReturnsDocDecorator;
|
|
62
62
|
/**
|
|
63
63
|
* Get the documentation information for the return success types of an operation. In most cases you probably just want to use {@link getReturnsDoc}
|
|
64
64
|
* @param program Program
|
|
@@ -73,7 +73,7 @@ export declare function getReturnsDocData(program: Program, target: Operation):
|
|
|
73
73
|
* @returns Documentation value
|
|
74
74
|
*/
|
|
75
75
|
export declare function getReturnsDoc(program: Program, target: Operation): string | undefined;
|
|
76
|
-
export declare
|
|
76
|
+
export declare const $errorsDoc: ErrorsDocDecorator;
|
|
77
77
|
/**
|
|
78
78
|
* Get the documentation information for the return errors types of an operation. In most cases you probably just want to use {@link getErrorsDoc}
|
|
79
79
|
* @param program Program
|
|
@@ -88,9 +88,9 @@ export declare function getErrorsDocData(program: Program, target: Operation): D
|
|
|
88
88
|
* @returns Documentation value
|
|
89
89
|
*/
|
|
90
90
|
export declare function getErrorsDoc(program: Program, target: Operation): string | undefined;
|
|
91
|
-
export declare
|
|
92
|
-
export declare
|
|
93
|
-
export declare
|
|
91
|
+
export declare const $inspectType: InspectTypeDecorator;
|
|
92
|
+
export declare const $inspectTypeName: InspectTypeNameDecorator;
|
|
93
|
+
export declare const $indexer: (context: DecoratorContext, target: Type, key: Scalar, value: Type) => void;
|
|
94
94
|
export declare function getIndexer(program: Program, target: Type): ModelIndexer | undefined;
|
|
95
95
|
export declare function isStringType(program: Program | ProjectedProgram, target: Type): target is Scalar;
|
|
96
96
|
export declare function isNumericType(program: Program | ProjectedProgram, target: Type): target is Scalar;
|
|
@@ -111,7 +111,7 @@ export declare function getPropertyType(target: Scalar | ModelProperty): Type;
|
|
|
111
111
|
* `@error` decorator marks a model as an error type.
|
|
112
112
|
* Any derived models (using extends) will also be seen as error types.
|
|
113
113
|
*/
|
|
114
|
-
export declare
|
|
114
|
+
export declare const $error: ErrorDecorator;
|
|
115
115
|
/**
|
|
116
116
|
* Check if the type is an error model or a descendant of an error model.
|
|
117
117
|
*/
|
|
@@ -129,13 +129,13 @@ export declare function isErrorModel(program: Program, target: Type): boolean;
|
|
|
129
129
|
*
|
|
130
130
|
* `@format` can be specified on a type that extends from `string` or a `string`-typed model property.
|
|
131
131
|
*/
|
|
132
|
-
export declare
|
|
132
|
+
export declare const $format: FormatDecorator;
|
|
133
133
|
export declare function getFormat(program: Program, target: Type): string | undefined;
|
|
134
134
|
export interface PatternData {
|
|
135
135
|
readonly pattern: string;
|
|
136
136
|
readonly validationMessage?: string;
|
|
137
137
|
}
|
|
138
|
-
export declare
|
|
138
|
+
export declare const $pattern: PatternDecorator;
|
|
139
139
|
/**
|
|
140
140
|
* Gets the pattern regular expression associated with a given type, if one has been set.
|
|
141
141
|
*
|
|
@@ -155,28 +155,28 @@ export declare function getPattern(program: Program, target: Type): string | und
|
|
|
155
155
|
* @returns the pattern data, if any was set
|
|
156
156
|
*/
|
|
157
157
|
export declare function getPatternData(program: Program, target: Type): PatternData | undefined;
|
|
158
|
-
export declare
|
|
158
|
+
export declare const $minLength: MinLengthDecorator;
|
|
159
159
|
export declare function getMinLength(program: Program, target: Type): number | undefined;
|
|
160
|
-
export declare
|
|
160
|
+
export declare const $maxLength: MaxLengthDecorator;
|
|
161
161
|
export declare function getMaxLength(program: Program, target: Type): number | undefined;
|
|
162
|
-
export declare
|
|
162
|
+
export declare const $minItems: MinItemsDecorator;
|
|
163
163
|
export declare function getMinItems(program: Program, target: Type): number | undefined;
|
|
164
|
-
export declare
|
|
164
|
+
export declare const $maxItems: MaxItemsDecorator;
|
|
165
165
|
export declare function getMaxItems(program: Program, target: Type): number | undefined;
|
|
166
|
-
export declare
|
|
166
|
+
export declare const $minValue: MinValueDecorator;
|
|
167
167
|
export declare function getMinValue(program: Program, target: Type): number | undefined;
|
|
168
|
-
export declare
|
|
168
|
+
export declare const $maxValue: MaxValueDecorator;
|
|
169
169
|
export declare function getMaxValue(program: Program, target: Type): number | undefined;
|
|
170
|
-
export declare
|
|
170
|
+
export declare const $minValueExclusive: MinValueExclusiveDecorator;
|
|
171
171
|
export declare function getMinValueExclusive(program: Program, target: Type): number | undefined;
|
|
172
|
-
export declare
|
|
172
|
+
export declare const $maxValueExclusive: MaxValueExclusiveDecorator;
|
|
173
173
|
export declare function getMaxValueExclusive(program: Program, target: Type): number | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* Mark a string as a secret value that should be treated carefully to avoid exposure
|
|
176
176
|
* @param context Decorator context
|
|
177
177
|
* @param target Decorator target, either a string model or a property with type string.
|
|
178
178
|
*/
|
|
179
|
-
export declare
|
|
179
|
+
export declare const $secret: SecretDecorator;
|
|
180
180
|
export declare function isSecret(program: Program, target: Type): boolean | undefined;
|
|
181
181
|
export type DateTimeKnownEncoding = "rfc3339" | "rfc7231" | "unixTimestamp";
|
|
182
182
|
export type DurationKnownEncoding = "ISO8601" | "seconds";
|
|
@@ -185,20 +185,20 @@ export interface EncodeData {
|
|
|
185
185
|
encoding: DateTimeKnownEncoding | DurationKnownEncoding | BytesKnownEncoding | string;
|
|
186
186
|
type: Scalar;
|
|
187
187
|
}
|
|
188
|
-
export declare
|
|
188
|
+
export declare const $encode: EncodeDecorator;
|
|
189
189
|
export declare function getEncode(program: Program, target: Scalar | ModelProperty): EncodeData | undefined;
|
|
190
|
-
export declare
|
|
190
|
+
export declare const $visibility: VisibilityDecorator;
|
|
191
191
|
export declare function getVisibility(program: Program, target: Type): string[] | undefined;
|
|
192
|
-
export declare
|
|
192
|
+
export declare const $withVisibility: WithVisibilityDecorator;
|
|
193
193
|
export declare function isVisible(program: Program, property: ModelProperty, visibilities: readonly string[]): boolean;
|
|
194
|
-
export declare
|
|
195
|
-
export declare
|
|
196
|
-
export declare
|
|
197
|
-
export declare
|
|
194
|
+
export declare const $withOptionalProperties: WithOptionalPropertiesDecorator;
|
|
195
|
+
export declare const $withUpdateableProperties: WithUpdateablePropertiesDecorator;
|
|
196
|
+
export declare const $withoutOmittedProperties: WithoutOmittedPropertiesDecorator;
|
|
197
|
+
export declare const $withoutDefaultValues: WithoutDefaultValuesDecorator;
|
|
198
198
|
/**
|
|
199
199
|
* @deprecated Use the `listsResource` decorator in `@typespec/rest` instead.
|
|
200
200
|
*/
|
|
201
|
-
export declare
|
|
201
|
+
export declare const $list: ListDecorator;
|
|
202
202
|
/**
|
|
203
203
|
* @deprecated This function is unused and will be removed in a future release.
|
|
204
204
|
*/
|
|
@@ -207,10 +207,10 @@ export declare function getListOperationType(program: Program, target: Type): Mo
|
|
|
207
207
|
* @deprecated Use `isListOperation` in `@typespec/rest` instead.
|
|
208
208
|
*/
|
|
209
209
|
export declare function isListOperation(program: Program, target: Operation): boolean;
|
|
210
|
-
export declare
|
|
210
|
+
export declare const $tag: TagDecorator;
|
|
211
211
|
export declare function getTags(program: Program, target: Type): string[];
|
|
212
212
|
export declare function getAllTags(program: Program, target: Namespace | Interface | Operation): string[] | undefined;
|
|
213
|
-
export declare
|
|
213
|
+
export declare const $friendlyName: FriendlyNameDecorator;
|
|
214
214
|
export declare function getFriendlyName(program: Program, target: Type): string;
|
|
215
215
|
/**
|
|
216
216
|
* `@knownValues` marks a string type with an enum that contains all known values
|
|
@@ -223,7 +223,7 @@ export declare function getFriendlyName(program: Program, target: Type): string;
|
|
|
223
223
|
* @param target Decorator target. Must be a string. (model Foo extends string)
|
|
224
224
|
* @param knownValues Must be an enum.
|
|
225
225
|
*/
|
|
226
|
-
export declare
|
|
226
|
+
export declare const $knownValues: (context: DecoratorContext, target: Scalar | ModelProperty, knownValues: Enum) => void;
|
|
227
227
|
export declare function getKnownValues(program: Program, target: Scalar | ModelProperty): Enum | undefined;
|
|
228
228
|
/**
|
|
229
229
|
* `@key` - mark a model property as the key to identify instances of that type
|
|
@@ -233,10 +233,10 @@ export declare function getKnownValues(program: Program, target: Scalar | ModelP
|
|
|
233
233
|
*
|
|
234
234
|
* `@key` can only be applied to model properties.
|
|
235
235
|
*/
|
|
236
|
-
export declare
|
|
236
|
+
export declare const $key: KeyDecorator;
|
|
237
237
|
export declare function isKey(program: Program, property: ModelProperty): boolean;
|
|
238
238
|
export declare function getKeyName(program: Program, property: ModelProperty): string;
|
|
239
|
-
export declare
|
|
239
|
+
export declare const $withDefaultKeyVisibility: WithDefaultKeyVisibilityDecorator;
|
|
240
240
|
/**
|
|
241
241
|
* Mark a type as deprecated
|
|
242
242
|
* @param context DecoratorContext
|
|
@@ -248,7 +248,7 @@ export declare function $withDefaultKeyVisibility(context: DecoratorContext, ent
|
|
|
248
248
|
* model Foo {}
|
|
249
249
|
* ```
|
|
250
250
|
*/
|
|
251
|
-
export declare
|
|
251
|
+
export declare const $deprecated: DeprecatedDecorator;
|
|
252
252
|
/**
|
|
253
253
|
* Return the deprecated message or undefined if not deprecated
|
|
254
254
|
* @param program Program
|
|
@@ -261,7 +261,7 @@ export declare function getDeprecated(program: Program, type: Type): string | un
|
|
|
261
261
|
* @param target The specializing operation declaration
|
|
262
262
|
* @param overloadBase The operation to be overloaded.
|
|
263
263
|
*/
|
|
264
|
-
export declare
|
|
264
|
+
export declare const $overload: OverloadDecorator;
|
|
265
265
|
/**
|
|
266
266
|
* Get all operations that are marked as overloads of the given operation
|
|
267
267
|
* @param program Program
|
|
@@ -283,7 +283,7 @@ export declare function getOverloadedOperation(program: Program, operation: Oper
|
|
|
283
283
|
* @param projectionName Name of the projection (e.g. "toJson", "toCSharp")
|
|
284
284
|
* @param projectedName Name of the type should have in the scope of the projection specified.
|
|
285
285
|
*/
|
|
286
|
-
export declare
|
|
286
|
+
export declare const $projectedName: ProjectedNameDecorator;
|
|
287
287
|
/**
|
|
288
288
|
* @param program Program
|
|
289
289
|
* @param target Target
|
|
@@ -307,17 +307,17 @@ export declare function hasProjectedName(program: Program, target: Type, project
|
|
|
307
307
|
export interface Discriminator {
|
|
308
308
|
propertyName: string;
|
|
309
309
|
}
|
|
310
|
-
export declare
|
|
310
|
+
export declare const $discriminator: DiscriminatorDecorator;
|
|
311
311
|
export declare function getDiscriminator(program: Program, entity: Type): Discriminator | undefined;
|
|
312
312
|
export declare function getDiscriminatedTypes(program: Program): [Model | Union, Discriminator][];
|
|
313
|
-
export declare
|
|
313
|
+
export declare const $parameterVisibility: ParameterVisibilityDecorator;
|
|
314
314
|
/**
|
|
315
315
|
* Returns the visibilities of the parameters of the given operation, if provided with `@parameterVisibility`.
|
|
316
316
|
*
|
|
317
317
|
* @see {@link $parameterVisibility}
|
|
318
318
|
*/
|
|
319
319
|
export declare function getParameterVisibility(program: Program, entity: Operation): string[] | undefined;
|
|
320
|
-
export declare
|
|
320
|
+
export declare const $returnTypeVisibility: ReturnTypeVisibilityDecorator;
|
|
321
321
|
/**
|
|
322
322
|
* Returns the visibilities of the return type of the given operation, if provided with `@returnTypeVisibility`.
|
|
323
323
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decorators.d.ts","sourceRoot":"","sources":["../../../src/lib/decorators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"decorators.d.ts","sourceRoot":"","sources":["../../../src/lib/decorators.ts"],"names":[],"mappings":"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"}
|