@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
|
@@ -52964,6 +52964,36 @@ declare const _default: {
|
|
|
52964
52964
|
nullable: boolean;
|
|
52965
52965
|
type: string;
|
|
52966
52966
|
};
|
|
52967
|
+
guest: {
|
|
52968
|
+
nullable: boolean;
|
|
52969
|
+
properties: {
|
|
52970
|
+
email_address: {
|
|
52971
|
+
nullable: boolean;
|
|
52972
|
+
type: string;
|
|
52973
|
+
};
|
|
52974
|
+
guest_key: {
|
|
52975
|
+
type: string;
|
|
52976
|
+
};
|
|
52977
|
+
is_resource_syncing: {
|
|
52978
|
+
type: string;
|
|
52979
|
+
};
|
|
52980
|
+
name: {
|
|
52981
|
+
nullable: boolean;
|
|
52982
|
+
type: string;
|
|
52983
|
+
};
|
|
52984
|
+
phone_number: {
|
|
52985
|
+
nullable: boolean;
|
|
52986
|
+
type: string;
|
|
52987
|
+
};
|
|
52988
|
+
user_identity_id: {
|
|
52989
|
+
format: string;
|
|
52990
|
+
nullable: boolean;
|
|
52991
|
+
type: string;
|
|
52992
|
+
};
|
|
52993
|
+
};
|
|
52994
|
+
required: string[];
|
|
52995
|
+
type: string;
|
|
52996
|
+
};
|
|
52967
52997
|
guest_name: {
|
|
52968
52998
|
nullable: boolean;
|
|
52969
52999
|
type: string;
|
|
@@ -53121,6 +53151,36 @@ declare const _default: {
|
|
|
53121
53151
|
nullable: boolean;
|
|
53122
53152
|
type: string;
|
|
53123
53153
|
};
|
|
53154
|
+
guest: {
|
|
53155
|
+
nullable: boolean;
|
|
53156
|
+
properties: {
|
|
53157
|
+
email_address: {
|
|
53158
|
+
nullable: boolean;
|
|
53159
|
+
type: string;
|
|
53160
|
+
};
|
|
53161
|
+
guest_key: {
|
|
53162
|
+
type: string;
|
|
53163
|
+
};
|
|
53164
|
+
is_resource_syncing: {
|
|
53165
|
+
type: string;
|
|
53166
|
+
};
|
|
53167
|
+
name: {
|
|
53168
|
+
nullable: boolean;
|
|
53169
|
+
type: string;
|
|
53170
|
+
};
|
|
53171
|
+
phone_number: {
|
|
53172
|
+
nullable: boolean;
|
|
53173
|
+
type: string;
|
|
53174
|
+
};
|
|
53175
|
+
user_identity_id: {
|
|
53176
|
+
format: string;
|
|
53177
|
+
nullable: boolean;
|
|
53178
|
+
type: string;
|
|
53179
|
+
};
|
|
53180
|
+
};
|
|
53181
|
+
required: string[];
|
|
53182
|
+
type: string;
|
|
53183
|
+
};
|
|
53124
53184
|
guest_name: {
|
|
53125
53185
|
nullable: boolean;
|
|
53126
53186
|
type: string;
|
|
@@ -58773,6 +58773,30 @@ export default {
|
|
|
58773
58773
|
nullable: true,
|
|
58774
58774
|
type: 'string',
|
|
58775
58775
|
},
|
|
58776
|
+
guest: {
|
|
58777
|
+
nullable: true,
|
|
58778
|
+
properties: {
|
|
58779
|
+
email_address: { nullable: true, type: 'string' },
|
|
58780
|
+
guest_key: { type: 'string' },
|
|
58781
|
+
is_resource_syncing: { type: 'boolean' },
|
|
58782
|
+
name: { nullable: true, type: 'string' },
|
|
58783
|
+
phone_number: { nullable: true, type: 'string' },
|
|
58784
|
+
user_identity_id: {
|
|
58785
|
+
format: 'uuid',
|
|
58786
|
+
nullable: true,
|
|
58787
|
+
type: 'string',
|
|
58788
|
+
},
|
|
58789
|
+
},
|
|
58790
|
+
required: [
|
|
58791
|
+
'guest_key',
|
|
58792
|
+
'name',
|
|
58793
|
+
'email_address',
|
|
58794
|
+
'phone_number',
|
|
58795
|
+
'user_identity_id',
|
|
58796
|
+
'is_resource_syncing',
|
|
58797
|
+
],
|
|
58798
|
+
type: 'object',
|
|
58799
|
+
},
|
|
58776
58800
|
guest_name: { nullable: true, type: 'string' },
|
|
58777
58801
|
is_resource_syncing: { type: 'boolean' },
|
|
58778
58802
|
name: { nullable: true, type: 'string' },
|
|
@@ -58809,6 +58833,7 @@ export default {
|
|
|
58809
58833
|
'created_at',
|
|
58810
58834
|
'is_resource_syncing',
|
|
58811
58835
|
'guest_name',
|
|
58836
|
+
'guest',
|
|
58812
58837
|
'spaces',
|
|
58813
58838
|
'access_grant_id',
|
|
58814
58839
|
'access_methods',
|
|
@@ -58909,6 +58934,30 @@ export default {
|
|
|
58909
58934
|
nullable: true,
|
|
58910
58935
|
type: 'string',
|
|
58911
58936
|
},
|
|
58937
|
+
guest: {
|
|
58938
|
+
nullable: true,
|
|
58939
|
+
properties: {
|
|
58940
|
+
email_address: { nullable: true, type: 'string' },
|
|
58941
|
+
guest_key: { type: 'string' },
|
|
58942
|
+
is_resource_syncing: { type: 'boolean' },
|
|
58943
|
+
name: { nullable: true, type: 'string' },
|
|
58944
|
+
phone_number: { nullable: true, type: 'string' },
|
|
58945
|
+
user_identity_id: {
|
|
58946
|
+
format: 'uuid',
|
|
58947
|
+
nullable: true,
|
|
58948
|
+
type: 'string',
|
|
58949
|
+
},
|
|
58950
|
+
},
|
|
58951
|
+
required: [
|
|
58952
|
+
'guest_key',
|
|
58953
|
+
'name',
|
|
58954
|
+
'email_address',
|
|
58955
|
+
'phone_number',
|
|
58956
|
+
'user_identity_id',
|
|
58957
|
+
'is_resource_syncing',
|
|
58958
|
+
],
|
|
58959
|
+
type: 'object',
|
|
58960
|
+
},
|
|
58912
58961
|
guest_name: { nullable: true, type: 'string' },
|
|
58913
58962
|
is_resource_syncing: { type: 'boolean' },
|
|
58914
58963
|
name: { nullable: true, type: 'string' },
|
|
@@ -58945,6 +58994,7 @@ export default {
|
|
|
58945
58994
|
'created_at',
|
|
58946
58995
|
'is_resource_syncing',
|
|
58947
58996
|
'guest_name',
|
|
58997
|
+
'guest',
|
|
58948
58998
|
'spaces',
|
|
58949
58999
|
'access_grant_id',
|
|
58950
59000
|
'access_methods',
|