@homespot-sdk/core 0.0.102
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/README.md +15 -0
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +211 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +17 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +100 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +4 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +41 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +317 -0
- package/dist/client/utils.gen.js.map +1 -0
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +10 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +19 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +61 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +106 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +128 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +106 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +144 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +4 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +95 -0
- package/dist/core/utils.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +43 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas.gen.d.ts +955 -0
- package/dist/schemas.gen.d.ts.map +1 -0
- package/dist/schemas.gen.js +1059 -0
- package/dist/schemas.gen.js.map +1 -0
- package/dist/sdk.gen.d.ts +53 -0
- package/dist/sdk.gen.d.ts.map +1 -0
- package/dist/sdk.gen.js +315 -0
- package/dist/sdk.gen.js.map +1 -0
- package/dist/transformers.gen.d.ts +4 -0
- package/dist/transformers.gen.d.ts.map +1 -0
- package/dist/transformers.gen.js +39 -0
- package/dist/transformers.gen.js.map +1 -0
- package/dist/types.gen.d.ts +887 -0
- package/dist/types.gen.d.ts.map +1 -0
- package/dist/types.gen.js +4 -0
- package/dist/types.gen.js.map +1 -0
- package/dist/zod.gen.d.ts +1938 -0
- package/dist/zod.gen.d.ts.map +1 -0
- package/dist/zod.gen.js +1046 -0
- package/dist/zod.gen.js.map +1 -0
- package/package.json +32 -0
|
@@ -0,0 +1,955 @@
|
|
|
1
|
+
export declare const RolesRequestSchema: {
|
|
2
|
+
readonly type: "object";
|
|
3
|
+
readonly properties: {
|
|
4
|
+
readonly name: {
|
|
5
|
+
readonly type: "string";
|
|
6
|
+
readonly minLength: 1;
|
|
7
|
+
};
|
|
8
|
+
readonly description: {
|
|
9
|
+
readonly type: "string";
|
|
10
|
+
readonly minLength: 1;
|
|
11
|
+
};
|
|
12
|
+
readonly permissions: {
|
|
13
|
+
readonly type: "array";
|
|
14
|
+
readonly items: {
|
|
15
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
readonly required: readonly ["description", "name", "permissions"];
|
|
20
|
+
};
|
|
21
|
+
export declare const AssignRoleRequestSchema: {
|
|
22
|
+
readonly type: "object";
|
|
23
|
+
readonly properties: {
|
|
24
|
+
readonly roleId: {
|
|
25
|
+
readonly type: "integer";
|
|
26
|
+
readonly format: "int32";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
readonly required: readonly ["roleId"];
|
|
30
|
+
};
|
|
31
|
+
export declare const BatchAssignRoleRequestSchema: {
|
|
32
|
+
readonly type: "object";
|
|
33
|
+
readonly properties: {
|
|
34
|
+
readonly roleId: {
|
|
35
|
+
readonly type: "integer";
|
|
36
|
+
readonly format: "int32";
|
|
37
|
+
};
|
|
38
|
+
readonly memberIds: {
|
|
39
|
+
readonly type: "array";
|
|
40
|
+
readonly items: {
|
|
41
|
+
readonly type: "string";
|
|
42
|
+
readonly format: "uuid";
|
|
43
|
+
};
|
|
44
|
+
readonly minItems: 1;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
readonly required: readonly ["memberIds", "roleId"];
|
|
48
|
+
};
|
|
49
|
+
export declare const ChangeStatusRequestSchema: {
|
|
50
|
+
readonly type: "object";
|
|
51
|
+
readonly properties: {
|
|
52
|
+
readonly status: {
|
|
53
|
+
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
readonly required: readonly ["status"];
|
|
57
|
+
};
|
|
58
|
+
export declare const SourceRequestSchema: {
|
|
59
|
+
readonly type: "object";
|
|
60
|
+
readonly properties: {
|
|
61
|
+
readonly sourceUrl: {
|
|
62
|
+
readonly type: "string";
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
export declare const UpdateNoteRequestSchema: {
|
|
67
|
+
readonly type: "object";
|
|
68
|
+
readonly properties: {
|
|
69
|
+
readonly note: {
|
|
70
|
+
readonly type: "string";
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
export declare const LeadIntentRequestSchema: {
|
|
75
|
+
readonly type: "object";
|
|
76
|
+
readonly properties: {
|
|
77
|
+
readonly clientType: {
|
|
78
|
+
readonly $ref: "#/components/schemas/ClientTypeEnum";
|
|
79
|
+
};
|
|
80
|
+
readonly listingType: {
|
|
81
|
+
readonly $ref: "#/components/schemas/ListingTypeEnum";
|
|
82
|
+
};
|
|
83
|
+
readonly propertyType: {
|
|
84
|
+
readonly $ref: "#/components/schemas/PropertyTypeEnum";
|
|
85
|
+
};
|
|
86
|
+
readonly price: {
|
|
87
|
+
readonly $ref: "#/components/schemas/PriceRangeRequest";
|
|
88
|
+
};
|
|
89
|
+
readonly targetLocation: {
|
|
90
|
+
readonly $ref: "#/components/schemas/LocationRefRequest";
|
|
91
|
+
};
|
|
92
|
+
readonly area: {
|
|
93
|
+
readonly type: "number";
|
|
94
|
+
readonly format: "double";
|
|
95
|
+
};
|
|
96
|
+
readonly numberOfRooms: {
|
|
97
|
+
readonly type: "integer";
|
|
98
|
+
readonly format: "int32";
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
readonly required: readonly ["clientType", "listingType", "propertyType"];
|
|
102
|
+
};
|
|
103
|
+
export declare const LocationRefRequestSchema: {
|
|
104
|
+
readonly type: "object";
|
|
105
|
+
readonly properties: {
|
|
106
|
+
readonly regionId: {
|
|
107
|
+
readonly type: "integer";
|
|
108
|
+
readonly format: "int64";
|
|
109
|
+
};
|
|
110
|
+
readonly districtId: {
|
|
111
|
+
readonly type: "integer";
|
|
112
|
+
readonly format: "int64";
|
|
113
|
+
};
|
|
114
|
+
readonly subDistrictId: {
|
|
115
|
+
readonly type: "integer";
|
|
116
|
+
readonly format: "int64";
|
|
117
|
+
};
|
|
118
|
+
readonly streetId: {
|
|
119
|
+
readonly type: "integer";
|
|
120
|
+
readonly format: "int64";
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export declare const PriceRangeRequestSchema: {
|
|
125
|
+
readonly type: "object";
|
|
126
|
+
readonly properties: {
|
|
127
|
+
readonly min: {
|
|
128
|
+
readonly type: "number";
|
|
129
|
+
};
|
|
130
|
+
readonly max: {
|
|
131
|
+
readonly type: "number";
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
export declare const ContactInfoRequestSchema: {
|
|
136
|
+
readonly type: "object";
|
|
137
|
+
readonly properties: {
|
|
138
|
+
readonly firstName: {
|
|
139
|
+
readonly type: "string";
|
|
140
|
+
};
|
|
141
|
+
readonly lastName: {
|
|
142
|
+
readonly type: "string";
|
|
143
|
+
};
|
|
144
|
+
readonly email: {
|
|
145
|
+
readonly type: "string";
|
|
146
|
+
readonly format: "email";
|
|
147
|
+
};
|
|
148
|
+
readonly phone: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
readonly minLength: 1;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
readonly required: readonly ["phone"];
|
|
154
|
+
};
|
|
155
|
+
export declare const AssignToMemberRequestSchema: {
|
|
156
|
+
readonly type: "object";
|
|
157
|
+
readonly properties: {
|
|
158
|
+
readonly memberId: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
readonly format: "uuid";
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
readonly required: readonly ["memberId"];
|
|
164
|
+
};
|
|
165
|
+
export declare const AddressRequestSchema: {
|
|
166
|
+
readonly type: "object";
|
|
167
|
+
readonly properties: {
|
|
168
|
+
readonly country: {
|
|
169
|
+
readonly type: "string";
|
|
170
|
+
readonly maxLength: 100;
|
|
171
|
+
readonly minLength: 0;
|
|
172
|
+
};
|
|
173
|
+
readonly city: {
|
|
174
|
+
readonly type: "string";
|
|
175
|
+
readonly maxLength: 100;
|
|
176
|
+
readonly minLength: 0;
|
|
177
|
+
};
|
|
178
|
+
readonly district: {
|
|
179
|
+
readonly type: "string";
|
|
180
|
+
readonly maxLength: 100;
|
|
181
|
+
readonly minLength: 0;
|
|
182
|
+
};
|
|
183
|
+
readonly subdistrict: {
|
|
184
|
+
readonly type: "string";
|
|
185
|
+
readonly maxLength: 100;
|
|
186
|
+
readonly minLength: 0;
|
|
187
|
+
};
|
|
188
|
+
readonly street: {
|
|
189
|
+
readonly type: "string";
|
|
190
|
+
readonly maxLength: 255;
|
|
191
|
+
readonly minLength: 0;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
readonly required: readonly ["city", "country", "district", "street", "subdistrict"];
|
|
195
|
+
};
|
|
196
|
+
export declare const CreateAgencyRequestSchema: {
|
|
197
|
+
readonly type: "object";
|
|
198
|
+
readonly properties: {
|
|
199
|
+
readonly name: {
|
|
200
|
+
readonly type: "string";
|
|
201
|
+
readonly minLength: 1;
|
|
202
|
+
};
|
|
203
|
+
readonly email: {
|
|
204
|
+
readonly type: "string";
|
|
205
|
+
readonly format: "email";
|
|
206
|
+
readonly minLength: 1;
|
|
207
|
+
};
|
|
208
|
+
readonly seats: {
|
|
209
|
+
readonly type: "integer";
|
|
210
|
+
readonly format: "int32";
|
|
211
|
+
};
|
|
212
|
+
readonly subDomain: {
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
readonly minLength: 1;
|
|
215
|
+
};
|
|
216
|
+
readonly phone: {
|
|
217
|
+
readonly type: "string";
|
|
218
|
+
readonly minLength: 1;
|
|
219
|
+
};
|
|
220
|
+
readonly address: {
|
|
221
|
+
readonly $ref: "#/components/schemas/AddressRequest";
|
|
222
|
+
};
|
|
223
|
+
readonly yearSince: {
|
|
224
|
+
readonly type: "integer";
|
|
225
|
+
readonly format: "int32";
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
readonly required: readonly ["address", "email", "name", "phone", "seats", "subDomain", "yearSince"];
|
|
229
|
+
};
|
|
230
|
+
export declare const SocialMediaRequestSchema: {
|
|
231
|
+
readonly type: "object";
|
|
232
|
+
readonly properties: {
|
|
233
|
+
readonly type: {
|
|
234
|
+
readonly $ref: "#/components/schemas/TypeEnum";
|
|
235
|
+
};
|
|
236
|
+
readonly url: {
|
|
237
|
+
readonly type: "string";
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
readonly required: readonly ["type"];
|
|
241
|
+
};
|
|
242
|
+
export declare const SocialMediasRequestSchema: {
|
|
243
|
+
readonly type: "object";
|
|
244
|
+
readonly properties: {
|
|
245
|
+
readonly data: {
|
|
246
|
+
readonly type: "array";
|
|
247
|
+
readonly items: {
|
|
248
|
+
readonly $ref: "#/components/schemas/SocialMediaRequest";
|
|
249
|
+
};
|
|
250
|
+
readonly maxItems: 5;
|
|
251
|
+
readonly minItems: 1;
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
readonly required: readonly ["data"];
|
|
255
|
+
};
|
|
256
|
+
export declare const TransferFundsRequestSchema: {
|
|
257
|
+
readonly type: "object";
|
|
258
|
+
readonly properties: {
|
|
259
|
+
readonly transferTo: {
|
|
260
|
+
readonly type: "string";
|
|
261
|
+
readonly format: "uuid";
|
|
262
|
+
};
|
|
263
|
+
readonly amount: {
|
|
264
|
+
readonly type: "number";
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly required: readonly ["amount", "transferTo"];
|
|
268
|
+
};
|
|
269
|
+
export declare const DepositFundsRequestSchema: {
|
|
270
|
+
readonly type: "object";
|
|
271
|
+
readonly properties: {
|
|
272
|
+
readonly amount: {
|
|
273
|
+
readonly type: "number";
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
readonly required: readonly ["amount"];
|
|
277
|
+
};
|
|
278
|
+
export declare const IdResponseSchema: {
|
|
279
|
+
readonly type: "object";
|
|
280
|
+
readonly properties: {
|
|
281
|
+
readonly id: {};
|
|
282
|
+
};
|
|
283
|
+
readonly required: readonly ["id"];
|
|
284
|
+
};
|
|
285
|
+
export declare const CreateLeadRequestSchema: {
|
|
286
|
+
readonly type: "object";
|
|
287
|
+
readonly properties: {
|
|
288
|
+
readonly contactInfo: {
|
|
289
|
+
readonly $ref: "#/components/schemas/ContactInfoRequest";
|
|
290
|
+
};
|
|
291
|
+
readonly note: {
|
|
292
|
+
readonly type: "string";
|
|
293
|
+
readonly maxLength: 500;
|
|
294
|
+
readonly minLength: 0;
|
|
295
|
+
};
|
|
296
|
+
readonly sourceUrl: {
|
|
297
|
+
readonly type: "string";
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
readonly required: readonly ["contactInfo"];
|
|
301
|
+
};
|
|
302
|
+
export declare const IdResponseLongSchema: {
|
|
303
|
+
readonly type: "object";
|
|
304
|
+
readonly properties: {
|
|
305
|
+
readonly id: {
|
|
306
|
+
readonly type: "integer";
|
|
307
|
+
readonly format: "int64";
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
readonly required: readonly ["id"];
|
|
311
|
+
};
|
|
312
|
+
export declare const InvitationDetailsRequestSchema: {
|
|
313
|
+
readonly type: "object";
|
|
314
|
+
readonly properties: {
|
|
315
|
+
readonly email: {
|
|
316
|
+
readonly type: "string";
|
|
317
|
+
readonly format: "email";
|
|
318
|
+
};
|
|
319
|
+
readonly roleId: {
|
|
320
|
+
readonly type: "integer";
|
|
321
|
+
readonly format: "int32";
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
readonly required: readonly ["email", "roleId"];
|
|
325
|
+
};
|
|
326
|
+
export declare const InviteMemberRequestSchema: {
|
|
327
|
+
readonly type: "object";
|
|
328
|
+
readonly properties: {
|
|
329
|
+
readonly emails: {
|
|
330
|
+
readonly type: "array";
|
|
331
|
+
readonly items: {
|
|
332
|
+
readonly $ref: "#/components/schemas/InvitationDetailsRequest";
|
|
333
|
+
};
|
|
334
|
+
readonly minItems: 1;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
readonly required: readonly ["emails"];
|
|
338
|
+
};
|
|
339
|
+
export declare const IdResponseUUIDSchema: {
|
|
340
|
+
readonly type: "object";
|
|
341
|
+
readonly properties: {
|
|
342
|
+
readonly id: {
|
|
343
|
+
readonly type: "string";
|
|
344
|
+
readonly format: "uuid";
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
readonly required: readonly ["id"];
|
|
348
|
+
};
|
|
349
|
+
export declare const PhotoRequestSchema: {
|
|
350
|
+
readonly type: "object";
|
|
351
|
+
readonly properties: {
|
|
352
|
+
readonly photo: {
|
|
353
|
+
readonly type: "string";
|
|
354
|
+
readonly maxLength: 255;
|
|
355
|
+
readonly minLength: 0;
|
|
356
|
+
};
|
|
357
|
+
readonly type: {
|
|
358
|
+
readonly $ref: "#/components/schemas/TypeEnum2";
|
|
359
|
+
};
|
|
360
|
+
readonly width: {
|
|
361
|
+
readonly type: "integer";
|
|
362
|
+
readonly format: "int32";
|
|
363
|
+
readonly maximum: 11000;
|
|
364
|
+
readonly minimum: 10;
|
|
365
|
+
};
|
|
366
|
+
readonly height: {
|
|
367
|
+
readonly type: "integer";
|
|
368
|
+
readonly format: "int32";
|
|
369
|
+
readonly maximum: 11000;
|
|
370
|
+
readonly minimum: 10;
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
readonly required: readonly ["photo", "type", "width"];
|
|
374
|
+
};
|
|
375
|
+
export declare const PresignedUrlResponseSchema: {
|
|
376
|
+
readonly type: "object";
|
|
377
|
+
readonly properties: {
|
|
378
|
+
readonly originalName: {
|
|
379
|
+
readonly type: "string";
|
|
380
|
+
};
|
|
381
|
+
readonly key: {
|
|
382
|
+
readonly type: "string";
|
|
383
|
+
};
|
|
384
|
+
readonly url: {
|
|
385
|
+
readonly type: "string";
|
|
386
|
+
};
|
|
387
|
+
};
|
|
388
|
+
readonly required: readonly ["key", "originalName", "url"];
|
|
389
|
+
};
|
|
390
|
+
export declare const PresignedUrlsResponseSchema: {
|
|
391
|
+
readonly type: "object";
|
|
392
|
+
readonly properties: {
|
|
393
|
+
readonly data: {
|
|
394
|
+
readonly type: "array";
|
|
395
|
+
readonly items: {
|
|
396
|
+
readonly $ref: "#/components/schemas/PresignedUrlResponse";
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
readonly required: readonly ["data"];
|
|
401
|
+
};
|
|
402
|
+
export declare const UploadAcknowledgmentResponseSchema: {
|
|
403
|
+
readonly type: "object";
|
|
404
|
+
readonly properties: {
|
|
405
|
+
readonly success: {
|
|
406
|
+
readonly type: "array";
|
|
407
|
+
readonly items: {
|
|
408
|
+
readonly type: "string";
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
readonly fail: {
|
|
412
|
+
readonly type: "array";
|
|
413
|
+
readonly items: {
|
|
414
|
+
readonly type: "string";
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
readonly required: readonly ["fail", "success"];
|
|
419
|
+
};
|
|
420
|
+
export declare const OrganizationSummaryViewResponseSchema: {
|
|
421
|
+
readonly type: "object";
|
|
422
|
+
readonly properties: {
|
|
423
|
+
readonly agencyId: {
|
|
424
|
+
readonly type: "string";
|
|
425
|
+
readonly format: "uuid";
|
|
426
|
+
};
|
|
427
|
+
readonly isOwner: {
|
|
428
|
+
readonly type: "boolean";
|
|
429
|
+
};
|
|
430
|
+
readonly agencyName: {
|
|
431
|
+
readonly type: "string";
|
|
432
|
+
};
|
|
433
|
+
readonly subDomain: {
|
|
434
|
+
readonly type: "string";
|
|
435
|
+
};
|
|
436
|
+
readonly roleId: {
|
|
437
|
+
readonly type: "integer";
|
|
438
|
+
readonly format: "int32";
|
|
439
|
+
};
|
|
440
|
+
readonly memberId: {
|
|
441
|
+
readonly type: "string";
|
|
442
|
+
readonly format: "uuid";
|
|
443
|
+
};
|
|
444
|
+
readonly roleName: {
|
|
445
|
+
readonly type: "string";
|
|
446
|
+
};
|
|
447
|
+
readonly permissions: {
|
|
448
|
+
readonly type: "array";
|
|
449
|
+
readonly items: {
|
|
450
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
readonly status: {
|
|
454
|
+
readonly $ref: "#/components/schemas/SchemaEnum2";
|
|
455
|
+
};
|
|
456
|
+
};
|
|
457
|
+
readonly required: readonly ["agencyId", "agencyName", "isOwner", "memberId", "permissions", "roleName", "status", "subDomain"];
|
|
458
|
+
};
|
|
459
|
+
export declare const UserContextViewResponseSchema: {
|
|
460
|
+
readonly type: "object";
|
|
461
|
+
readonly properties: {
|
|
462
|
+
readonly user: {
|
|
463
|
+
readonly $ref: "#/components/schemas/UserSummaryViewResponse";
|
|
464
|
+
};
|
|
465
|
+
readonly organizations: {
|
|
466
|
+
readonly type: "array";
|
|
467
|
+
readonly items: {
|
|
468
|
+
readonly $ref: "#/components/schemas/OrganizationSummaryViewResponse";
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
readonly required: readonly ["organizations", "user"];
|
|
473
|
+
};
|
|
474
|
+
export declare const UserSummaryViewResponseSchema: {
|
|
475
|
+
readonly type: "object";
|
|
476
|
+
readonly properties: {
|
|
477
|
+
readonly email: {
|
|
478
|
+
readonly type: "string";
|
|
479
|
+
};
|
|
480
|
+
readonly firstName: {
|
|
481
|
+
readonly type: "string";
|
|
482
|
+
};
|
|
483
|
+
readonly lastName: {
|
|
484
|
+
readonly type: "string";
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
readonly required: readonly ["email", "firstName", "lastName"];
|
|
488
|
+
};
|
|
489
|
+
export declare const PageMetadataSchema: {
|
|
490
|
+
readonly type: "object";
|
|
491
|
+
readonly properties: {
|
|
492
|
+
readonly size: {
|
|
493
|
+
readonly type: "integer";
|
|
494
|
+
readonly format: "int64";
|
|
495
|
+
};
|
|
496
|
+
readonly number: {
|
|
497
|
+
readonly type: "integer";
|
|
498
|
+
readonly format: "int64";
|
|
499
|
+
};
|
|
500
|
+
readonly totalElements: {
|
|
501
|
+
readonly type: "integer";
|
|
502
|
+
readonly format: "int64";
|
|
503
|
+
};
|
|
504
|
+
readonly totalPages: {
|
|
505
|
+
readonly type: "integer";
|
|
506
|
+
readonly format: "int64";
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
};
|
|
510
|
+
export declare const PagedModelRoleResponseSchema: {
|
|
511
|
+
readonly type: "object";
|
|
512
|
+
readonly properties: {
|
|
513
|
+
readonly content: {
|
|
514
|
+
readonly type: "array";
|
|
515
|
+
readonly items: {
|
|
516
|
+
readonly $ref: "#/components/schemas/RoleResponse";
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
readonly page: {
|
|
520
|
+
readonly $ref: "#/components/schemas/PageMetadata";
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
export declare const RoleResponseSchema: {
|
|
525
|
+
readonly type: "object";
|
|
526
|
+
readonly properties: {
|
|
527
|
+
readonly id: {
|
|
528
|
+
readonly type: "integer";
|
|
529
|
+
readonly format: "int32";
|
|
530
|
+
};
|
|
531
|
+
readonly name: {
|
|
532
|
+
readonly type: "string";
|
|
533
|
+
};
|
|
534
|
+
readonly description: {
|
|
535
|
+
readonly type: "string";
|
|
536
|
+
};
|
|
537
|
+
readonly permissions: {
|
|
538
|
+
readonly type: "array";
|
|
539
|
+
readonly items: {
|
|
540
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
readonly required: readonly ["description", "id", "name", "permissions"];
|
|
545
|
+
};
|
|
546
|
+
export declare const InvitationDetailsResponseSchema: {
|
|
547
|
+
readonly type: "object";
|
|
548
|
+
readonly properties: {
|
|
549
|
+
readonly invitationId: {
|
|
550
|
+
readonly type: "string";
|
|
551
|
+
readonly format: "uuid";
|
|
552
|
+
};
|
|
553
|
+
readonly agencyId: {
|
|
554
|
+
readonly type: "string";
|
|
555
|
+
readonly format: "uuid";
|
|
556
|
+
};
|
|
557
|
+
readonly email: {
|
|
558
|
+
readonly type: "string";
|
|
559
|
+
};
|
|
560
|
+
readonly status: {
|
|
561
|
+
readonly $ref: "#/components/schemas/StatusEnum";
|
|
562
|
+
};
|
|
563
|
+
readonly agencyName: {
|
|
564
|
+
readonly type: "string";
|
|
565
|
+
};
|
|
566
|
+
readonly agencyLogo: {
|
|
567
|
+
readonly type: "string";
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
readonly required: readonly ["agencyId", "agencyName", "email", "invitationId", "status"];
|
|
571
|
+
};
|
|
572
|
+
export declare const AgencySummaryResponseSchema: {
|
|
573
|
+
readonly type: "object";
|
|
574
|
+
readonly properties: {
|
|
575
|
+
readonly id: {
|
|
576
|
+
readonly type: "string";
|
|
577
|
+
readonly format: "uuid";
|
|
578
|
+
};
|
|
579
|
+
readonly owner: {
|
|
580
|
+
readonly type: "string";
|
|
581
|
+
};
|
|
582
|
+
readonly name: {
|
|
583
|
+
readonly type: "string";
|
|
584
|
+
};
|
|
585
|
+
readonly email: {
|
|
586
|
+
readonly type: "string";
|
|
587
|
+
};
|
|
588
|
+
readonly seats: {
|
|
589
|
+
readonly type: "string";
|
|
590
|
+
};
|
|
591
|
+
readonly subDomain: {
|
|
592
|
+
readonly type: "string";
|
|
593
|
+
};
|
|
594
|
+
readonly phone: {
|
|
595
|
+
readonly type: "string";
|
|
596
|
+
};
|
|
597
|
+
readonly website: {
|
|
598
|
+
readonly type: "string";
|
|
599
|
+
};
|
|
600
|
+
readonly yearSince: {
|
|
601
|
+
readonly type: "string";
|
|
602
|
+
};
|
|
603
|
+
readonly status: {
|
|
604
|
+
readonly $ref: "#/components/schemas/SchemaEnum2";
|
|
605
|
+
};
|
|
606
|
+
readonly logo: {
|
|
607
|
+
readonly type: "string";
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
readonly required: readonly ["email", "id", "name", "owner", "phone", "seats", "status", "subDomain", "yearSince"];
|
|
611
|
+
};
|
|
612
|
+
export declare const PagedModelAgencySummaryResponseSchema: {
|
|
613
|
+
readonly type: "object";
|
|
614
|
+
readonly properties: {
|
|
615
|
+
readonly content: {
|
|
616
|
+
readonly type: "array";
|
|
617
|
+
readonly items: {
|
|
618
|
+
readonly $ref: "#/components/schemas/AgencySummaryResponse";
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
readonly page: {
|
|
622
|
+
readonly $ref: "#/components/schemas/PageMetadata";
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
export declare const GroupedPermissionsResponseSchema: {
|
|
627
|
+
readonly type: "object";
|
|
628
|
+
readonly properties: {
|
|
629
|
+
readonly group: {
|
|
630
|
+
readonly $ref: "#/components/schemas/GroupEnum";
|
|
631
|
+
};
|
|
632
|
+
readonly permissions: {
|
|
633
|
+
readonly type: "array";
|
|
634
|
+
readonly items: {
|
|
635
|
+
readonly $ref: "#/components/schemas/PermissionResponse";
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
readonly required: readonly ["group", "permissions"];
|
|
640
|
+
};
|
|
641
|
+
export declare const PermissionResponseSchema: {
|
|
642
|
+
readonly type: "object";
|
|
643
|
+
readonly properties: {
|
|
644
|
+
readonly permission: {
|
|
645
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
646
|
+
};
|
|
647
|
+
readonly implied: {
|
|
648
|
+
readonly type: "array";
|
|
649
|
+
readonly items: {
|
|
650
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
651
|
+
};
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
readonly required: readonly ["implied", "permission"];
|
|
655
|
+
};
|
|
656
|
+
export declare const MemberViewResponseSchema: {
|
|
657
|
+
readonly type: "object";
|
|
658
|
+
readonly properties: {
|
|
659
|
+
readonly userId: {
|
|
660
|
+
readonly type: "string";
|
|
661
|
+
};
|
|
662
|
+
readonly firstName: {
|
|
663
|
+
readonly type: "string";
|
|
664
|
+
};
|
|
665
|
+
readonly lastName: {
|
|
666
|
+
readonly type: "string";
|
|
667
|
+
};
|
|
668
|
+
readonly phone: {
|
|
669
|
+
readonly type: "string";
|
|
670
|
+
};
|
|
671
|
+
readonly email: {
|
|
672
|
+
readonly type: "string";
|
|
673
|
+
};
|
|
674
|
+
readonly roleId: {
|
|
675
|
+
readonly type: "integer";
|
|
676
|
+
readonly format: "int32";
|
|
677
|
+
};
|
|
678
|
+
readonly roleName: {
|
|
679
|
+
readonly type: "string";
|
|
680
|
+
};
|
|
681
|
+
readonly joinedAt: {
|
|
682
|
+
readonly type: "string";
|
|
683
|
+
readonly format: "date-time";
|
|
684
|
+
};
|
|
685
|
+
};
|
|
686
|
+
readonly required: readonly ["email", "firstName", "joinedAt", "lastName", "roleId", "roleName", "userId"];
|
|
687
|
+
};
|
|
688
|
+
export declare const PagedModelMemberViewResponseSchema: {
|
|
689
|
+
readonly type: "object";
|
|
690
|
+
readonly properties: {
|
|
691
|
+
readonly content: {
|
|
692
|
+
readonly type: "array";
|
|
693
|
+
readonly items: {
|
|
694
|
+
readonly $ref: "#/components/schemas/MemberViewResponse";
|
|
695
|
+
};
|
|
696
|
+
};
|
|
697
|
+
readonly page: {
|
|
698
|
+
readonly $ref: "#/components/schemas/PageMetadata";
|
|
699
|
+
};
|
|
700
|
+
};
|
|
701
|
+
};
|
|
702
|
+
export declare const IntentResponseSchema: {
|
|
703
|
+
readonly type: "object";
|
|
704
|
+
readonly properties: {
|
|
705
|
+
readonly id: {
|
|
706
|
+
readonly type: "integer";
|
|
707
|
+
readonly format: "int64";
|
|
708
|
+
};
|
|
709
|
+
readonly clientType: {
|
|
710
|
+
readonly $ref: "#/components/schemas/ClientTypeEnum";
|
|
711
|
+
};
|
|
712
|
+
readonly listingType: {
|
|
713
|
+
readonly $ref: "#/components/schemas/ListingTypeEnum";
|
|
714
|
+
};
|
|
715
|
+
readonly propertyType: {
|
|
716
|
+
readonly $ref: "#/components/schemas/PropertyTypeEnum";
|
|
717
|
+
};
|
|
718
|
+
readonly priceMin: {
|
|
719
|
+
readonly type: "number";
|
|
720
|
+
};
|
|
721
|
+
readonly priceMax: {
|
|
722
|
+
readonly type: "number";
|
|
723
|
+
};
|
|
724
|
+
readonly regionId: {
|
|
725
|
+
readonly type: "integer";
|
|
726
|
+
readonly format: "int64";
|
|
727
|
+
};
|
|
728
|
+
readonly districtId: {
|
|
729
|
+
readonly type: "integer";
|
|
730
|
+
readonly format: "int64";
|
|
731
|
+
};
|
|
732
|
+
readonly subDistrictId: {
|
|
733
|
+
readonly type: "integer";
|
|
734
|
+
readonly format: "int64";
|
|
735
|
+
};
|
|
736
|
+
readonly streetId: {
|
|
737
|
+
readonly type: "integer";
|
|
738
|
+
readonly format: "int64";
|
|
739
|
+
};
|
|
740
|
+
readonly area: {
|
|
741
|
+
readonly type: "number";
|
|
742
|
+
readonly format: "double";
|
|
743
|
+
};
|
|
744
|
+
readonly numberOfRooms: {
|
|
745
|
+
readonly type: "integer";
|
|
746
|
+
readonly format: "int32";
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
readonly required: readonly ["clientType", "id", "listingType", "propertyType"];
|
|
750
|
+
};
|
|
751
|
+
export declare const LeadProjectionResponseSchema: {
|
|
752
|
+
readonly type: "object";
|
|
753
|
+
readonly properties: {
|
|
754
|
+
readonly id: {
|
|
755
|
+
readonly type: "integer";
|
|
756
|
+
readonly format: "int64";
|
|
757
|
+
};
|
|
758
|
+
readonly createdBy: {
|
|
759
|
+
readonly type: "string";
|
|
760
|
+
readonly format: "uuid";
|
|
761
|
+
};
|
|
762
|
+
readonly assignedTo: {
|
|
763
|
+
readonly type: "string";
|
|
764
|
+
readonly format: "uuid";
|
|
765
|
+
};
|
|
766
|
+
readonly status: {
|
|
767
|
+
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
768
|
+
};
|
|
769
|
+
readonly contactFullName: {
|
|
770
|
+
readonly type: "string";
|
|
771
|
+
};
|
|
772
|
+
readonly contactPhoneNumber: {
|
|
773
|
+
readonly type: "string";
|
|
774
|
+
};
|
|
775
|
+
readonly contactEmail: {
|
|
776
|
+
readonly type: "string";
|
|
777
|
+
};
|
|
778
|
+
readonly note: {
|
|
779
|
+
readonly type: "string";
|
|
780
|
+
};
|
|
781
|
+
readonly sourceType: {
|
|
782
|
+
readonly $ref: "#/components/schemas/SourceTypeEnum";
|
|
783
|
+
};
|
|
784
|
+
readonly sourceLink: {
|
|
785
|
+
readonly type: "string";
|
|
786
|
+
};
|
|
787
|
+
readonly isSearching: {
|
|
788
|
+
readonly type: "boolean";
|
|
789
|
+
};
|
|
790
|
+
readonly isListing: {
|
|
791
|
+
readonly type: "boolean";
|
|
792
|
+
};
|
|
793
|
+
readonly intents: {
|
|
794
|
+
readonly type: "array";
|
|
795
|
+
readonly items: {
|
|
796
|
+
readonly $ref: "#/components/schemas/IntentResponse";
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
};
|
|
800
|
+
readonly required: readonly ["contactPhoneNumber", "createdBy", "id", "isListing", "isSearching", "status"];
|
|
801
|
+
};
|
|
802
|
+
export declare const PagedModelLeadProjectionResponseSchema: {
|
|
803
|
+
readonly type: "object";
|
|
804
|
+
readonly properties: {
|
|
805
|
+
readonly content: {
|
|
806
|
+
readonly type: "array";
|
|
807
|
+
readonly items: {
|
|
808
|
+
readonly $ref: "#/components/schemas/LeadProjectionResponse";
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
readonly page: {
|
|
812
|
+
readonly $ref: "#/components/schemas/PageMetadata";
|
|
813
|
+
};
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
export declare const InvitationViewResponseSchema: {
|
|
817
|
+
readonly type: "object";
|
|
818
|
+
readonly properties: {
|
|
819
|
+
readonly invitationId: {
|
|
820
|
+
readonly type: "string";
|
|
821
|
+
readonly format: "uuid";
|
|
822
|
+
};
|
|
823
|
+
readonly email: {
|
|
824
|
+
readonly type: "string";
|
|
825
|
+
};
|
|
826
|
+
readonly status: {
|
|
827
|
+
readonly $ref: "#/components/schemas/StatusEnum";
|
|
828
|
+
};
|
|
829
|
+
readonly createdAt: {
|
|
830
|
+
readonly type: "string";
|
|
831
|
+
readonly format: "date-time";
|
|
832
|
+
};
|
|
833
|
+
readonly expiresAt: {
|
|
834
|
+
readonly type: "string";
|
|
835
|
+
readonly format: "date-time";
|
|
836
|
+
};
|
|
837
|
+
readonly acceptedAt: {
|
|
838
|
+
readonly type: "string";
|
|
839
|
+
readonly format: "date-time";
|
|
840
|
+
};
|
|
841
|
+
readonly acceptedBy: {
|
|
842
|
+
readonly type: "string";
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
readonly required: readonly ["createdAt", "email", "expiresAt", "invitationId", "status"];
|
|
846
|
+
};
|
|
847
|
+
export declare const PagedModelInvitationViewResponseSchema: {
|
|
848
|
+
readonly type: "object";
|
|
849
|
+
readonly properties: {
|
|
850
|
+
readonly content: {
|
|
851
|
+
readonly type: "array";
|
|
852
|
+
readonly items: {
|
|
853
|
+
readonly $ref: "#/components/schemas/InvitationViewResponse";
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
readonly page: {
|
|
857
|
+
readonly $ref: "#/components/schemas/PageMetadata";
|
|
858
|
+
};
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
export declare const AddressViewResponseSchema: {
|
|
862
|
+
readonly type: "object";
|
|
863
|
+
readonly properties: {
|
|
864
|
+
readonly country: {
|
|
865
|
+
readonly type: "string";
|
|
866
|
+
};
|
|
867
|
+
readonly city: {
|
|
868
|
+
readonly type: "string";
|
|
869
|
+
};
|
|
870
|
+
readonly district: {
|
|
871
|
+
readonly type: "string";
|
|
872
|
+
};
|
|
873
|
+
readonly subdistrict: {
|
|
874
|
+
readonly type: "string";
|
|
875
|
+
};
|
|
876
|
+
readonly street: {
|
|
877
|
+
readonly type: "string";
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
readonly required: readonly ["city", "country", "district", "street", "subdistrict"];
|
|
881
|
+
};
|
|
882
|
+
export declare const AgencyProfileResponseSchema: {
|
|
883
|
+
readonly type: "object";
|
|
884
|
+
readonly properties: {
|
|
885
|
+
readonly name: {
|
|
886
|
+
readonly type: "string";
|
|
887
|
+
};
|
|
888
|
+
readonly email: {
|
|
889
|
+
readonly type: "string";
|
|
890
|
+
};
|
|
891
|
+
readonly seats: {
|
|
892
|
+
readonly type: "integer";
|
|
893
|
+
readonly format: "int32";
|
|
894
|
+
};
|
|
895
|
+
readonly subDomain: {
|
|
896
|
+
readonly type: "string";
|
|
897
|
+
};
|
|
898
|
+
readonly phone: {
|
|
899
|
+
readonly type: "string";
|
|
900
|
+
};
|
|
901
|
+
readonly address: {
|
|
902
|
+
readonly $ref: "#/components/schemas/AddressViewResponse";
|
|
903
|
+
};
|
|
904
|
+
readonly yearSince: {
|
|
905
|
+
readonly type: "integer";
|
|
906
|
+
readonly format: "int32";
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
readonly required: readonly ["address", "email", "name", "phone", "seats", "subDomain", "yearSince"];
|
|
910
|
+
};
|
|
911
|
+
export declare const SchemaEnumSchema: {
|
|
912
|
+
readonly type: "string";
|
|
913
|
+
readonly enum: readonly ["NEW", "ATTEMPTED_CONTACT", "CONTACTED", "DISQUALIFIED", "CONVERTED", "LOST"];
|
|
914
|
+
};
|
|
915
|
+
export declare const SchemaEnum2Schema: {
|
|
916
|
+
readonly type: "string";
|
|
917
|
+
readonly enum: readonly ["NEW", "ACTIVE", "PAYMENT_FAILED", "INACTIVE"];
|
|
918
|
+
};
|
|
919
|
+
export declare const ItemsEnumSchema: {
|
|
920
|
+
readonly type: "string";
|
|
921
|
+
readonly enum: readonly ["AGENCY_WRITE", "INVITATION_READ", "INVITATION_WRITE", "ROLE_READ", "ROLE_WRITE", "MEMBER_READ", "MEMBER_WRITE", "LEAD_READ", "LEAD_WRITE", "LEAD_READ_ALL", "LEAD_WRITE_ALL"];
|
|
922
|
+
};
|
|
923
|
+
export declare const ClientTypeEnumSchema: {
|
|
924
|
+
readonly type: "string";
|
|
925
|
+
readonly enum: readonly ["LISTING", "SEEKING"];
|
|
926
|
+
};
|
|
927
|
+
export declare const ListingTypeEnumSchema: {
|
|
928
|
+
readonly type: "string";
|
|
929
|
+
readonly enum: readonly ["SALE", "RENT", "DAILY_RENT", "PLEDGE"];
|
|
930
|
+
};
|
|
931
|
+
export declare const PropertyTypeEnumSchema: {
|
|
932
|
+
readonly type: "string";
|
|
933
|
+
readonly enum: readonly ["HOUSE", "TOWN_HOUSE", "COUNTRY_HOUSE", "VILLA", "COTTAGE", "APARTMENT", "DUPLEX", "TRIPLEX", "SEMI_BASEMENT", "ATTIC", "AGRICULTURAL_LAND", "RESIDENTIAL_LAND", "HOTEL_ROOM", "MOTEL_ROOM", "CO_LIVING_SPACE", "OFFICE", "COMMERCIAL_SPACE", "CO_WORKING_SPACE", "WAREHOUSE", "GARAGE"];
|
|
934
|
+
};
|
|
935
|
+
export declare const TypeEnumSchema: {
|
|
936
|
+
readonly type: "string";
|
|
937
|
+
readonly enum: readonly ["FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN"];
|
|
938
|
+
};
|
|
939
|
+
export declare const TypeEnum2Schema: {
|
|
940
|
+
readonly type: "string";
|
|
941
|
+
readonly enum: readonly ["JPEG", "JPG", "PNG", "WEBP"];
|
|
942
|
+
};
|
|
943
|
+
export declare const StatusEnumSchema: {
|
|
944
|
+
readonly type: "string";
|
|
945
|
+
readonly enum: readonly ["PENDING", "ACCEPTED", "CANCELLED", "EXPIRED"];
|
|
946
|
+
};
|
|
947
|
+
export declare const GroupEnumSchema: {
|
|
948
|
+
readonly type: "string";
|
|
949
|
+
readonly enum: readonly ["AGENCY", "INVITATION", "ROLE", "MEMBER", "LEAD"];
|
|
950
|
+
};
|
|
951
|
+
export declare const SourceTypeEnumSchema: {
|
|
952
|
+
readonly type: "string";
|
|
953
|
+
readonly enum: readonly ["MY_HOME", "SS", "FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN", "UNKNOWN"];
|
|
954
|
+
};
|
|
955
|
+
//# sourceMappingURL=schemas.gen.d.ts.map
|