@seamapi/types 1.519.0 → 1.521.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/dist/connect.cjs +68 -40
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +101 -49
- package/dist/index.cjs +68 -40
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +18 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js +4 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +76 -44
- package/lib/seam/connect/openapi.js +66 -38
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +75 -40
- package/src/lib/seam/connect/route-types.ts +28 -7
|
@@ -50,6 +50,7 @@ export declare const reservation_resource: z.ZodObject<{
|
|
|
50
50
|
name: z.ZodOptional<z.ZodString>;
|
|
51
51
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
52
52
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
53
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
53
54
|
} & {
|
|
54
55
|
reservation_key: z.ZodString;
|
|
55
56
|
} & {
|
|
@@ -73,6 +74,7 @@ export declare const reservation_resource: z.ZodObject<{
|
|
|
73
74
|
starts_at?: string | undefined;
|
|
74
75
|
ends_at?: string | undefined;
|
|
75
76
|
user_identity_key?: string | undefined;
|
|
77
|
+
preferred_code?: string | undefined;
|
|
76
78
|
guest_key?: string | undefined;
|
|
77
79
|
tenant_key?: string | undefined;
|
|
78
80
|
resident_key?: string | undefined;
|
|
@@ -91,6 +93,7 @@ export declare const reservation_resource: z.ZodObject<{
|
|
|
91
93
|
starts_at?: string | undefined;
|
|
92
94
|
ends_at?: string | undefined;
|
|
93
95
|
user_identity_key?: string | undefined;
|
|
96
|
+
preferred_code?: string | undefined;
|
|
94
97
|
guest_key?: string | undefined;
|
|
95
98
|
tenant_key?: string | undefined;
|
|
96
99
|
resident_key?: string | undefined;
|
|
@@ -108,6 +111,7 @@ export declare const booking_resource: z.ZodObject<{
|
|
|
108
111
|
name: z.ZodOptional<z.ZodString>;
|
|
109
112
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
110
113
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
114
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
111
115
|
} & {
|
|
112
116
|
booking_key: z.ZodString;
|
|
113
117
|
} & {
|
|
@@ -131,6 +135,7 @@ export declare const booking_resource: z.ZodObject<{
|
|
|
131
135
|
starts_at?: string | undefined;
|
|
132
136
|
ends_at?: string | undefined;
|
|
133
137
|
user_identity_key?: string | undefined;
|
|
138
|
+
preferred_code?: string | undefined;
|
|
134
139
|
guest_key?: string | undefined;
|
|
135
140
|
tenant_key?: string | undefined;
|
|
136
141
|
resident_key?: string | undefined;
|
|
@@ -149,6 +154,7 @@ export declare const booking_resource: z.ZodObject<{
|
|
|
149
154
|
starts_at?: string | undefined;
|
|
150
155
|
ends_at?: string | undefined;
|
|
151
156
|
user_identity_key?: string | undefined;
|
|
157
|
+
preferred_code?: string | undefined;
|
|
152
158
|
guest_key?: string | undefined;
|
|
153
159
|
tenant_key?: string | undefined;
|
|
154
160
|
resident_key?: string | undefined;
|
|
@@ -166,6 +172,7 @@ export declare const access_grant_resource: z.ZodObject<{
|
|
|
166
172
|
name: z.ZodOptional<z.ZodString>;
|
|
167
173
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
168
174
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
175
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
169
176
|
} & {
|
|
170
177
|
access_grant_key: z.ZodString;
|
|
171
178
|
} & {
|
|
@@ -189,6 +196,7 @@ export declare const access_grant_resource: z.ZodObject<{
|
|
|
189
196
|
starts_at?: string | undefined;
|
|
190
197
|
ends_at?: string | undefined;
|
|
191
198
|
user_identity_key?: string | undefined;
|
|
199
|
+
preferred_code?: string | undefined;
|
|
192
200
|
guest_key?: string | undefined;
|
|
193
201
|
tenant_key?: string | undefined;
|
|
194
202
|
resident_key?: string | undefined;
|
|
@@ -207,6 +215,7 @@ export declare const access_grant_resource: z.ZodObject<{
|
|
|
207
215
|
starts_at?: string | undefined;
|
|
208
216
|
ends_at?: string | undefined;
|
|
209
217
|
user_identity_key?: string | undefined;
|
|
218
|
+
preferred_code?: string | undefined;
|
|
210
219
|
guest_key?: string | undefined;
|
|
211
220
|
tenant_key?: string | undefined;
|
|
212
221
|
resident_key?: string | undefined;
|
|
@@ -224,6 +233,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
224
233
|
name: z.ZodOptional<z.ZodString>;
|
|
225
234
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
226
235
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
236
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
227
237
|
} & {
|
|
228
238
|
reservation_key: z.ZodString;
|
|
229
239
|
} & {
|
|
@@ -247,6 +257,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
247
257
|
starts_at?: string | undefined;
|
|
248
258
|
ends_at?: string | undefined;
|
|
249
259
|
user_identity_key?: string | undefined;
|
|
260
|
+
preferred_code?: string | undefined;
|
|
250
261
|
guest_key?: string | undefined;
|
|
251
262
|
tenant_key?: string | undefined;
|
|
252
263
|
resident_key?: string | undefined;
|
|
@@ -265,6 +276,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
265
276
|
starts_at?: string | undefined;
|
|
266
277
|
ends_at?: string | undefined;
|
|
267
278
|
user_identity_key?: string | undefined;
|
|
279
|
+
preferred_code?: string | undefined;
|
|
268
280
|
guest_key?: string | undefined;
|
|
269
281
|
tenant_key?: string | undefined;
|
|
270
282
|
resident_key?: string | undefined;
|
|
@@ -281,6 +293,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
281
293
|
name: z.ZodOptional<z.ZodString>;
|
|
282
294
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
283
295
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
296
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
284
297
|
} & {
|
|
285
298
|
booking_key: z.ZodString;
|
|
286
299
|
} & {
|
|
@@ -304,6 +317,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
304
317
|
starts_at?: string | undefined;
|
|
305
318
|
ends_at?: string | undefined;
|
|
306
319
|
user_identity_key?: string | undefined;
|
|
320
|
+
preferred_code?: string | undefined;
|
|
307
321
|
guest_key?: string | undefined;
|
|
308
322
|
tenant_key?: string | undefined;
|
|
309
323
|
resident_key?: string | undefined;
|
|
@@ -322,6 +336,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
322
336
|
starts_at?: string | undefined;
|
|
323
337
|
ends_at?: string | undefined;
|
|
324
338
|
user_identity_key?: string | undefined;
|
|
339
|
+
preferred_code?: string | undefined;
|
|
325
340
|
guest_key?: string | undefined;
|
|
326
341
|
tenant_key?: string | undefined;
|
|
327
342
|
resident_key?: string | undefined;
|
|
@@ -338,6 +353,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
338
353
|
name: z.ZodOptional<z.ZodString>;
|
|
339
354
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
340
355
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
356
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
341
357
|
} & {
|
|
342
358
|
access_grant_key: z.ZodString;
|
|
343
359
|
} & {
|
|
@@ -361,6 +377,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
361
377
|
starts_at?: string | undefined;
|
|
362
378
|
ends_at?: string | undefined;
|
|
363
379
|
user_identity_key?: string | undefined;
|
|
380
|
+
preferred_code?: string | undefined;
|
|
364
381
|
guest_key?: string | undefined;
|
|
365
382
|
tenant_key?: string | undefined;
|
|
366
383
|
resident_key?: string | undefined;
|
|
@@ -379,6 +396,7 @@ export declare const access_grant_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
379
396
|
starts_at?: string | undefined;
|
|
380
397
|
ends_at?: string | undefined;
|
|
381
398
|
user_identity_key?: string | undefined;
|
|
399
|
+
preferred_code?: string | undefined;
|
|
382
400
|
guest_key?: string | undefined;
|
|
383
401
|
tenant_key?: string | undefined;
|
|
384
402
|
resident_key?: string | undefined;
|
|
@@ -13,6 +13,10 @@ const base_access_grant_resource = z.object({
|
|
|
13
13
|
.string()
|
|
14
14
|
.optional()
|
|
15
15
|
.describe('Ending date and time for the access grant.'),
|
|
16
|
+
preferred_code: z
|
|
17
|
+
.string()
|
|
18
|
+
.optional()
|
|
19
|
+
.describe('Preferred PIN code to use when creating access for this reservation.'),
|
|
16
20
|
});
|
|
17
21
|
// User identity key reference - allows any user identity key alias
|
|
18
22
|
export const user_identity_reference = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grant-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/access-grant-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,gDAAgD;AAChD,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,2CAA2C,CAAC;IACxD,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,4CAA4C,CAAC;
|
|
1
|
+
{"version":3,"file":"access-grant-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/access-grant-resources.ts"],"names":[],"mappings":"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"}
|
|
@@ -189,6 +189,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
189
189
|
name: z.ZodOptional<z.ZodString>;
|
|
190
190
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
191
191
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
192
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
192
193
|
} & {
|
|
193
194
|
reservation_key: z.ZodString;
|
|
194
195
|
} & {
|
|
@@ -212,6 +213,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
212
213
|
starts_at?: string | undefined;
|
|
213
214
|
ends_at?: string | undefined;
|
|
214
215
|
user_identity_key?: string | undefined;
|
|
216
|
+
preferred_code?: string | undefined;
|
|
215
217
|
guest_key?: string | undefined;
|
|
216
218
|
tenant_key?: string | undefined;
|
|
217
219
|
resident_key?: string | undefined;
|
|
@@ -230,6 +232,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
230
232
|
starts_at?: string | undefined;
|
|
231
233
|
ends_at?: string | undefined;
|
|
232
234
|
user_identity_key?: string | undefined;
|
|
235
|
+
preferred_code?: string | undefined;
|
|
233
236
|
guest_key?: string | undefined;
|
|
234
237
|
tenant_key?: string | undefined;
|
|
235
238
|
resident_key?: string | undefined;
|
|
@@ -247,6 +250,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
247
250
|
name: z.ZodOptional<z.ZodString>;
|
|
248
251
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
249
252
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
253
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
250
254
|
} & {
|
|
251
255
|
booking_key: z.ZodString;
|
|
252
256
|
} & {
|
|
@@ -270,6 +274,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
270
274
|
starts_at?: string | undefined;
|
|
271
275
|
ends_at?: string | undefined;
|
|
272
276
|
user_identity_key?: string | undefined;
|
|
277
|
+
preferred_code?: string | undefined;
|
|
273
278
|
guest_key?: string | undefined;
|
|
274
279
|
tenant_key?: string | undefined;
|
|
275
280
|
resident_key?: string | undefined;
|
|
@@ -288,6 +293,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
288
293
|
starts_at?: string | undefined;
|
|
289
294
|
ends_at?: string | undefined;
|
|
290
295
|
user_identity_key?: string | undefined;
|
|
296
|
+
preferred_code?: string | undefined;
|
|
291
297
|
guest_key?: string | undefined;
|
|
292
298
|
tenant_key?: string | undefined;
|
|
293
299
|
resident_key?: string | undefined;
|
|
@@ -305,6 +311,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
305
311
|
name: z.ZodOptional<z.ZodString>;
|
|
306
312
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
307
313
|
ends_at: z.ZodOptional<z.ZodString>;
|
|
314
|
+
preferred_code: z.ZodOptional<z.ZodString>;
|
|
308
315
|
} & {
|
|
309
316
|
access_grant_key: z.ZodString;
|
|
310
317
|
} & {
|
|
@@ -328,6 +335,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
328
335
|
starts_at?: string | undefined;
|
|
329
336
|
ends_at?: string | undefined;
|
|
330
337
|
user_identity_key?: string | undefined;
|
|
338
|
+
preferred_code?: string | undefined;
|
|
331
339
|
guest_key?: string | undefined;
|
|
332
340
|
tenant_key?: string | undefined;
|
|
333
341
|
resident_key?: string | undefined;
|
|
@@ -346,6 +354,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
346
354
|
starts_at?: string | undefined;
|
|
347
355
|
ends_at?: string | undefined;
|
|
348
356
|
user_identity_key?: string | undefined;
|
|
357
|
+
preferred_code?: string | undefined;
|
|
349
358
|
guest_key?: string | undefined;
|
|
350
359
|
tenant_key?: string | undefined;
|
|
351
360
|
resident_key?: string | undefined;
|
|
@@ -375,6 +384,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
375
384
|
starts_at?: string | undefined;
|
|
376
385
|
ends_at?: string | undefined;
|
|
377
386
|
user_identity_key?: string | undefined;
|
|
387
|
+
preferred_code?: string | undefined;
|
|
378
388
|
guest_key?: string | undefined;
|
|
379
389
|
tenant_key?: string | undefined;
|
|
380
390
|
resident_key?: string | undefined;
|
|
@@ -452,6 +462,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
452
462
|
starts_at?: string | undefined;
|
|
453
463
|
ends_at?: string | undefined;
|
|
454
464
|
user_identity_key?: string | undefined;
|
|
465
|
+
preferred_code?: string | undefined;
|
|
455
466
|
guest_key?: string | undefined;
|
|
456
467
|
tenant_key?: string | undefined;
|
|
457
468
|
resident_key?: string | undefined;
|
|
@@ -471,6 +482,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
471
482
|
starts_at?: string | undefined;
|
|
472
483
|
ends_at?: string | undefined;
|
|
473
484
|
user_identity_key?: string | undefined;
|
|
485
|
+
preferred_code?: string | undefined;
|
|
474
486
|
guest_key?: string | undefined;
|
|
475
487
|
tenant_key?: string | undefined;
|
|
476
488
|
resident_key?: string | undefined;
|
|
@@ -500,6 +512,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
500
512
|
starts_at?: string | undefined;
|
|
501
513
|
ends_at?: string | undefined;
|
|
502
514
|
user_identity_key?: string | undefined;
|
|
515
|
+
preferred_code?: string | undefined;
|
|
503
516
|
guest_key?: string | undefined;
|
|
504
517
|
tenant_key?: string | undefined;
|
|
505
518
|
resident_key?: string | undefined;
|
|
@@ -577,6 +590,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
577
590
|
starts_at?: string | undefined;
|
|
578
591
|
ends_at?: string | undefined;
|
|
579
592
|
user_identity_key?: string | undefined;
|
|
593
|
+
preferred_code?: string | undefined;
|
|
580
594
|
guest_key?: string | undefined;
|
|
581
595
|
tenant_key?: string | undefined;
|
|
582
596
|
resident_key?: string | undefined;
|
|
@@ -596,6 +610,7 @@ export declare const customer_data: z.ZodObject<{
|
|
|
596
610
|
starts_at?: string | undefined;
|
|
597
611
|
ends_at?: string | undefined;
|
|
598
612
|
user_identity_key?: string | undefined;
|
|
613
|
+
preferred_code?: string | undefined;
|
|
599
614
|
guest_key?: string | undefined;
|
|
600
615
|
tenant_key?: string | undefined;
|
|
601
616
|
resident_key?: string | undefined;
|
|
@@ -22032,6 +22032,9 @@ declare const _default: {
|
|
|
22032
22032
|
ok: {
|
|
22033
22033
|
type: string;
|
|
22034
22034
|
};
|
|
22035
|
+
pagination: {
|
|
22036
|
+
$ref: string;
|
|
22037
|
+
};
|
|
22035
22038
|
};
|
|
22036
22039
|
required: string[];
|
|
22037
22040
|
type: string;
|
|
@@ -22075,66 +22078,68 @@ declare const _default: {
|
|
|
22075
22078
|
content: {
|
|
22076
22079
|
'application/json': {
|
|
22077
22080
|
schema: {
|
|
22078
|
-
|
|
22079
|
-
|
|
22080
|
-
|
|
22081
|
-
|
|
22082
|
-
|
|
22083
|
-
type: string;
|
|
22084
|
-
};
|
|
22085
|
-
limit: {
|
|
22086
|
-
default: number;
|
|
22087
|
-
description: string;
|
|
22088
|
-
format: string;
|
|
22089
|
-
type: string;
|
|
22090
|
-
};
|
|
22091
|
-
acs_system_ids?: never;
|
|
22092
|
-
acs_encoder_ids?: never;
|
|
22093
|
-
};
|
|
22094
|
-
required: string[];
|
|
22095
|
-
type: string;
|
|
22096
|
-
} | {
|
|
22097
|
-
properties: {
|
|
22098
|
-
acs_system_ids: {
|
|
22099
|
-
description: string;
|
|
22100
|
-
items: {
|
|
22081
|
+
allOf: ({
|
|
22082
|
+
oneOf: ({
|
|
22083
|
+
properties: {
|
|
22084
|
+
acs_system_id: {
|
|
22085
|
+
description: string;
|
|
22101
22086
|
format: string;
|
|
22102
22087
|
type: string;
|
|
22103
22088
|
};
|
|
22104
|
-
|
|
22089
|
+
acs_system_ids?: never;
|
|
22090
|
+
acs_encoder_ids?: never;
|
|
22105
22091
|
};
|
|
22106
|
-
|
|
22107
|
-
|
|
22108
|
-
|
|
22109
|
-
|
|
22110
|
-
|
|
22092
|
+
required: string[];
|
|
22093
|
+
type: string;
|
|
22094
|
+
} | {
|
|
22095
|
+
properties: {
|
|
22096
|
+
acs_system_ids: {
|
|
22097
|
+
description: string;
|
|
22098
|
+
items: {
|
|
22099
|
+
format: string;
|
|
22100
|
+
type: string;
|
|
22101
|
+
};
|
|
22102
|
+
type: string;
|
|
22103
|
+
};
|
|
22104
|
+
acs_system_id?: never;
|
|
22105
|
+
acs_encoder_ids?: never;
|
|
22111
22106
|
};
|
|
22112
|
-
|
|
22113
|
-
|
|
22114
|
-
}
|
|
22115
|
-
|
|
22116
|
-
|
|
22117
|
-
|
|
22118
|
-
|
|
22119
|
-
|
|
22120
|
-
|
|
22121
|
-
|
|
22122
|
-
format: string;
|
|
22107
|
+
required: string[];
|
|
22108
|
+
type: string;
|
|
22109
|
+
} | {
|
|
22110
|
+
properties: {
|
|
22111
|
+
acs_encoder_ids: {
|
|
22112
|
+
description: string;
|
|
22113
|
+
items: {
|
|
22114
|
+
format: string;
|
|
22115
|
+
type: string;
|
|
22116
|
+
};
|
|
22123
22117
|
type: string;
|
|
22124
22118
|
};
|
|
22125
|
-
|
|
22119
|
+
acs_system_id?: never;
|
|
22120
|
+
acs_system_ids?: never;
|
|
22126
22121
|
};
|
|
22122
|
+
required: string[];
|
|
22123
|
+
type: string;
|
|
22124
|
+
})[];
|
|
22125
|
+
properties?: never;
|
|
22126
|
+
type?: never;
|
|
22127
|
+
} | {
|
|
22128
|
+
properties: {
|
|
22127
22129
|
limit: {
|
|
22128
22130
|
default: number;
|
|
22129
22131
|
description: string;
|
|
22130
22132
|
format: string;
|
|
22131
22133
|
type: string;
|
|
22132
22134
|
};
|
|
22133
|
-
|
|
22134
|
-
|
|
22135
|
+
page_cursor: {
|
|
22136
|
+
description: string;
|
|
22137
|
+
nullable: boolean;
|
|
22138
|
+
type: string;
|
|
22139
|
+
};
|
|
22135
22140
|
};
|
|
22136
|
-
required: string[];
|
|
22137
22141
|
type: string;
|
|
22142
|
+
oneOf?: never;
|
|
22138
22143
|
})[];
|
|
22139
22144
|
};
|
|
22140
22145
|
};
|
|
@@ -22155,6 +22160,9 @@ declare const _default: {
|
|
|
22155
22160
|
ok: {
|
|
22156
22161
|
type: string;
|
|
22157
22162
|
};
|
|
22163
|
+
pagination: {
|
|
22164
|
+
$ref: string;
|
|
22165
|
+
};
|
|
22158
22166
|
};
|
|
22159
22167
|
required: string[];
|
|
22160
22168
|
type: string;
|
|
@@ -28927,6 +28935,10 @@ declare const _default: {
|
|
|
28927
28935
|
description: string;
|
|
28928
28936
|
type: string;
|
|
28929
28937
|
};
|
|
28938
|
+
preferred_code: {
|
|
28939
|
+
description: string;
|
|
28940
|
+
type: string;
|
|
28941
|
+
};
|
|
28930
28942
|
property_keys: {
|
|
28931
28943
|
description: string;
|
|
28932
28944
|
items: {
|
|
@@ -29029,6 +29041,10 @@ declare const _default: {
|
|
|
29029
29041
|
description: string;
|
|
29030
29042
|
type: string;
|
|
29031
29043
|
};
|
|
29044
|
+
preferred_code: {
|
|
29045
|
+
description: string;
|
|
29046
|
+
type: string;
|
|
29047
|
+
};
|
|
29032
29048
|
property_keys: {
|
|
29033
29049
|
description: string;
|
|
29034
29050
|
items: {
|
|
@@ -29265,6 +29281,10 @@ declare const _default: {
|
|
|
29265
29281
|
description: string;
|
|
29266
29282
|
type: string;
|
|
29267
29283
|
};
|
|
29284
|
+
preferred_code: {
|
|
29285
|
+
description: string;
|
|
29286
|
+
type: string;
|
|
29287
|
+
};
|
|
29268
29288
|
property_keys: {
|
|
29269
29289
|
description: string;
|
|
29270
29290
|
items: {
|
|
@@ -29839,6 +29859,10 @@ declare const _default: {
|
|
|
29839
29859
|
description: string;
|
|
29840
29860
|
type: string;
|
|
29841
29861
|
};
|
|
29862
|
+
preferred_code: {
|
|
29863
|
+
description: string;
|
|
29864
|
+
type: string;
|
|
29865
|
+
};
|
|
29842
29866
|
property_keys: {
|
|
29843
29867
|
description: string;
|
|
29844
29868
|
items: {
|
|
@@ -29941,6 +29965,10 @@ declare const _default: {
|
|
|
29941
29965
|
description: string;
|
|
29942
29966
|
type: string;
|
|
29943
29967
|
};
|
|
29968
|
+
preferred_code: {
|
|
29969
|
+
description: string;
|
|
29970
|
+
type: string;
|
|
29971
|
+
};
|
|
29944
29972
|
property_keys: {
|
|
29945
29973
|
description: string;
|
|
29946
29974
|
items: {
|
|
@@ -30177,6 +30205,10 @@ declare const _default: {
|
|
|
30177
30205
|
description: string;
|
|
30178
30206
|
type: string;
|
|
30179
30207
|
};
|
|
30208
|
+
preferred_code: {
|
|
30209
|
+
description: string;
|
|
30210
|
+
type: string;
|
|
30211
|
+
};
|
|
30180
30212
|
property_keys: {
|
|
30181
30213
|
description: string;
|
|
30182
30214
|
items: {
|