@azure-tools/typespec-go 0.5.1 → 0.6.0

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.
Files changed (71) hide show
  1. package/dist/codegen.go/src/example.js +75 -75
  2. package/dist/codegen.go/src/example.js.map +1 -1
  3. package/dist/codegen.go/src/fake/factory.d.ts.map +1 -1
  4. package/dist/codegen.go/src/fake/factory.js +29 -24
  5. package/dist/codegen.go/src/fake/factory.js.map +1 -1
  6. package/dist/codegen.go/src/fake/servers.js +106 -98
  7. package/dist/codegen.go/src/fake/servers.js.map +1 -1
  8. package/dist/codegen.go/src/helpers.d.ts +57 -4
  9. package/dist/codegen.go/src/helpers.d.ts.map +1 -1
  10. package/dist/codegen.go/src/helpers.js +200 -128
  11. package/dist/codegen.go/src/helpers.js.map +1 -1
  12. package/dist/codegen.go/src/imports.d.ts +1 -1
  13. package/dist/codegen.go/src/imports.d.ts.map +1 -1
  14. package/dist/codegen.go/src/imports.js +13 -12
  15. package/dist/codegen.go/src/imports.js.map +1 -1
  16. package/dist/codegen.go/src/interfaces.js +2 -2
  17. package/dist/codegen.go/src/interfaces.js.map +1 -1
  18. package/dist/codegen.go/src/models.d.ts.map +1 -1
  19. package/dist/codegen.go/src/models.js +81 -81
  20. package/dist/codegen.go/src/models.js.map +1 -1
  21. package/dist/codegen.go/src/operations.d.ts.map +1 -1
  22. package/dist/codegen.go/src/operations.js +100 -113
  23. package/dist/codegen.go/src/operations.js.map +1 -1
  24. package/dist/codegen.go/src/options.js +2 -2
  25. package/dist/codegen.go/src/options.js.map +1 -1
  26. package/dist/codegen.go/src/polymorphics.d.ts.map +1 -1
  27. package/dist/codegen.go/src/polymorphics.js +29 -24
  28. package/dist/codegen.go/src/polymorphics.js.map +1 -1
  29. package/dist/codegen.go/src/responses.js +2 -2
  30. package/dist/codegen.go/src/responses.js.map +1 -1
  31. package/dist/codegen.go/src/time.js +13 -14
  32. package/dist/codegen.go/src/time.js.map +1 -1
  33. package/dist/codegen.go/src/xmlAdditionalProps.js +1 -2
  34. package/dist/codegen.go/src/xmlAdditionalProps.js.map +1 -1
  35. package/dist/codemodel.go/src/examples.d.ts +20 -20
  36. package/dist/codemodel.go/src/examples.d.ts.map +1 -1
  37. package/dist/codemodel.go/src/examples.js +2 -2
  38. package/dist/codemodel.go/src/examples.js.map +1 -1
  39. package/dist/codemodel.go/src/package.d.ts +4 -4
  40. package/dist/codemodel.go/src/package.d.ts.map +1 -1
  41. package/dist/codemodel.go/src/package.js +3 -3
  42. package/dist/codemodel.go/src/package.js.map +1 -1
  43. package/dist/codemodel.go/src/param.d.ts +32 -24
  44. package/dist/codemodel.go/src/param.d.ts.map +1 -1
  45. package/dist/codemodel.go/src/param.js +54 -1
  46. package/dist/codemodel.go/src/param.js.map +1 -1
  47. package/dist/codemodel.go/src/result.d.ts +12 -10
  48. package/dist/codemodel.go/src/result.d.ts.map +1 -1
  49. package/dist/codemodel.go/src/result.js +21 -4
  50. package/dist/codemodel.go/src/result.js.map +1 -1
  51. package/dist/codemodel.go/src/type.d.ts +219 -86
  52. package/dist/codemodel.go/src/type.d.ts.map +1 -1
  53. package/dist/codemodel.go/src/type.js +137 -127
  54. package/dist/codemodel.go/src/type.js.map +1 -1
  55. package/dist/typespec-go/src/emitter.d.ts.map +1 -1
  56. package/dist/typespec-go/src/emitter.js +80 -0
  57. package/dist/typespec-go/src/emitter.js.map +1 -1
  58. package/dist/typespec-go/src/lib.d.ts +1 -0
  59. package/dist/typespec-go/src/lib.d.ts.map +1 -1
  60. package/dist/typespec-go/src/lib.js +5 -0
  61. package/dist/typespec-go/src/lib.js.map +1 -1
  62. package/dist/typespec-go/src/tcgcadapter/adapter.js +5 -0
  63. package/dist/typespec-go/src/tcgcadapter/adapter.js.map +1 -1
  64. package/dist/typespec-go/src/tcgcadapter/clients.d.ts.map +1 -1
  65. package/dist/typespec-go/src/tcgcadapter/clients.js +71 -58
  66. package/dist/typespec-go/src/tcgcadapter/clients.js.map +1 -1
  67. package/dist/typespec-go/src/tcgcadapter/types.d.ts +3 -3
  68. package/dist/typespec-go/src/tcgcadapter/types.d.ts.map +1 -1
  69. package/dist/typespec-go/src/tcgcadapter/types.js +47 -46
  70. package/dist/typespec-go/src/tcgcadapter/types.js.map +1 -1
  71. package/package.json +5 -5
