@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
|
@@ -60759,6 +60759,14 @@ export type Routes = {
|
|
|
60759
60759
|
created_at: string;
|
|
60760
60760
|
is_resource_syncing: boolean;
|
|
60761
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;
|
|
60762
60770
|
spaces: {
|
|
60763
60771
|
space_id: string | null;
|
|
60764
60772
|
space_key: string;
|
package/package.json
CHANGED
|
@@ -63896,6 +63896,30 @@ 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' },
|
|
63900
63924
|
is_resource_syncing: { type: 'boolean' },
|
|
63901
63925
|
name: { nullable: true, type: 'string' },
|
|
@@ -63932,6 +63956,7 @@ export default {
|
|
|
63932
63956
|
'created_at',
|
|
63933
63957
|
'is_resource_syncing',
|
|
63934
63958
|
'guest_name',
|
|
63959
|
+
'guest',
|
|
63935
63960
|
'spaces',
|
|
63936
63961
|
'access_grant_id',
|
|
63937
63962
|
'access_methods',
|
|
@@ -64033,6 +64058,30 @@ export default {
|
|
|
64033
64058
|
nullable: true,
|
|
64034
64059
|
type: 'string',
|
|
64035
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
|
+
},
|
|
64036
64085
|
guest_name: { nullable: true, type: 'string' },
|
|
64037
64086
|
is_resource_syncing: { type: 'boolean' },
|
|
64038
64087
|
name: { nullable: true, type: 'string' },
|
|
@@ -64069,6 +64118,7 @@ export default {
|
|
|
64069
64118
|
'created_at',
|
|
64070
64119
|
'is_resource_syncing',
|
|
64071
64120
|
'guest_name',
|
|
64121
|
+
'guest',
|
|
64072
64122
|
'spaces',
|
|
64073
64123
|
'access_grant_id',
|
|
64074
64124
|
'access_methods',
|
|
@@ -72155,6 +72155,14 @@ export type Routes = {
|
|
|
72155
72155
|
created_at: string
|
|
72156
72156
|
is_resource_syncing: boolean
|
|
72157
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
|
|
72158
72166
|
spaces: {
|
|
72159
72167
|
space_id: string | null
|
|
72160
72168
|
space_key: string
|