@seamapi/types 1.450.0 → 1.452.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 +69 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +170 -4
- package/dist/index.cjs +69 -10
- 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 +4 -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 +4 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +132 -2
- package/lib/seam/connect/openapi.js +61 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +69 -2
- package/src/lib/seam/connect/route-types.ts +32 -2
package/dist/index.cjs
CHANGED
|
@@ -7146,6 +7146,11 @@ var openapi_default = {
|
|
|
7146
7146
|
type: "array",
|
|
7147
7147
|
"x-deprecated": "Use `space_ids`."
|
|
7148
7148
|
},
|
|
7149
|
+
name: {
|
|
7150
|
+
description: "Name of the Access Grant. If not provided, the display name will be computed.",
|
|
7151
|
+
nullable: true,
|
|
7152
|
+
type: "string"
|
|
7153
|
+
},
|
|
7149
7154
|
requested_access_methods: {
|
|
7150
7155
|
description: "Access methods that the user requested for the Access Grant.",
|
|
7151
7156
|
items: {
|
|
@@ -7209,6 +7214,7 @@ var openapi_default = {
|
|
|
7209
7214
|
"space_ids",
|
|
7210
7215
|
"requested_access_methods",
|
|
7211
7216
|
"access_method_ids",
|
|
7217
|
+
"name",
|
|
7212
7218
|
"display_name",
|
|
7213
7219
|
"created_at"
|
|
7214
7220
|
],
|
|
@@ -7224,6 +7230,10 @@ var openapi_default = {
|
|
|
7224
7230
|
format: "uuid",
|
|
7225
7231
|
type: "string"
|
|
7226
7232
|
},
|
|
7233
|
+
client_session_token: {
|
|
7234
|
+
description: "Token of the client session associated with the access method.",
|
|
7235
|
+
type: "string"
|
|
7236
|
+
},
|
|
7227
7237
|
code: {
|
|
7228
7238
|
description: "The actual PIN code for code access methods.",
|
|
7229
7239
|
type: "string"
|
|
@@ -30340,6 +30350,11 @@ var openapi_default = {
|
|
|
30340
30350
|
type: "array",
|
|
30341
30351
|
"x-deprecated": "Use `space_ids`."
|
|
30342
30352
|
},
|
|
30353
|
+
name: {
|
|
30354
|
+
description: "Name for the access grant.",
|
|
30355
|
+
nullable: true,
|
|
30356
|
+
type: "string"
|
|
30357
|
+
},
|
|
30343
30358
|
requested_access_methods: {
|
|
30344
30359
|
items: {
|
|
30345
30360
|
properties: {
|
|
@@ -30810,6 +30825,11 @@ var openapi_default = {
|
|
|
30810
30825
|
nullable: true,
|
|
30811
30826
|
type: "string"
|
|
30812
30827
|
},
|
|
30828
|
+
name: {
|
|
30829
|
+
description: "Display name for the access grant.",
|
|
30830
|
+
nullable: true,
|
|
30831
|
+
type: "string"
|
|
30832
|
+
},
|
|
30813
30833
|
starts_at: {
|
|
30814
30834
|
description: "Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30815
30835
|
format: "date-time",
|
|
@@ -30872,6 +30892,11 @@ var openapi_default = {
|
|
|
30872
30892
|
nullable: true,
|
|
30873
30893
|
type: "string"
|
|
30874
30894
|
},
|
|
30895
|
+
name: {
|
|
30896
|
+
description: "Display name for the access grant.",
|
|
30897
|
+
nullable: true,
|
|
30898
|
+
type: "string"
|
|
30899
|
+
},
|
|
30875
30900
|
starts_at: {
|
|
30876
30901
|
description: "Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
30877
30902
|
format: "date-time",
|
|
@@ -34765,7 +34790,8 @@ var openapi_default = {
|
|
|
34765
34790
|
{ api_key: [] },
|
|
34766
34791
|
{ client_session: [] },
|
|
34767
34792
|
{ pat_with_workspace: [] },
|
|
34768
|
-
{ console_session_with_workspace: [] }
|
|
34793
|
+
{ console_session_with_workspace: [] },
|
|
34794
|
+
{ client_session_with_customer: [] }
|
|
34769
34795
|
],
|
|
34770
34796
|
summary: "/acs/entrances/list",
|
|
34771
34797
|
tags: ["/acs"],
|
|
@@ -34862,7 +34888,8 @@ var openapi_default = {
|
|
|
34862
34888
|
{ api_key: [] },
|
|
34863
34889
|
{ client_session: [] },
|
|
34864
34890
|
{ pat_with_workspace: [] },
|
|
34865
|
-
{ console_session_with_workspace: [] }
|
|
34891
|
+
{ console_session_with_workspace: [] },
|
|
34892
|
+
{ client_session_with_customer: [] }
|
|
34866
34893
|
],
|
|
34867
34894
|
summary: "/acs/entrances/list",
|
|
34868
34895
|
tags: ["/acs"],
|
|
@@ -49398,7 +49425,8 @@ var openapi_default = {
|
|
|
49398
49425
|
security: [
|
|
49399
49426
|
{ pat_with_workspace: [] },
|
|
49400
49427
|
{ console_session_with_workspace: [] },
|
|
49401
|
-
{ api_key: [] }
|
|
49428
|
+
{ api_key: [] },
|
|
49429
|
+
{ client_session_with_customer: [] }
|
|
49402
49430
|
],
|
|
49403
49431
|
summary: "/spaces/remove_acs_entrances",
|
|
49404
49432
|
tags: [],
|
|
@@ -49452,7 +49480,8 @@ var openapi_default = {
|
|
|
49452
49480
|
security: [
|
|
49453
49481
|
{ pat_with_workspace: [] },
|
|
49454
49482
|
{ console_session_with_workspace: [] },
|
|
49455
|
-
{ api_key: [] }
|
|
49483
|
+
{ api_key: [] },
|
|
49484
|
+
{ client_session_with_customer: [] }
|
|
49456
49485
|
],
|
|
49457
49486
|
summary: "/spaces/remove_acs_entrances",
|
|
49458
49487
|
tags: [],
|
|
@@ -49508,7 +49537,8 @@ var openapi_default = {
|
|
|
49508
49537
|
security: [
|
|
49509
49538
|
{ pat_with_workspace: [] },
|
|
49510
49539
|
{ console_session_with_workspace: [] },
|
|
49511
|
-
{ api_key: [] }
|
|
49540
|
+
{ api_key: [] },
|
|
49541
|
+
{ client_session_with_customer: [] }
|
|
49512
49542
|
],
|
|
49513
49543
|
summary: "/spaces/remove_devices",
|
|
49514
49544
|
tags: [],
|
|
@@ -49562,7 +49592,8 @@ var openapi_default = {
|
|
|
49562
49592
|
security: [
|
|
49563
49593
|
{ pat_with_workspace: [] },
|
|
49564
49594
|
{ console_session_with_workspace: [] },
|
|
49565
|
-
{ api_key: [] }
|
|
49595
|
+
{ api_key: [] },
|
|
49596
|
+
{ client_session_with_customer: [] }
|
|
49566
49597
|
],
|
|
49567
49598
|
summary: "/spaces/remove_devices",
|
|
49568
49599
|
tags: [],
|
|
@@ -49582,14 +49613,27 @@ var openapi_default = {
|
|
|
49582
49613
|
"application/json": {
|
|
49583
49614
|
schema: {
|
|
49584
49615
|
properties: {
|
|
49616
|
+
acs_entrance_ids: {
|
|
49617
|
+
description: "IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.",
|
|
49618
|
+
items: { format: "uuid", type: "string" },
|
|
49619
|
+
type: "array"
|
|
49620
|
+
},
|
|
49621
|
+
device_ids: {
|
|
49622
|
+
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
49623
|
+
items: { format: "uuid", type: "string" },
|
|
49624
|
+
type: "array"
|
|
49625
|
+
},
|
|
49585
49626
|
name: { description: "Name of the space.", type: "string" },
|
|
49586
49627
|
space_id: {
|
|
49587
49628
|
description: "ID of the space that you want to update.",
|
|
49588
49629
|
format: "uuid",
|
|
49589
49630
|
type: "string"
|
|
49631
|
+
},
|
|
49632
|
+
space_key: {
|
|
49633
|
+
description: "Unique key of the space that you want to update.",
|
|
49634
|
+
type: "string"
|
|
49590
49635
|
}
|
|
49591
49636
|
},
|
|
49592
|
-
required: ["space_id"],
|
|
49593
49637
|
type: "object"
|
|
49594
49638
|
}
|
|
49595
49639
|
}
|
|
@@ -49617,7 +49661,8 @@ var openapi_default = {
|
|
|
49617
49661
|
security: [
|
|
49618
49662
|
{ pat_with_workspace: [] },
|
|
49619
49663
|
{ console_session_with_workspace: [] },
|
|
49620
|
-
{ api_key: [] }
|
|
49664
|
+
{ api_key: [] },
|
|
49665
|
+
{ client_session_with_customer: [] }
|
|
49621
49666
|
],
|
|
49622
49667
|
summary: "/spaces/update",
|
|
49623
49668
|
tags: [],
|
|
@@ -49636,14 +49681,27 @@ var openapi_default = {
|
|
|
49636
49681
|
"application/json": {
|
|
49637
49682
|
schema: {
|
|
49638
49683
|
properties: {
|
|
49684
|
+
acs_entrance_ids: {
|
|
49685
|
+
description: "IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.",
|
|
49686
|
+
items: { format: "uuid", type: "string" },
|
|
49687
|
+
type: "array"
|
|
49688
|
+
},
|
|
49689
|
+
device_ids: {
|
|
49690
|
+
description: "IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.",
|
|
49691
|
+
items: { format: "uuid", type: "string" },
|
|
49692
|
+
type: "array"
|
|
49693
|
+
},
|
|
49639
49694
|
name: { description: "Name of the space.", type: "string" },
|
|
49640
49695
|
space_id: {
|
|
49641
49696
|
description: "ID of the space that you want to update.",
|
|
49642
49697
|
format: "uuid",
|
|
49643
49698
|
type: "string"
|
|
49699
|
+
},
|
|
49700
|
+
space_key: {
|
|
49701
|
+
description: "Unique key of the space that you want to update.",
|
|
49702
|
+
type: "string"
|
|
49644
49703
|
}
|
|
49645
49704
|
},
|
|
49646
|
-
required: ["space_id"],
|
|
49647
49705
|
type: "object"
|
|
49648
49706
|
}
|
|
49649
49707
|
}
|
|
@@ -49671,7 +49729,8 @@ var openapi_default = {
|
|
|
49671
49729
|
security: [
|
|
49672
49730
|
{ pat_with_workspace: [] },
|
|
49673
49731
|
{ console_session_with_workspace: [] },
|
|
49674
|
-
{ api_key: [] }
|
|
49732
|
+
{ api_key: [] },
|
|
49733
|
+
{ client_session_with_customer: [] }
|
|
49675
49734
|
],
|
|
49676
49735
|
summary: "/spaces/update",
|
|
49677
49736
|
tags: [],
|