@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.d.cts
CHANGED
|
@@ -112444,6 +112444,36 @@ declare const _default: {
|
|
|
112444
112444
|
nullable: boolean;
|
|
112445
112445
|
type: string;
|
|
112446
112446
|
};
|
|
112447
|
+
guest: {
|
|
112448
|
+
nullable: boolean;
|
|
112449
|
+
properties: {
|
|
112450
|
+
email_address: {
|
|
112451
|
+
nullable: boolean;
|
|
112452
|
+
type: string;
|
|
112453
|
+
};
|
|
112454
|
+
guest_key: {
|
|
112455
|
+
type: string;
|
|
112456
|
+
};
|
|
112457
|
+
is_resource_syncing: {
|
|
112458
|
+
type: string;
|
|
112459
|
+
};
|
|
112460
|
+
name: {
|
|
112461
|
+
nullable: boolean;
|
|
112462
|
+
type: string;
|
|
112463
|
+
};
|
|
112464
|
+
phone_number: {
|
|
112465
|
+
nullable: boolean;
|
|
112466
|
+
type: string;
|
|
112467
|
+
};
|
|
112468
|
+
user_identity_id: {
|
|
112469
|
+
format: string;
|
|
112470
|
+
nullable: boolean;
|
|
112471
|
+
type: string;
|
|
112472
|
+
};
|
|
112473
|
+
};
|
|
112474
|
+
required: string[];
|
|
112475
|
+
type: string;
|
|
112476
|
+
};
|
|
112447
112477
|
guest_name: {
|
|
112448
112478
|
nullable: boolean;
|
|
112449
112479
|
type: string;
|
|
@@ -112601,6 +112631,36 @@ declare const _default: {
|
|
|
112601
112631
|
nullable: boolean;
|
|
112602
112632
|
type: string;
|
|
112603
112633
|
};
|
|
112634
|
+
guest: {
|
|
112635
|
+
nullable: boolean;
|
|
112636
|
+
properties: {
|
|
112637
|
+
email_address: {
|
|
112638
|
+
nullable: boolean;
|
|
112639
|
+
type: string;
|
|
112640
|
+
};
|
|
112641
|
+
guest_key: {
|
|
112642
|
+
type: string;
|
|
112643
|
+
};
|
|
112644
|
+
is_resource_syncing: {
|
|
112645
|
+
type: string;
|
|
112646
|
+
};
|
|
112647
|
+
name: {
|
|
112648
|
+
nullable: boolean;
|
|
112649
|
+
type: string;
|
|
112650
|
+
};
|
|
112651
|
+
phone_number: {
|
|
112652
|
+
nullable: boolean;
|
|
112653
|
+
type: string;
|
|
112654
|
+
};
|
|
112655
|
+
user_identity_id: {
|
|
112656
|
+
format: string;
|
|
112657
|
+
nullable: boolean;
|
|
112658
|
+
type: string;
|
|
112659
|
+
};
|
|
112660
|
+
};
|
|
112661
|
+
required: string[];
|
|
112662
|
+
type: string;
|
|
112663
|
+
};
|
|
112604
112664
|
guest_name: {
|
|
112605
112665
|
nullable: boolean;
|
|
112606
112666
|
type: string;
|
|
@@ -188270,6 +188330,14 @@ type Routes = {
|
|
|
188270
188330
|
created_at: string;
|
|
188271
188331
|
is_resource_syncing: boolean;
|
|
188272
188332
|
guest_name: string | null;
|
|
188333
|
+
guest: {
|
|
188334
|
+
guest_key: string;
|
|
188335
|
+
name: string | null;
|
|
188336
|
+
email_address: string | null;
|
|
188337
|
+
phone_number: string | null;
|
|
188338
|
+
user_identity_id: string | null;
|
|
188339
|
+
is_resource_syncing: boolean;
|
|
188340
|
+
} | null;
|
|
188273
188341
|
spaces: {
|
|
188274
188342
|
space_id: string | null;
|
|
188275
188343
|
space_key: string;
|
package/dist/index.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"
|