@@ -1,183 +1,316 @@
1
- export type PossibleType = BytesType | ConstantType | InterfaceType | LiteralValue | MapType | ModelType | PolymorphicType | PrimitiveType | SliceType | QualifiedType | TimeType;
2
- export interface BytesType {
3
- encoding: BytesEncoding;
1
+ /** Docs contains the values used in doc comment generation. */
2
+ export interface Docs {
3
+ /** the high level summary */
4
+ summary?: string;
5
+ /** detailed description */
6
+ description?: string;
4
7
  }
5
- export type BytesEncoding = 'Std' | 'URL';
6
- export interface ConstantType {
8
+ /** defines types that go across the wire */
9
+ export type WireType = Any | Constant | EncodedBytes | Interface | Literal | Map | Model | PolymorphicModel | QualifiedType | RawJSON | Scalar | Slice | String | Time;
10
+ /** the Go any type */
11
+ export interface Any {
12
+ kind: 'any';
13
+ }
14
+ /** a const type definition */
15
+ export interface Constant {
16
+ kind: 'constant';
17
+ /** the const type name */
7
18
  name: string;
19
+ /** any docs for the const type */
8
20
  docs: Docs;
9
- type: ConstantTypeTypes;
21
+ /** the underlying type of the const */
22
+ type: ConstantType;
23
+ /** the possible values for this const */
10
24
  values: Array<ConstantValue>;
25
+ /** the name of the func that returns the set of values */
11
26
  valuesFuncName: string;
12
27
  }
13
- export type ConstantTypeTypes = 'bool' | 'float32' | 'float64' | 'int32' | 'int64' | 'string';
28
+ /** the underlying type of a const */
29
+ export type ConstantType = 'bool' | 'float32' | 'float64' | 'int32' | 'int64' | 'string';
30
+ /** a const value definition */
14
31
  export interface ConstantValue {
32
+ kind: 'constantValue';
33
+ /** the const value name */
15
34
  name: string;
35
+ /** any docs for the const value */
16
36
  docs: Docs;
17
- type: ConstantType;
18
- value: ConstantValueValueTypes;
19
- }
20
- export type ConstantValueValueTypes = boolean | number | string;
21
- export type DateTimeFormat = 'dateType' | 'dateTimeRFC1123' | 'dateTimeRFC3339' | 'timeRFC3339' | 'timeUnix';
22
- export interface Docs {
23
- summary?: string;
24
- description?: string;
37
+ /** the const to which this value belongs */
38
+ type: Constant;
39
+ /** the value for this const */
40
+ value: ConstantValueType;
41
+ }
42
+ /** the underlying type of a const value */
43
+ export type ConstantValueType = boolean | number | string;
44
+ /** a byte slice that's base64 encoded */
45
+ export interface EncodedBytes {
46
+ kind: 'encodedBytes';
47
+ /** indicates what kind of base64-encoding to use */
48
+ encoding: BytesEncoding;
25
49
  }
26
- export interface InterfaceType {
50
+ /** the types of base64 encoding */
51
+ export type BytesEncoding = 'Std' | 'URL';
52
+ /** a Go interface type used for discriminated types */
53
+ export interface Interface {
54
+ kind: 'interface';
55
+ /** the name of the interface (e.g. FishClassification) */
27
56
  name: string;
57
+ /** any docs for the interface */
28
58
  docs: Docs;
29
- possibleTypes: Array<PolymorphicType>;
59
+ /** contains possible concrete type instances (e.g. Flounder, Carp) */
60
+ possibleTypes: Array<PolymorphicModel>;
61
+ /** contains the name of the discriminator field in the JSON (e.g. "fishtype") */
30
62
  discriminatorField: string;
31
- parent?: InterfaceType;
32
- rootType: PolymorphicType;
33
- }
34
- export interface LiteralValue {
35
- type: LiteralValueType;
63
+ /** does this polymorphic type have a parent (e.g. SalmonClassification has parent FishClassification) */
64
+ parent?: Interface;
65
+ /** this is the "root" type in the list of polymorphic types (e.g. Fish for FishClassification) */
66
+ rootType: PolymorphicModel;
67
+ }
68
+ /** a literal value (e.g. "foo", 123, true) */
69
+ export interface Literal {
70
+ kind: 'literal';
71
+ /** the literal's underlying type */
72
+ type: LiteralType;
73
+ /** the value for this literal */
36
74
  literal: any;
37
75
  }
38
- export type LiteralValueType = BytesType | ConstantType | PrimitiveType | TimeType;
39
- export interface MapType {
76
+ /** the possible types of literals */
77
+ export type LiteralType = Constant | EncodedBytes | Scalar | String | Time;
78
+ /** a Go map type. note that the key is always a string */
79
+ export interface Map {
80
+ kind: 'map';
81
+ /** the type of values in the map */
40
82
  valueType: MapValueType;
83
+ /** indicates if the map's value type is pointer-to-type or not */
41
84
  valueTypeByValue: boolean;
42
85
  }
43
- export type MapValueType = PossibleType;
86
+ /** the set of map value types */
87
+ export type MapValueType = WireType;
88
+ /** a field within a model */
44
89
  export interface ModelField extends StructField {
90
+ /** the name of the field as it's sent/received over the wire */
45
91
  serializedName: string;
92
+ /** metadata for this field */
46
93
  annotations: ModelFieldAnnotations;
47
- defaultValue?: LiteralValue;
94
+ /** the value to send over the wire if one isn't specified */
95
+ defaultValue?: Literal;
96
+ /** any XML metadata */
48
97
  xml?: XMLInfo;
49
98
  }
99
+ /** additional settings for a model type */
50
100
  export interface ModelAnnotations {
101
+ /** when true, serde methods will not be generated */
51
102
  omitSerDeMethods: boolean;
103
+ /** indicates the model should be converted into multipart/form data */
52
104
  multipartFormData: boolean;
53
105
  }
106
+ /** additional settings for a model field */
54
107
  export interface ModelFieldAnnotations {
108
+ /** the field is required on input and will always be populated on output */
55
109
  required: boolean;
110
+ /** the field is read-only and will be populated on output. any set value on input will be ignored */
56
111
  readOnly: boolean;
112
+ /** field is JSON additional properties */
57
113
  isAdditionalProperties: boolean;
114
+ /** field is the discriminator for a discriminated type */
58
115
  isDiscriminator: boolean;
59
116
  }
60
- export interface ModelType extends StructType {
61
- fields: Array<ModelField>;
62
- annotations: ModelAnnotations;
63
- usage: UsageFlags;
64
- xml?: XMLInfo;
65
- }
66
- export interface PolymorphicType extends StructType {
67
- fields: Array<ModelField>;
68
- annotations: ModelAnnotations;
69
- usage: UsageFlags;
70
- interface: InterfaceType;
71
- discriminatorValue?: LiteralValue;
72
- }
73
- export interface PrimitiveType {
74
- typeName: PrimitiveTypeName;
75
- encodeAsString: boolean;
76
- }
77
- export type PrimitiveTypeName = 'any' | 'bool' | 'byte' | 'float32' | 'float64' | 'int8' | 'int16' | 'int32' | 'int64' | 'rune' | 'string' | 'uint8' | 'uint16' | 'uint32' | 'uint64';
117
+ /** a struct that participates in serialization over the wire */
118
+ export interface Model extends ModelBase {
119
+ kind: 'model';
120
+ }
121
+ /** a model that's a discriminated type */
122
+ export interface PolymorphicModel extends ModelBase {
123
+ kind: 'polymorphicModel';
124
+ /** the polymorphic interface this type implements */
125
+ interface: Interface;
126
+ /**
127
+ * the value in the JSON that indicates what type was sent over the wire (e.g. goblin, salmon, shark)
128
+ * note that for "root" types (Fish), there is no discriminatorValue. however, "sub-root" types (e.g. Salmon)
129
+ * will have this populated.
130
+ */
131
+ discriminatorValue?: Literal;
132
+ }
133
+ /** a type from some package, e.g. the Go standard library (excluding time.Time) */
78
134
  export interface QualifiedType {
135
+ kind: 'qualifiedType';
136
+ /** the type name minus any package qualifier (e.g. URL) */
79
137
  exportName: string;
138
+ /** the full name of the package to import (e.g. "net/url") */
80
139
  packageName: string;
81
140
  }
82
- export interface SliceType {
141
+ /** a byte slice containing raw JSON */
142
+ export interface RawJSON {
143
+ kind: 'rawJSON';
144
+ }
145
+ /** a Go scalar type */
146
+ export interface Scalar {
147
+ kind: 'scalar';
148
+ /** the type of scalar */
149
+ type: ScalarType;
150
+ /** indicates the value is sent/received as a string */
151
+ encodeAsString: boolean;
152
+ }
153
+ /** the supported Go scalar types */
154
+ export type ScalarType = 'bool' | 'byte' | 'float32' | 'float64' | 'int8' | 'int16' | 'int32' | 'int64' | 'rune' | 'uint8' | 'uint16' | 'uint32' | 'uint64';
155
+ /** a Go slice */
156
+ export interface Slice {
157
+ kind: 'slice';
158
+ /** the element type for this slice */
83
159
  elementType: SliceElementType;
160
+ /** indicates if the slice's element type is pointer-to-type or not */
84
161
  elementTypeByValue: boolean;
85
- rawJSONAsBytes: boolean;
86
162
  }
87
- export type SliceElementType = PossibleType;
88
- export interface StructType {
163
+ /** the set of slice element types */
164
+ export type SliceElementType = WireType;
165
+ /** a Go string */
166
+ export interface String {
167
+ kind: 'string';
168
+ }
169
+ /** a vanilla struct definition (pretty much exclusively used for parameter groups/options bag types) */
170
+ export interface Struct {
171
+ /** the name of the struct */
89
172
  name: string;
173
+ /** and docs for this struct */
90
174
  docs: Docs;
175
+ /** the fields in this struct. can be empty */
91
176
  fields: Array<StructField>;
92
177
  }
178
+ /** a field definition within a struct */
93
179
  export interface StructField {
180
+ /** the name of the field */
94
181
  name: string;
182
+ /** and docs for this field */
95
183
  docs: Docs;
96
- type: PossibleType;
184
+ /** the field's underlying type */
185
+ type: WireType;
186
+ /** indicates if the field is pointer-to-type or not */
97
187
  byValue: boolean;
98
188
  }
99
- export interface TimeType {
100
- dateTimeFormat: DateTimeFormat;
189
+ /** a time.Time type from the standard library with a format specifier */
190
+ export interface Time {
191
+ kind: 'time';
192
+ /** the serde format used */
193
+ format: TimeFormat;
194
+ /** indicates if the time is always in UTC */
101
195
  utc: boolean;
102
196
  }
197
+ /** the set of time serde formats */
198
+ export type TimeFormat = 'dateType' | 'dateTimeRFC1123' | 'dateTimeRFC3339' | 'timeRFC3339' | 'timeUnix';
199
+ /** bit flags indicating how a model/polymorphic type is used */
103
200
  export declare enum UsageFlags {
201
+ /** the type is unreferenced */
104
202
  None = 0,
203
+ /** the type is received over the wire */
105
204
  Input = 1,
205
+ /** the type is sent over the wire */
106
206
  Output = 2
107
207
  }
208
+ /** metadata used for XML serde */
108
209
  export interface XMLInfo {
210
+ /** element name to use instead of the default name */
109
211
  name?: string;
212
+ /** name propagated to the generated wrapper type */
110
213
  wrapper?: string;
214
+ /** slices only. this is the name of the wrapped type */
111
215
  wraps?: string;
216
+ /** value is an XML attribute */
112
217
  attribute: boolean;
218
+ /** value is raw text */
113
219
  text: boolean;
114
220
  }
115
- export declare function isBytesType(type: PossibleType): type is BytesType;
116
- export declare function isConstantType(type: PossibleType): type is ConstantType;
117
- export declare function isLiteralValueType(type: PossibleType): type is LiteralValueType;
118
- export declare function isPrimitiveType(type: PossibleType): type is PrimitiveType;
119
- export declare function isQualifiedType(type: PossibleType): type is QualifiedType;
120
- export declare function isTimeType(type: PossibleType): type is TimeType;
121
- export declare function isMapType(type: PossibleType): type is MapType;
122
- export declare function isModelType(type: PossibleType): type is ModelType;
123
- export declare function isPolymorphicType(type: PossibleType): type is PolymorphicType;
124
- export declare function isSliceType(type: PossibleType): type is SliceType;
125
- export declare function isInterfaceType(type: PossibleType): type is InterfaceType;
126
- export declare function isLiteralValue(type: PossibleType): type is LiteralValue;
127
- export declare function getLiteralValueTypeName(literal: LiteralValueType): string;
128
- export declare function getTypeDeclaration(type: PossibleType, pkgName?: string): string;
221
+ /**
222
+ * returns the Go type declaration for the specified LiteralType
223
+ *
224
+ * @param literal the type for which to emit the declaration
225
+ * @returns the Go type declaration
226
+ */
227
+ export declare function getLiteralTypeDeclaration(literal: LiteralType): string;
228
+ /**
229
+ * returns the Go type declaration for the specified type.
230
+ * any value in pkgName is prefixed to the underlying type name.
231
+ *
232
+ * @param type the type for which to emit the declaration
233
+ * @param pkgName optional package name prefix for the type
234
+ * @returns the Go type declaration
235
+ */
236
+ export declare function getTypeDeclaration(type: WireType, pkgName?: string): string;
237
+ /** narrows type to a LiteralType within the conditional block */
238
+ export declare function isLiteralValueType(type: WireType): type is LiteralType;
129
239
  export declare class StructField implements StructField {
130
- constructor(name: string, type: PossibleType, byValue: boolean);
240
+ constructor(name: string, type: WireType, byValue: boolean);
131
241
  }
132
- export declare class StructType implements StructType {
242
+ export declare class Struct implements Struct {
133
243
  constructor(name: string);
134
244
  }
135
- export declare class BytesType implements BytesType {
136
- constructor(encoding: BytesEncoding);
245
+ interface ModelBase extends Struct {
246
+ /** the fields in this model. can be empty */
247
+ fields: Array<ModelField>;
248
+ /** any annotations for this model */
249
+ annotations: ModelAnnotations;
250
+ /** usage flags for this model */
251
+ usage: UsageFlags;
252
+ /** any XML metadata */
253
+ xml?: XMLInfo;
137
254
  }
138
- export declare class ConstantType implements ConstantType {
139
- constructor(name: string, type: ConstantTypeTypes, valuesFuncName: string);
255
+ declare class ModelBase extends Struct implements ModelBase {
256
+ constructor(name: string, annotations: ModelAnnotations, usage: UsageFlags);
257
+ }
258
+ export declare class Any implements Any {
259
+ constructor();
260
+ }
261
+ export declare class Constant implements Constant {
262
+ constructor(name: string, type: ConstantType, valuesFuncName: string);
140
263
  }
141
264
  export declare class ConstantValue implements ConstantValue {
142
- constructor(name: string, type: ConstantType, value: ConstantValueValueTypes);
265
+ constructor(name: string, type: Constant, value: ConstantValueType);
143
266
  }
144
- export declare class InterfaceType implements InterfaceType {
267
+ export declare class EncodedBytes implements EncodedBytes {
268
+ constructor(encoding: BytesEncoding);
269
+ }
270
+ export declare class Interface implements Interface {
145
271
  constructor(name: string, discriminatorField: string);
146
272
  }
147
- export declare class LiteralValue implements LiteralValue {
148
- constructor(type: LiteralValueType, literal: any);
273
+ export declare class Literal implements Literal {
274
+ constructor(type: LiteralType, literal: any);
149
275
  }
150
- export declare class MapType implements MapType {
276
+ export declare class Map implements Map {
151
277
  constructor(valueType: MapValueType, valueTypeByValue: boolean);
152
278
  }
153
279
  export declare class ModelAnnotations implements ModelAnnotations {
154
280
  constructor(omitSerDe: boolean, multipartForm: boolean);
155
281
  }
156
282
  export declare class ModelField extends StructField implements ModelField {
157
- constructor(name: string, type: PossibleType, byValue: boolean, serializedName: string, annotations: ModelFieldAnnotations);
283
+ constructor(name: string, type: WireType, byValue: boolean, serializedName: string, annotations: ModelFieldAnnotations);
158
284
  }
159
285
  export declare class ModelFieldAnnotations implements ModelFieldAnnotations {
160
286
  constructor(required: boolean, readOnly: boolean, isAddlProps: boolean, isDiscriminator: boolean);
161
287
  }
162
- export declare class ModelType extends StructType implements ModelType {
288
+ export declare class Model extends ModelBase implements Model {
163
289
  constructor(name: string, annotations: ModelAnnotations, usage: UsageFlags);
164
290
  }
165
- export declare class PolymorphicType extends StructType implements PolymorphicType {
166
- constructor(name: string, iface: InterfaceType, annotations: ModelAnnotations, usage: UsageFlags);
167
- }
168
- export declare class PrimitiveType implements PrimitiveType {
169
- constructor(typeName: PrimitiveTypeName, encodeAsString?: boolean);
291
+ export declare class PolymorphicModel extends ModelBase implements PolymorphicModel {
292
+ constructor(name: string, iface: Interface, annotations: ModelAnnotations, usage: UsageFlags);
170
293
  }
171
294
  export declare class QualifiedType implements QualifiedType {
172
295
  constructor(exportName: string, packageName: string);
173
296
  }
174
- export declare class SliceType implements SliceType {
297
+ export declare class RawJSON implements RawJSON {
298
+ constructor();
299
+ }
300
+ export declare class Scalar implements Scalar {
301
+ constructor(type: ScalarType, encodeAsString: boolean);
302
+ }
303
+ export declare class Slice implements Slice {
175
304
  constructor(elementType: SliceElementType, elementTypeByValue: boolean);
176
305
  }
177
- export declare class TimeType implements TimeType {
178
- constructor(format: DateTimeFormat, utc: boolean);
306
+ export declare class String implements String {
307
+ constructor();
308
+ }
309
+ export declare class Time implements Time {
310
+ constructor(format: TimeFormat, utc: boolean);
179
311
  }
180
312
  export declare class XMLInfo implements XMLInfo {
181
313
  constructor();
182
314
  }
315
+ export {};
183
316
  //# sourceMappingURL=type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../../codemodel.go/src/type.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"type.d.ts","sourceRoot":"","sources":["../../../../codemodel.go/src/type.ts"],"names":[],"mappings":"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"}