@seamapi/types 1.728.0 → 1.730.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 +58 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +82 -0
- package/dist/index.cjs +58 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +72 -0
- package/lib/seam/connect/openapi.js +58 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +58 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
|
@@ -60757,7 +60757,16 @@ 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;
|
|
60762
|
+
guest: {
|
|
60763
|
+
guest_key: string;
|
|
60764
|
+
name: string | null;
|
|
60765
|
+
email_address: string | null;
|
|
60766
|
+
phone_number: string | null;
|
|
60767
|
+
user_identity_id: string | null;
|
|
60768
|
+
is_resource_syncing: boolean;
|
|
60769
|
+
} | null;
|
|
60761
60770
|
spaces: {
|
|
60762
60771
|
space_id: string | null;
|
|
60763
60772
|
space_key: string;
|
|
@@ -60805,6 +60814,7 @@ export type Routes = {
|
|
|
60805
60814
|
starts_at: string | null;
|
|
60806
60815
|
ends_at: string | null;
|
|
60807
60816
|
created_at: string;
|
|
60817
|
+
is_resource_syncing: boolean;
|
|
60808
60818
|
guest_name: string | null;
|
|
60809
60819
|
warnings: {
|
|
60810
60820
|
warning_code: string;
|
package/package.json
CHANGED
|
@@ -63896,7 +63896,32 @@ export default {
|
|
|
63896
63896
|
nullable: true,
|
|
63897
63897
|
type: 'string',
|
|
63898
63898
|
},
|
|
63899
|
+
guest: {
|
|
63900
|
+
nullable: true,
|
|
63901
|
+
properties: {
|
|
63902
|
+
email_address: { nullable: true, type: 'string' },
|
|
63903
|
+
guest_key: { type: 'string' },
|
|
63904
|
+
is_resource_syncing: { type: 'boolean' },
|
|
63905
|
+
name: { nullable: true, type: 'string' },
|
|
63906
|
+
phone_number: { nullable: true, type: 'string' },
|
|
63907
|
+
user_identity_id: {
|
|
63908
|
+
format: 'uuid',
|
|
63909
|
+
nullable: true,
|
|
63910
|
+
type: 'string',
|
|
63911
|
+
},
|
|
63912
|
+
},
|
|
63913
|
+
required: [
|
|
63914
|
+
'guest_key',
|
|
63915
|
+
'name',
|
|
63916
|
+
'email_address',
|
|
63917
|
+
'phone_number',
|
|
63918
|
+
'user_identity_id',
|
|
63919
|
+
'is_resource_syncing',
|
|
63920
|
+
],
|
|
63921
|
+
type: 'object',
|
|
63922
|
+
},
|
|
63899
63923
|
guest_name: { nullable: true, type: 'string' },
|
|
63924
|
+
is_resource_syncing: { type: 'boolean' },
|
|
63900
63925
|
name: { nullable: true, type: 'string' },
|
|
63901
63926
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
63902
63927
|
reservation_key: { type: 'string' },
|
|
@@ -63929,7 +63954,9 @@ export default {
|
|
|
63929
63954
|
'starts_at',
|
|
63930
63955
|
'ends_at',
|
|
63931
63956
|
'created_at',
|
|
63957
|
+
'is_resource_syncing',
|
|
63932
63958
|
'guest_name',
|
|
63959
|
+
'guest',
|
|
63933
63960
|
'spaces',
|
|
63934
63961
|
'access_grant_id',
|
|
63935
63962
|
'access_methods',
|
|
@@ -64031,7 +64058,32 @@ export default {
|
|
|
64031
64058
|
nullable: true,
|
|
64032
64059
|
type: 'string',
|
|
64033
64060
|
},
|
|
64061
|
+
guest: {
|
|
64062
|
+
nullable: true,
|
|
64063
|
+
properties: {
|
|
64064
|
+
email_address: { nullable: true, type: 'string' },
|
|
64065
|
+
guest_key: { type: 'string' },
|
|
64066
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64067
|
+
name: { nullable: true, type: 'string' },
|
|
64068
|
+
phone_number: { nullable: true, type: 'string' },
|
|
64069
|
+
user_identity_id: {
|
|
64070
|
+
format: 'uuid',
|
|
64071
|
+
nullable: true,
|
|
64072
|
+
type: 'string',
|
|
64073
|
+
},
|
|
64074
|
+
},
|
|
64075
|
+
required: [
|
|
64076
|
+
'guest_key',
|
|
64077
|
+
'name',
|
|
64078
|
+
'email_address',
|
|
64079
|
+
'phone_number',
|
|
64080
|
+
'user_identity_id',
|
|
64081
|
+
'is_resource_syncing',
|
|
64082
|
+
],
|
|
64083
|
+
type: 'object',
|
|
64084
|
+
},
|
|
64034
64085
|
guest_name: { nullable: true, type: 'string' },
|
|
64086
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64035
64087
|
name: { nullable: true, type: 'string' },
|
|
64036
64088
|
reservation_id: { format: 'uuid', type: 'string' },
|
|
64037
64089
|
reservation_key: { type: 'string' },
|
|
@@ -64064,7 +64116,9 @@ export default {
|
|
|
64064
64116
|
'starts_at',
|
|
64065
64117
|
'ends_at',
|
|
64066
64118
|
'created_at',
|
|
64119
|
+
'is_resource_syncing',
|
|
64067
64120
|
'guest_name',
|
|
64121
|
+
'guest',
|
|
64068
64122
|
'spaces',
|
|
64069
64123
|
'access_grant_id',
|
|
64070
64124
|
'access_methods',
|
|
@@ -64235,6 +64289,7 @@ export default {
|
|
|
64235
64289
|
type: 'string',
|
|
64236
64290
|
},
|
|
64237
64291
|
guest_name: { nullable: true, type: 'string' },
|
|
64292
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64238
64293
|
name: { nullable: true, type: 'string' },
|
|
64239
64294
|
pending_mutations: {
|
|
64240
64295
|
items: {
|
|
@@ -64301,6 +64356,7 @@ export default {
|
|
|
64301
64356
|
'starts_at',
|
|
64302
64357
|
'ends_at',
|
|
64303
64358
|
'created_at',
|
|
64359
|
+
'is_resource_syncing',
|
|
64304
64360
|
'guest_name',
|
|
64305
64361
|
'warnings',
|
|
64306
64362
|
'pending_mutations',
|
|
@@ -64459,6 +64515,7 @@ export default {
|
|
|
64459
64515
|
type: 'string',
|
|
64460
64516
|
},
|
|
64461
64517
|
guest_name: { nullable: true, type: 'string' },
|
|
64518
|
+
is_resource_syncing: { type: 'boolean' },
|
|
64462
64519
|
name: { nullable: true, type: 'string' },
|
|
64463
64520
|
pending_mutations: {
|
|
64464
64521
|
items: {
|
|
@@ -64525,6 +64582,7 @@ export default {
|
|
|
64525
64582
|
'starts_at',
|
|
64526
64583
|
'ends_at',
|
|
64527
64584
|
'created_at',
|
|
64585
|
+
'is_resource_syncing',
|
|
64528
64586
|
'guest_name',
|
|
64529
64587
|
'warnings',
|
|
64530
64588
|
'pending_mutations',
|
|
@@ -72153,7 +72153,16 @@ 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
|
|
72158
|
+
guest: {
|
|
72159
|
+
guest_key: string
|
|
72160
|
+
name: string | null
|
|
72161
|
+
email_address: string | null
|
|
72162
|
+
phone_number: string | null
|
|
72163
|
+
user_identity_id: string | null
|
|
72164
|
+
is_resource_syncing: boolean
|
|
72165
|
+
} | null
|
|
72157
72166
|
spaces: {
|
|
72158
72167
|
space_id: string | null
|
|
72159
72168
|
space_key: string
|
|
@@ -72201,6 +72210,7 @@ export type Routes = {
|
|
|
72201
72210
|
starts_at: string | null
|
|
72202
72211
|
ends_at: string | null
|
|
72203
72212
|
created_at: string
|
|
72213
|
+
is_resource_syncing: boolean
|
|
72204
72214
|
guest_name: string | null
|
|
72205
72215
|
warnings: {
|
|
72206
72216
|
warning_code: string
|