@seamapi/types 1.602.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 +125 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +201 -2
- package/dist/index.cjs +125 -4
- 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 +145 -2
- package/lib/seam/connect/openapi.js +124 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -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 +136 -4
- package/src/lib/seam/connect/route-types.ts +48 -0
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" },
|
|
@@ -61662,6 +61687,35 @@ var openapi_default = {
|
|
|
61662
61687
|
format: "uuid",
|
|
61663
61688
|
type: "string"
|
|
61664
61689
|
}
|
|
61690
|
+
},
|
|
61691
|
+
{
|
|
61692
|
+
in: "query",
|
|
61693
|
+
name: "limit",
|
|
61694
|
+
schema: {
|
|
61695
|
+
default: 500,
|
|
61696
|
+
description: "Maximum number of records to return per page.",
|
|
61697
|
+
exclusiveMinimum: true,
|
|
61698
|
+
minimum: 0,
|
|
61699
|
+
type: "integer"
|
|
61700
|
+
}
|
|
61701
|
+
},
|
|
61702
|
+
{
|
|
61703
|
+
in: "query",
|
|
61704
|
+
name: "created_before",
|
|
61705
|
+
schema: {
|
|
61706
|
+
description: "Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.",
|
|
61707
|
+
format: "date-time",
|
|
61708
|
+
type: "string"
|
|
61709
|
+
}
|
|
61710
|
+
},
|
|
61711
|
+
{
|
|
61712
|
+
in: "query",
|
|
61713
|
+
name: "page_cursor",
|
|
61714
|
+
schema: {
|
|
61715
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
61716
|
+
nullable: true,
|
|
61717
|
+
type: "string"
|
|
61718
|
+
}
|
|
61665
61719
|
}
|
|
61666
61720
|
],
|
|
61667
61721
|
responses: {
|
|
@@ -61671,12 +61725,13 @@ var openapi_default = {
|
|
|
61671
61725
|
schema: {
|
|
61672
61726
|
properties: {
|
|
61673
61727
|
ok: { type: "boolean" },
|
|
61728
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
61674
61729
|
user_identities: {
|
|
61675
61730
|
items: { $ref: "#/components/schemas/user_identity" },
|
|
61676
61731
|
type: "array"
|
|
61677
61732
|
}
|
|
61678
61733
|
},
|
|
61679
|
-
required: ["user_identities", "ok"],
|
|
61734
|
+
required: ["user_identities", "pagination", "ok"],
|
|
61680
61735
|
type: "object"
|
|
61681
61736
|
}
|
|
61682
61737
|
}
|
|
@@ -61708,11 +61763,28 @@ var openapi_default = {
|
|
|
61708
61763
|
"application/json": {
|
|
61709
61764
|
schema: {
|
|
61710
61765
|
properties: {
|
|
61766
|
+
created_before: {
|
|
61767
|
+
description: "Timestamp by which to limit returned user identities. Returns user identities created before this timestamp.",
|
|
61768
|
+
format: "date-time",
|
|
61769
|
+
type: "string"
|
|
61770
|
+
},
|
|
61711
61771
|
credential_manager_acs_system_id: {
|
|
61712
61772
|
description: "`acs_system_id` of the credential manager by which you want to filter the list of user identities.",
|
|
61713
61773
|
format: "uuid",
|
|
61714
61774
|
type: "string"
|
|
61715
61775
|
},
|
|
61776
|
+
limit: {
|
|
61777
|
+
default: 500,
|
|
61778
|
+
description: "Maximum number of records to return per page.",
|
|
61779
|
+
exclusiveMinimum: true,
|
|
61780
|
+
minimum: 0,
|
|
61781
|
+
type: "integer"
|
|
61782
|
+
},
|
|
61783
|
+
page_cursor: {
|
|
61784
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
61785
|
+
nullable: true,
|
|
61786
|
+
type: "string"
|
|
61787
|
+
},
|
|
61716
61788
|
search: {
|
|
61717
61789
|
description: "String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
61718
61790
|
type: "string"
|
|
@@ -61730,12 +61802,13 @@ var openapi_default = {
|
|
|
61730
61802
|
schema: {
|
|
61731
61803
|
properties: {
|
|
61732
61804
|
ok: { type: "boolean" },
|
|
61805
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
61733
61806
|
user_identities: {
|
|
61734
61807
|
items: { $ref: "#/components/schemas/user_identity" },
|
|
61735
61808
|
type: "array"
|
|
61736
61809
|
}
|
|
61737
61810
|
},
|
|
61738
|
-
required: ["user_identities", "ok"],
|
|
61811
|
+
required: ["user_identities", "pagination", "ok"],
|
|
61739
61812
|
type: "object"
|
|
61740
61813
|
}
|
|
61741
61814
|
}
|
|
@@ -62754,6 +62827,35 @@ var openapi_default = {
|
|
|
62754
62827
|
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
62755
62828
|
type: "string"
|
|
62756
62829
|
}
|
|
62830
|
+
},
|
|
62831
|
+
{
|
|
62832
|
+
in: "query",
|
|
62833
|
+
name: "limit",
|
|
62834
|
+
schema: {
|
|
62835
|
+
default: 500,
|
|
62836
|
+
description: "Maximum number of records to return per page.",
|
|
62837
|
+
exclusiveMinimum: true,
|
|
62838
|
+
minimum: 0,
|
|
62839
|
+
type: "integer"
|
|
62840
|
+
}
|
|
62841
|
+
},
|
|
62842
|
+
{
|
|
62843
|
+
in: "query",
|
|
62844
|
+
name: "created_before",
|
|
62845
|
+
schema: {
|
|
62846
|
+
description: "Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.",
|
|
62847
|
+
format: "date-time",
|
|
62848
|
+
type: "string"
|
|
62849
|
+
}
|
|
62850
|
+
},
|
|
62851
|
+
{
|
|
62852
|
+
in: "query",
|
|
62853
|
+
name: "page_cursor",
|
|
62854
|
+
schema: {
|
|
62855
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
62856
|
+
nullable: true,
|
|
62857
|
+
type: "string"
|
|
62858
|
+
}
|
|
62757
62859
|
}
|
|
62758
62860
|
],
|
|
62759
62861
|
responses: {
|
|
@@ -62763,6 +62865,7 @@ var openapi_default = {
|
|
|
62763
62865
|
schema: {
|
|
62764
62866
|
properties: {
|
|
62765
62867
|
ok: { type: "boolean" },
|
|
62868
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
62766
62869
|
user_identities: {
|
|
62767
62870
|
items: {
|
|
62768
62871
|
description: "Represents an unmanaged user identity. Unmanaged user identities do not have keys.",
|
|
@@ -62933,7 +63036,7 @@ var openapi_default = {
|
|
|
62933
63036
|
type: "array"
|
|
62934
63037
|
}
|
|
62935
63038
|
},
|
|
62936
|
-
required: ["user_identities", "ok"],
|
|
63039
|
+
required: ["user_identities", "pagination", "ok"],
|
|
62937
63040
|
type: "object"
|
|
62938
63041
|
}
|
|
62939
63042
|
}
|
|
@@ -62965,6 +63068,23 @@ var openapi_default = {
|
|
|
62965
63068
|
"application/json": {
|
|
62966
63069
|
schema: {
|
|
62967
63070
|
properties: {
|
|
63071
|
+
created_before: {
|
|
63072
|
+
description: "Timestamp by which to limit returned unmanaged user identities. Returns user identities created before this timestamp.",
|
|
63073
|
+
format: "date-time",
|
|
63074
|
+
type: "string"
|
|
63075
|
+
},
|
|
63076
|
+
limit: {
|
|
63077
|
+
default: 500,
|
|
63078
|
+
description: "Maximum number of records to return per page.",
|
|
63079
|
+
exclusiveMinimum: true,
|
|
63080
|
+
minimum: 0,
|
|
63081
|
+
type: "integer"
|
|
63082
|
+
},
|
|
63083
|
+
page_cursor: {
|
|
63084
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
63085
|
+
nullable: true,
|
|
63086
|
+
type: "string"
|
|
63087
|
+
},
|
|
62968
63088
|
search: {
|
|
62969
63089
|
description: "String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
62970
63090
|
type: "string"
|
|
@@ -62982,6 +63102,7 @@ var openapi_default = {
|
|
|
62982
63102
|
schema: {
|
|
62983
63103
|
properties: {
|
|
62984
63104
|
ok: { type: "boolean" },
|
|
63105
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
62985
63106
|
user_identities: {
|
|
62986
63107
|
items: {
|
|
62987
63108
|
description: "Represents an unmanaged user identity. Unmanaged user identities do not have keys.",
|
|
@@ -63152,7 +63273,7 @@ var openapi_default = {
|
|
|
63152
63273
|
type: "array"
|
|
63153
63274
|
}
|
|
63154
63275
|
},
|
|
63155
|
-
required: ["user_identities", "ok"],
|
|
63276
|
+
required: ["user_identities", "pagination", "ok"],
|
|
63156
63277
|
type: "object"
|
|
63157
63278
|
}
|
|
63158
63279
|
}
|