@seamapi/types 1.509.0 → 1.511.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 +95 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -87
- package/dist/index.cjs +95 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +5 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-method.js +5 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -0
- package/lib/seam/connect/openapi.d.ts +126 -87
- package/lib/seam/connect/openapi.js +87 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +7 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +97 -0
- package/src/lib/seam/connect/route-types.ts +32 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3637,6 +3637,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3637
3637
|
created_at: z.ZodString;
|
|
3638
3638
|
starts_at: z.ZodString;
|
|
3639
3639
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
3640
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
3640
3641
|
}, "strip", z.ZodTypeAny, {
|
|
3641
3642
|
name: string | null;
|
|
3642
3643
|
display_name: string;
|
|
@@ -3658,6 +3659,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3658
3659
|
access_grant_key?: string | undefined;
|
|
3659
3660
|
client_session_token?: string | undefined;
|
|
3660
3661
|
instant_key_url?: string | undefined;
|
|
3662
|
+
customization_profile_id?: string | undefined;
|
|
3661
3663
|
}, {
|
|
3662
3664
|
name: string | null;
|
|
3663
3665
|
display_name: string;
|
|
@@ -3679,6 +3681,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3679
3681
|
access_grant_key?: string | undefined;
|
|
3680
3682
|
client_session_token?: string | undefined;
|
|
3681
3683
|
instant_key_url?: string | undefined;
|
|
3684
|
+
customization_profile_id?: string | undefined;
|
|
3682
3685
|
}>;
|
|
3683
3686
|
type AccessGrant = z.infer<typeof access_grant>;
|
|
3684
3687
|
|
|
@@ -3694,6 +3697,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3694
3697
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
3695
3698
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
3696
3699
|
code: z.ZodOptional<z.ZodString>;
|
|
3700
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
3697
3701
|
}, "strip", z.ZodTypeAny, {
|
|
3698
3702
|
display_name: string;
|
|
3699
3703
|
workspace_id: string;
|
|
@@ -3705,6 +3709,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3705
3709
|
code?: string | undefined;
|
|
3706
3710
|
client_session_token?: string | undefined;
|
|
3707
3711
|
instant_key_url?: string | undefined;
|
|
3712
|
+
customization_profile_id?: string | undefined;
|
|
3708
3713
|
is_encoding_required?: boolean | undefined;
|
|
3709
3714
|
}, {
|
|
3710
3715
|
display_name: string;
|
|
@@ -3717,6 +3722,7 @@ declare const access_method: z.ZodObject<{
|
|
|
3717
3722
|
code?: string | undefined;
|
|
3718
3723
|
client_session_token?: string | undefined;
|
|
3719
3724
|
instant_key_url?: string | undefined;
|
|
3725
|
+
customization_profile_id?: string | undefined;
|
|
3720
3726
|
is_encoding_required?: boolean | undefined;
|
|
3721
3727
|
}>;
|
|
3722
3728
|
type AccessMethod = z.infer<typeof access_method>;
|
|
@@ -24257,6 +24263,7 @@ declare const batch: z.ZodObject<{
|
|
|
24257
24263
|
client_session_token: z.ZodOptional<z.ZodString>;
|
|
24258
24264
|
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
24259
24265
|
code: z.ZodOptional<z.ZodString>;
|
|
24266
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
24260
24267
|
}, "strip", z.ZodTypeAny, {
|
|
24261
24268
|
display_name: string;
|
|
24262
24269
|
workspace_id: string;
|
|
@@ -24268,6 +24275,7 @@ declare const batch: z.ZodObject<{
|
|
|
24268
24275
|
code?: string | undefined;
|
|
24269
24276
|
client_session_token?: string | undefined;
|
|
24270
24277
|
instant_key_url?: string | undefined;
|
|
24278
|
+
customization_profile_id?: string | undefined;
|
|
24271
24279
|
is_encoding_required?: boolean | undefined;
|
|
24272
24280
|
}, {
|
|
24273
24281
|
display_name: string;
|
|
@@ -24280,6 +24288,7 @@ declare const batch: z.ZodObject<{
|
|
|
24280
24288
|
code?: string | undefined;
|
|
24281
24289
|
client_session_token?: string | undefined;
|
|
24282
24290
|
instant_key_url?: string | undefined;
|
|
24291
|
+
customization_profile_id?: string | undefined;
|
|
24283
24292
|
is_encoding_required?: boolean | undefined;
|
|
24284
24293
|
}>, "many">>;
|
|
24285
24294
|
access_grants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -24313,6 +24322,7 @@ declare const batch: z.ZodObject<{
|
|
|
24313
24322
|
created_at: z.ZodString;
|
|
24314
24323
|
starts_at: z.ZodString;
|
|
24315
24324
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
24325
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
24316
24326
|
}, "strip", z.ZodTypeAny, {
|
|
24317
24327
|
name: string | null;
|
|
24318
24328
|
display_name: string;
|
|
@@ -24334,6 +24344,7 @@ declare const batch: z.ZodObject<{
|
|
|
24334
24344
|
access_grant_key?: string | undefined;
|
|
24335
24345
|
client_session_token?: string | undefined;
|
|
24336
24346
|
instant_key_url?: string | undefined;
|
|
24347
|
+
customization_profile_id?: string | undefined;
|
|
24337
24348
|
}, {
|
|
24338
24349
|
name: string | null;
|
|
24339
24350
|
display_name: string;
|
|
@@ -24355,6 +24366,7 @@ declare const batch: z.ZodObject<{
|
|
|
24355
24366
|
access_grant_key?: string | undefined;
|
|
24356
24367
|
client_session_token?: string | undefined;
|
|
24357
24368
|
instant_key_url?: string | undefined;
|
|
24369
|
+
customization_profile_id?: string | undefined;
|
|
24358
24370
|
}>, "many">>;
|
|
24359
24371
|
events: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
24360
24372
|
event_id: z.ZodString;
|
|
@@ -31299,6 +31311,7 @@ declare const batch: z.ZodObject<{
|
|
|
31299
31311
|
access_grant_key?: string | undefined;
|
|
31300
31312
|
client_session_token?: string | undefined;
|
|
31301
31313
|
instant_key_url?: string | undefined;
|
|
31314
|
+
customization_profile_id?: string | undefined;
|
|
31302
31315
|
}[] | undefined;
|
|
31303
31316
|
user_identities?: {
|
|
31304
31317
|
display_name: string;
|
|
@@ -31357,6 +31370,7 @@ declare const batch: z.ZodObject<{
|
|
|
31357
31370
|
code?: string | undefined;
|
|
31358
31371
|
client_session_token?: string | undefined;
|
|
31359
31372
|
instant_key_url?: string | undefined;
|
|
31373
|
+
customization_profile_id?: string | undefined;
|
|
31360
31374
|
is_encoding_required?: boolean | undefined;
|
|
31361
31375
|
}[] | undefined;
|
|
31362
31376
|
workspaces?: {
|
|
@@ -35134,6 +35148,7 @@ declare const batch: z.ZodObject<{
|
|
|
35134
35148
|
access_grant_key?: string | undefined;
|
|
35135
35149
|
client_session_token?: string | undefined;
|
|
35136
35150
|
instant_key_url?: string | undefined;
|
|
35151
|
+
customization_profile_id?: string | undefined;
|
|
35137
35152
|
}[] | undefined;
|
|
35138
35153
|
user_identities?: {
|
|
35139
35154
|
display_name: string;
|
|
@@ -35192,6 +35207,7 @@ declare const batch: z.ZodObject<{
|
|
|
35192
35207
|
code?: string | undefined;
|
|
35193
35208
|
client_session_token?: string | undefined;
|
|
35194
35209
|
instant_key_url?: string | undefined;
|
|
35210
|
+
customization_profile_id?: string | undefined;
|
|
35195
35211
|
is_encoding_required?: boolean | undefined;
|
|
35196
35212
|
}[] | undefined;
|
|
35197
35213
|
workspaces?: {
|
|
@@ -50880,6 +50896,11 @@ declare const _default: {
|
|
|
50880
50896
|
format: string;
|
|
50881
50897
|
type: string;
|
|
50882
50898
|
};
|
|
50899
|
+
customization_profile_id: {
|
|
50900
|
+
description: string;
|
|
50901
|
+
format: string;
|
|
50902
|
+
type: string;
|
|
50903
|
+
};
|
|
50883
50904
|
display_name: {
|
|
50884
50905
|
description: string;
|
|
50885
50906
|
type: string;
|
|
@@ -50991,6 +51012,11 @@ declare const _default: {
|
|
|
50991
51012
|
format: string;
|
|
50992
51013
|
type: string;
|
|
50993
51014
|
};
|
|
51015
|
+
customization_profile_id: {
|
|
51016
|
+
description: string;
|
|
51017
|
+
format: string;
|
|
51018
|
+
type: string;
|
|
51019
|
+
};
|
|
50994
51020
|
display_name: {
|
|
50995
51021
|
description: string;
|
|
50996
51022
|
type: string;
|
|
@@ -67121,6 +67147,11 @@ declare const _default: {
|
|
|
67121
67147
|
};
|
|
67122
67148
|
type: string;
|
|
67123
67149
|
};
|
|
67150
|
+
customization_profile_id: {
|
|
67151
|
+
description: string;
|
|
67152
|
+
format: string;
|
|
67153
|
+
type: string;
|
|
67154
|
+
};
|
|
67124
67155
|
device_ids: {
|
|
67125
67156
|
default: never[];
|
|
67126
67157
|
description: string;
|
|
@@ -78360,6 +78391,10 @@ declare const _default: {
|
|
|
78360
78391
|
description: string;
|
|
78361
78392
|
type: string;
|
|
78362
78393
|
};
|
|
78394
|
+
customer_key: {
|
|
78395
|
+
description: string;
|
|
78396
|
+
type: string;
|
|
78397
|
+
};
|
|
78363
78398
|
limit: {
|
|
78364
78399
|
default: number;
|
|
78365
78400
|
description: string;
|
|
@@ -81193,6 +81228,24 @@ declare const _default: {
|
|
|
81193
81228
|
'x-deprecated'?: never;
|
|
81194
81229
|
minLength?: never;
|
|
81195
81230
|
};
|
|
81231
|
+
} | {
|
|
81232
|
+
in: string;
|
|
81233
|
+
name: string;
|
|
81234
|
+
schema: {
|
|
81235
|
+
description: string;
|
|
81236
|
+
type: string;
|
|
81237
|
+
items?: never;
|
|
81238
|
+
format?: never;
|
|
81239
|
+
oneOf?: never;
|
|
81240
|
+
enum?: never;
|
|
81241
|
+
default?: never;
|
|
81242
|
+
additionalProperties?: never;
|
|
81243
|
+
nullable?: never;
|
|
81244
|
+
'x-undocumented'?: never;
|
|
81245
|
+
deprecated?: never;
|
|
81246
|
+
'x-deprecated'?: never;
|
|
81247
|
+
minLength?: never;
|
|
81248
|
+
};
|
|
81196
81249
|
} | {
|
|
81197
81250
|
in: string;
|
|
81198
81251
|
name: string;
|
|
@@ -81319,24 +81372,6 @@ declare const _default: {
|
|
|
81319
81372
|
'x-deprecated'?: never;
|
|
81320
81373
|
minLength?: never;
|
|
81321
81374
|
};
|
|
81322
|
-
} | {
|
|
81323
|
-
in: string;
|
|
81324
|
-
name: string;
|
|
81325
|
-
schema: {
|
|
81326
|
-
description: string;
|
|
81327
|
-
type: string;
|
|
81328
|
-
items?: never;
|
|
81329
|
-
format?: never;
|
|
81330
|
-
oneOf?: never;
|
|
81331
|
-
enum?: never;
|
|
81332
|
-
default?: never;
|
|
81333
|
-
additionalProperties?: never;
|
|
81334
|
-
nullable?: never;
|
|
81335
|
-
'x-undocumented'?: never;
|
|
81336
|
-
deprecated?: never;
|
|
81337
|
-
'x-deprecated'?: never;
|
|
81338
|
-
minLength?: never;
|
|
81339
|
-
};
|
|
81340
81375
|
} | {
|
|
81341
81376
|
in: string;
|
|
81342
81377
|
name: string;
|
|
@@ -81561,6 +81596,10 @@ declare const _default: {
|
|
|
81561
81596
|
};
|
|
81562
81597
|
type: string;
|
|
81563
81598
|
};
|
|
81599
|
+
customer_key: {
|
|
81600
|
+
description: string;
|
|
81601
|
+
type: string;
|
|
81602
|
+
};
|
|
81564
81603
|
device_ids: {
|
|
81565
81604
|
description: string;
|
|
81566
81605
|
items: {
|
|
@@ -82425,6 +82464,24 @@ declare const _default: {
|
|
|
82425
82464
|
'x-deprecated'?: never;
|
|
82426
82465
|
minLength?: never;
|
|
82427
82466
|
};
|
|
82467
|
+
} | {
|
|
82468
|
+
in: string;
|
|
82469
|
+
name: string;
|
|
82470
|
+
schema: {
|
|
82471
|
+
description: string;
|
|
82472
|
+
type: string;
|
|
82473
|
+
items?: never;
|
|
82474
|
+
format?: never;
|
|
82475
|
+
oneOf?: never;
|
|
82476
|
+
enum?: never;
|
|
82477
|
+
default?: never;
|
|
82478
|
+
additionalProperties?: never;
|
|
82479
|
+
nullable?: never;
|
|
82480
|
+
'x-undocumented'?: never;
|
|
82481
|
+
deprecated?: never;
|
|
82482
|
+
'x-deprecated'?: never;
|
|
82483
|
+
minLength?: never;
|
|
82484
|
+
};
|
|
82428
82485
|
} | {
|
|
82429
82486
|
in: string;
|
|
82430
82487
|
name: string;
|
|
@@ -82551,24 +82608,6 @@ declare const _default: {
|
|
|
82551
82608
|
'x-deprecated'?: never;
|
|
82552
82609
|
minLength?: never;
|
|
82553
82610
|
};
|
|
82554
|
-
} | {
|
|
82555
|
-
in: string;
|
|
82556
|
-
name: string;
|
|
82557
|
-
schema: {
|
|
82558
|
-
description: string;
|
|
82559
|
-
type: string;
|
|
82560
|
-
items?: never;
|
|
82561
|
-
format?: never;
|
|
82562
|
-
oneOf?: never;
|
|
82563
|
-
enum?: never;
|
|
82564
|
-
default?: never;
|
|
82565
|
-
additionalProperties?: never;
|
|
82566
|
-
nullable?: never;
|
|
82567
|
-
'x-undocumented'?: never;
|
|
82568
|
-
deprecated?: never;
|
|
82569
|
-
'x-deprecated'?: never;
|
|
82570
|
-
minLength?: never;
|
|
82571
|
-
};
|
|
82572
82611
|
} | {
|
|
82573
82612
|
in: string;
|
|
82574
82613
|
name: string;
|
|
@@ -82772,6 +82811,10 @@ declare const _default: {
|
|
|
82772
82811
|
};
|
|
82773
82812
|
type: string;
|
|
82774
82813
|
};
|
|
82814
|
+
customer_key: {
|
|
82815
|
+
description: string;
|
|
82816
|
+
type: string;
|
|
82817
|
+
};
|
|
82775
82818
|
device_ids: {
|
|
82776
82819
|
description: string;
|
|
82777
82820
|
items: {
|
|
@@ -84430,6 +84473,23 @@ declare const _default: {
|
|
|
84430
84473
|
'x-deprecated'?: never;
|
|
84431
84474
|
minLength?: never;
|
|
84432
84475
|
};
|
|
84476
|
+
} | {
|
|
84477
|
+
in: string;
|
|
84478
|
+
name: string;
|
|
84479
|
+
schema: {
|
|
84480
|
+
description: string;
|
|
84481
|
+
type: string;
|
|
84482
|
+
items?: never;
|
|
84483
|
+
format?: never;
|
|
84484
|
+
enum?: never;
|
|
84485
|
+
default?: never;
|
|
84486
|
+
additionalProperties?: never;
|
|
84487
|
+
nullable?: never;
|
|
84488
|
+
'x-undocumented'?: never;
|
|
84489
|
+
deprecated?: never;
|
|
84490
|
+
'x-deprecated'?: never;
|
|
84491
|
+
minLength?: never;
|
|
84492
|
+
};
|
|
84433
84493
|
} | {
|
|
84434
84494
|
in: string;
|
|
84435
84495
|
name: string;
|
|
@@ -84525,23 +84585,6 @@ declare const _default: {
|
|
|
84525
84585
|
'x-deprecated'?: never;
|
|
84526
84586
|
minLength?: never;
|
|
84527
84587
|
};
|
|
84528
|
-
} | {
|
|
84529
|
-
in: string;
|
|
84530
|
-
name: string;
|
|
84531
|
-
schema: {
|
|
84532
|
-
description: string;
|
|
84533
|
-
type: string;
|
|
84534
|
-
items?: never;
|
|
84535
|
-
format?: never;
|
|
84536
|
-
enum?: never;
|
|
84537
|
-
default?: never;
|
|
84538
|
-
additionalProperties?: never;
|
|
84539
|
-
nullable?: never;
|
|
84540
|
-
'x-undocumented'?: never;
|
|
84541
|
-
deprecated?: never;
|
|
84542
|
-
'x-deprecated'?: never;
|
|
84543
|
-
minLength?: never;
|
|
84544
|
-
};
|
|
84545
84588
|
} | {
|
|
84546
84589
|
in: string;
|
|
84547
84590
|
name: string;
|
|
@@ -84754,6 +84797,10 @@ declare const _default: {
|
|
|
84754
84797
|
};
|
|
84755
84798
|
type: string;
|
|
84756
84799
|
};
|
|
84800
|
+
customer_key: {
|
|
84801
|
+
description: string;
|
|
84802
|
+
type: string;
|
|
84803
|
+
};
|
|
84757
84804
|
device_ids: {
|
|
84758
84805
|
description: string;
|
|
84759
84806
|
items: {
|
|
@@ -85261,6 +85308,23 @@ declare const _default: {
|
|
|
85261
85308
|
'x-deprecated'?: never;
|
|
85262
85309
|
minLength?: never;
|
|
85263
85310
|
};
|
|
85311
|
+
} | {
|
|
85312
|
+
in: string;
|
|
85313
|
+
name: string;
|
|
85314
|
+
schema: {
|
|
85315
|
+
description: string;
|
|
85316
|
+
type: string;
|
|
85317
|
+
items?: never;
|
|
85318
|
+
format?: never;
|
|
85319
|
+
enum?: never;
|
|
85320
|
+
default?: never;
|
|
85321
|
+
additionalProperties?: never;
|
|
85322
|
+
nullable?: never;
|
|
85323
|
+
'x-undocumented'?: never;
|
|
85324
|
+
deprecated?: never;
|
|
85325
|
+
'x-deprecated'?: never;
|
|
85326
|
+
minLength?: never;
|
|
85327
|
+
};
|
|
85264
85328
|
} | {
|
|
85265
85329
|
in: string;
|
|
85266
85330
|
name: string;
|
|
@@ -85356,23 +85420,6 @@ declare const _default: {
|
|
|
85356
85420
|
'x-deprecated'?: never;
|
|
85357
85421
|
minLength?: never;
|
|
85358
85422
|
};
|
|
85359
|
-
} | {
|
|
85360
|
-
in: string;
|
|
85361
|
-
name: string;
|
|
85362
|
-
schema: {
|
|
85363
|
-
description: string;
|
|
85364
|
-
type: string;
|
|
85365
|
-
items?: never;
|
|
85366
|
-
format?: never;
|
|
85367
|
-
enum?: never;
|
|
85368
|
-
default?: never;
|
|
85369
|
-
additionalProperties?: never;
|
|
85370
|
-
nullable?: never;
|
|
85371
|
-
'x-undocumented'?: never;
|
|
85372
|
-
deprecated?: never;
|
|
85373
|
-
'x-deprecated'?: never;
|
|
85374
|
-
minLength?: never;
|
|
85375
|
-
};
|
|
85376
85423
|
} | {
|
|
85377
85424
|
in: string;
|
|
85378
85425
|
name: string;
|
|
@@ -85585,6 +85632,10 @@ declare const _default: {
|
|
|
85585
85632
|
};
|
|
85586
85633
|
type: string;
|
|
85587
85634
|
};
|
|
85635
|
+
customer_key: {
|
|
85636
|
+
description: string;
|
|
85637
|
+
type: string;
|
|
85638
|
+
};
|
|
85588
85639
|
device_ids: {
|
|
85589
85640
|
description: string;
|
|
85590
85641
|
items: {
|
|
@@ -92835,6 +92886,23 @@ declare const _default: {
|
|
|
92835
92886
|
'x-deprecated'?: never;
|
|
92836
92887
|
minLength?: never;
|
|
92837
92888
|
};
|
|
92889
|
+
} | {
|
|
92890
|
+
in: string;
|
|
92891
|
+
name: string;
|
|
92892
|
+
schema: {
|
|
92893
|
+
description: string;
|
|
92894
|
+
type: string;
|
|
92895
|
+
items?: never;
|
|
92896
|
+
format?: never;
|
|
92897
|
+
enum?: never;
|
|
92898
|
+
default?: never;
|
|
92899
|
+
additionalProperties?: never;
|
|
92900
|
+
nullable?: never;
|
|
92901
|
+
'x-undocumented'?: never;
|
|
92902
|
+
deprecated?: never;
|
|
92903
|
+
'x-deprecated'?: never;
|
|
92904
|
+
minLength?: never;
|
|
92905
|
+
};
|
|
92838
92906
|
} | {
|
|
92839
92907
|
in: string;
|
|
92840
92908
|
name: string;
|
|
@@ -92930,23 +92998,6 @@ declare const _default: {
|
|
|
92930
92998
|
'x-deprecated'?: never;
|
|
92931
92999
|
minLength?: never;
|
|
92932
93000
|
};
|
|
92933
|
-
} | {
|
|
92934
|
-
in: string;
|
|
92935
|
-
name: string;
|
|
92936
|
-
schema: {
|
|
92937
|
-
description: string;
|
|
92938
|
-
type: string;
|
|
92939
|
-
items?: never;
|
|
92940
|
-
format?: never;
|
|
92941
|
-
enum?: never;
|
|
92942
|
-
default?: never;
|
|
92943
|
-
additionalProperties?: never;
|
|
92944
|
-
nullable?: never;
|
|
92945
|
-
'x-undocumented'?: never;
|
|
92946
|
-
deprecated?: never;
|
|
92947
|
-
'x-deprecated'?: never;
|
|
92948
|
-
minLength?: never;
|
|
92949
|
-
};
|
|
92950
93001
|
} | {
|
|
92951
93002
|
in: string;
|
|
92952
93003
|
name: string;
|
|
@@ -93159,6 +93210,10 @@ declare const _default: {
|
|
|
93159
93210
|
};
|
|
93160
93211
|
type: string;
|
|
93161
93212
|
};
|
|
93213
|
+
customer_key: {
|
|
93214
|
+
description: string;
|
|
93215
|
+
type: string;
|
|
93216
|
+
};
|
|
93162
93217
|
device_ids: {
|
|
93163
93218
|
description: string;
|
|
93164
93219
|
items: {
|
|
@@ -110330,6 +110385,8 @@ type Routes = {
|
|
|
110330
110385
|
starts_at?: string | undefined;
|
|
110331
110386
|
/** Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`. */
|
|
110332
110387
|
ends_at?: (string | undefined) | null;
|
|
110388
|
+
/** ID of the customization profile to apply to the Access Grant and its access methods. */
|
|
110389
|
+
customization_profile_id?: string | undefined;
|
|
110333
110390
|
};
|
|
110334
110391
|
formData: {};
|
|
110335
110392
|
jsonResponse: {
|
|
@@ -110375,6 +110432,8 @@ type Routes = {
|
|
|
110375
110432
|
starts_at: string;
|
|
110376
110433
|
/** Date and time at which the Access Grant ends. */
|
|
110377
110434
|
ends_at: string | null;
|
|
110435
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
110436
|
+
customization_profile_id?: string | undefined;
|
|
110378
110437
|
};
|
|
110379
110438
|
};
|
|
110380
110439
|
};
|
|
@@ -110446,6 +110505,8 @@ type Routes = {
|
|
|
110446
110505
|
starts_at: string;
|
|
110447
110506
|
/** Date and time at which the Access Grant ends. */
|
|
110448
110507
|
ends_at: string | null;
|
|
110508
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
110509
|
+
customization_profile_id?: string | undefined;
|
|
110449
110510
|
};
|
|
110450
110511
|
};
|
|
110451
110512
|
};
|
|
@@ -112155,6 +112216,8 @@ type Routes = {
|
|
|
112155
112216
|
starts_at: string;
|
|
112156
112217
|
/** Date and time at which the Access Grant ends. */
|
|
112157
112218
|
ends_at: string | null;
|
|
112219
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
112220
|
+
customization_profile_id?: string | undefined;
|
|
112158
112221
|
}[];
|
|
112159
112222
|
};
|
|
112160
112223
|
};
|
|
@@ -113483,6 +113546,8 @@ type Routes = {
|
|
|
113483
113546
|
is_encoding_required?: boolean | undefined;
|
|
113484
113547
|
/** The actual PIN code for code access methods. */
|
|
113485
113548
|
code?: string | undefined;
|
|
113549
|
+
/** ID of the customization profile associated with the access method. */
|
|
113550
|
+
customization_profile_id?: string | undefined;
|
|
113486
113551
|
};
|
|
113487
113552
|
};
|
|
113488
113553
|
};
|
|
@@ -117483,6 +117548,8 @@ type Routes = {
|
|
|
117483
117548
|
is_encoding_required?: boolean | undefined;
|
|
117484
117549
|
/** The actual PIN code for code access methods. */
|
|
117485
117550
|
code?: string | undefined;
|
|
117551
|
+
/** ID of the customization profile associated with the access method. */
|
|
117552
|
+
customization_profile_id?: string | undefined;
|
|
117486
117553
|
}[] | undefined;
|
|
117487
117554
|
access_grants?: {
|
|
117488
117555
|
/** ID of the Seam workspace associated with the Access Grant. */
|
|
@@ -117525,6 +117592,8 @@ type Routes = {
|
|
|
117525
117592
|
starts_at: string;
|
|
117526
117593
|
/** Date and time at which the Access Grant ends. */
|
|
117527
117594
|
ends_at: string | null;
|
|
117595
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
117596
|
+
customization_profile_id?: string | undefined;
|
|
117528
117597
|
}[] | undefined;
|
|
117529
117598
|
events?: ({
|
|
117530
117599
|
/** ID of the event. */
|
|
@@ -120495,6 +120564,8 @@ type Routes = {
|
|
|
120495
120564
|
is_encoding_required?: boolean | undefined;
|
|
120496
120565
|
/** The actual PIN code for code access methods. */
|
|
120497
120566
|
code?: string | undefined;
|
|
120567
|
+
/** ID of the customization profile associated with the access method. */
|
|
120568
|
+
customization_profile_id?: string | undefined;
|
|
120498
120569
|
}[];
|
|
120499
120570
|
};
|
|
120500
120571
|
};
|
|
@@ -130691,6 +130762,8 @@ type Routes = {
|
|
|
130691
130762
|
queryParams: {};
|
|
130692
130763
|
jsonBody: {};
|
|
130693
130764
|
commonParams: {
|
|
130765
|
+
/** Customer key for which you want to list connect webviews. */
|
|
130766
|
+
customer_key?: string | undefined;
|
|
130694
130767
|
/** Your user ID for the user by which you want to filter Connect Webviews. */
|
|
130695
130768
|
user_identifier_key?: string | undefined;
|
|
130696
130769
|
/** Custom metadata pairs by which you want to [filter Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). Returns Connect Webviews with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
@@ -133030,6 +133103,8 @@ type Routes = {
|
|
|
133030
133103
|
jsonBody: {};
|
|
133031
133104
|
commonParams: {
|
|
133032
133105
|
customer_ids?: string[] | undefined;
|
|
133106
|
+
/** Customer key for which you want to list devices. */
|
|
133107
|
+
customer_key?: string | undefined;
|
|
133033
133108
|
/** ID of the connected account for which you want to list devices. */
|
|
133034
133109
|
connected_account_id?: string | undefined;
|
|
133035
133110
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -134755,6 +134830,8 @@ type Routes = {
|
|
|
134755
134830
|
jsonBody: {};
|
|
134756
134831
|
commonParams: {
|
|
134757
134832
|
customer_ids?: string[] | undefined;
|
|
134833
|
+
/** Customer key for which you want to list devices. */
|
|
134834
|
+
customer_key?: string | undefined;
|
|
134758
134835
|
/** ID of the connected account for which you want to list devices. */
|
|
134759
134836
|
connected_account_id?: string | undefined;
|
|
134760
134837
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -141404,6 +141481,8 @@ type Routes = {
|
|
|
141404
141481
|
jsonBody: {};
|
|
141405
141482
|
commonParams: {
|
|
141406
141483
|
customer_ids?: string[] | undefined;
|
|
141484
|
+
/** Customer key for which you want to list devices. */
|
|
141485
|
+
customer_key?: string | undefined;
|
|
141407
141486
|
/** ID of the connected account for which you want to list devices. */
|
|
141408
141487
|
connected_account_id?: string | undefined;
|
|
141409
141488
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -148831,6 +148910,8 @@ type Routes = {
|
|
|
148831
148910
|
jsonBody: {};
|
|
148832
148911
|
commonParams: {
|
|
148833
148912
|
customer_ids?: string[] | undefined;
|
|
148913
|
+
/** Customer key for which you want to list devices. */
|
|
148914
|
+
customer_key?: string | undefined;
|
|
148834
148915
|
/** ID of the connected account for which you want to list devices. */
|
|
148835
148916
|
connected_account_id?: string | undefined;
|
|
148836
148917
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -167667,6 +167748,8 @@ type Routes = {
|
|
|
167667
167748
|
jsonBody: {};
|
|
167668
167749
|
commonParams: {
|
|
167669
167750
|
customer_ids?: string[] | undefined;
|
|
167751
|
+
/** Customer key for which you want to list devices. */
|
|
167752
|
+
customer_key?: string | undefined;
|
|
167670
167753
|
/** ID of the connected account for which you want to list devices. */
|
|
167671
167754
|
connected_account_id?: string | undefined;
|
|
167672
167755
|
/** Array of IDs of the connected accounts for which you want to list devices. */
|
|
@@ -182978,6 +183061,8 @@ type Routes = {
|
|
|
182978
183061
|
is_encoding_required?: boolean | undefined;
|
|
182979
183062
|
/** The actual PIN code for code access methods. */
|
|
182980
183063
|
code?: string | undefined;
|
|
183064
|
+
/** ID of the customization profile associated with the access method. */
|
|
183065
|
+
customization_profile_id?: string | undefined;
|
|
182981
183066
|
}[] | undefined;
|
|
182982
183067
|
access_grants?: {
|
|
182983
183068
|
/** ID of the Seam workspace associated with the Access Grant. */
|
|
@@ -183020,6 +183105,8 @@ type Routes = {
|
|
|
183020
183105
|
starts_at: string;
|
|
183021
183106
|
/** Date and time at which the Access Grant ends. */
|
|
183022
183107
|
ends_at: string | null;
|
|
183108
|
+
/** ID of the customization profile associated with the Access Grant. */
|
|
183109
|
+
customization_profile_id?: string | undefined;
|
|
183023
183110
|
}[] | undefined;
|
|
183024
183111
|
events?: ({
|
|
183025
183112
|
/** ID of the event. */
|