@seamapi/types 1.603.0 → 1.604.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 +25 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +50 -0
- package/dist/index.cjs +25 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +6 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +18 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3548,6 +3548,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3548
3548
|
workspace_id: z.ZodString;
|
|
3549
3549
|
access_grant_id: z.ZodString;
|
|
3550
3550
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
3551
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
3551
3552
|
user_identity_id: z.ZodString;
|
|
3552
3553
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
3553
3554
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3618,6 +3619,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3618
3619
|
}[];
|
|
3619
3620
|
access_method_ids: string[];
|
|
3620
3621
|
access_grant_key?: string | undefined;
|
|
3622
|
+
reservation_key?: string | undefined;
|
|
3621
3623
|
client_session_token?: string | undefined;
|
|
3622
3624
|
instant_key_url?: string | undefined;
|
|
3623
3625
|
customization_profile_id?: string | undefined;
|
|
@@ -3646,6 +3648,7 @@ declare const access_grant: z.ZodObject<{
|
|
|
3646
3648
|
}[];
|
|
3647
3649
|
access_method_ids: string[];
|
|
3648
3650
|
access_grant_key?: string | undefined;
|
|
3651
|
+
reservation_key?: string | undefined;
|
|
3649
3652
|
client_session_token?: string | undefined;
|
|
3650
3653
|
instant_key_url?: string | undefined;
|
|
3651
3654
|
customization_profile_id?: string | undefined;
|
|
@@ -24698,6 +24701,7 @@ declare const batch: z.ZodObject<{
|
|
|
24698
24701
|
workspace_id: z.ZodString;
|
|
24699
24702
|
access_grant_id: z.ZodString;
|
|
24700
24703
|
access_grant_key: z.ZodOptional<z.ZodString>;
|
|
24704
|
+
reservation_key: z.ZodOptional<z.ZodString>;
|
|
24701
24705
|
user_identity_id: z.ZodString;
|
|
24702
24706
|
location_ids: z.ZodArray<z.ZodString, "many">;
|
|
24703
24707
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -24768,6 +24772,7 @@ declare const batch: z.ZodObject<{
|
|
|
24768
24772
|
}[];
|
|
24769
24773
|
access_method_ids: string[];
|
|
24770
24774
|
access_grant_key?: string | undefined;
|
|
24775
|
+
reservation_key?: string | undefined;
|
|
24771
24776
|
client_session_token?: string | undefined;
|
|
24772
24777
|
instant_key_url?: string | undefined;
|
|
24773
24778
|
customization_profile_id?: string | undefined;
|
|
@@ -24796,6 +24801,7 @@ declare const batch: z.ZodObject<{
|
|
|
24796
24801
|
}[];
|
|
24797
24802
|
access_method_ids: string[];
|
|
24798
24803
|
access_grant_key?: string | undefined;
|
|
24804
|
+
reservation_key?: string | undefined;
|
|
24799
24805
|
client_session_token?: string | undefined;
|
|
24800
24806
|
instant_key_url?: string | undefined;
|
|
24801
24807
|
customization_profile_id?: string | undefined;
|
|
@@ -31822,6 +31828,7 @@ declare const batch: z.ZodObject<{
|
|
|
31822
31828
|
}[];
|
|
31823
31829
|
access_method_ids: string[];
|
|
31824
31830
|
access_grant_key?: string | undefined;
|
|
31831
|
+
reservation_key?: string | undefined;
|
|
31825
31832
|
client_session_token?: string | undefined;
|
|
31826
31833
|
instant_key_url?: string | undefined;
|
|
31827
31834
|
customization_profile_id?: string | undefined;
|
|
@@ -35731,6 +35738,7 @@ declare const batch: z.ZodObject<{
|
|
|
35731
35738
|
}[];
|
|
35732
35739
|
access_method_ids: string[];
|
|
35733
35740
|
access_grant_key?: string | undefined;
|
|
35741
|
+
reservation_key?: string | undefined;
|
|
35734
35742
|
client_session_token?: string | undefined;
|
|
35735
35743
|
instant_key_url?: string | undefined;
|
|
35736
35744
|
customization_profile_id?: string | undefined;
|
|
@@ -51967,6 +51975,10 @@ declare const _default: {
|
|
|
51967
51975
|
};
|
|
51968
51976
|
type: string;
|
|
51969
51977
|
};
|
|
51978
|
+
reservation_key: {
|
|
51979
|
+
description: string;
|
|
51980
|
+
type: string;
|
|
51981
|
+
};
|
|
51970
51982
|
space_ids: {
|
|
51971
51983
|
description: string;
|
|
51972
51984
|
items: {
|
|
@@ -69140,6 +69152,10 @@ declare const _default: {
|
|
|
69140
69152
|
};
|
|
69141
69153
|
type: string;
|
|
69142
69154
|
};
|
|
69155
|
+
reservation_key: {
|
|
69156
|
+
description: string;
|
|
69157
|
+
type: string;
|
|
69158
|
+
};
|
|
69143
69159
|
space_ids: {
|
|
69144
69160
|
description: string;
|
|
69145
69161
|
items: {
|
|
@@ -70196,6 +70212,10 @@ declare const _default: {
|
|
|
70196
70212
|
};
|
|
70197
70213
|
type: string;
|
|
70198
70214
|
};
|
|
70215
|
+
reservation_key: {
|
|
70216
|
+
description: string;
|
|
70217
|
+
type: string;
|
|
70218
|
+
};
|
|
70199
70219
|
space_ids: {
|
|
70200
70220
|
description: string;
|
|
70201
70221
|
items: {
|
|
@@ -70414,6 +70434,10 @@ declare const _default: {
|
|
|
70414
70434
|
};
|
|
70415
70435
|
type: string;
|
|
70416
70436
|
};
|
|
70437
|
+
reservation_key: {
|
|
70438
|
+
description: string;
|
|
70439
|
+
type: string;
|
|
70440
|
+
};
|
|
70417
70441
|
space_ids: {
|
|
70418
70442
|
description: string;
|
|
70419
70443
|
items: {
|
|
@@ -70627,6 +70651,10 @@ declare const _default: {
|
|
|
70627
70651
|
};
|
|
70628
70652
|
type: string;
|
|
70629
70653
|
};
|
|
70654
|
+
reservation_key: {
|
|
70655
|
+
description: string;
|
|
70656
|
+
type: string;
|
|
70657
|
+
};
|
|
70630
70658
|
space_ids: {
|
|
70631
70659
|
description: string;
|
|
70632
70660
|
items: {
|
|
@@ -70857,6 +70885,10 @@ declare const _default: {
|
|
|
70857
70885
|
};
|
|
70858
70886
|
type: string;
|
|
70859
70887
|
};
|
|
70888
|
+
reservation_key: {
|
|
70889
|
+
description: string;
|
|
70890
|
+
type: string;
|
|
70891
|
+
};
|
|
70860
70892
|
space_ids: {
|
|
70861
70893
|
description: string;
|
|
70862
70894
|
items: {
|
|
@@ -118249,6 +118281,8 @@ type Routes = {
|
|
|
118249
118281
|
name?: (string | undefined) | null;
|
|
118250
118282
|
/** Unique key for the access grant within the workspace. */
|
|
118251
118283
|
access_grant_key?: string | undefined;
|
|
118284
|
+
/** Reservation key for the access grant. */
|
|
118285
|
+
reservation_key?: string | undefined;
|
|
118252
118286
|
/**
|
|
118253
118287
|
* @deprecated Use `space_ids`.*/
|
|
118254
118288
|
location_ids?: string[] | undefined;
|
|
@@ -118294,6 +118328,8 @@ type Routes = {
|
|
|
118294
118328
|
access_grant_id: string;
|
|
118295
118329
|
/** Unique key for the access grant within the workspace. */
|
|
118296
118330
|
access_grant_key?: string | undefined;
|
|
118331
|
+
/** Reservation key for the access grant. */
|
|
118332
|
+
reservation_key?: string | undefined;
|
|
118297
118333
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118298
118334
|
user_identity_id: string;
|
|
118299
118335
|
/**
|
|
@@ -118378,6 +118414,8 @@ type Routes = {
|
|
|
118378
118414
|
access_grant_id: string;
|
|
118379
118415
|
/** Unique key for the access grant within the workspace. */
|
|
118380
118416
|
access_grant_key?: string | undefined;
|
|
118417
|
+
/** Reservation key for the access grant. */
|
|
118418
|
+
reservation_key?: string | undefined;
|
|
118381
118419
|
/** ID of user identity to which the Access Grant gives access. */
|
|
118382
118420
|
user_identity_id: string;
|
|
118383
118421
|
/**
|
|
@@ -120157,6 +120195,8 @@ type Routes = {
|
|
|
120157
120195
|
access_grant_id: string;
|
|
120158
120196
|
/** Unique key for the access grant within the workspace. */
|
|
120159
120197
|
access_grant_key?: string | undefined;
|
|
120198
|
+
/** Reservation key for the access grant. */
|
|
120199
|
+
reservation_key?: string | undefined;
|
|
120160
120200
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120161
120201
|
user_identity_id: string;
|
|
120162
120202
|
/**
|
|
@@ -120233,6 +120273,8 @@ type Routes = {
|
|
|
120233
120273
|
access_grant_id: string;
|
|
120234
120274
|
/** Unique key for the access grant within the workspace. */
|
|
120235
120275
|
access_grant_key?: string | undefined;
|
|
120276
|
+
/** Reservation key for the access grant. */
|
|
120277
|
+
reservation_key?: string | undefined;
|
|
120236
120278
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120237
120279
|
user_identity_id: string;
|
|
120238
120280
|
/**
|
|
@@ -120300,6 +120342,8 @@ type Routes = {
|
|
|
120300
120342
|
workspace_id: string;
|
|
120301
120343
|
/** ID of the Access Grant. */
|
|
120302
120344
|
access_grant_id: string;
|
|
120345
|
+
/** Reservation key for the access grant. */
|
|
120346
|
+
reservation_key?: string | undefined;
|
|
120303
120347
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120304
120348
|
user_identity_id: string;
|
|
120305
120349
|
/**
|
|
@@ -120364,6 +120408,8 @@ type Routes = {
|
|
|
120364
120408
|
workspace_id: string;
|
|
120365
120409
|
/** ID of the Access Grant. */
|
|
120366
120410
|
access_grant_id: string;
|
|
120411
|
+
/** Reservation key for the access grant. */
|
|
120412
|
+
reservation_key?: string | undefined;
|
|
120367
120413
|
/** ID of user identity to which the Access Grant gives access. */
|
|
120368
120414
|
user_identity_id: string;
|
|
120369
120415
|
/**
|
|
@@ -125859,6 +125905,8 @@ type Routes = {
|
|
|
125859
125905
|
access_grant_id: string;
|
|
125860
125906
|
/** Unique key for the access grant within the workspace. */
|
|
125861
125907
|
access_grant_key?: string | undefined;
|
|
125908
|
+
/** Reservation key for the access grant. */
|
|
125909
|
+
reservation_key?: string | undefined;
|
|
125862
125910
|
/** ID of user identity to which the Access Grant gives access. */
|
|
125863
125911
|
user_identity_id: string;
|
|
125864
125912
|
/**
|
|
@@ -193429,6 +193477,8 @@ type Routes = {
|
|
|
193429
193477
|
access_grant_id: string;
|
|
193430
193478
|
/** Unique key for the access grant within the workspace. */
|
|
193431
193479
|
access_grant_key?: string | undefined;
|
|
193480
|
+
/** Reservation key for the access grant. */
|
|
193481
|
+
reservation_key?: string | undefined;
|
|
193432
193482
|
/** ID of user identity to which the Access Grant gives access. */
|
|
193433
193483
|
user_identity_id: string;
|
|
193434
193484
|
/**
|
package/dist/index.cjs
CHANGED
|
@@ -2352,6 +2352,7 @@ var access_grant = zod.z.object({
|
|
|
2352
2352
|
workspace_id: zod.z.string().uuid().describe("ID of the Seam workspace associated with the Access Grant."),
|
|
2353
2353
|
access_grant_id: zod.z.string().uuid().describe("ID of the Access Grant."),
|
|
2354
2354
|
access_grant_key: zod.z.string().optional().describe("Unique key for the access grant within the workspace."),
|
|
2355
|
+
reservation_key: zod.z.string().optional().describe("Reservation key for the access grant."),
|
|
2355
2356
|
user_identity_id: zod.z.string().uuid().describe("ID of user identity to which the Access Grant gives access."),
|
|
2356
2357
|
location_ids: zod.z.array(zod.z.string().uuid()).describe(`
|
|
2357
2358
|
---
|
|
@@ -7400,6 +7401,10 @@ var openapi_default = {
|
|
|
7400
7401
|
},
|
|
7401
7402
|
type: "array"
|
|
7402
7403
|
},
|
|
7404
|
+
reservation_key: {
|
|
7405
|
+
description: "Reservation key for the access grant.",
|
|
7406
|
+
type: "string"
|
|
7407
|
+
},
|
|
7403
7408
|
space_ids: {
|
|
7404
7409
|
description: "IDs of the spaces to which the Access Grant gives access.",
|
|
7405
7410
|
items: { format: "uuid", type: "string" },
|
|
@@ -31312,6 +31317,10 @@ var openapi_default = {
|
|
|
31312
31317
|
},
|
|
31313
31318
|
type: "array"
|
|
31314
31319
|
},
|
|
31320
|
+
reservation_key: {
|
|
31321
|
+
description: "Reservation key for the access grant.",
|
|
31322
|
+
type: "string"
|
|
31323
|
+
},
|
|
31315
31324
|
space_ids: {
|
|
31316
31325
|
description: "Set of IDs of existing spaces to which access is being granted.",
|
|
31317
31326
|
items: { format: "uuid", type: "string" },
|
|
@@ -32197,6 +32206,10 @@ var openapi_default = {
|
|
|
32197
32206
|
},
|
|
32198
32207
|
type: "array"
|
|
32199
32208
|
},
|
|
32209
|
+
reservation_key: {
|
|
32210
|
+
description: "Reservation key for the access grant.",
|
|
32211
|
+
type: "string"
|
|
32212
|
+
},
|
|
32200
32213
|
space_ids: {
|
|
32201
32214
|
description: "IDs of the spaces to which the Access Grant gives access.",
|
|
32202
32215
|
items: { format: "uuid", type: "string" },
|
|
@@ -32405,6 +32418,10 @@ var openapi_default = {
|
|
|
32405
32418
|
},
|
|
32406
32419
|
type: "array"
|
|
32407
32420
|
},
|
|
32421
|
+
reservation_key: {
|
|
32422
|
+
description: "Reservation key for the access grant.",
|
|
32423
|
+
type: "string"
|
|
32424
|
+
},
|
|
32408
32425
|
space_ids: {
|
|
32409
32426
|
description: "IDs of the spaces to which the Access Grant gives access.",
|
|
32410
32427
|
items: { format: "uuid", type: "string" },
|
|
@@ -32628,6 +32645,10 @@ var openapi_default = {
|
|
|
32628
32645
|
},
|
|
32629
32646
|
type: "array"
|
|
32630
32647
|
},
|
|
32648
|
+
reservation_key: {
|
|
32649
|
+
description: "Reservation key for the access grant.",
|
|
32650
|
+
type: "string"
|
|
32651
|
+
},
|
|
32631
32652
|
space_ids: {
|
|
32632
32653
|
description: "IDs of the spaces to which the Access Grant gives access.",
|
|
32633
32654
|
items: { format: "uuid", type: "string" },
|
|
@@ -32848,6 +32869,10 @@ var openapi_default = {
|
|
|
32848
32869
|
},
|
|
32849
32870
|
type: "array"
|
|
32850
32871
|
},
|
|
32872
|
+
reservation_key: {
|
|
32873
|
+
description: "Reservation key for the access grant.",
|
|
32874
|
+
type: "string"
|
|
32875
|
+
},
|
|
32851
32876
|
space_ids: {
|
|
32852
32877
|
description: "IDs of the spaces to which the Access Grant gives access.",
|
|
32853
32878
|
items: { format: "uuid", type: "string" },
|