@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
package/dist/connect.cjs
CHANGED
|
@@ -65140,7 +65140,32 @@ var openapi_default = {
|
|
|
65140
65140
|
nullable: true,
|
|
65141
65141
|
type: "string"
|
|
65142
65142
|
},
|
|
65143
|
+
guest: {
|
|
65144
|
+
nullable: true,
|
|
65145
|
+
properties: {
|
|
65146
|
+
email_address: { nullable: true, type: "string" },
|
|
65147
|
+
guest_key: { type: "string" },
|
|
65148
|
+
is_resource_syncing: { type: "boolean" },
|
|
65149
|
+
name: { nullable: true, type: "string" },
|
|
65150
|
+
phone_number: { nullable: true, type: "string" },
|
|
65151
|
+
user_identity_id: {
|
|
65152
|
+
format: "uuid",
|
|
65153
|
+
nullable: true,
|
|
65154
|
+
type: "string"
|
|
65155
|
+
}
|
|
65156
|
+
},
|
|
65157
|
+
required: [
|
|
65158
|
+
"guest_key",
|
|
65159
|
+
"name",
|
|
65160
|
+
"email_address",
|
|
65161
|
+
"phone_number",
|
|
65162
|
+
"user_identity_id",
|
|
65163
|
+
"is_resource_syncing"
|
|
65164
|
+
],
|
|
65165
|
+
type: "object"
|
|
65166
|
+
},
|
|
65143
65167
|
guest_name: { nullable: true, type: "string" },
|
|
65168
|
+
is_resource_syncing: { type: "boolean" },
|
|
65144
65169
|
name: { nullable: true, type: "string" },
|
|
65145
65170
|
reservation_id: { format: "uuid", type: "string" },
|
|
65146
65171
|
reservation_key: { type: "string" },
|
|
@@ -65173,7 +65198,9 @@ var openapi_default = {
|
|
|
65173
65198
|
"starts_at",
|
|
65174
65199
|
"ends_at",
|
|
65175
65200
|
"created_at",
|
|
65201
|
+
"is_resource_syncing",
|
|
65176
65202
|
"guest_name",
|
|
65203
|
+
"guest",
|
|
65177
65204
|
"spaces",
|
|
65178
65205
|
"access_grant_id",
|
|
65179
65206
|
"access_methods"
|
|
@@ -65274,7 +65301,32 @@ var openapi_default = {
|
|
|
65274
65301
|
nullable: true,
|
|
65275
65302
|
type: "string"
|
|
65276
65303
|
},
|
|
65304
|
+
guest: {
|
|
65305
|
+
nullable: true,
|
|
65306
|
+
properties: {
|
|
65307
|
+
email_address: { nullable: true, type: "string" },
|
|
65308
|
+
guest_key: { type: "string" },
|
|
65309
|
+
is_resource_syncing: { type: "boolean" },
|
|
65310
|
+
name: { nullable: true, type: "string" },
|
|
65311
|
+
phone_number: { nullable: true, type: "string" },
|
|
65312
|
+
user_identity_id: {
|
|
65313
|
+
format: "uuid",
|
|
65314
|
+
nullable: true,
|
|
65315
|
+
type: "string"
|
|
65316
|
+
}
|
|
65317
|
+
},
|
|
65318
|
+
required: [
|
|
65319
|
+
"guest_key",
|
|
65320
|
+
"name",
|
|
65321
|
+
"email_address",
|
|
65322
|
+
"phone_number",
|
|
65323
|
+
"user_identity_id",
|
|
65324
|
+
"is_resource_syncing"
|
|
65325
|
+
],
|
|
65326
|
+
type: "object"
|
|
65327
|
+
},
|
|
65277
65328
|
guest_name: { nullable: true, type: "string" },
|
|
65329
|
+
is_resource_syncing: { type: "boolean" },
|
|
65278
65330
|
name: { nullable: true, type: "string" },
|
|
65279
65331
|
reservation_id: { format: "uuid", type: "string" },
|
|
65280
65332
|
reservation_key: { type: "string" },
|
|
@@ -65307,7 +65359,9 @@ var openapi_default = {
|
|
|
65307
65359
|
"starts_at",
|
|
65308
65360
|
"ends_at",
|
|
65309
65361
|
"created_at",
|
|
65362
|
+
"is_resource_syncing",
|
|
65310
65363
|
"guest_name",
|
|
65364
|
+
"guest",
|
|
65311
65365
|
"spaces",
|
|
65312
65366
|
"access_grant_id",
|
|
65313
65367
|
"access_methods"
|
|
@@ -65474,6 +65528,7 @@ var openapi_default = {
|
|
|
65474
65528
|
type: "string"
|
|
65475
65529
|
},
|
|
65476
65530
|
guest_name: { nullable: true, type: "string" },
|
|
65531
|
+
is_resource_syncing: { type: "boolean" },
|
|
65477
65532
|
name: { nullable: true, type: "string" },
|
|
65478
65533
|
pending_mutations: {
|
|
65479
65534
|
items: {
|
|
@@ -65540,6 +65595,7 @@ var openapi_default = {
|
|
|
65540
65595
|
"starts_at",
|
|
65541
65596
|
"ends_at",
|
|
65542
65597
|
"created_at",
|
|
65598
|
+
"is_resource_syncing",
|
|
65543
65599
|
"guest_name",
|
|
65544
65600
|
"warnings",
|
|
65545
65601
|
"pending_mutations",
|
|
@@ -65693,6 +65749,7 @@ var openapi_default = {
|
|
|
65693
65749
|
type: "string"
|
|
65694
65750
|
},
|
|
65695
65751
|
guest_name: { nullable: true, type: "string" },
|
|
65752
|
+
is_resource_syncing: { type: "boolean" },
|
|
65696
65753
|
name: { nullable: true, type: "string" },
|
|
65697
65754
|
pending_mutations: {
|
|
65698
65755
|
items: {
|
|
@@ -65759,6 +65816,7 @@ var openapi_default = {
|
|
|
65759
65816
|
"starts_at",
|
|
65760
65817
|
"ends_at",
|
|
65761
65818
|
"created_at",
|
|
65819
|
+
"is_resource_syncing",
|
|
65762
65820
|
"guest_name",
|
|
65763
65821
|
"warnings",
|
|
65764
65822
|
"pending_mutations",
|