@seamapi/types 1.729.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 +50 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +68 -0
- package/dist/index.cjs +50 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +60 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
package/dist/connect.cjs
CHANGED
|
@@ -65140,6 +65140,30 @@ 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" },
|
|
65144
65168
|
is_resource_syncing: { type: "boolean" },
|
|
65145
65169
|
name: { nullable: true, type: "string" },
|
|
@@ -65176,6 +65200,7 @@ var openapi_default = {
|
|
|
65176
65200
|
"created_at",
|
|
65177
65201
|
"is_resource_syncing",
|
|
65178
65202
|
"guest_name",
|
|
65203
|
+
"guest",
|
|
65179
65204
|
"spaces",
|
|
65180
65205
|
"access_grant_id",
|
|
65181
65206
|
"access_methods"
|
|
@@ -65276,6 +65301,30 @@ var openapi_default = {
|
|
|
65276
65301
|
nullable: true,
|
|
65277
65302
|
type: "string"
|
|
65278
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
|
+
},
|
|
65279
65328
|
guest_name: { nullable: true, type: "string" },
|
|
65280
65329
|
is_resource_syncing: { type: "boolean" },
|
|
65281
65330
|
name: { nullable: true, type: "string" },
|
|
@@ -65312,6 +65361,7 @@ var openapi_default = {
|
|
|
65312
65361
|
"created_at",
|
|
65313
65362
|
"is_resource_syncing",
|
|
65314
65363
|
"guest_name",
|
|
65364
|
+
"guest",
|
|
65315
65365
|
"spaces",
|
|
65316
65366
|
"access_grant_id",
|
|
65317
65367
|
"access_methods"
|