@azure-tools/typespec-azure-resource-manager 0.27.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.
- package/LICENSE +21 -0
- package/README.md +346 -0
- package/dist/src/common-types.d.ts +8 -0
- package/dist/src/common-types.d.ts.map +1 -0
- package/dist/src/common-types.js +14 -0
- package/dist/src/common-types.js.map +1 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +7 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/internal.d.ts +44 -0
- package/dist/src/internal.d.ts.map +1 -0
- package/dist/src/internal.js +142 -0
- package/dist/src/internal.js.map +1 -0
- package/dist/src/lib.d.ts +615 -0
- package/dist/src/lib.d.ts.map +1 -0
- package/dist/src/lib.js +250 -0
- package/dist/src/lib.js.map +1 -0
- package/dist/src/linter.d.ts +3 -0
- package/dist/src/linter.d.ts.map +1 -0
- package/dist/src/linter.js +42 -0
- package/dist/src/linter.js.map +1 -0
- package/dist/src/namespace.d.ts +16 -0
- package/dist/src/namespace.d.ts.map +1 -0
- package/dist/src/namespace.js +106 -0
- package/dist/src/namespace.js.map +1 -0
- package/dist/src/operations.d.ts +36 -0
- package/dist/src/operations.d.ts.map +1 -0
- package/dist/src/operations.js +186 -0
- package/dist/src/operations.js.map +1 -0
- package/dist/src/resource.d.ts +81 -0
- package/dist/src/resource.d.ts.map +1 -0
- package/dist/src/resource.js +358 -0
- package/dist/src/resource.js.map +1 -0
- package/dist/src/rules/arm-resource-action-no-segment.d.ts +2 -0
- package/dist/src/rules/arm-resource-action-no-segment.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-action-no-segment.js +31 -0
- package/dist/src/rules/arm-resource-action-no-segment.js.map +1 -0
- package/dist/src/rules/arm-resource-invalid-chars.d.ts +2 -0
- package/dist/src/rules/arm-resource-invalid-chars.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-invalid-chars.js +61 -0
- package/dist/src/rules/arm-resource-invalid-chars.js.map +1 -0
- package/dist/src/rules/arm-resource-invalid-version-format.d.ts +2 -0
- package/dist/src/rules/arm-resource-invalid-version-format.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-invalid-version-format.js +48 -0
- package/dist/src/rules/arm-resource-invalid-version-format.js.map +1 -0
- package/dist/src/rules/arm-resource-operations.d.ts +2 -0
- package/dist/src/rules/arm-resource-operations.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-operations.js +70 -0
- package/dist/src/rules/arm-resource-operations.js.map +1 -0
- package/dist/src/rules/arm-resource-properties.d.ts +2 -0
- package/dist/src/rules/arm-resource-properties.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-properties.js +55 -0
- package/dist/src/rules/arm-resource-properties.js.map +1 -0
- package/dist/src/rules/arm-resource-provisioning-state-rule.d.ts +2 -0
- package/dist/src/rules/arm-resource-provisioning-state-rule.d.ts.map +1 -0
- package/dist/src/rules/arm-resource-provisioning-state-rule.js +62 -0
- package/dist/src/rules/arm-resource-provisioning-state-rule.js.map +1 -0
- package/dist/src/rules/beyond-nesting-levels.d.ts +5 -0
- package/dist/src/rules/beyond-nesting-levels.d.ts.map +1 -0
- package/dist/src/rules/beyond-nesting-levels.js +37 -0
- package/dist/src/rules/beyond-nesting-levels.js.map +1 -0
- package/dist/src/rules/core-operations.d.ts +2 -0
- package/dist/src/rules/core-operations.d.ts.map +1 -0
- package/dist/src/rules/core-operations.js +181 -0
- package/dist/src/rules/core-operations.js.map +1 -0
- package/dist/src/rules/delete-operation.d.ts +5 -0
- package/dist/src/rules/delete-operation.d.ts.map +1 -0
- package/dist/src/rules/delete-operation.js +28 -0
- package/dist/src/rules/delete-operation.js.map +1 -0
- package/dist/src/rules/envelope-properties.d.ts +5 -0
- package/dist/src/rules/envelope-properties.d.ts.map +1 -0
- package/dist/src/rules/envelope-properties.js +62 -0
- package/dist/src/rules/envelope-properties.js.map +1 -0
- package/dist/src/rules/list-operation.d.ts +5 -0
- package/dist/src/rules/list-operation.d.ts.map +1 -0
- package/dist/src/rules/list-operation.js +35 -0
- package/dist/src/rules/list-operation.js.map +1 -0
- package/dist/src/rules/no-response-body.d.ts +5 -0
- package/dist/src/rules/no-response-body.d.ts.map +1 -0
- package/dist/src/rules/no-response-body.js +27 -0
- package/dist/src/rules/no-response-body.js.map +1 -0
- package/dist/src/rules/operations-interface-missing.d.ts +5 -0
- package/dist/src/rules/operations-interface-missing.d.ts.map +1 -0
- package/dist/src/rules/operations-interface-missing.js +37 -0
- package/dist/src/rules/operations-interface-missing.js.map +1 -0
- package/dist/src/rules/resource-name.d.ts +5 -0
- package/dist/src/rules/resource-name.d.ts.map +1 -0
- package/dist/src/rules/resource-name.js +47 -0
- package/dist/src/rules/resource-name.js.map +1 -0
- package/dist/src/rules/retry-after.d.ts +5 -0
- package/dist/src/rules/retry-after.d.ts.map +1 -0
- package/dist/src/rules/retry-after.js +31 -0
- package/dist/src/rules/retry-after.js.map +1 -0
- package/dist/src/rules/unsupported-types.d.ts +5 -0
- package/dist/src/rules/unsupported-types.d.ts.map +1 -0
- package/dist/src/rules/unsupported-types.js +39 -0
- package/dist/src/rules/unsupported-types.js.map +1 -0
- package/dist/src/rules/utils.d.ts +18 -0
- package/dist/src/rules/utils.d.ts.map +1 -0
- package/dist/src/rules/utils.js +77 -0
- package/dist/src/rules/utils.js.map +1 -0
- package/dist/src/testing/index.d.ts +3 -0
- package/dist/src/testing/index.d.ts.map +1 -0
- package/dist/src/testing/index.js +24 -0
- package/dist/src/testing/index.js.map +1 -0
- package/lib/arm.foundations.tsp +465 -0
- package/lib/arm.tsp +31 -0
- package/lib/decorators.tsp +87 -0
- package/lib/interfaces.tsp +287 -0
- package/lib/models.tsp +203 -0
- package/lib/operations.tsp +260 -0
- package/lib/parameters.tsp +126 -0
- package/lib/responses.tsp +47 -0
- package/package.json +85 -0
|
@@ -0,0 +1,615 @@
|
|
|
1
|
+
export declare const libDef: {
|
|
2
|
+
readonly name: "@azure-tools/typespec-azure-resource-manager";
|
|
3
|
+
readonly diagnostics: {
|
|
4
|
+
readonly "single-arm-provider": {
|
|
5
|
+
readonly severity: "error";
|
|
6
|
+
readonly messages: {
|
|
7
|
+
readonly default: "Only one @armProviderNamespace can be declared in a typespec spec at once.";
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
readonly "decorator-param-wrong-type": {
|
|
11
|
+
readonly severity: "error";
|
|
12
|
+
readonly messages: {
|
|
13
|
+
readonly armUpdateProviderNamespace: "The parameter to @armUpdateProviderNamespace must be an operation with a 'provider' parameter.";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
readonly "missing-operations-endpoint": {
|
|
17
|
+
readonly severity: "warning";
|
|
18
|
+
readonly messages: {
|
|
19
|
+
readonly default: import("@typespec/compiler").CallableMessage<["namespace"]>;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
readonly "arm-resource-invalid-version-format": {
|
|
23
|
+
readonly severity: "warning";
|
|
24
|
+
readonly messages: {
|
|
25
|
+
readonly invalidType: import("@typespec/compiler").CallableMessage<[]>;
|
|
26
|
+
readonly default: import("@typespec/compiler").CallableMessage<["version"]>;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
readonly "arm-resource-name-invalid-chars": {
|
|
30
|
+
readonly severity: "warning";
|
|
31
|
+
readonly messages: {
|
|
32
|
+
readonly default: "Arm resource name must contain only alphanumeric characters.";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
readonly "arm-resource-key-invalid-chars": {
|
|
36
|
+
readonly severity: "warning";
|
|
37
|
+
readonly messages: {
|
|
38
|
+
readonly default: import("@typespec/compiler").CallableMessage<["key"]>;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
readonly "arm-resource-invalid-patch-model": {
|
|
42
|
+
readonly severity: "warning";
|
|
43
|
+
readonly messages: {
|
|
44
|
+
readonly default: "The request body of a PATCH must be a model with a subset of resource properties";
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
readonly "arm-resource-path-segment-invalid-chars": {
|
|
48
|
+
readonly severity: "warning";
|
|
49
|
+
readonly messages: {
|
|
50
|
+
readonly default: import("@typespec/compiler").CallableMessage<["segment"]>;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
readonly "arm-resource-invalid-envelope-property": {
|
|
54
|
+
readonly severity: "warning";
|
|
55
|
+
readonly messages: {
|
|
56
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
readonly "arm-resource-duplicate-property": {
|
|
60
|
+
readonly severity: "warning";
|
|
61
|
+
readonly messages: {
|
|
62
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
readonly "arm-resource-provisioning-state": {
|
|
66
|
+
readonly severity: "warning";
|
|
67
|
+
readonly messages: {
|
|
68
|
+
readonly default: "The RP-specific property model in the 'properties' property of this resource must contain a 'provisioningState property. The property type should be an enum, and it must specify known state values 'Succeeded', 'Failed', and 'Canceled'.";
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
readonly "arm-resource-provisioning-state-values": {
|
|
72
|
+
readonly severity: "warning";
|
|
73
|
+
readonly messages: {
|
|
74
|
+
readonly default: import("@typespec/compiler").CallableMessage<["missingValues"]>;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
readonly "arm-resource-patch-missing-tags": {
|
|
78
|
+
readonly severity: "warning";
|
|
79
|
+
readonly messages: {
|
|
80
|
+
readonly default: "Resource PATCH must contain the 'tags' property.";
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
readonly "arm-resource-operation-missing-decorator": {
|
|
84
|
+
readonly severity: "warning";
|
|
85
|
+
readonly messages: {
|
|
86
|
+
readonly default: import("@typespec/compiler").CallableMessage<["verb", "decorator"]>;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
readonly "arm-resource-interface-requires-decorator": {
|
|
90
|
+
readonly severity: "warning";
|
|
91
|
+
readonly messages: {
|
|
92
|
+
readonly default: "Each resource interface must have an @armResourceOperations decorator.";
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
readonly "arm-resource-circular-ancestry": {
|
|
96
|
+
readonly severity: "warning";
|
|
97
|
+
readonly messages: {
|
|
98
|
+
readonly default: "There is a loop in the ancestry of this resource. Please ensure that the `@parentResource` decorator contains the correct parent resource, and that parentage contains no cycles.";
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
readonly "arm-resource-duplicate-base-parameter": {
|
|
102
|
+
readonly severity: "warning";
|
|
103
|
+
readonly messages: {
|
|
104
|
+
readonly default: "Only one base parameter type is allowed per resource. Each resource may have only one of `@parentResource`, `@resourceGroupResource`, `@tenantResource`, `@locationResource`, or `@subscriptionResource` decorators.";
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
readonly "arm-resource-invalid-action-verb": {
|
|
108
|
+
readonly severity: "warning";
|
|
109
|
+
readonly messages: {
|
|
110
|
+
readonly default: "Actions must be HTTP Post operations.";
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
readonly "arm-resource-action-no-segment": {
|
|
114
|
+
readonly severity: "warning";
|
|
115
|
+
readonly messages: {
|
|
116
|
+
readonly default: "`@armResourceAction` should not be used with `@segment`. Instead, use `@action(...)` if you need to rename the action, or omit.";
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
readonly "arm-resource-patch-model-superset": {
|
|
120
|
+
readonly severity: "warning";
|
|
121
|
+
readonly messages: {
|
|
122
|
+
readonly default: import("@typespec/compiler").CallableMessage<["name", "resourceModel"]>;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
readonly "arm-resource-operation-missing-api-version": {
|
|
126
|
+
readonly severity: "warning";
|
|
127
|
+
readonly messages: {
|
|
128
|
+
readonly default: "All Resource operations must use an api-version parameter. Please include Azure.ResourceManager.ApiVersionParameter in the operation parameter list using the spread (...ApiVersionParameter) operator, or using one of the common resource parameter models.";
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
readonly "arm-resource-operation-outside-interface": {
|
|
132
|
+
readonly severity: "warning";
|
|
133
|
+
readonly messages: {
|
|
134
|
+
readonly default: "All operations must be inside an interface declaration.";
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
readonly "arm-resource-operation-response": {
|
|
138
|
+
readonly severity: "error";
|
|
139
|
+
readonly messages: {
|
|
140
|
+
readonly default: "[RPC 008]: PUT, GET, PATCH & LIST must return the same resource schema.";
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
readonly "arm-resource-missing-name-property": {
|
|
144
|
+
readonly severity: "error";
|
|
145
|
+
readonly messages: {
|
|
146
|
+
readonly default: "Resource types must include a string property called 'name'.";
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
readonly "arm-resource-missing-name-key-decorator": {
|
|
150
|
+
readonly severity: "error";
|
|
151
|
+
readonly messages: {
|
|
152
|
+
readonly default: "Resource type 'name' property must have a @key decorator which defines its key name.";
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
readonly "arm-resource-missing-name-segment-decorator": {
|
|
156
|
+
readonly severity: "error";
|
|
157
|
+
readonly messages: {
|
|
158
|
+
readonly default: "Resource type 'name' property must have a @segment decorator which defines its path fragment.";
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
readonly "arm-resource-missing-arm-namespace": {
|
|
162
|
+
readonly severity: "error";
|
|
163
|
+
readonly messages: {
|
|
164
|
+
readonly default: "The @armProviderNamespace decorator must be used to define the ARM namespace of the service. This is best applied to the file-level namespace.";
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
readonly "arm-resource-invalid-base-type": {
|
|
168
|
+
readonly severity: "error";
|
|
169
|
+
readonly messages: {
|
|
170
|
+
readonly default: "The @armResourceInternal decorator can only be used on a type that ultimately extends TrackedResource, ProxyResource, or ExtensionResource.";
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
readonly "arm-resource-missing": {
|
|
174
|
+
readonly severity: "error";
|
|
175
|
+
readonly messages: {
|
|
176
|
+
readonly default: import("@typespec/compiler").CallableMessage<["type"]>;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly "decorator-in-namespace": {
|
|
180
|
+
readonly severity: "error";
|
|
181
|
+
readonly messages: {
|
|
182
|
+
readonly default: import("@typespec/compiler").CallableMessage<["decoratorName"]>;
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
readonly "parent-type": {
|
|
186
|
+
readonly severity: "error";
|
|
187
|
+
readonly messages: {
|
|
188
|
+
readonly notResourceType: import("@typespec/compiler").CallableMessage<["parent", "type"]>;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
readonly "unsupported-type": {
|
|
192
|
+
readonly severity: "warning";
|
|
193
|
+
readonly messages: {
|
|
194
|
+
readonly default: import("@typespec/compiler").CallableMessage<["typeName"]>;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
readonly "resource-name": {
|
|
198
|
+
readonly severity: "warning";
|
|
199
|
+
readonly messages: {
|
|
200
|
+
readonly default: "The resource 'name' field should be marked with 'read' visibility and an @path decorator.";
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
readonly "no-response-body": {
|
|
204
|
+
readonly severity: "warning";
|
|
205
|
+
readonly messages: {
|
|
206
|
+
readonly default: "The body of 202 response should be empty.";
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
readonly "beyond-nesting-levels": {
|
|
210
|
+
readonly severity: "warning";
|
|
211
|
+
readonly messages: {
|
|
212
|
+
readonly default: "Tracked Resources must use 3 or fewer levels of nesting.";
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
readonly "no-resource-delete-operation": {
|
|
216
|
+
readonly severity: "warning";
|
|
217
|
+
readonly messages: {
|
|
218
|
+
readonly default: "The resource must have a delete operation.";
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
readonly "patch-envelope": {
|
|
222
|
+
readonly severity: "warning";
|
|
223
|
+
readonly messages: {
|
|
224
|
+
readonly default: import("@typespec/compiler").CallableMessage<["resourceName", "propertyName"]>;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
readonly "empty-updateable-properties": {
|
|
228
|
+
readonly severity: "warning";
|
|
229
|
+
readonly messages: {
|
|
230
|
+
readonly default: "The RP-specific properties of the Resource (as defined in the 'properties' property) should have at least one updateable property. Properties are updateable if they do not have a '@visibility' decorator, or if they include 'update' in the '@visibility' decorator arguments.";
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
readonly "retry-after": {
|
|
234
|
+
readonly severity: "warning";
|
|
235
|
+
readonly messages: {
|
|
236
|
+
readonly default: "For long-running operations, the Retry-After header indicates how long the client should wait before polling the operation status, please add this header to the 201 or 202 response for this operation.";
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
readonly "improper-subscription-list-operation": {
|
|
240
|
+
readonly severity: "warning";
|
|
241
|
+
readonly messages: {
|
|
242
|
+
readonly default: "Tenant and Extension resources should not define a list by subscription operation.";
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
export declare const $lib: import("@typespec/compiler").TypeSpecLibrary<{
|
|
248
|
+
"single-arm-provider": {
|
|
249
|
+
readonly default: "Only one @armProviderNamespace can be declared in a typespec spec at once.";
|
|
250
|
+
};
|
|
251
|
+
"decorator-param-wrong-type": {
|
|
252
|
+
readonly armUpdateProviderNamespace: "The parameter to @armUpdateProviderNamespace must be an operation with a 'provider' parameter.";
|
|
253
|
+
};
|
|
254
|
+
"missing-operations-endpoint": {
|
|
255
|
+
readonly default: import("@typespec/compiler").CallableMessage<["namespace"]>;
|
|
256
|
+
};
|
|
257
|
+
"arm-resource-invalid-version-format": {
|
|
258
|
+
readonly invalidType: import("@typespec/compiler").CallableMessage<[]>;
|
|
259
|
+
readonly default: import("@typespec/compiler").CallableMessage<["version"]>;
|
|
260
|
+
};
|
|
261
|
+
"arm-resource-name-invalid-chars": {
|
|
262
|
+
readonly default: "Arm resource name must contain only alphanumeric characters.";
|
|
263
|
+
};
|
|
264
|
+
"arm-resource-key-invalid-chars": {
|
|
265
|
+
readonly default: import("@typespec/compiler").CallableMessage<["key"]>;
|
|
266
|
+
};
|
|
267
|
+
"arm-resource-invalid-patch-model": {
|
|
268
|
+
readonly default: "The request body of a PATCH must be a model with a subset of resource properties";
|
|
269
|
+
};
|
|
270
|
+
"arm-resource-path-segment-invalid-chars": {
|
|
271
|
+
readonly default: import("@typespec/compiler").CallableMessage<["segment"]>;
|
|
272
|
+
};
|
|
273
|
+
"arm-resource-invalid-envelope-property": {
|
|
274
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
275
|
+
};
|
|
276
|
+
"arm-resource-duplicate-property": {
|
|
277
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
278
|
+
};
|
|
279
|
+
"arm-resource-provisioning-state": {
|
|
280
|
+
readonly default: "The RP-specific property model in the 'properties' property of this resource must contain a 'provisioningState property. The property type should be an enum, and it must specify known state values 'Succeeded', 'Failed', and 'Canceled'.";
|
|
281
|
+
};
|
|
282
|
+
"arm-resource-provisioning-state-values": {
|
|
283
|
+
readonly default: import("@typespec/compiler").CallableMessage<["missingValues"]>;
|
|
284
|
+
};
|
|
285
|
+
"arm-resource-patch-missing-tags": {
|
|
286
|
+
readonly default: "Resource PATCH must contain the 'tags' property.";
|
|
287
|
+
};
|
|
288
|
+
"arm-resource-operation-missing-decorator": {
|
|
289
|
+
readonly default: import("@typespec/compiler").CallableMessage<["verb", "decorator"]>;
|
|
290
|
+
};
|
|
291
|
+
"arm-resource-interface-requires-decorator": {
|
|
292
|
+
readonly default: "Each resource interface must have an @armResourceOperations decorator.";
|
|
293
|
+
};
|
|
294
|
+
"arm-resource-circular-ancestry": {
|
|
295
|
+
readonly default: "There is a loop in the ancestry of this resource. Please ensure that the `@parentResource` decorator contains the correct parent resource, and that parentage contains no cycles.";
|
|
296
|
+
};
|
|
297
|
+
"arm-resource-duplicate-base-parameter": {
|
|
298
|
+
readonly default: "Only one base parameter type is allowed per resource. Each resource may have only one of `@parentResource`, `@resourceGroupResource`, `@tenantResource`, `@locationResource`, or `@subscriptionResource` decorators.";
|
|
299
|
+
};
|
|
300
|
+
"arm-resource-invalid-action-verb": {
|
|
301
|
+
readonly default: "Actions must be HTTP Post operations.";
|
|
302
|
+
};
|
|
303
|
+
"arm-resource-action-no-segment": {
|
|
304
|
+
readonly default: "`@armResourceAction` should not be used with `@segment`. Instead, use `@action(...)` if you need to rename the action, or omit.";
|
|
305
|
+
};
|
|
306
|
+
"arm-resource-patch-model-superset": {
|
|
307
|
+
readonly default: import("@typespec/compiler").CallableMessage<["name", "resourceModel"]>;
|
|
308
|
+
};
|
|
309
|
+
"arm-resource-operation-missing-api-version": {
|
|
310
|
+
readonly default: "All Resource operations must use an api-version parameter. Please include Azure.ResourceManager.ApiVersionParameter in the operation parameter list using the spread (...ApiVersionParameter) operator, or using one of the common resource parameter models.";
|
|
311
|
+
};
|
|
312
|
+
"arm-resource-operation-outside-interface": {
|
|
313
|
+
readonly default: "All operations must be inside an interface declaration.";
|
|
314
|
+
};
|
|
315
|
+
"arm-resource-operation-response": {
|
|
316
|
+
readonly default: "[RPC 008]: PUT, GET, PATCH & LIST must return the same resource schema.";
|
|
317
|
+
};
|
|
318
|
+
"arm-resource-missing-name-property": {
|
|
319
|
+
readonly default: "Resource types must include a string property called 'name'.";
|
|
320
|
+
};
|
|
321
|
+
"arm-resource-missing-name-key-decorator": {
|
|
322
|
+
readonly default: "Resource type 'name' property must have a @key decorator which defines its key name.";
|
|
323
|
+
};
|
|
324
|
+
"arm-resource-missing-name-segment-decorator": {
|
|
325
|
+
readonly default: "Resource type 'name' property must have a @segment decorator which defines its path fragment.";
|
|
326
|
+
};
|
|
327
|
+
"arm-resource-missing-arm-namespace": {
|
|
328
|
+
readonly default: "The @armProviderNamespace decorator must be used to define the ARM namespace of the service. This is best applied to the file-level namespace.";
|
|
329
|
+
};
|
|
330
|
+
"arm-resource-invalid-base-type": {
|
|
331
|
+
readonly default: "The @armResourceInternal decorator can only be used on a type that ultimately extends TrackedResource, ProxyResource, or ExtensionResource.";
|
|
332
|
+
};
|
|
333
|
+
"arm-resource-missing": {
|
|
334
|
+
readonly default: import("@typespec/compiler").CallableMessage<["type"]>;
|
|
335
|
+
};
|
|
336
|
+
"decorator-in-namespace": {
|
|
337
|
+
readonly default: import("@typespec/compiler").CallableMessage<["decoratorName"]>;
|
|
338
|
+
};
|
|
339
|
+
"parent-type": {
|
|
340
|
+
readonly notResourceType: import("@typespec/compiler").CallableMessage<["parent", "type"]>;
|
|
341
|
+
};
|
|
342
|
+
"unsupported-type": {
|
|
343
|
+
readonly default: import("@typespec/compiler").CallableMessage<["typeName"]>;
|
|
344
|
+
};
|
|
345
|
+
"resource-name": {
|
|
346
|
+
readonly default: "The resource 'name' field should be marked with 'read' visibility and an @path decorator.";
|
|
347
|
+
};
|
|
348
|
+
"no-response-body": {
|
|
349
|
+
readonly default: "The body of 202 response should be empty.";
|
|
350
|
+
};
|
|
351
|
+
"beyond-nesting-levels": {
|
|
352
|
+
readonly default: "Tracked Resources must use 3 or fewer levels of nesting.";
|
|
353
|
+
};
|
|
354
|
+
"no-resource-delete-operation": {
|
|
355
|
+
readonly default: "The resource must have a delete operation.";
|
|
356
|
+
};
|
|
357
|
+
"patch-envelope": {
|
|
358
|
+
readonly default: import("@typespec/compiler").CallableMessage<["resourceName", "propertyName"]>;
|
|
359
|
+
};
|
|
360
|
+
"empty-updateable-properties": {
|
|
361
|
+
readonly default: "The RP-specific properties of the Resource (as defined in the 'properties' property) should have at least one updateable property. Properties are updateable if they do not have a '@visibility' decorator, or if they include 'update' in the '@visibility' decorator arguments.";
|
|
362
|
+
};
|
|
363
|
+
"retry-after": {
|
|
364
|
+
readonly default: "For long-running operations, the Retry-After header indicates how long the client should wait before polling the operation status, please add this header to the 201 or 202 response for this operation.";
|
|
365
|
+
};
|
|
366
|
+
"improper-subscription-list-operation": {
|
|
367
|
+
readonly default: "Tenant and Extension resources should not define a list by subscription operation.";
|
|
368
|
+
};
|
|
369
|
+
}, Record<string, any>>;
|
|
370
|
+
export declare const reportDiagnostic: <C extends "retry-after" | "single-arm-provider" | "decorator-param-wrong-type" | "missing-operations-endpoint" | "arm-resource-invalid-version-format" | "arm-resource-name-invalid-chars" | "arm-resource-key-invalid-chars" | "arm-resource-invalid-patch-model" | "arm-resource-path-segment-invalid-chars" | "arm-resource-invalid-envelope-property" | "arm-resource-duplicate-property" | "arm-resource-provisioning-state" | "arm-resource-provisioning-state-values" | "arm-resource-patch-missing-tags" | "arm-resource-operation-missing-decorator" | "arm-resource-interface-requires-decorator" | "arm-resource-circular-ancestry" | "arm-resource-duplicate-base-parameter" | "arm-resource-invalid-action-verb" | "arm-resource-action-no-segment" | "arm-resource-patch-model-superset" | "arm-resource-operation-missing-api-version" | "arm-resource-operation-outside-interface" | "arm-resource-operation-response" | "arm-resource-missing-name-property" | "arm-resource-missing-name-key-decorator" | "arm-resource-missing-name-segment-decorator" | "arm-resource-missing-arm-namespace" | "arm-resource-invalid-base-type" | "arm-resource-missing" | "decorator-in-namespace" | "parent-type" | "unsupported-type" | "resource-name" | "no-response-body" | "beyond-nesting-levels" | "no-resource-delete-operation" | "patch-envelope" | "empty-updateable-properties" | "improper-subscription-list-operation", M extends keyof {
|
|
371
|
+
"single-arm-provider": {
|
|
372
|
+
readonly default: "Only one @armProviderNamespace can be declared in a typespec spec at once.";
|
|
373
|
+
};
|
|
374
|
+
"decorator-param-wrong-type": {
|
|
375
|
+
readonly armUpdateProviderNamespace: "The parameter to @armUpdateProviderNamespace must be an operation with a 'provider' parameter.";
|
|
376
|
+
};
|
|
377
|
+
"missing-operations-endpoint": {
|
|
378
|
+
readonly default: import("@typespec/compiler").CallableMessage<["namespace"]>;
|
|
379
|
+
};
|
|
380
|
+
"arm-resource-invalid-version-format": {
|
|
381
|
+
readonly invalidType: import("@typespec/compiler").CallableMessage<[]>;
|
|
382
|
+
readonly default: import("@typespec/compiler").CallableMessage<["version"]>;
|
|
383
|
+
};
|
|
384
|
+
"arm-resource-name-invalid-chars": {
|
|
385
|
+
readonly default: "Arm resource name must contain only alphanumeric characters.";
|
|
386
|
+
};
|
|
387
|
+
"arm-resource-key-invalid-chars": {
|
|
388
|
+
readonly default: import("@typespec/compiler").CallableMessage<["key"]>;
|
|
389
|
+
};
|
|
390
|
+
"arm-resource-invalid-patch-model": {
|
|
391
|
+
readonly default: "The request body of a PATCH must be a model with a subset of resource properties";
|
|
392
|
+
};
|
|
393
|
+
"arm-resource-path-segment-invalid-chars": {
|
|
394
|
+
readonly default: import("@typespec/compiler").CallableMessage<["segment"]>;
|
|
395
|
+
};
|
|
396
|
+
"arm-resource-invalid-envelope-property": {
|
|
397
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
398
|
+
};
|
|
399
|
+
"arm-resource-duplicate-property": {
|
|
400
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
401
|
+
};
|
|
402
|
+
"arm-resource-provisioning-state": {
|
|
403
|
+
readonly default: "The RP-specific property model in the 'properties' property of this resource must contain a 'provisioningState property. The property type should be an enum, and it must specify known state values 'Succeeded', 'Failed', and 'Canceled'.";
|
|
404
|
+
};
|
|
405
|
+
"arm-resource-provisioning-state-values": {
|
|
406
|
+
readonly default: import("@typespec/compiler").CallableMessage<["missingValues"]>;
|
|
407
|
+
};
|
|
408
|
+
"arm-resource-patch-missing-tags": {
|
|
409
|
+
readonly default: "Resource PATCH must contain the 'tags' property.";
|
|
410
|
+
};
|
|
411
|
+
"arm-resource-operation-missing-decorator": {
|
|
412
|
+
readonly default: import("@typespec/compiler").CallableMessage<["verb", "decorator"]>;
|
|
413
|
+
};
|
|
414
|
+
"arm-resource-interface-requires-decorator": {
|
|
415
|
+
readonly default: "Each resource interface must have an @armResourceOperations decorator.";
|
|
416
|
+
};
|
|
417
|
+
"arm-resource-circular-ancestry": {
|
|
418
|
+
readonly default: "There is a loop in the ancestry of this resource. Please ensure that the `@parentResource` decorator contains the correct parent resource, and that parentage contains no cycles.";
|
|
419
|
+
};
|
|
420
|
+
"arm-resource-duplicate-base-parameter": {
|
|
421
|
+
readonly default: "Only one base parameter type is allowed per resource. Each resource may have only one of `@parentResource`, `@resourceGroupResource`, `@tenantResource`, `@locationResource`, or `@subscriptionResource` decorators.";
|
|
422
|
+
};
|
|
423
|
+
"arm-resource-invalid-action-verb": {
|
|
424
|
+
readonly default: "Actions must be HTTP Post operations.";
|
|
425
|
+
};
|
|
426
|
+
"arm-resource-action-no-segment": {
|
|
427
|
+
readonly default: "`@armResourceAction` should not be used with `@segment`. Instead, use `@action(...)` if you need to rename the action, or omit.";
|
|
428
|
+
};
|
|
429
|
+
"arm-resource-patch-model-superset": {
|
|
430
|
+
readonly default: import("@typespec/compiler").CallableMessage<["name", "resourceModel"]>;
|
|
431
|
+
};
|
|
432
|
+
"arm-resource-operation-missing-api-version": {
|
|
433
|
+
readonly default: "All Resource operations must use an api-version parameter. Please include Azure.ResourceManager.ApiVersionParameter in the operation parameter list using the spread (...ApiVersionParameter) operator, or using one of the common resource parameter models.";
|
|
434
|
+
};
|
|
435
|
+
"arm-resource-operation-outside-interface": {
|
|
436
|
+
readonly default: "All operations must be inside an interface declaration.";
|
|
437
|
+
};
|
|
438
|
+
"arm-resource-operation-response": {
|
|
439
|
+
readonly default: "[RPC 008]: PUT, GET, PATCH & LIST must return the same resource schema.";
|
|
440
|
+
};
|
|
441
|
+
"arm-resource-missing-name-property": {
|
|
442
|
+
readonly default: "Resource types must include a string property called 'name'.";
|
|
443
|
+
};
|
|
444
|
+
"arm-resource-missing-name-key-decorator": {
|
|
445
|
+
readonly default: "Resource type 'name' property must have a @key decorator which defines its key name.";
|
|
446
|
+
};
|
|
447
|
+
"arm-resource-missing-name-segment-decorator": {
|
|
448
|
+
readonly default: "Resource type 'name' property must have a @segment decorator which defines its path fragment.";
|
|
449
|
+
};
|
|
450
|
+
"arm-resource-missing-arm-namespace": {
|
|
451
|
+
readonly default: "The @armProviderNamespace decorator must be used to define the ARM namespace of the service. This is best applied to the file-level namespace.";
|
|
452
|
+
};
|
|
453
|
+
"arm-resource-invalid-base-type": {
|
|
454
|
+
readonly default: "The @armResourceInternal decorator can only be used on a type that ultimately extends TrackedResource, ProxyResource, or ExtensionResource.";
|
|
455
|
+
};
|
|
456
|
+
"arm-resource-missing": {
|
|
457
|
+
readonly default: import("@typespec/compiler").CallableMessage<["type"]>;
|
|
458
|
+
};
|
|
459
|
+
"decorator-in-namespace": {
|
|
460
|
+
readonly default: import("@typespec/compiler").CallableMessage<["decoratorName"]>;
|
|
461
|
+
};
|
|
462
|
+
"parent-type": {
|
|
463
|
+
readonly notResourceType: import("@typespec/compiler").CallableMessage<["parent", "type"]>;
|
|
464
|
+
};
|
|
465
|
+
"unsupported-type": {
|
|
466
|
+
readonly default: import("@typespec/compiler").CallableMessage<["typeName"]>;
|
|
467
|
+
};
|
|
468
|
+
"resource-name": {
|
|
469
|
+
readonly default: "The resource 'name' field should be marked with 'read' visibility and an @path decorator.";
|
|
470
|
+
};
|
|
471
|
+
"no-response-body": {
|
|
472
|
+
readonly default: "The body of 202 response should be empty.";
|
|
473
|
+
};
|
|
474
|
+
"beyond-nesting-levels": {
|
|
475
|
+
readonly default: "Tracked Resources must use 3 or fewer levels of nesting.";
|
|
476
|
+
};
|
|
477
|
+
"no-resource-delete-operation": {
|
|
478
|
+
readonly default: "The resource must have a delete operation.";
|
|
479
|
+
};
|
|
480
|
+
"patch-envelope": {
|
|
481
|
+
readonly default: import("@typespec/compiler").CallableMessage<["resourceName", "propertyName"]>;
|
|
482
|
+
};
|
|
483
|
+
"empty-updateable-properties": {
|
|
484
|
+
readonly default: "The RP-specific properties of the Resource (as defined in the 'properties' property) should have at least one updateable property. Properties are updateable if they do not have a '@visibility' decorator, or if they include 'update' in the '@visibility' decorator arguments.";
|
|
485
|
+
};
|
|
486
|
+
"retry-after": {
|
|
487
|
+
readonly default: "For long-running operations, the Retry-After header indicates how long the client should wait before polling the operation status, please add this header to the 201 or 202 response for this operation.";
|
|
488
|
+
};
|
|
489
|
+
"improper-subscription-list-operation": {
|
|
490
|
+
readonly default: "Tenant and Extension resources should not define a list by subscription operation.";
|
|
491
|
+
};
|
|
492
|
+
}[C]>(program: import("@typespec/compiler").Program, diag: import("@typespec/compiler").DiagnosticReport<{
|
|
493
|
+
"single-arm-provider": {
|
|
494
|
+
readonly default: "Only one @armProviderNamespace can be declared in a typespec spec at once.";
|
|
495
|
+
};
|
|
496
|
+
"decorator-param-wrong-type": {
|
|
497
|
+
readonly armUpdateProviderNamespace: "The parameter to @armUpdateProviderNamespace must be an operation with a 'provider' parameter.";
|
|
498
|
+
};
|
|
499
|
+
"missing-operations-endpoint": {
|
|
500
|
+
readonly default: import("@typespec/compiler").CallableMessage<["namespace"]>;
|
|
501
|
+
};
|
|
502
|
+
"arm-resource-invalid-version-format": {
|
|
503
|
+
readonly invalidType: import("@typespec/compiler").CallableMessage<[]>;
|
|
504
|
+
readonly default: import("@typespec/compiler").CallableMessage<["version"]>;
|
|
505
|
+
};
|
|
506
|
+
"arm-resource-name-invalid-chars": {
|
|
507
|
+
readonly default: "Arm resource name must contain only alphanumeric characters.";
|
|
508
|
+
};
|
|
509
|
+
"arm-resource-key-invalid-chars": {
|
|
510
|
+
readonly default: import("@typespec/compiler").CallableMessage<["key"]>;
|
|
511
|
+
};
|
|
512
|
+
"arm-resource-invalid-patch-model": {
|
|
513
|
+
readonly default: "The request body of a PATCH must be a model with a subset of resource properties";
|
|
514
|
+
};
|
|
515
|
+
"arm-resource-path-segment-invalid-chars": {
|
|
516
|
+
readonly default: import("@typespec/compiler").CallableMessage<["segment"]>;
|
|
517
|
+
};
|
|
518
|
+
"arm-resource-invalid-envelope-property": {
|
|
519
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
520
|
+
};
|
|
521
|
+
"arm-resource-duplicate-property": {
|
|
522
|
+
readonly default: import("@typespec/compiler").CallableMessage<["propertyName"]>;
|
|
523
|
+
};
|
|
524
|
+
"arm-resource-provisioning-state": {
|
|
525
|
+
readonly default: "The RP-specific property model in the 'properties' property of this resource must contain a 'provisioningState property. The property type should be an enum, and it must specify known state values 'Succeeded', 'Failed', and 'Canceled'.";
|
|
526
|
+
};
|
|
527
|
+
"arm-resource-provisioning-state-values": {
|
|
528
|
+
readonly default: import("@typespec/compiler").CallableMessage<["missingValues"]>;
|
|
529
|
+
};
|
|
530
|
+
"arm-resource-patch-missing-tags": {
|
|
531
|
+
readonly default: "Resource PATCH must contain the 'tags' property.";
|
|
532
|
+
};
|
|
533
|
+
"arm-resource-operation-missing-decorator": {
|
|
534
|
+
readonly default: import("@typespec/compiler").CallableMessage<["verb", "decorator"]>;
|
|
535
|
+
};
|
|
536
|
+
"arm-resource-interface-requires-decorator": {
|
|
537
|
+
readonly default: "Each resource interface must have an @armResourceOperations decorator.";
|
|
538
|
+
};
|
|
539
|
+
"arm-resource-circular-ancestry": {
|
|
540
|
+
readonly default: "There is a loop in the ancestry of this resource. Please ensure that the `@parentResource` decorator contains the correct parent resource, and that parentage contains no cycles.";
|
|
541
|
+
};
|
|
542
|
+
"arm-resource-duplicate-base-parameter": {
|
|
543
|
+
readonly default: "Only one base parameter type is allowed per resource. Each resource may have only one of `@parentResource`, `@resourceGroupResource`, `@tenantResource`, `@locationResource`, or `@subscriptionResource` decorators.";
|
|
544
|
+
};
|
|
545
|
+
"arm-resource-invalid-action-verb": {
|
|
546
|
+
readonly default: "Actions must be HTTP Post operations.";
|
|
547
|
+
};
|
|
548
|
+
"arm-resource-action-no-segment": {
|
|
549
|
+
readonly default: "`@armResourceAction` should not be used with `@segment`. Instead, use `@action(...)` if you need to rename the action, or omit.";
|
|
550
|
+
};
|
|
551
|
+
"arm-resource-patch-model-superset": {
|
|
552
|
+
readonly default: import("@typespec/compiler").CallableMessage<["name", "resourceModel"]>;
|
|
553
|
+
};
|
|
554
|
+
"arm-resource-operation-missing-api-version": {
|
|
555
|
+
readonly default: "All Resource operations must use an api-version parameter. Please include Azure.ResourceManager.ApiVersionParameter in the operation parameter list using the spread (...ApiVersionParameter) operator, or using one of the common resource parameter models.";
|
|
556
|
+
};
|
|
557
|
+
"arm-resource-operation-outside-interface": {
|
|
558
|
+
readonly default: "All operations must be inside an interface declaration.";
|
|
559
|
+
};
|
|
560
|
+
"arm-resource-operation-response": {
|
|
561
|
+
readonly default: "[RPC 008]: PUT, GET, PATCH & LIST must return the same resource schema.";
|
|
562
|
+
};
|
|
563
|
+
"arm-resource-missing-name-property": {
|
|
564
|
+
readonly default: "Resource types must include a string property called 'name'.";
|
|
565
|
+
};
|
|
566
|
+
"arm-resource-missing-name-key-decorator": {
|
|
567
|
+
readonly default: "Resource type 'name' property must have a @key decorator which defines its key name.";
|
|
568
|
+
};
|
|
569
|
+
"arm-resource-missing-name-segment-decorator": {
|
|
570
|
+
readonly default: "Resource type 'name' property must have a @segment decorator which defines its path fragment.";
|
|
571
|
+
};
|
|
572
|
+
"arm-resource-missing-arm-namespace": {
|
|
573
|
+
readonly default: "The @armProviderNamespace decorator must be used to define the ARM namespace of the service. This is best applied to the file-level namespace.";
|
|
574
|
+
};
|
|
575
|
+
"arm-resource-invalid-base-type": {
|
|
576
|
+
readonly default: "The @armResourceInternal decorator can only be used on a type that ultimately extends TrackedResource, ProxyResource, or ExtensionResource.";
|
|
577
|
+
};
|
|
578
|
+
"arm-resource-missing": {
|
|
579
|
+
readonly default: import("@typespec/compiler").CallableMessage<["type"]>;
|
|
580
|
+
};
|
|
581
|
+
"decorator-in-namespace": {
|
|
582
|
+
readonly default: import("@typespec/compiler").CallableMessage<["decoratorName"]>;
|
|
583
|
+
};
|
|
584
|
+
"parent-type": {
|
|
585
|
+
readonly notResourceType: import("@typespec/compiler").CallableMessage<["parent", "type"]>;
|
|
586
|
+
};
|
|
587
|
+
"unsupported-type": {
|
|
588
|
+
readonly default: import("@typespec/compiler").CallableMessage<["typeName"]>;
|
|
589
|
+
};
|
|
590
|
+
"resource-name": {
|
|
591
|
+
readonly default: "The resource 'name' field should be marked with 'read' visibility and an @path decorator.";
|
|
592
|
+
};
|
|
593
|
+
"no-response-body": {
|
|
594
|
+
readonly default: "The body of 202 response should be empty.";
|
|
595
|
+
};
|
|
596
|
+
"beyond-nesting-levels": {
|
|
597
|
+
readonly default: "Tracked Resources must use 3 or fewer levels of nesting.";
|
|
598
|
+
};
|
|
599
|
+
"no-resource-delete-operation": {
|
|
600
|
+
readonly default: "The resource must have a delete operation.";
|
|
601
|
+
};
|
|
602
|
+
"patch-envelope": {
|
|
603
|
+
readonly default: import("@typespec/compiler").CallableMessage<["resourceName", "propertyName"]>;
|
|
604
|
+
};
|
|
605
|
+
"empty-updateable-properties": {
|
|
606
|
+
readonly default: "The RP-specific properties of the Resource (as defined in the 'properties' property) should have at least one updateable property. Properties are updateable if they do not have a '@visibility' decorator, or if they include 'update' in the '@visibility' decorator arguments.";
|
|
607
|
+
};
|
|
608
|
+
"retry-after": {
|
|
609
|
+
readonly default: "For long-running operations, the Retry-After header indicates how long the client should wait before polling the operation status, please add this header to the 201 or 202 response for this operation.";
|
|
610
|
+
};
|
|
611
|
+
"improper-subscription-list-operation": {
|
|
612
|
+
readonly default: "Tenant and Extension resources should not define a list by subscription operation.";
|
|
613
|
+
};
|
|
614
|
+
}, C, M>) => void, createStateSymbol: (name: string) => symbol;
|
|
615
|
+
//# sourceMappingURL=lib.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lib.d.ts","sourceRoot":"","sources":["../../src/lib.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+PT,CAAC;AACX,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAAgC,CAAC;AAClD,eAAO,MAAQ,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAE,iBAAiB,0BAAS,CAAC"}
|