@seamapi/types 1.410.2 → 1.411.1
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 +197 -819
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +459 -1036
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/partner/magic-link.d.ts +4 -4
- package/lib/seam/connect/models/partner/magic-link.js +1 -0
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -1
- package/lib/seam/connect/models/partner/resources.d.ts +17 -0
- package/lib/seam/connect/models/partner/resources.js +11 -0
- package/lib/seam/connect/models/partner/resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +178 -745
- package/lib/seam/connect/openapi.js +193 -816
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -22
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/partner/magic-link.ts +1 -0
- package/src/lib/seam/connect/models/partner/resources.ts +15 -0
- package/src/lib/seam/connect/openapi.ts +207 -904
- package/src/lib/seam/connect/route-types.ts +26 -31
|
@@ -258,6 +258,140 @@ declare const _default: {
|
|
|
258
258
|
type: string;
|
|
259
259
|
'x-route-path': string;
|
|
260
260
|
};
|
|
261
|
+
access_grant: {
|
|
262
|
+
properties: {
|
|
263
|
+
access_grant_id: {
|
|
264
|
+
description: string;
|
|
265
|
+
format: string;
|
|
266
|
+
type: string;
|
|
267
|
+
};
|
|
268
|
+
access_method_ids: {
|
|
269
|
+
description: string;
|
|
270
|
+
items: {
|
|
271
|
+
format: string;
|
|
272
|
+
type: string;
|
|
273
|
+
};
|
|
274
|
+
type: string;
|
|
275
|
+
};
|
|
276
|
+
created_at: {
|
|
277
|
+
description: string;
|
|
278
|
+
format: string;
|
|
279
|
+
type: string;
|
|
280
|
+
};
|
|
281
|
+
display_name: {
|
|
282
|
+
description: string;
|
|
283
|
+
type: string;
|
|
284
|
+
};
|
|
285
|
+
location_ids: {
|
|
286
|
+
deprecated: boolean;
|
|
287
|
+
items: {
|
|
288
|
+
format: string;
|
|
289
|
+
type: string;
|
|
290
|
+
};
|
|
291
|
+
type: string;
|
|
292
|
+
'x-deprecated': string;
|
|
293
|
+
};
|
|
294
|
+
requested_access_methods: {
|
|
295
|
+
description: string;
|
|
296
|
+
items: {
|
|
297
|
+
properties: {
|
|
298
|
+
created_access_method_ids: {
|
|
299
|
+
description: string;
|
|
300
|
+
items: {
|
|
301
|
+
format: string;
|
|
302
|
+
type: string;
|
|
303
|
+
};
|
|
304
|
+
type: string;
|
|
305
|
+
};
|
|
306
|
+
created_at: {
|
|
307
|
+
description: string;
|
|
308
|
+
format: string;
|
|
309
|
+
type: string;
|
|
310
|
+
};
|
|
311
|
+
display_name: {
|
|
312
|
+
description: string;
|
|
313
|
+
type: string;
|
|
314
|
+
};
|
|
315
|
+
mode: {
|
|
316
|
+
description: string;
|
|
317
|
+
enum: string[];
|
|
318
|
+
type: string;
|
|
319
|
+
};
|
|
320
|
+
};
|
|
321
|
+
required: string[];
|
|
322
|
+
type: string;
|
|
323
|
+
};
|
|
324
|
+
type: string;
|
|
325
|
+
};
|
|
326
|
+
space_ids: {
|
|
327
|
+
description: string;
|
|
328
|
+
items: {
|
|
329
|
+
format: string;
|
|
330
|
+
type: string;
|
|
331
|
+
};
|
|
332
|
+
type: string;
|
|
333
|
+
};
|
|
334
|
+
user_identity_id: {
|
|
335
|
+
description: string;
|
|
336
|
+
format: string;
|
|
337
|
+
type: string;
|
|
338
|
+
};
|
|
339
|
+
workspace_id: {
|
|
340
|
+
description: string;
|
|
341
|
+
format: string;
|
|
342
|
+
type: string;
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
required: string[];
|
|
346
|
+
type: string;
|
|
347
|
+
'x-draft': string;
|
|
348
|
+
'x-route-path': string;
|
|
349
|
+
};
|
|
350
|
+
access_method: {
|
|
351
|
+
properties: {
|
|
352
|
+
access_method_id: {
|
|
353
|
+
description: string;
|
|
354
|
+
format: string;
|
|
355
|
+
type: string;
|
|
356
|
+
};
|
|
357
|
+
created_at: {
|
|
358
|
+
description: string;
|
|
359
|
+
format: string;
|
|
360
|
+
type: string;
|
|
361
|
+
};
|
|
362
|
+
display_name: {
|
|
363
|
+
description: string;
|
|
364
|
+
type: string;
|
|
365
|
+
};
|
|
366
|
+
instant_key_url: {
|
|
367
|
+
description: string;
|
|
368
|
+
type: string;
|
|
369
|
+
};
|
|
370
|
+
is_card_encoding_required: {
|
|
371
|
+
description: string;
|
|
372
|
+
type: string;
|
|
373
|
+
};
|
|
374
|
+
issued_at: {
|
|
375
|
+
description: string;
|
|
376
|
+
format: string;
|
|
377
|
+
type: string;
|
|
378
|
+
};
|
|
379
|
+
mode: {
|
|
380
|
+
description: string;
|
|
381
|
+
enum: string[];
|
|
382
|
+
type: string;
|
|
383
|
+
};
|
|
384
|
+
workspace_id: {
|
|
385
|
+
description: string;
|
|
386
|
+
format: string;
|
|
387
|
+
type: string;
|
|
388
|
+
};
|
|
389
|
+
};
|
|
390
|
+
required: string[];
|
|
391
|
+
type: string;
|
|
392
|
+
'x-draft': string;
|
|
393
|
+
'x-route-path': string;
|
|
394
|
+
};
|
|
261
395
|
acs_access_group: {
|
|
262
396
|
description: string;
|
|
263
397
|
properties: {
|
|
@@ -13628,93 +13762,7 @@ declare const _default: {
|
|
|
13628
13762
|
schema: {
|
|
13629
13763
|
properties: {
|
|
13630
13764
|
access_grant: {
|
|
13631
|
-
|
|
13632
|
-
access_grant_id: {
|
|
13633
|
-
description: string;
|
|
13634
|
-
format: string;
|
|
13635
|
-
type: string;
|
|
13636
|
-
};
|
|
13637
|
-
access_method_ids: {
|
|
13638
|
-
description: string;
|
|
13639
|
-
items: {
|
|
13640
|
-
format: string;
|
|
13641
|
-
type: string;
|
|
13642
|
-
};
|
|
13643
|
-
type: string;
|
|
13644
|
-
};
|
|
13645
|
-
created_at: {
|
|
13646
|
-
description: string;
|
|
13647
|
-
format: string;
|
|
13648
|
-
type: string;
|
|
13649
|
-
};
|
|
13650
|
-
display_name: {
|
|
13651
|
-
description: string;
|
|
13652
|
-
type: string;
|
|
13653
|
-
};
|
|
13654
|
-
location_ids: {
|
|
13655
|
-
deprecated: boolean;
|
|
13656
|
-
items: {
|
|
13657
|
-
format: string;
|
|
13658
|
-
type: string;
|
|
13659
|
-
};
|
|
13660
|
-
type: string;
|
|
13661
|
-
'x-deprecated': string;
|
|
13662
|
-
};
|
|
13663
|
-
requested_access_methods: {
|
|
13664
|
-
description: string;
|
|
13665
|
-
items: {
|
|
13666
|
-
properties: {
|
|
13667
|
-
created_access_method_ids: {
|
|
13668
|
-
description: string;
|
|
13669
|
-
items: {
|
|
13670
|
-
format: string;
|
|
13671
|
-
type: string;
|
|
13672
|
-
};
|
|
13673
|
-
type: string;
|
|
13674
|
-
};
|
|
13675
|
-
created_at: {
|
|
13676
|
-
description: string;
|
|
13677
|
-
format: string;
|
|
13678
|
-
type: string;
|
|
13679
|
-
};
|
|
13680
|
-
display_name: {
|
|
13681
|
-
description: string;
|
|
13682
|
-
type: string;
|
|
13683
|
-
};
|
|
13684
|
-
mode: {
|
|
13685
|
-
description: string;
|
|
13686
|
-
enum: string[];
|
|
13687
|
-
type: string;
|
|
13688
|
-
};
|
|
13689
|
-
};
|
|
13690
|
-
required: string[];
|
|
13691
|
-
type: string;
|
|
13692
|
-
};
|
|
13693
|
-
type: string;
|
|
13694
|
-
};
|
|
13695
|
-
space_ids: {
|
|
13696
|
-
description: string;
|
|
13697
|
-
items: {
|
|
13698
|
-
format: string;
|
|
13699
|
-
type: string;
|
|
13700
|
-
};
|
|
13701
|
-
type: string;
|
|
13702
|
-
};
|
|
13703
|
-
user_identity_id: {
|
|
13704
|
-
description: string;
|
|
13705
|
-
format: string;
|
|
13706
|
-
type: string;
|
|
13707
|
-
};
|
|
13708
|
-
workspace_id: {
|
|
13709
|
-
description: string;
|
|
13710
|
-
format: string;
|
|
13711
|
-
type: string;
|
|
13712
|
-
};
|
|
13713
|
-
};
|
|
13714
|
-
required: string[];
|
|
13715
|
-
type: string;
|
|
13716
|
-
'x-draft': string;
|
|
13717
|
-
'x-route-path': string;
|
|
13765
|
+
$ref: string;
|
|
13718
13766
|
};
|
|
13719
13767
|
ok: {
|
|
13720
13768
|
type: string;
|
|
@@ -13868,93 +13916,7 @@ declare const _default: {
|
|
|
13868
13916
|
schema: {
|
|
13869
13917
|
properties: {
|
|
13870
13918
|
access_grant: {
|
|
13871
|
-
|
|
13872
|
-
access_grant_id: {
|
|
13873
|
-
description: string;
|
|
13874
|
-
format: string;
|
|
13875
|
-
type: string;
|
|
13876
|
-
};
|
|
13877
|
-
access_method_ids: {
|
|
13878
|
-
description: string;
|
|
13879
|
-
items: {
|
|
13880
|
-
format: string;
|
|
13881
|
-
type: string;
|
|
13882
|
-
};
|
|
13883
|
-
type: string;
|
|
13884
|
-
};
|
|
13885
|
-
created_at: {
|
|
13886
|
-
description: string;
|
|
13887
|
-
format: string;
|
|
13888
|
-
type: string;
|
|
13889
|
-
};
|
|
13890
|
-
display_name: {
|
|
13891
|
-
description: string;
|
|
13892
|
-
type: string;
|
|
13893
|
-
};
|
|
13894
|
-
location_ids: {
|
|
13895
|
-
deprecated: boolean;
|
|
13896
|
-
items: {
|
|
13897
|
-
format: string;
|
|
13898
|
-
type: string;
|
|
13899
|
-
};
|
|
13900
|
-
type: string;
|
|
13901
|
-
'x-deprecated': string;
|
|
13902
|
-
};
|
|
13903
|
-
requested_access_methods: {
|
|
13904
|
-
description: string;
|
|
13905
|
-
items: {
|
|
13906
|
-
properties: {
|
|
13907
|
-
created_access_method_ids: {
|
|
13908
|
-
description: string;
|
|
13909
|
-
items: {
|
|
13910
|
-
format: string;
|
|
13911
|
-
type: string;
|
|
13912
|
-
};
|
|
13913
|
-
type: string;
|
|
13914
|
-
};
|
|
13915
|
-
created_at: {
|
|
13916
|
-
description: string;
|
|
13917
|
-
format: string;
|
|
13918
|
-
type: string;
|
|
13919
|
-
};
|
|
13920
|
-
display_name: {
|
|
13921
|
-
description: string;
|
|
13922
|
-
type: string;
|
|
13923
|
-
};
|
|
13924
|
-
mode: {
|
|
13925
|
-
description: string;
|
|
13926
|
-
enum: string[];
|
|
13927
|
-
type: string;
|
|
13928
|
-
};
|
|
13929
|
-
};
|
|
13930
|
-
required: string[];
|
|
13931
|
-
type: string;
|
|
13932
|
-
};
|
|
13933
|
-
type: string;
|
|
13934
|
-
};
|
|
13935
|
-
space_ids: {
|
|
13936
|
-
description: string;
|
|
13937
|
-
items: {
|
|
13938
|
-
format: string;
|
|
13939
|
-
type: string;
|
|
13940
|
-
};
|
|
13941
|
-
type: string;
|
|
13942
|
-
};
|
|
13943
|
-
user_identity_id: {
|
|
13944
|
-
description: string;
|
|
13945
|
-
format: string;
|
|
13946
|
-
type: string;
|
|
13947
|
-
};
|
|
13948
|
-
workspace_id: {
|
|
13949
|
-
description: string;
|
|
13950
|
-
format: string;
|
|
13951
|
-
type: string;
|
|
13952
|
-
};
|
|
13953
|
-
};
|
|
13954
|
-
required: string[];
|
|
13955
|
-
type: string;
|
|
13956
|
-
'x-draft': string;
|
|
13957
|
-
'x-route-path': string;
|
|
13919
|
+
$ref: string;
|
|
13958
13920
|
};
|
|
13959
13921
|
ok: {
|
|
13960
13922
|
type: string;
|
|
@@ -14054,93 +14016,7 @@ declare const _default: {
|
|
|
14054
14016
|
properties: {
|
|
14055
14017
|
access_grants: {
|
|
14056
14018
|
items: {
|
|
14057
|
-
|
|
14058
|
-
access_grant_id: {
|
|
14059
|
-
description: string;
|
|
14060
|
-
format: string;
|
|
14061
|
-
type: string;
|
|
14062
|
-
};
|
|
14063
|
-
access_method_ids: {
|
|
14064
|
-
description: string;
|
|
14065
|
-
items: {
|
|
14066
|
-
format: string;
|
|
14067
|
-
type: string;
|
|
14068
|
-
};
|
|
14069
|
-
type: string;
|
|
14070
|
-
};
|
|
14071
|
-
created_at: {
|
|
14072
|
-
description: string;
|
|
14073
|
-
format: string;
|
|
14074
|
-
type: string;
|
|
14075
|
-
};
|
|
14076
|
-
display_name: {
|
|
14077
|
-
description: string;
|
|
14078
|
-
type: string;
|
|
14079
|
-
};
|
|
14080
|
-
location_ids: {
|
|
14081
|
-
deprecated: boolean;
|
|
14082
|
-
items: {
|
|
14083
|
-
format: string;
|
|
14084
|
-
type: string;
|
|
14085
|
-
};
|
|
14086
|
-
type: string;
|
|
14087
|
-
'x-deprecated': string;
|
|
14088
|
-
};
|
|
14089
|
-
requested_access_methods: {
|
|
14090
|
-
description: string;
|
|
14091
|
-
items: {
|
|
14092
|
-
properties: {
|
|
14093
|
-
created_access_method_ids: {
|
|
14094
|
-
description: string;
|
|
14095
|
-
items: {
|
|
14096
|
-
format: string;
|
|
14097
|
-
type: string;
|
|
14098
|
-
};
|
|
14099
|
-
type: string;
|
|
14100
|
-
};
|
|
14101
|
-
created_at: {
|
|
14102
|
-
description: string;
|
|
14103
|
-
format: string;
|
|
14104
|
-
type: string;
|
|
14105
|
-
};
|
|
14106
|
-
display_name: {
|
|
14107
|
-
description: string;
|
|
14108
|
-
type: string;
|
|
14109
|
-
};
|
|
14110
|
-
mode: {
|
|
14111
|
-
description: string;
|
|
14112
|
-
enum: string[];
|
|
14113
|
-
type: string;
|
|
14114
|
-
};
|
|
14115
|
-
};
|
|
14116
|
-
required: string[];
|
|
14117
|
-
type: string;
|
|
14118
|
-
};
|
|
14119
|
-
type: string;
|
|
14120
|
-
};
|
|
14121
|
-
space_ids: {
|
|
14122
|
-
description: string;
|
|
14123
|
-
items: {
|
|
14124
|
-
format: string;
|
|
14125
|
-
type: string;
|
|
14126
|
-
};
|
|
14127
|
-
type: string;
|
|
14128
|
-
};
|
|
14129
|
-
user_identity_id: {
|
|
14130
|
-
description: string;
|
|
14131
|
-
format: string;
|
|
14132
|
-
type: string;
|
|
14133
|
-
};
|
|
14134
|
-
workspace_id: {
|
|
14135
|
-
description: string;
|
|
14136
|
-
format: string;
|
|
14137
|
-
type: string;
|
|
14138
|
-
};
|
|
14139
|
-
};
|
|
14140
|
-
required: string[];
|
|
14141
|
-
type: string;
|
|
14142
|
-
'x-draft': string;
|
|
14143
|
-
'x-route-path': string;
|
|
14019
|
+
$ref: string;
|
|
14144
14020
|
};
|
|
14145
14021
|
type: string;
|
|
14146
14022
|
};
|
|
@@ -14288,49 +14164,7 @@ declare const _default: {
|
|
|
14288
14164
|
schema: {
|
|
14289
14165
|
properties: {
|
|
14290
14166
|
access_method: {
|
|
14291
|
-
|
|
14292
|
-
access_method_id: {
|
|
14293
|
-
description: string;
|
|
14294
|
-
format: string;
|
|
14295
|
-
type: string;
|
|
14296
|
-
};
|
|
14297
|
-
created_at: {
|
|
14298
|
-
description: string;
|
|
14299
|
-
format: string;
|
|
14300
|
-
type: string;
|
|
14301
|
-
};
|
|
14302
|
-
display_name: {
|
|
14303
|
-
description: string;
|
|
14304
|
-
type: string;
|
|
14305
|
-
};
|
|
14306
|
-
instant_key_url: {
|
|
14307
|
-
description: string;
|
|
14308
|
-
type: string;
|
|
14309
|
-
};
|
|
14310
|
-
is_card_encoding_required: {
|
|
14311
|
-
description: string;
|
|
14312
|
-
type: string;
|
|
14313
|
-
};
|
|
14314
|
-
issued_at: {
|
|
14315
|
-
description: string;
|
|
14316
|
-
format: string;
|
|
14317
|
-
type: string;
|
|
14318
|
-
};
|
|
14319
|
-
mode: {
|
|
14320
|
-
description: string;
|
|
14321
|
-
enum: string[];
|
|
14322
|
-
type: string;
|
|
14323
|
-
};
|
|
14324
|
-
workspace_id: {
|
|
14325
|
-
description: string;
|
|
14326
|
-
format: string;
|
|
14327
|
-
type: string;
|
|
14328
|
-
};
|
|
14329
|
-
};
|
|
14330
|
-
required: string[];
|
|
14331
|
-
type: string;
|
|
14332
|
-
'x-draft': string;
|
|
14333
|
-
'x-route-path': string;
|
|
14167
|
+
$ref: string;
|
|
14334
14168
|
};
|
|
14335
14169
|
ok: {
|
|
14336
14170
|
type: string;
|
|
@@ -14402,49 +14236,7 @@ declare const _default: {
|
|
|
14402
14236
|
properties: {
|
|
14403
14237
|
access_methods: {
|
|
14404
14238
|
items: {
|
|
14405
|
-
|
|
14406
|
-
access_method_id: {
|
|
14407
|
-
description: string;
|
|
14408
|
-
format: string;
|
|
14409
|
-
type: string;
|
|
14410
|
-
};
|
|
14411
|
-
created_at: {
|
|
14412
|
-
description: string;
|
|
14413
|
-
format: string;
|
|
14414
|
-
type: string;
|
|
14415
|
-
};
|
|
14416
|
-
display_name: {
|
|
14417
|
-
description: string;
|
|
14418
|
-
type: string;
|
|
14419
|
-
};
|
|
14420
|
-
instant_key_url: {
|
|
14421
|
-
description: string;
|
|
14422
|
-
type: string;
|
|
14423
|
-
};
|
|
14424
|
-
is_card_encoding_required: {
|
|
14425
|
-
description: string;
|
|
14426
|
-
type: string;
|
|
14427
|
-
};
|
|
14428
|
-
issued_at: {
|
|
14429
|
-
description: string;
|
|
14430
|
-
format: string;
|
|
14431
|
-
type: string;
|
|
14432
|
-
};
|
|
14433
|
-
mode: {
|
|
14434
|
-
description: string;
|
|
14435
|
-
enum: string[];
|
|
14436
|
-
type: string;
|
|
14437
|
-
};
|
|
14438
|
-
workspace_id: {
|
|
14439
|
-
description: string;
|
|
14440
|
-
format: string;
|
|
14441
|
-
type: string;
|
|
14442
|
-
};
|
|
14443
|
-
};
|
|
14444
|
-
required: string[];
|
|
14445
|
-
type: string;
|
|
14446
|
-
'x-draft': string;
|
|
14447
|
-
'x-route-path': string;
|
|
14239
|
+
$ref: string;
|
|
14448
14240
|
};
|
|
14449
14241
|
type: string;
|
|
14450
14242
|
};
|
|
@@ -30534,93 +30326,7 @@ declare const _default: {
|
|
|
30534
30326
|
schema: {
|
|
30535
30327
|
properties: {
|
|
30536
30328
|
access_grant: {
|
|
30537
|
-
|
|
30538
|
-
access_grant_id: {
|
|
30539
|
-
description: string;
|
|
30540
|
-
format: string;
|
|
30541
|
-
type: string;
|
|
30542
|
-
};
|
|
30543
|
-
access_method_ids: {
|
|
30544
|
-
description: string;
|
|
30545
|
-
items: {
|
|
30546
|
-
format: string;
|
|
30547
|
-
type: string;
|
|
30548
|
-
};
|
|
30549
|
-
type: string;
|
|
30550
|
-
};
|
|
30551
|
-
created_at: {
|
|
30552
|
-
description: string;
|
|
30553
|
-
format: string;
|
|
30554
|
-
type: string;
|
|
30555
|
-
};
|
|
30556
|
-
display_name: {
|
|
30557
|
-
description: string;
|
|
30558
|
-
type: string;
|
|
30559
|
-
};
|
|
30560
|
-
location_ids: {
|
|
30561
|
-
deprecated: boolean;
|
|
30562
|
-
items: {
|
|
30563
|
-
format: string;
|
|
30564
|
-
type: string;
|
|
30565
|
-
};
|
|
30566
|
-
type: string;
|
|
30567
|
-
'x-deprecated': string;
|
|
30568
|
-
};
|
|
30569
|
-
requested_access_methods: {
|
|
30570
|
-
description: string;
|
|
30571
|
-
items: {
|
|
30572
|
-
properties: {
|
|
30573
|
-
created_access_method_ids: {
|
|
30574
|
-
description: string;
|
|
30575
|
-
items: {
|
|
30576
|
-
format: string;
|
|
30577
|
-
type: string;
|
|
30578
|
-
};
|
|
30579
|
-
type: string;
|
|
30580
|
-
};
|
|
30581
|
-
created_at: {
|
|
30582
|
-
description: string;
|
|
30583
|
-
format: string;
|
|
30584
|
-
type: string;
|
|
30585
|
-
};
|
|
30586
|
-
display_name: {
|
|
30587
|
-
description: string;
|
|
30588
|
-
type: string;
|
|
30589
|
-
};
|
|
30590
|
-
mode: {
|
|
30591
|
-
description: string;
|
|
30592
|
-
enum: string[];
|
|
30593
|
-
type: string;
|
|
30594
|
-
};
|
|
30595
|
-
};
|
|
30596
|
-
required: string[];
|
|
30597
|
-
type: string;
|
|
30598
|
-
};
|
|
30599
|
-
type: string;
|
|
30600
|
-
};
|
|
30601
|
-
space_ids: {
|
|
30602
|
-
description: string;
|
|
30603
|
-
items: {
|
|
30604
|
-
format: string;
|
|
30605
|
-
type: string;
|
|
30606
|
-
};
|
|
30607
|
-
type: string;
|
|
30608
|
-
};
|
|
30609
|
-
user_identity_id: {
|
|
30610
|
-
description: string;
|
|
30611
|
-
format: string;
|
|
30612
|
-
type: string;
|
|
30613
|
-
};
|
|
30614
|
-
workspace_id: {
|
|
30615
|
-
description: string;
|
|
30616
|
-
format: string;
|
|
30617
|
-
type: string;
|
|
30618
|
-
};
|
|
30619
|
-
};
|
|
30620
|
-
required: string[];
|
|
30621
|
-
type: string;
|
|
30622
|
-
'x-draft': string;
|
|
30623
|
-
'x-route-path': string;
|
|
30329
|
+
$ref: string;
|
|
30624
30330
|
};
|
|
30625
30331
|
ok: {
|
|
30626
30332
|
type: string;
|
|
@@ -30774,93 +30480,7 @@ declare const _default: {
|
|
|
30774
30480
|
schema: {
|
|
30775
30481
|
properties: {
|
|
30776
30482
|
access_grant: {
|
|
30777
|
-
|
|
30778
|
-
access_grant_id: {
|
|
30779
|
-
description: string;
|
|
30780
|
-
format: string;
|
|
30781
|
-
type: string;
|
|
30782
|
-
};
|
|
30783
|
-
access_method_ids: {
|
|
30784
|
-
description: string;
|
|
30785
|
-
items: {
|
|
30786
|
-
format: string;
|
|
30787
|
-
type: string;
|
|
30788
|
-
};
|
|
30789
|
-
type: string;
|
|
30790
|
-
};
|
|
30791
|
-
created_at: {
|
|
30792
|
-
description: string;
|
|
30793
|
-
format: string;
|
|
30794
|
-
type: string;
|
|
30795
|
-
};
|
|
30796
|
-
display_name: {
|
|
30797
|
-
description: string;
|
|
30798
|
-
type: string;
|
|
30799
|
-
};
|
|
30800
|
-
location_ids: {
|
|
30801
|
-
deprecated: boolean;
|
|
30802
|
-
items: {
|
|
30803
|
-
format: string;
|
|
30804
|
-
type: string;
|
|
30805
|
-
};
|
|
30806
|
-
type: string;
|
|
30807
|
-
'x-deprecated': string;
|
|
30808
|
-
};
|
|
30809
|
-
requested_access_methods: {
|
|
30810
|
-
description: string;
|
|
30811
|
-
items: {
|
|
30812
|
-
properties: {
|
|
30813
|
-
created_access_method_ids: {
|
|
30814
|
-
description: string;
|
|
30815
|
-
items: {
|
|
30816
|
-
format: string;
|
|
30817
|
-
type: string;
|
|
30818
|
-
};
|
|
30819
|
-
type: string;
|
|
30820
|
-
};
|
|
30821
|
-
created_at: {
|
|
30822
|
-
description: string;
|
|
30823
|
-
format: string;
|
|
30824
|
-
type: string;
|
|
30825
|
-
};
|
|
30826
|
-
display_name: {
|
|
30827
|
-
description: string;
|
|
30828
|
-
type: string;
|
|
30829
|
-
};
|
|
30830
|
-
mode: {
|
|
30831
|
-
description: string;
|
|
30832
|
-
enum: string[];
|
|
30833
|
-
type: string;
|
|
30834
|
-
};
|
|
30835
|
-
};
|
|
30836
|
-
required: string[];
|
|
30837
|
-
type: string;
|
|
30838
|
-
};
|
|
30839
|
-
type: string;
|
|
30840
|
-
};
|
|
30841
|
-
space_ids: {
|
|
30842
|
-
description: string;
|
|
30843
|
-
items: {
|
|
30844
|
-
format: string;
|
|
30845
|
-
type: string;
|
|
30846
|
-
};
|
|
30847
|
-
type: string;
|
|
30848
|
-
};
|
|
30849
|
-
user_identity_id: {
|
|
30850
|
-
description: string;
|
|
30851
|
-
format: string;
|
|
30852
|
-
type: string;
|
|
30853
|
-
};
|
|
30854
|
-
workspace_id: {
|
|
30855
|
-
description: string;
|
|
30856
|
-
format: string;
|
|
30857
|
-
type: string;
|
|
30858
|
-
};
|
|
30859
|
-
};
|
|
30860
|
-
required: string[];
|
|
30861
|
-
type: string;
|
|
30862
|
-
'x-draft': string;
|
|
30863
|
-
'x-route-path': string;
|
|
30483
|
+
$ref: string;
|
|
30864
30484
|
};
|
|
30865
30485
|
ok: {
|
|
30866
30486
|
type: string;
|
|
@@ -30960,93 +30580,7 @@ declare const _default: {
|
|
|
30960
30580
|
properties: {
|
|
30961
30581
|
access_grants: {
|
|
30962
30582
|
items: {
|
|
30963
|
-
|
|
30964
|
-
access_grant_id: {
|
|
30965
|
-
description: string;
|
|
30966
|
-
format: string;
|
|
30967
|
-
type: string;
|
|
30968
|
-
};
|
|
30969
|
-
access_method_ids: {
|
|
30970
|
-
description: string;
|
|
30971
|
-
items: {
|
|
30972
|
-
format: string;
|
|
30973
|
-
type: string;
|
|
30974
|
-
};
|
|
30975
|
-
type: string;
|
|
30976
|
-
};
|
|
30977
|
-
created_at: {
|
|
30978
|
-
description: string;
|
|
30979
|
-
format: string;
|
|
30980
|
-
type: string;
|
|
30981
|
-
};
|
|
30982
|
-
display_name: {
|
|
30983
|
-
description: string;
|
|
30984
|
-
type: string;
|
|
30985
|
-
};
|
|
30986
|
-
location_ids: {
|
|
30987
|
-
deprecated: boolean;
|
|
30988
|
-
items: {
|
|
30989
|
-
format: string;
|
|
30990
|
-
type: string;
|
|
30991
|
-
};
|
|
30992
|
-
type: string;
|
|
30993
|
-
'x-deprecated': string;
|
|
30994
|
-
};
|
|
30995
|
-
requested_access_methods: {
|
|
30996
|
-
description: string;
|
|
30997
|
-
items: {
|
|
30998
|
-
properties: {
|
|
30999
|
-
created_access_method_ids: {
|
|
31000
|
-
description: string;
|
|
31001
|
-
items: {
|
|
31002
|
-
format: string;
|
|
31003
|
-
type: string;
|
|
31004
|
-
};
|
|
31005
|
-
type: string;
|
|
31006
|
-
};
|
|
31007
|
-
created_at: {
|
|
31008
|
-
description: string;
|
|
31009
|
-
format: string;
|
|
31010
|
-
type: string;
|
|
31011
|
-
};
|
|
31012
|
-
display_name: {
|
|
31013
|
-
description: string;
|
|
31014
|
-
type: string;
|
|
31015
|
-
};
|
|
31016
|
-
mode: {
|
|
31017
|
-
description: string;
|
|
31018
|
-
enum: string[];
|
|
31019
|
-
type: string;
|
|
31020
|
-
};
|
|
31021
|
-
};
|
|
31022
|
-
required: string[];
|
|
31023
|
-
type: string;
|
|
31024
|
-
};
|
|
31025
|
-
type: string;
|
|
31026
|
-
};
|
|
31027
|
-
space_ids: {
|
|
31028
|
-
description: string;
|
|
31029
|
-
items: {
|
|
31030
|
-
format: string;
|
|
31031
|
-
type: string;
|
|
31032
|
-
};
|
|
31033
|
-
type: string;
|
|
31034
|
-
};
|
|
31035
|
-
user_identity_id: {
|
|
31036
|
-
description: string;
|
|
31037
|
-
format: string;
|
|
31038
|
-
type: string;
|
|
31039
|
-
};
|
|
31040
|
-
workspace_id: {
|
|
31041
|
-
description: string;
|
|
31042
|
-
format: string;
|
|
31043
|
-
type: string;
|
|
31044
|
-
};
|
|
31045
|
-
};
|
|
31046
|
-
required: string[];
|
|
31047
|
-
type: string;
|
|
31048
|
-
'x-draft': string;
|
|
31049
|
-
'x-route-path': string;
|
|
30583
|
+
$ref: string;
|
|
31050
30584
|
};
|
|
31051
30585
|
type: string;
|
|
31052
30586
|
};
|
|
@@ -31194,49 +30728,7 @@ declare const _default: {
|
|
|
31194
30728
|
schema: {
|
|
31195
30729
|
properties: {
|
|
31196
30730
|
access_method: {
|
|
31197
|
-
|
|
31198
|
-
access_method_id: {
|
|
31199
|
-
description: string;
|
|
31200
|
-
format: string;
|
|
31201
|
-
type: string;
|
|
31202
|
-
};
|
|
31203
|
-
created_at: {
|
|
31204
|
-
description: string;
|
|
31205
|
-
format: string;
|
|
31206
|
-
type: string;
|
|
31207
|
-
};
|
|
31208
|
-
display_name: {
|
|
31209
|
-
description: string;
|
|
31210
|
-
type: string;
|
|
31211
|
-
};
|
|
31212
|
-
instant_key_url: {
|
|
31213
|
-
description: string;
|
|
31214
|
-
type: string;
|
|
31215
|
-
};
|
|
31216
|
-
is_card_encoding_required: {
|
|
31217
|
-
description: string;
|
|
31218
|
-
type: string;
|
|
31219
|
-
};
|
|
31220
|
-
issued_at: {
|
|
31221
|
-
description: string;
|
|
31222
|
-
format: string;
|
|
31223
|
-
type: string;
|
|
31224
|
-
};
|
|
31225
|
-
mode: {
|
|
31226
|
-
description: string;
|
|
31227
|
-
enum: string[];
|
|
31228
|
-
type: string;
|
|
31229
|
-
};
|
|
31230
|
-
workspace_id: {
|
|
31231
|
-
description: string;
|
|
31232
|
-
format: string;
|
|
31233
|
-
type: string;
|
|
31234
|
-
};
|
|
31235
|
-
};
|
|
31236
|
-
required: string[];
|
|
31237
|
-
type: string;
|
|
31238
|
-
'x-draft': string;
|
|
31239
|
-
'x-route-path': string;
|
|
30731
|
+
$ref: string;
|
|
31240
30732
|
};
|
|
31241
30733
|
ok: {
|
|
31242
30734
|
type: string;
|
|
@@ -31308,49 +30800,7 @@ declare const _default: {
|
|
|
31308
30800
|
properties: {
|
|
31309
30801
|
access_methods: {
|
|
31310
30802
|
items: {
|
|
31311
|
-
|
|
31312
|
-
access_method_id: {
|
|
31313
|
-
description: string;
|
|
31314
|
-
format: string;
|
|
31315
|
-
type: string;
|
|
31316
|
-
};
|
|
31317
|
-
created_at: {
|
|
31318
|
-
description: string;
|
|
31319
|
-
format: string;
|
|
31320
|
-
type: string;
|
|
31321
|
-
};
|
|
31322
|
-
display_name: {
|
|
31323
|
-
description: string;
|
|
31324
|
-
type: string;
|
|
31325
|
-
};
|
|
31326
|
-
instant_key_url: {
|
|
31327
|
-
description: string;
|
|
31328
|
-
type: string;
|
|
31329
|
-
};
|
|
31330
|
-
is_card_encoding_required: {
|
|
31331
|
-
description: string;
|
|
31332
|
-
type: string;
|
|
31333
|
-
};
|
|
31334
|
-
issued_at: {
|
|
31335
|
-
description: string;
|
|
31336
|
-
format: string;
|
|
31337
|
-
type: string;
|
|
31338
|
-
};
|
|
31339
|
-
mode: {
|
|
31340
|
-
description: string;
|
|
31341
|
-
enum: string[];
|
|
31342
|
-
type: string;
|
|
31343
|
-
};
|
|
31344
|
-
workspace_id: {
|
|
31345
|
-
description: string;
|
|
31346
|
-
format: string;
|
|
31347
|
-
type: string;
|
|
31348
|
-
};
|
|
31349
|
-
};
|
|
31350
|
-
required: string[];
|
|
31351
|
-
type: string;
|
|
31352
|
-
'x-draft': string;
|
|
31353
|
-
'x-route-path': string;
|
|
30803
|
+
$ref: string;
|
|
31354
30804
|
};
|
|
31355
30805
|
type: string;
|
|
31356
30806
|
};
|
|
@@ -32728,63 +32178,46 @@ declare const _default: {
|
|
|
32728
32178
|
content: {
|
|
32729
32179
|
'application/json': {
|
|
32730
32180
|
schema: {
|
|
32731
|
-
|
|
32732
|
-
|
|
32733
|
-
|
|
32734
|
-
|
|
32735
|
-
|
|
32736
|
-
type: string;
|
|
32737
|
-
};
|
|
32738
|
-
customer_key: {
|
|
32739
|
-
description: string;
|
|
32740
|
-
type: string;
|
|
32741
|
-
};
|
|
32742
|
-
partner_resources?: never;
|
|
32181
|
+
properties: {
|
|
32182
|
+
building_block_type: {
|
|
32183
|
+
description: string;
|
|
32184
|
+
enum: string[];
|
|
32185
|
+
type: string;
|
|
32743
32186
|
};
|
|
32744
|
-
|
|
32745
|
-
|
|
32746
|
-
|
|
32747
|
-
|
|
32748
|
-
|
|
32749
|
-
|
|
32750
|
-
|
|
32751
|
-
|
|
32752
|
-
|
|
32753
|
-
|
|
32754
|
-
description: string;
|
|
32755
|
-
type: string;
|
|
32756
|
-
};
|
|
32757
|
-
partner_resources: {
|
|
32758
|
-
description: string;
|
|
32759
|
-
items: {
|
|
32760
|
-
properties: {
|
|
32761
|
-
custom_metadata: {
|
|
32762
|
-
additionalProperties: {
|
|
32763
|
-
type: string;
|
|
32764
|
-
};
|
|
32765
|
-
type: string;
|
|
32766
|
-
};
|
|
32767
|
-
description: {
|
|
32768
|
-
type: string;
|
|
32769
|
-
};
|
|
32770
|
-
name: {
|
|
32771
|
-
type: string;
|
|
32772
|
-
};
|
|
32773
|
-
partner_resource_key: {
|
|
32187
|
+
customer_key: {
|
|
32188
|
+
description: string;
|
|
32189
|
+
type: string;
|
|
32190
|
+
};
|
|
32191
|
+
spaces: {
|
|
32192
|
+
description: string;
|
|
32193
|
+
items: {
|
|
32194
|
+
properties: {
|
|
32195
|
+
custom_metadata: {
|
|
32196
|
+
additionalProperties: {
|
|
32774
32197
|
type: string;
|
|
32775
32198
|
};
|
|
32199
|
+
type: string;
|
|
32200
|
+
};
|
|
32201
|
+
description: {
|
|
32202
|
+
type: string;
|
|
32203
|
+
};
|
|
32204
|
+
name: {
|
|
32205
|
+
type: string;
|
|
32206
|
+
};
|
|
32207
|
+
space_key: {
|
|
32208
|
+
type: string;
|
|
32776
32209
|
};
|
|
32777
|
-
required: string[];
|
|
32778
|
-
type: string;
|
|
32779
|
-
'x-route-path': string;
|
|
32780
|
-
'x-undocumented': string;
|
|
32781
32210
|
};
|
|
32211
|
+
required: string[];
|
|
32782
32212
|
type: string;
|
|
32213
|
+
'x-route-path': string;
|
|
32214
|
+
'x-undocumented': string;
|
|
32783
32215
|
};
|
|
32216
|
+
type: string;
|
|
32784
32217
|
};
|
|
32785
|
-
|
|
32786
|
-
|
|
32787
|
-
|
|
32218
|
+
};
|
|
32219
|
+
required: string[];
|
|
32220
|
+
type: string;
|
|
32788
32221
|
};
|
|
32789
32222
|
};
|
|
32790
32223
|
};
|
|
@@ -32922,7 +32355,7 @@ declare const _default: {
|
|
|
32922
32355
|
description: string;
|
|
32923
32356
|
type: string;
|
|
32924
32357
|
};
|
|
32925
|
-
|
|
32358
|
+
spaces: {
|
|
32926
32359
|
description: string;
|
|
32927
32360
|
items: {
|
|
32928
32361
|
properties: {
|
|
@@ -32938,7 +32371,7 @@ declare const _default: {
|
|
|
32938
32371
|
name: {
|
|
32939
32372
|
type: string;
|
|
32940
32373
|
};
|
|
32941
|
-
|
|
32374
|
+
space_key: {
|
|
32942
32375
|
type: string;
|
|
32943
32376
|
};
|
|
32944
32377
|
};
|