@seamapi/types 1.728.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 +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14 -0
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -60757,6 +60757,7 @@ export type Routes = {
|
|
|
60757
60757
|
starts_at: string | null;
|
|
60758
60758
|
ends_at: string | null;
|
|
60759
60759
|
created_at: string;
|
|
60760
|
+
is_resource_syncing: boolean;
|
|
60760
60761
|
guest_name: string | null;
|
|
60761
60762
|
spaces: {
|
|
60762
60763
|
space_id: string | null;
|
|
@@ -60805,6 +60806,7 @@ export type Routes = {
|
|
|
60805
60806
|
starts_at: string | null;
|
|
60806
60807
|
ends_at: string | null;
|
|
60807
60808
|
created_at: string;
|
|
60809
|
+
is_resource_syncing: boolean;
|
|
60808
60810
|
guest_name: string | null;
|
|
60809
60811
|
warnings: {
|
|
60810
60812
|
warning_code: string;
|
package/package.json
CHANGED
|
@@ -63897,6 +63897,7 @@ export default {
|
|
|
63897
63897
|
type: 'string',
|
|
63898
63898
|
},
|
|
63899
63899
|
guest_name: { nullable: true, type: 'string' },
|
|
63900
|
+
is_resource_syncing: { type: 'boolean' },
|
|
63900
63901
|
name: { nullable: true, type: 'string' },
|
|
63901
63902
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
63902
63903
|
reservation_key: { type: 'string' },
|
|
@@ -63929,6 +63930,7 @@ export default {
|
|
|
63929
63930
|
'starts_at',
|
|
63930
63931
|
'ends_at',
|
|
63931
63932
|
'created_at',
|
|
63933
|
+
'is_resource_syncing',
|
|
63932
63934
|
'guest_name',
|
|
63933
63935
|
'spaces',
|
|
63934
63936
|
'access_grant_id',
|
|
@@ -64032,6 +64034,7 @@ export default {
|
|
|
64032
64034
|
type: 'string',
|
|
64033
64035
|
},
|
|
64034
64036
|
guest_name: { nullable: true, type: 'string' },
|
|
64037
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64035
64038
|
name: { nullable: true, type: 'string' },
|
|
64036
64039
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
64037
64040
|
reservation_key: { type: 'string' },
|
|
@@ -64064,6 +64067,7 @@ export default {
|
|
|
64064
64067
|
'starts_at',
|
|
64065
64068
|
'ends_at',
|
|
64066
64069
|
'created_at',
|
|
64070
|
+
'is_resource_syncing',
|
|
64067
64071
|
'guest_name',
|
|
64068
64072
|
'spaces',
|
|
64069
64073
|
'access_grant_id',
|
|
@@ -64235,6 +64239,7 @@ export default {
|
|
|
64235
64239
|
type: 'string',
|
|
64236
64240
|
},
|
|
64237
64241
|
guest_name: { nullable: true, type: 'string' },
|
|
64242
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64238
64243
|
name: { nullable: true, type: 'string' },
|
|
64239
64244
|
pending_mutations: {
|
|
64240
64245
|
items: {
|
|
@@ -64301,6 +64306,7 @@ export default {
|
|
|
64301
64306
|
'starts_at',
|
|
64302
64307
|
'ends_at',
|
|
64303
64308
|
'created_at',
|
|
64309
|
+
'is_resource_syncing',
|
|
64304
64310
|
'guest_name',
|
|
64305
64311
|
'warnings',
|
|
64306
64312
|
'pending_mutations',
|
|
@@ -64459,6 +64465,7 @@ export default {
|
|
|
64459
64465
|
type: 'string',
|
|
64460
64466
|
},
|
|
64461
64467
|
guest_name: { nullable: true, type: 'string' },
|
|
64468
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64462
64469
|
name: { nullable: true, type: 'string' },
|
|
64463
64470
|
pending_mutations: {
|
|
64464
64471
|
items: {
|
|
@@ -64525,6 +64532,7 @@ export default {
|
|
|
64525
64532
|
'starts_at',
|
|
64526
64533
|
'ends_at',
|
|
64527
64534
|
'created_at',
|
|
64535
|
+
'is_resource_syncing',
|
|
64528
64536
|
'guest_name',
|
|
64529
64537
|
'warnings',
|
|
64530
64538
|
'pending_mutations',
|
|
@@ -72153,6 +72153,7 @@ export type Routes = {
|
|
|
72153
72153
|
starts_at: string | null
|
|
72154
72154
|
ends_at: string | null
|
|
72155
72155
|
created_at: string
|
|
72156
|
+
is_resource_syncing: boolean
|
|
72156
72157
|
guest_name: string | null
|
|
72157
72158
|
spaces: {
|
|
72158
72159
|
space_id: string | null
|
|
@@ -72201,6 +72202,7 @@ export type Routes = {
|
|
|
72201
72202
|
starts_at: string | null
|
|
72202
72203
|
ends_at: string | null
|
|
72203
72204
|
created_at: string
|
|
72205
|
+
is_resource_syncing: boolean
|
|
72204
72206
|
guest_name: string | null
|
|
72205
72207
|
warnings: {
|
|
72206
72208
|
warning_code: string
|