@seamapi/types 1.727.0 → 1.729.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 +61 -12
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +235 -48
- package/dist/index.cjs +61 -12
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +36 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +4 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +84 -32
- package/lib/seam/connect/openapi.d.ts +48 -0
- package/lib/seam/connect/openapi.js +44 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +65 -0
|
@@ -2365,6 +2365,24 @@ export default {
|
|
|
2365
2365
|
type: 'string',
|
|
2366
2366
|
'x-deprecated': 'Use `external_type_display_name`.',
|
|
2367
2367
|
},
|
|
2368
|
+
access_schedule: {
|
|
2369
|
+
description: "`starts_at` and `ends_at` timestamps for the access group's access.",
|
|
2370
|
+
properties: {
|
|
2371
|
+
ends_at: {
|
|
2372
|
+
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2373
|
+
format: 'date-time',
|
|
2374
|
+
nullable: true,
|
|
2375
|
+
type: 'string',
|
|
2376
|
+
},
|
|
2377
|
+
starts_at: {
|
|
2378
|
+
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
2379
|
+
format: 'date-time',
|
|
2380
|
+
type: 'string',
|
|
2381
|
+
},
|
|
2382
|
+
},
|
|
2383
|
+
required: ['starts_at', 'ends_at'],
|
|
2384
|
+
type: 'object',
|
|
2385
|
+
},
|
|
2368
2386
|
acs_access_group_id: {
|
|
2369
2387
|
description: 'ID of the access group.',
|
|
2370
2388
|
format: 'uuid',
|
|
@@ -23662,6 +23680,24 @@ export default {
|
|
|
23662
23680
|
type: 'string',
|
|
23663
23681
|
'x-deprecated': 'Use `external_type_display_name`.',
|
|
23664
23682
|
},
|
|
23683
|
+
access_schedule: {
|
|
23684
|
+
description: "`starts_at` and `ends_at` timestamps for the access group's access.",
|
|
23685
|
+
properties: {
|
|
23686
|
+
ends_at: {
|
|
23687
|
+
description: "Date and time at which the user's access ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
23688
|
+
format: 'date-time',
|
|
23689
|
+
nullable: true,
|
|
23690
|
+
type: 'string',
|
|
23691
|
+
},
|
|
23692
|
+
starts_at: {
|
|
23693
|
+
description: "Date and time at which the user's access starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
|
|
23694
|
+
format: 'date-time',
|
|
23695
|
+
type: 'string',
|
|
23696
|
+
},
|
|
23697
|
+
},
|
|
23698
|
+
required: ['starts_at', 'ends_at'],
|
|
23699
|
+
type: 'object',
|
|
23700
|
+
},
|
|
23665
23701
|
acs_access_group_id: {
|
|
23666
23702
|
description: 'ID of the access group.',
|
|
23667
23703
|
format: 'uuid',
|
|
@@ -58738,6 +58774,7 @@ export default {
|
|
|
58738
58774
|
type: 'string',
|
|
58739
58775
|
},
|
|
58740
58776
|
guest_name: { nullable: true, type: 'string' },
|
|
58777
|
+
is_resource_syncing: { type: 'boolean' },
|
|
58741
58778
|
name: { nullable: true, type: 'string' },
|
|
58742
58779
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
58743
58780
|
reservation_key: { type: 'string' },
|
|
@@ -58770,6 +58807,7 @@ export default {
|
|
|
58770
58807
|
'starts_at',
|
|
58771
58808
|
'ends_at',
|
|
58772
58809
|
'created_at',
|
|
58810
|
+
'is_resource_syncing',
|
|
58773
58811
|
'guest_name',
|
|
58774
58812
|
'spaces',
|
|
58775
58813
|
'access_grant_id',
|
|
@@ -58872,6 +58910,7 @@ export default {
|
|
|
58872
58910
|
type: 'string',
|
|
58873
58911
|
},
|
|
58874
58912
|
guest_name: { nullable: true, type: 'string' },
|
|
58913
|
+
is_resource_syncing: { type: 'boolean' },
|
|
58875
58914
|
name: { nullable: true, type: 'string' },
|
|
58876
58915
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
58877
58916
|
reservation_key: { type: 'string' },
|
|
@@ -58904,6 +58943,7 @@ export default {
|
|
|
58904
58943
|
'starts_at',
|
|
58905
58944
|
'ends_at',
|
|
58906
58945
|
'created_at',
|
|
58946
|
+
'is_resource_syncing',
|
|
58907
58947
|
'guest_name',
|
|
58908
58948
|
'spaces',
|
|
58909
58949
|
'access_grant_id',
|
|
@@ -59071,6 +59111,7 @@ export default {
|
|
|
59071
59111
|
type: 'string',
|
|
59072
59112
|
},
|
|
59073
59113
|
guest_name: { nullable: true, type: 'string' },
|
|
59114
|
+
is_resource_syncing: { type: 'boolean' },
|
|
59074
59115
|
name: { nullable: true, type: 'string' },
|
|
59075
59116
|
pending_mutations: {
|
|
59076
59117
|
items: {
|
|
@@ -59137,6 +59178,7 @@ export default {
|
|
|
59137
59178
|
'starts_at',
|
|
59138
59179
|
'ends_at',
|
|
59139
59180
|
'created_at',
|
|
59181
|
+
'is_resource_syncing',
|
|
59140
59182
|
'guest_name',
|
|
59141
59183
|
'warnings',
|
|
59142
59184
|
'pending_mutations',
|
|
@@ -59290,6 +59332,7 @@ export default {
|
|
|
59290
59332
|
type: 'string',
|
|
59291
59333
|
},
|
|
59292
59334
|
guest_name: { nullable: true, type: 'string' },
|
|
59335
|
+
is_resource_syncing: { type: 'boolean' },
|
|
59293
59336
|
name: { nullable: true, type: 'string' },
|
|
59294
59337
|
pending_mutations: {
|
|
59295
59338
|
items: {
|
|
@@ -59356,6 +59399,7 @@ export default {
|
|
|
59356
59399
|
'starts_at',
|
|
59357
59400
|
'ends_at',
|
|
59358
59401
|
'created_at',
|
|
59402
|
+
'is_resource_syncing',
|
|
59359
59403
|
'guest_name',
|
|
59360
59404
|
'warnings',
|
|
59361
59405
|
'pending_mutations',
|