@seamapi/types 1.515.0 → 1.517.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 +17 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +70 -184
- package/dist/index.cjs +17 -60
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +5 -0
- package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/requested-access-method.js +7 -0
- package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/openapi.d.ts +46 -179
- package/lib/seam/connect/openapi.js +14 -60
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +16 -60
- package/src/lib/seam/connect/route-types.ts +12 -5
package/dist/connect.d.cts
CHANGED
|
@@ -3616,6 +3616,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3616
3616
|
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
3617
3617
|
display_name: z.ZodString;
|
|
3618
3618
|
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
3619
|
+
code: z.ZodOptional<z.ZodString>;
|
|
3619
3620
|
created_at: z.ZodString;
|
|
3620
3621
|
created_access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
3621
3622
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3623,11 +3624,13 @@ declare const access_grant: z.ZodObject<{
|
|
|
3623
3624
|
created_at: string;
|
|
3624
3625
|
mode: "code" | "card" | "mobile_key";
|
|
3625
3626
|
created_access_method_ids: string[];
|
|
3627
|
+
code?: string | undefined;
|
|
3626
3628
|
}, {
|
|
3627
3629
|
display_name: string;
|
|
3628
3630
|
created_at: string;
|
|
3629
3631
|
mode: "code" | "card" | "mobile_key";
|
|
3630
3632
|
created_access_method_ids: string[];
|
|
3633
|
+
code?: string | undefined;
|
|
3631
3634
|
}>, "many">;
|
|
3632
3635
|
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
3633
3636
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
@@ -3654,6 +3657,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3654
3657
|
created_at: string;
|
|
3655
3658
|
mode: "code" | "card" | "mobile_key";
|
|
3656
3659
|
created_access_method_ids: string[];
|
|
3660
|
+
code?: string | undefined;
|
|
3657
3661
|
}[];
|
|
3658
3662
|
access_method_ids: string[];
|
|
3659
3663
|
access_grant_key?: string | undefined;
|
|
@@ -3676,6 +3680,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3676
3680
|
created_at: string;
|
|
3677
3681
|
mode: "code" | "card" | "mobile_key";
|
|
3678
3682
|
created_access_method_ids: string[];
|
|
3683
|
+
code?: string | undefined;
|
|
3679
3684
|
}[];
|
|
3680
3685
|
access_method_ids: string[];
|
|
3681
3686
|
access_grant_key?: string | undefined;
|
|
@@ -24301,6 +24306,7 @@ declare const batch: z.ZodObject<{
|
|
|
24301
24306
|
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
24302
24307
|
display_name: z.ZodString;
|
|
24303
24308
|
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
24309
|
+
code: z.ZodOptional<z.ZodString>;
|
|
24304
24310
|
created_at: z.ZodString;
|
|
24305
24311
|
created_access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
24306
24312
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24308,11 +24314,13 @@ declare const batch: z.ZodObject<{
|
|
|
24308
24314
|
created_at: string;
|
|
24309
24315
|
mode: "code" | "card" | "mobile_key";
|
|
24310
24316
|
created_access_method_ids: string[];
|
|
24317
|
+
code?: string | undefined;
|
|
24311
24318
|
}, {
|
|
24312
24319
|
display_name: string;
|
|
24313
24320
|
created_at: string;
|
|
24314
24321
|
mode: "code" | "card" | "mobile_key";
|
|
24315
24322
|
created_access_method_ids: string[];
|
|
24323
|
+
code?: string | undefined;
|
|
24316
24324
|
}>, "many">;
|
|
24317
24325
|
access_method_ids: z.ZodArray<z.ZodString, "many">;
|
|
24318
24326
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
@@ -24339,6 +24347,7 @@ declare const batch: z.ZodObject<{
|
|
|
24339
24347
|
created_at: string;
|
|
24340
24348
|
mode: "code" | "card" | "mobile_key";
|
|
24341
24349
|
created_access_method_ids: string[];
|
|
24350
|
+
code?: string | undefined;
|
|
24342
24351
|
}[];
|
|
24343
24352
|
access_method_ids: string[];
|
|
24344
24353
|
access_grant_key?: string | undefined;
|
|
@@ -24361,6 +24370,7 @@ declare const batch: z.ZodObject<{
|
|
|
24361
24370
|
created_at: string;
|
|
24362
24371
|
mode: "code" | "card" | "mobile_key";
|
|
24363
24372
|
created_access_method_ids: string[];
|
|
24373
|
+
code?: string | undefined;
|
|
24364
24374
|
}[];
|
|
24365
24375
|
access_method_ids: string[];
|
|
24366
24376
|
access_grant_key?: string | undefined;
|
|
@@ -31306,6 +31316,7 @@ declare const batch: z.ZodObject<{
|
|
|
31306
31316
|
created_at: string;
|
|
31307
31317
|
mode: "code" | "card" | "mobile_key";
|
|
31308
31318
|
created_access_method_ids: string[];
|
|
31319
|
+
code?: string | undefined;
|
|
31309
31320
|
}[];
|
|
31310
31321
|
access_method_ids: string[];
|
|
31311
31322
|
access_grant_key?: string | undefined;
|
|
@@ -35143,6 +35154,7 @@ declare const batch: z.ZodObject<{
|
|
|
35143
35154
|
created_at: string;
|
|
35144
35155
|
mode: "code" | "card" | "mobile_key";
|
|
35145
35156
|
created_access_method_ids: string[];
|
|
35157
|
+
code?: string | undefined;
|
|
35146
35158
|
}[];
|
|
35147
35159
|
access_method_ids: string[];
|
|
35148
35160
|
access_grant_key?: string | undefined;
|
|
@@ -50934,6 +50946,13 @@ declare const _default: {
|
|
|
50934
50946
|
description: string;
|
|
50935
50947
|
items: {
|
|
50936
50948
|
properties: {
|
|
50949
|
+
code: {
|
|
50950
|
+
description: string;
|
|
50951
|
+
maxLength: number;
|
|
50952
|
+
minLength: number;
|
|
50953
|
+
pattern: string;
|
|
50954
|
+
type: string;
|
|
50955
|
+
};
|
|
50937
50956
|
created_access_method_ids: {
|
|
50938
50957
|
description: string;
|
|
50939
50958
|
items: {
|
|
@@ -67214,6 +67233,13 @@ declare const _default: {
|
|
|
67214
67233
|
requested_access_methods: {
|
|
67215
67234
|
items: {
|
|
67216
67235
|
properties: {
|
|
67236
|
+
code: {
|
|
67237
|
+
description: string;
|
|
67238
|
+
maxLength: number;
|
|
67239
|
+
minLength: number;
|
|
67240
|
+
pattern: string;
|
|
67241
|
+
type: string;
|
|
67242
|
+
};
|
|
67217
67243
|
mode: {
|
|
67218
67244
|
description: string;
|
|
67219
67245
|
enum: string[];
|
|
@@ -81226,36 +81252,13 @@ declare const _default: {
|
|
|
81226
81252
|
description: string;
|
|
81227
81253
|
operationId: string;
|
|
81228
81254
|
parameters: ({
|
|
81229
|
-
in: string;
|
|
81230
|
-
name: string;
|
|
81231
|
-
schema: {
|
|
81232
|
-
items: {
|
|
81233
|
-
format: string;
|
|
81234
|
-
type: string;
|
|
81235
|
-
oneOf?: never;
|
|
81236
|
-
enum?: never;
|
|
81237
|
-
};
|
|
81238
|
-
type: string;
|
|
81239
|
-
description?: never;
|
|
81240
|
-
format?: never;
|
|
81241
|
-
oneOf?: never;
|
|
81242
|
-
enum?: never;
|
|
81243
|
-
default?: never;
|
|
81244
|
-
additionalProperties?: never;
|
|
81245
|
-
nullable?: never;
|
|
81246
|
-
'x-undocumented'?: never;
|
|
81247
|
-
deprecated?: never;
|
|
81248
|
-
'x-deprecated'?: never;
|
|
81249
|
-
minLength?: never;
|
|
81250
|
-
};
|
|
81251
|
-
} | {
|
|
81252
81255
|
in: string;
|
|
81253
81256
|
name: string;
|
|
81254
81257
|
schema: {
|
|
81255
81258
|
description: string;
|
|
81256
81259
|
type: string;
|
|
81257
|
-
items?: never;
|
|
81258
81260
|
format?: never;
|
|
81261
|
+
items?: never;
|
|
81259
81262
|
oneOf?: never;
|
|
81260
81263
|
enum?: never;
|
|
81261
81264
|
default?: never;
|
|
@@ -81317,9 +81320,9 @@ declare const _default: {
|
|
|
81317
81320
|
enum: string[];
|
|
81318
81321
|
type: string;
|
|
81319
81322
|
}[];
|
|
81320
|
-
items?: never;
|
|
81321
81323
|
type?: never;
|
|
81322
81324
|
format?: never;
|
|
81325
|
+
items?: never;
|
|
81323
81326
|
enum?: never;
|
|
81324
81327
|
default?: never;
|
|
81325
81328
|
additionalProperties?: never;
|
|
@@ -81363,8 +81366,8 @@ declare const _default: {
|
|
|
81363
81366
|
description: string;
|
|
81364
81367
|
enum: string[];
|
|
81365
81368
|
type: string;
|
|
81366
|
-
items?: never;
|
|
81367
81369
|
format?: never;
|
|
81370
|
+
items?: never;
|
|
81368
81371
|
oneOf?: never;
|
|
81369
81372
|
default?: never;
|
|
81370
81373
|
additionalProperties?: never;
|
|
@@ -81403,8 +81406,8 @@ declare const _default: {
|
|
|
81403
81406
|
};
|
|
81404
81407
|
description: string;
|
|
81405
81408
|
type: string;
|
|
81406
|
-
items?: never;
|
|
81407
81409
|
format?: never;
|
|
81410
|
+
items?: never;
|
|
81408
81411
|
oneOf?: never;
|
|
81409
81412
|
enum?: never;
|
|
81410
81413
|
default?: never;
|
|
@@ -81421,8 +81424,8 @@ declare const _default: {
|
|
|
81421
81424
|
description: string;
|
|
81422
81425
|
nullable: boolean;
|
|
81423
81426
|
type: string;
|
|
81424
|
-
items?: never;
|
|
81425
81427
|
format?: never;
|
|
81428
|
+
items?: never;
|
|
81426
81429
|
oneOf?: never;
|
|
81427
81430
|
enum?: never;
|
|
81428
81431
|
default?: never;
|
|
@@ -81464,8 +81467,8 @@ declare const _default: {
|
|
|
81464
81467
|
nullable: boolean;
|
|
81465
81468
|
type: string;
|
|
81466
81469
|
'x-deprecated': string;
|
|
81467
|
-
items?: never;
|
|
81468
81470
|
description?: never;
|
|
81471
|
+
items?: never;
|
|
81469
81472
|
oneOf?: never;
|
|
81470
81473
|
enum?: never;
|
|
81471
81474
|
default?: never;
|
|
@@ -81480,8 +81483,8 @@ declare const _default: {
|
|
|
81480
81483
|
description: string;
|
|
81481
81484
|
minLength: number;
|
|
81482
81485
|
type: string;
|
|
81483
|
-
items?: never;
|
|
81484
81486
|
format?: never;
|
|
81487
|
+
items?: never;
|
|
81485
81488
|
oneOf?: never;
|
|
81486
81489
|
enum?: never;
|
|
81487
81490
|
default?: never;
|
|
@@ -81609,13 +81612,6 @@ declare const _default: {
|
|
|
81609
81612
|
description: string;
|
|
81610
81613
|
type: string;
|
|
81611
81614
|
};
|
|
81612
|
-
customer_ids: {
|
|
81613
|
-
items: {
|
|
81614
|
-
format: string;
|
|
81615
|
-
type: string;
|
|
81616
|
-
};
|
|
81617
|
-
type: string;
|
|
81618
|
-
};
|
|
81619
81615
|
customer_key: {
|
|
81620
81616
|
description: string;
|
|
81621
81617
|
type: string;
|
|
@@ -82462,36 +82458,13 @@ declare const _default: {
|
|
|
82462
82458
|
description: string;
|
|
82463
82459
|
operationId: string;
|
|
82464
82460
|
parameters: ({
|
|
82465
|
-
in: string;
|
|
82466
|
-
name: string;
|
|
82467
|
-
schema: {
|
|
82468
|
-
items: {
|
|
82469
|
-
format: string;
|
|
82470
|
-
type: string;
|
|
82471
|
-
oneOf?: never;
|
|
82472
|
-
enum?: never;
|
|
82473
|
-
};
|
|
82474
|
-
type: string;
|
|
82475
|
-
description?: never;
|
|
82476
|
-
format?: never;
|
|
82477
|
-
oneOf?: never;
|
|
82478
|
-
enum?: never;
|
|
82479
|
-
default?: never;
|
|
82480
|
-
additionalProperties?: never;
|
|
82481
|
-
nullable?: never;
|
|
82482
|
-
'x-undocumented'?: never;
|
|
82483
|
-
deprecated?: never;
|
|
82484
|
-
'x-deprecated'?: never;
|
|
82485
|
-
minLength?: never;
|
|
82486
|
-
};
|
|
82487
|
-
} | {
|
|
82488
82461
|
in: string;
|
|
82489
82462
|
name: string;
|
|
82490
82463
|
schema: {
|
|
82491
82464
|
description: string;
|
|
82492
82465
|
type: string;
|
|
82493
|
-
items?: never;
|
|
82494
82466
|
format?: never;
|
|
82467
|
+
items?: never;
|
|
82495
82468
|
oneOf?: never;
|
|
82496
82469
|
enum?: never;
|
|
82497
82470
|
default?: never;
|
|
@@ -82553,9 +82526,9 @@ declare const _default: {
|
|
|
82553
82526
|
enum: string[];
|
|
82554
82527
|
type: string;
|
|
82555
82528
|
}[];
|
|
82556
|
-
items?: never;
|
|
82557
82529
|
type?: never;
|
|
82558
82530
|
format?: never;
|
|
82531
|
+
items?: never;
|
|
82559
82532
|
enum?: never;
|
|
82560
82533
|
default?: never;
|
|
82561
82534
|
additionalProperties?: never;
|
|
@@ -82599,8 +82572,8 @@ declare const _default: {
|
|
|
82599
82572
|
description: string;
|
|
82600
82573
|
enum: string[];
|
|
82601
82574
|
type: string;
|
|
82602
|
-
items?: never;
|
|
82603
82575
|
format?: never;
|
|
82576
|
+
items?: never;
|
|
82604
82577
|
oneOf?: never;
|
|
82605
82578
|
default?: never;
|
|
82606
82579
|
additionalProperties?: never;
|
|
@@ -82639,8 +82612,8 @@ declare const _default: {
|
|
|
82639
82612
|
};
|
|
82640
82613
|
description: string;
|
|
82641
82614
|
type: string;
|
|
82642
|
-
items?: never;
|
|
82643
82615
|
format?: never;
|
|
82616
|
+
items?: never;
|
|
82644
82617
|
oneOf?: never;
|
|
82645
82618
|
enum?: never;
|
|
82646
82619
|
default?: never;
|
|
@@ -82657,8 +82630,8 @@ declare const _default: {
|
|
|
82657
82630
|
description: string;
|
|
82658
82631
|
nullable: boolean;
|
|
82659
82632
|
type: string;
|
|
82660
|
-
items?: never;
|
|
82661
82633
|
format?: never;
|
|
82634
|
+
items?: never;
|
|
82662
82635
|
oneOf?: never;
|
|
82663
82636
|
enum?: never;
|
|
82664
82637
|
default?: never;
|
|
@@ -82700,8 +82673,8 @@ declare const _default: {
|
|
|
82700
82673
|
nullable: boolean;
|
|
82701
82674
|
type: string;
|
|
82702
82675
|
'x-deprecated': string;
|
|
82703
|
-
items?: never;
|
|
82704
82676
|
description?: never;
|
|
82677
|
+
items?: never;
|
|
82705
82678
|
oneOf?: never;
|
|
82706
82679
|
enum?: never;
|
|
82707
82680
|
default?: never;
|
|
@@ -82716,8 +82689,8 @@ declare const _default: {
|
|
|
82716
82689
|
description: string;
|
|
82717
82690
|
minLength: number;
|
|
82718
82691
|
type: string;
|
|
82719
|
-
items?: never;
|
|
82720
82692
|
format?: never;
|
|
82693
|
+
items?: never;
|
|
82721
82694
|
oneOf?: never;
|
|
82722
82695
|
enum?: never;
|
|
82723
82696
|
default?: never;
|
|
@@ -82824,13 +82797,6 @@ declare const _default: {
|
|
|
82824
82797
|
description: string;
|
|
82825
82798
|
type: string;
|
|
82826
82799
|
};
|
|
82827
|
-
customer_ids: {
|
|
82828
|
-
items: {
|
|
82829
|
-
format: string;
|
|
82830
|
-
type: string;
|
|
82831
|
-
};
|
|
82832
|
-
type: string;
|
|
82833
|
-
};
|
|
82834
82800
|
customer_key: {
|
|
82835
82801
|
description: string;
|
|
82836
82802
|
type: string;
|
|
@@ -84475,35 +84441,13 @@ declare const _default: {
|
|
|
84475
84441
|
description: string;
|
|
84476
84442
|
operationId: string;
|
|
84477
84443
|
parameters: ({
|
|
84478
|
-
in: string;
|
|
84479
|
-
name: string;
|
|
84480
|
-
schema: {
|
|
84481
|
-
items: {
|
|
84482
|
-
format: string;
|
|
84483
|
-
type: string;
|
|
84484
|
-
description?: never;
|
|
84485
|
-
enum?: never;
|
|
84486
|
-
};
|
|
84487
|
-
type: string;
|
|
84488
|
-
description?: never;
|
|
84489
|
-
format?: never;
|
|
84490
|
-
enum?: never;
|
|
84491
|
-
default?: never;
|
|
84492
|
-
additionalProperties?: never;
|
|
84493
|
-
nullable?: never;
|
|
84494
|
-
'x-undocumented'?: never;
|
|
84495
|
-
deprecated?: never;
|
|
84496
|
-
'x-deprecated'?: never;
|
|
84497
|
-
minLength?: never;
|
|
84498
|
-
};
|
|
84499
|
-
} | {
|
|
84500
84444
|
in: string;
|
|
84501
84445
|
name: string;
|
|
84502
84446
|
schema: {
|
|
84503
84447
|
description: string;
|
|
84504
84448
|
type: string;
|
|
84505
|
-
items?: never;
|
|
84506
84449
|
format?: never;
|
|
84450
|
+
items?: never;
|
|
84507
84451
|
enum?: never;
|
|
84508
84452
|
default?: never;
|
|
84509
84453
|
additionalProperties?: never;
|
|
@@ -84559,8 +84503,8 @@ declare const _default: {
|
|
|
84559
84503
|
description: string;
|
|
84560
84504
|
enum: string[];
|
|
84561
84505
|
type: string;
|
|
84562
|
-
items?: never;
|
|
84563
84506
|
format?: never;
|
|
84507
|
+
items?: never;
|
|
84564
84508
|
default?: never;
|
|
84565
84509
|
additionalProperties?: never;
|
|
84566
84510
|
nullable?: never;
|
|
@@ -84619,8 +84563,8 @@ declare const _default: {
|
|
|
84619
84563
|
};
|
|
84620
84564
|
description: string;
|
|
84621
84565
|
type: string;
|
|
84622
|
-
items?: never;
|
|
84623
84566
|
format?: never;
|
|
84567
|
+
items?: never;
|
|
84624
84568
|
enum?: never;
|
|
84625
84569
|
default?: never;
|
|
84626
84570
|
nullable?: never;
|
|
@@ -84636,8 +84580,8 @@ declare const _default: {
|
|
|
84636
84580
|
description: string;
|
|
84637
84581
|
nullable: boolean;
|
|
84638
84582
|
type: string;
|
|
84639
|
-
items?: never;
|
|
84640
84583
|
format?: never;
|
|
84584
|
+
items?: never;
|
|
84641
84585
|
enum?: never;
|
|
84642
84586
|
default?: never;
|
|
84643
84587
|
additionalProperties?: never;
|
|
@@ -84677,8 +84621,8 @@ declare const _default: {
|
|
|
84677
84621
|
nullable: boolean;
|
|
84678
84622
|
type: string;
|
|
84679
84623
|
'x-deprecated': string;
|
|
84680
|
-
items?: never;
|
|
84681
84624
|
description?: never;
|
|
84625
|
+
items?: never;
|
|
84682
84626
|
enum?: never;
|
|
84683
84627
|
default?: never;
|
|
84684
84628
|
additionalProperties?: never;
|
|
@@ -84692,8 +84636,8 @@ declare const _default: {
|
|
|
84692
84636
|
description: string;
|
|
84693
84637
|
minLength: number;
|
|
84694
84638
|
type: string;
|
|
84695
|
-
items?: never;
|
|
84696
84639
|
format?: never;
|
|
84640
|
+
items?: never;
|
|
84697
84641
|
enum?: never;
|
|
84698
84642
|
default?: never;
|
|
84699
84643
|
additionalProperties?: never;
|
|
@@ -84813,13 +84757,6 @@ declare const _default: {
|
|
|
84813
84757
|
description: string;
|
|
84814
84758
|
type: string;
|
|
84815
84759
|
};
|
|
84816
|
-
customer_ids: {
|
|
84817
|
-
items: {
|
|
84818
|
-
format: string;
|
|
84819
|
-
type: string;
|
|
84820
|
-
};
|
|
84821
|
-
type: string;
|
|
84822
|
-
};
|
|
84823
84760
|
customer_key: {
|
|
84824
84761
|
description: string;
|
|
84825
84762
|
type: string;
|
|
@@ -85310,35 +85247,13 @@ declare const _default: {
|
|
|
85310
85247
|
description: string;
|
|
85311
85248
|
operationId: string;
|
|
85312
85249
|
parameters: ({
|
|
85313
|
-
in: string;
|
|
85314
|
-
name: string;
|
|
85315
|
-
schema: {
|
|
85316
|
-
items: {
|
|
85317
|
-
format: string;
|
|
85318
|
-
type: string;
|
|
85319
|
-
description?: never;
|
|
85320
|
-
enum?: never;
|
|
85321
|
-
};
|
|
85322
|
-
type: string;
|
|
85323
|
-
description?: never;
|
|
85324
|
-
format?: never;
|
|
85325
|
-
enum?: never;
|
|
85326
|
-
default?: never;
|
|
85327
|
-
additionalProperties?: never;
|
|
85328
|
-
nullable?: never;
|
|
85329
|
-
'x-undocumented'?: never;
|
|
85330
|
-
deprecated?: never;
|
|
85331
|
-
'x-deprecated'?: never;
|
|
85332
|
-
minLength?: never;
|
|
85333
|
-
};
|
|
85334
|
-
} | {
|
|
85335
85250
|
in: string;
|
|
85336
85251
|
name: string;
|
|
85337
85252
|
schema: {
|
|
85338
85253
|
description: string;
|
|
85339
85254
|
type: string;
|
|
85340
|
-
items?: never;
|
|
85341
85255
|
format?: never;
|
|
85256
|
+
items?: never;
|
|
85342
85257
|
enum?: never;
|
|
85343
85258
|
default?: never;
|
|
85344
85259
|
additionalProperties?: never;
|
|
@@ -85394,8 +85309,8 @@ declare const _default: {
|
|
|
85394
85309
|
description: string;
|
|
85395
85310
|
enum: string[];
|
|
85396
85311
|
type: string;
|
|
85397
|
-
items?: never;
|
|
85398
85312
|
format?: never;
|
|
85313
|
+
items?: never;
|
|
85399
85314
|
default?: never;
|
|
85400
85315
|
additionalProperties?: never;
|
|
85401
85316
|
nullable?: never;
|
|
@@ -85454,8 +85369,8 @@ declare const _default: {
|
|
|
85454
85369
|
};
|
|
85455
85370
|
description: string;
|
|
85456
85371
|
type: string;
|
|
85457
|
-
items?: never;
|
|
85458
85372
|
format?: never;
|
|
85373
|
+
items?: never;
|
|
85459
85374
|
enum?: never;
|
|
85460
85375
|
default?: never;
|
|
85461
85376
|
nullable?: never;
|
|
@@ -85471,8 +85386,8 @@ declare const _default: {
|
|
|
85471
85386
|
description: string;
|
|
85472
85387
|
nullable: boolean;
|
|
85473
85388
|
type: string;
|
|
85474
|
-
items?: never;
|
|
85475
85389
|
format?: never;
|
|
85390
|
+
items?: never;
|
|
85476
85391
|
enum?: never;
|
|
85477
85392
|
default?: never;
|
|
85478
85393
|
additionalProperties?: never;
|
|
@@ -85512,8 +85427,8 @@ declare const _default: {
|
|
|
85512
85427
|
nullable: boolean;
|
|
85513
85428
|
type: string;
|
|
85514
85429
|
'x-deprecated': string;
|
|
85515
|
-
items?: never;
|
|
85516
85430
|
description?: never;
|
|
85431
|
+
items?: never;
|
|
85517
85432
|
enum?: never;
|
|
85518
85433
|
default?: never;
|
|
85519
85434
|
additionalProperties?: never;
|
|
@@ -85527,8 +85442,8 @@ declare const _default: {
|
|
|
85527
85442
|
description: string;
|
|
85528
85443
|
minLength: number;
|
|
85529
85444
|
type: string;
|
|
85530
|
-
items?: never;
|
|
85531
85445
|
format?: never;
|
|
85446
|
+
items?: never;
|
|
85532
85447
|
enum?: never;
|
|
85533
85448
|
default?: never;
|
|
85534
85449
|
additionalProperties?: never;
|
|
@@ -85648,13 +85563,6 @@ declare const _default: {
|
|
|
85648
85563
|
description: string;
|
|
85649
85564
|
type: string;
|
|
85650
85565
|
};
|
|
85651
|
-
customer_ids: {
|
|
85652
|
-
items: {
|
|
85653
|
-
format: string;
|
|
85654
|
-
type: string;
|
|
85655
|
-
};
|
|
85656
|
-
type: string;
|
|
85657
|
-
};
|
|
85658
85566
|
customer_key: {
|
|
85659
85567
|
description: string;
|
|
85660
85568
|
type: string;
|
|
@@ -93440,35 +93348,13 @@ declare const _default: {
|
|
|
93440
93348
|
description: string;
|
|
93441
93349
|
operationId: string;
|
|
93442
93350
|
parameters: ({
|
|
93443
|
-
in: string;
|
|
93444
|
-
name: string;
|
|
93445
|
-
schema: {
|
|
93446
|
-
items: {
|
|
93447
|
-
format: string;
|
|
93448
|
-
type: string;
|
|
93449
|
-
description?: never;
|
|
93450
|
-
enum?: never;
|
|
93451
|
-
};
|
|
93452
|
-
type: string;
|
|
93453
|
-
description?: never;
|
|
93454
|
-
format?: never;
|
|
93455
|
-
enum?: never;
|
|
93456
|
-
default?: never;
|
|
93457
|
-
additionalProperties?: never;
|
|
93458
|
-
nullable?: never;
|
|
93459
|
-
'x-undocumented'?: never;
|
|
93460
|
-
deprecated?: never;
|
|
93461
|
-
'x-deprecated'?: never;
|
|
93462
|
-
minLength?: never;
|
|
93463
|
-
};
|
|
93464
|
-
} | {
|
|
93465
93351
|
in: string;
|
|
93466
93352
|
name: string;
|
|
93467
93353
|
schema: {
|
|
93468
93354
|
description: string;
|
|
93469
93355
|
type: string;
|
|
93470
|
-
items?: never;
|
|
93471
93356
|
format?: never;
|
|
93357
|
+
items?: never;
|
|
93472
93358
|
enum?: never;
|
|
93473
93359
|
default?: never;
|
|
93474
93360
|
additionalProperties?: never;
|
|
@@ -93524,8 +93410,8 @@ declare const _default: {
|
|
|
93524
93410
|
description: string;
|
|
93525
93411
|
enum: string[];
|
|
93526
93412
|
type: string;
|
|
93527
|
-
items?: never;
|
|
93528
93413
|
format?: never;
|
|
93414
|
+
items?: never;
|
|
93529
93415
|
default?: never;
|
|
93530
93416
|
additionalProperties?: never;
|
|
93531
93417
|
nullable?: never;
|
|
@@ -93584,8 +93470,8 @@ declare const _default: {
|
|
|
93584
93470
|
};
|
|
93585
93471
|
description: string;
|
|
93586
93472
|
type: string;
|
|
93587
|
-
items?: never;
|
|
93588
93473
|
format?: never;
|
|
93474
|
+
items?: never;
|
|
93589
93475
|
enum?: never;
|
|
93590
93476
|
default?: never;
|
|
93591
93477
|
nullable?: never;
|
|
@@ -93601,8 +93487,8 @@ declare const _default: {
|
|
|
93601
93487
|
description: string;
|
|
93602
93488
|
nullable: boolean;
|
|
93603
93489
|
type: string;
|
|
93604
|
-
items?: never;
|
|
93605
93490
|
format?: never;
|
|
93491
|
+
items?: never;
|
|
93606
93492
|
enum?: never;
|
|
93607
93493
|
default?: never;
|
|
93608
93494
|
additionalProperties?: never;
|
|
@@ -93642,8 +93528,8 @@ declare const _default: {
|
|
|
93642
93528
|
nullable: boolean;
|
|
93643
93529
|
type: string;
|
|
93644
93530
|
'x-deprecated': string;
|
|
93645
|
-
items?: never;
|
|
93646
93531
|
description?: never;
|
|
93532
|
+
items?: never;
|
|
93647
93533
|
enum?: never;
|
|
93648
93534
|
default?: never;
|
|
93649
93535
|
additionalProperties?: never;
|
|
@@ -93657,8 +93543,8 @@ declare const _default: {
|
|
|
93657
93543
|
description: string;
|
|
93658
93544
|
minLength: number;
|
|
93659
93545
|
type: string;
|
|
93660
|
-
items?: never;
|
|
93661
93546
|
format?: never;
|
|
93547
|
+
items?: never;
|
|
93662
93548
|
enum?: never;
|
|
93663
93549
|
default?: never;
|
|
93664
93550
|
additionalProperties?: never;
|
|
@@ -93778,13 +93664,6 @@ declare const _default: {
|
|
|
93778
93664
|
description: string;
|
|
93779
93665
|
type: string;
|
|
93780
93666
|
};
|
|
93781
|
-
customer_ids: {
|
|
93782
|
-
items: {
|
|
93783
|
-
format: string;
|
|
93784
|
-
type: string;
|
|
93785
|
-
};
|
|
93786
|
-
type: string;
|
|
93787
|
-
};
|
|
93788
93667
|
customer_key: {
|
|
93789
93668
|
description: string;
|
|
93790
93669
|
type: string;
|
|
@@ -110955,6 +110834,8 @@ type Routes = {
|
|
|
110955
110834
|
requested_access_methods: {
|
|
110956
110835
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
110957
110836
|
mode: 'code' | 'card' | 'mobile_key';
|
|
110837
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
110838
|
+
code?: string | undefined;
|
|
110958
110839
|
}[];
|
|
110959
110840
|
/** Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
110960
110841
|
starts_at?: string | undefined;
|
|
@@ -110986,6 +110867,8 @@ type Routes = {
|
|
|
110986
110867
|
display_name: string;
|
|
110987
110868
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
110988
110869
|
mode: 'code' | 'card' | 'mobile_key';
|
|
110870
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
110871
|
+
code?: string | undefined;
|
|
110989
110872
|
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
110990
110873
|
created_at: string;
|
|
110991
110874
|
/** IDs of the access methods created for the requested access method. */
|
|
@@ -111059,6 +110942,8 @@ type Routes = {
|
|
|
111059
110942
|
display_name: string;
|
|
111060
110943
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
111061
110944
|
mode: 'code' | 'card' | 'mobile_key';
|
|
110945
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
110946
|
+
code?: string | undefined;
|
|
111062
110947
|
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
111063
110948
|
created_at: string;
|
|
111064
110949
|
/** IDs of the access methods created for the requested access method. */
|
|
@@ -112770,6 +112655,8 @@ type Routes = {
|
|
|
112770
112655
|
display_name: string;
|
|
112771
112656
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
112772
112657
|
mode: 'code' | 'card' | 'mobile_key';
|
|
112658
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
112659
|
+
code?: string | undefined;
|
|
112773
112660
|
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
112774
112661
|
created_at: string;
|
|
112775
112662
|
/** IDs of the access methods created for the requested access method. */
|
|
@@ -118146,6 +118033,8 @@ type Routes = {
|
|
|
118146
118033
|
display_name: string;
|
|
118147
118034
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118148
118035
|
mode: 'code' | 'card' | 'mobile_key';
|
|
118036
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118037
|
+
code?: string | undefined;
|
|
118149
118038
|
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118150
118039
|
created_at: string;
|
|
118151
118040
|
/** IDs of the access methods created for the requested access method. */
|
|
@@ -133677,7 +133566,6 @@ type Routes = {
|
|
|
133677
133566
|
queryParams: {};
|
|
133678
133567
|
jsonBody: {};
|
|
133679
133568
|
commonParams: {
|
|
133680
|
-
customer_ids?: string[] | undefined;
|
|
133681
133569
|
/** Customer key for which you want to list devices. */
|
|
133682
133570
|
customer_key?: string | undefined;
|
|
133683
133571
|
/** ID of the connected account for which you want to list devices. */
|
|
@@ -135404,7 +135292,6 @@ type Routes = {
|
|
|
135404
135292
|
queryParams: {};
|
|
135405
135293
|
jsonBody: {};
|
|
135406
135294
|
commonParams: {
|
|
135407
|
-
customer_ids?: string[] | undefined;
|
|
135408
135295
|
/** Customer key for which you want to list devices. */
|
|
135409
135296
|
customer_key?: string | undefined;
|
|
135410
135297
|
/** ID of the connected account for which you want to list devices. */
|
|
@@ -142057,7 +141944,6 @@ type Routes = {
|
|
|
142057
141944
|
queryParams: {};
|
|
142058
141945
|
jsonBody: {};
|
|
142059
141946
|
commonParams: {
|
|
142060
|
-
customer_ids?: string[] | undefined;
|
|
142061
141947
|
/** Customer key for which you want to list devices. */
|
|
142062
141948
|
customer_key?: string | undefined;
|
|
142063
141949
|
/** ID of the connected account for which you want to list devices. */
|
|
@@ -149486,7 +149372,6 @@ type Routes = {
|
|
|
149486
149372
|
queryParams: {};
|
|
149487
149373
|
jsonBody: {};
|
|
149488
149374
|
commonParams: {
|
|
149489
|
-
customer_ids?: string[] | undefined;
|
|
149490
149375
|
/** Customer key for which you want to list devices. */
|
|
149491
149376
|
customer_key?: string | undefined;
|
|
149492
149377
|
/** ID of the connected account for which you want to list devices. */
|
|
@@ -168400,7 +168285,6 @@ type Routes = {
|
|
|
168400
168285
|
queryParams: {};
|
|
168401
168286
|
jsonBody: {};
|
|
168402
168287
|
commonParams: {
|
|
168403
|
-
customer_ids?: string[] | undefined;
|
|
168404
168288
|
/** Customer key for which you want to list devices. */
|
|
168405
168289
|
customer_key?: string | undefined;
|
|
168406
168290
|
/** ID of the connected account for which you want to list devices. */
|
|
@@ -183737,6 +183621,8 @@ type Routes = {
|
|
|
183737
183621
|
display_name: string;
|
|
183738
183622
|
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
183739
183623
|
mode: 'code' | 'card' | 'mobile_key';
|
|
183624
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
183625
|
+
code?: string | undefined;
|
|
183740
183626
|
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
183741
183627
|
created_at: string;
|
|
183742
183628
|
/** IDs of the access methods created for the requested access method. */
|