@homespot-sdk/core 0.0.113 → 0.0.115

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.
Files changed (49) hide show
  1. package/dist/registration/client.gen.js +1 -1
  2. package/dist/registration/client.gen.js.map +1 -1
  3. package/dist/registration/index.d.ts +2 -2
  4. package/dist/registration/index.d.ts.map +1 -1
  5. package/dist/registration/index.js +1 -1
  6. package/dist/registration/index.js.map +1 -1
  7. package/dist/registration/schemas.gen.d.ts +215 -1044
  8. package/dist/registration/schemas.gen.d.ts.map +1 -1
  9. package/dist/registration/schemas.gen.js +247 -1113
  10. package/dist/registration/schemas.gen.js.map +1 -1
  11. package/dist/registration/sdk.gen.d.ts +19 -51
  12. package/dist/registration/sdk.gen.d.ts.map +1 -1
  13. package/dist/registration/sdk.gen.js +38 -275
  14. package/dist/registration/sdk.gen.js.map +1 -1
  15. package/dist/registration/transformers.gen.d.ts +2 -3
  16. package/dist/registration/transformers.gen.d.ts.map +1 -1
  17. package/dist/registration/transformers.gen.js +4 -28
  18. package/dist/registration/transformers.gen.js.map +1 -1
  19. package/dist/registration/types.gen.d.ts +232 -1023
  20. package/dist/registration/types.gen.d.ts.map +1 -1
  21. package/dist/registration/zod.gen.d.ts +655 -2825
  22. package/dist/registration/zod.gen.d.ts.map +1 -1
  23. package/dist/registration/zod.gen.js +194 -1274
  24. package/dist/registration/zod.gen.js.map +1 -1
  25. package/dist/rem/client.gen.js +1 -1
  26. package/dist/rem/client.gen.js.map +1 -1
  27. package/dist/rem/index.d.ts +2 -2
  28. package/dist/rem/index.d.ts.map +1 -1
  29. package/dist/rem/index.js +1 -1
  30. package/dist/rem/index.js.map +1 -1
  31. package/dist/rem/schemas.gen.d.ts +1045 -216
  32. package/dist/rem/schemas.gen.d.ts.map +1 -1
  33. package/dist/rem/schemas.gen.js +1111 -245
  34. package/dist/rem/schemas.gen.js.map +1 -1
  35. package/dist/rem/sdk.gen.d.ts +51 -19
  36. package/dist/rem/sdk.gen.d.ts.map +1 -1
  37. package/dist/rem/sdk.gen.js +275 -38
  38. package/dist/rem/sdk.gen.js.map +1 -1
  39. package/dist/rem/transformers.gen.d.ts +3 -2
  40. package/dist/rem/transformers.gen.d.ts.map +1 -1
  41. package/dist/rem/transformers.gen.js +28 -4
  42. package/dist/rem/transformers.gen.js.map +1 -1
  43. package/dist/rem/types.gen.d.ts +1023 -232
  44. package/dist/rem/types.gen.d.ts.map +1 -1
  45. package/dist/rem/zod.gen.d.ts +2823 -653
  46. package/dist/rem/zod.gen.d.ts.map +1 -1
  47. package/dist/rem/zod.gen.js +1274 -194
  48. package/dist/rem/zod.gen.js.map +1 -1
  49. package/package.json +1 -1
@@ -1,202 +1,270 @@
1
- export declare const SpaceRequestSchema: {
1
+ export declare const RolesRequestSchema: {
2
2
  readonly type: "object";
3
3
  readonly properties: {
4
- readonly type: {
5
- readonly $ref: "#/components/schemas/TypeEnum";
4
+ readonly name: {
5
+ readonly type: "string";
6
+ readonly minLength: 1;
6
7
  };
7
- readonly area: {
8
- readonly type: "number";
9
- readonly format: "double";
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
+ };
10
17
  };
11
18
  };
12
- readonly required: readonly ["area", "type"];
19
+ readonly required: readonly ["description", "name", "permissions"];
13
20
  };
14
- export declare const SpacesRequestSchema: {
21
+ export declare const AssignRoleRequestSchema: {
15
22
  readonly type: "object";
16
23
  readonly properties: {
17
- readonly spaces: {
18
- readonly type: "array";
19
- readonly items: {
20
- readonly $ref: "#/components/schemas/SpaceRequest";
21
- };
24
+ readonly roleId: {
25
+ readonly type: "integer";
26
+ readonly format: "int32";
22
27
  };
23
28
  };
24
- readonly required: readonly ["spaces"];
29
+ readonly required: readonly ["roleId"];
25
30
  };
26
- export declare const RegistrationProgressDtoSchema: {
31
+ export declare const BatchAssignRoleRequestSchema: {
27
32
  readonly type: "object";
28
33
  readonly properties: {
29
- readonly registrationId: {
30
- readonly type: "string";
31
- readonly format: "uuid";
32
- readonly description: "id of the property being registered";
34
+ readonly roleId: {
35
+ readonly type: "integer";
36
+ readonly format: "int32";
33
37
  };
34
- readonly pages: {
38
+ readonly memberIds: {
35
39
  readonly type: "array";
36
- readonly description: "multiform pages";
37
40
  readonly items: {
38
41
  readonly type: "string";
42
+ readonly format: "uuid";
39
43
  };
44
+ readonly minItems: 1;
40
45
  };
41
- readonly total: {
42
- readonly type: "integer";
43
- readonly format: "int32";
44
- readonly description: "total pages";
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";
45
54
  };
46
- readonly group: {
47
- readonly $ref: "#/components/schemas/GroupEnum";
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";
48
63
  };
49
64
  };
50
- readonly required: readonly ["group", "pages", "registrationId", "total"];
51
65
  };
52
- export declare const PhotoRequestSchema: {
66
+ export declare const UpdateNoteRequestSchema: {
53
67
  readonly type: "object";
54
68
  readonly properties: {
55
- readonly photo: {
69
+ readonly note: {
56
70
  readonly type: "string";
57
- readonly maxLength: 255;
58
- readonly minLength: 0;
59
71
  };
60
- readonly type: {
61
- readonly $ref: "#/components/schemas/TypeEnum2";
72
+ };
73
+ };
74
+ export declare const LeadIntentRequestSchema: {
75
+ readonly type: "object";
76
+ readonly properties: {
77
+ readonly clientType: {
78
+ readonly $ref: "#/components/schemas/ClientTypeEnum";
62
79
  };
63
- readonly width: {
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: {
64
97
  readonly type: "integer";
65
98
  readonly format: "int32";
66
- readonly maximum: 11000;
67
- readonly minimum: 10;
68
99
  };
69
- readonly height: {
100
+ };
101
+ readonly required: readonly ["clientType", "listingType", "propertyType"];
102
+ };
103
+ export declare const LocationRefRequestSchema: {
104
+ readonly type: "object";
105
+ readonly properties: {
106
+ readonly regionId: {
70
107
  readonly type: "integer";
71
- readonly format: "int32";
72
- readonly maximum: 11000;
73
- readonly minimum: 10;
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";
74
121
  };
75
122
  };
76
- readonly required: readonly ["photo", "type", "width"];
77
123
  };
78
- export declare const PhotosRequestSchema: {
124
+ export declare const PriceRangeRequestSchema: {
79
125
  readonly type: "object";
80
126
  readonly properties: {
81
- readonly photos: {
82
- readonly type: "array";
83
- readonly items: {
84
- readonly $ref: "#/components/schemas/PhotoRequest";
85
- };
86
- readonly maxItems: 30;
87
- readonly minItems: 1;
127
+ readonly min: {
128
+ readonly type: "number";
129
+ };
130
+ readonly max: {
131
+ readonly type: "number";
88
132
  };
89
133
  };
90
- readonly required: readonly ["photos"];
91
134
  };
92
- export declare const PresignedUrlResponseSchema: {
135
+ export declare const ContactInfoRequestSchema: {
93
136
  readonly type: "object";
94
137
  readonly properties: {
95
- readonly originalName: {
138
+ readonly firstName: {
96
139
  readonly type: "string";
97
140
  };
98
- readonly key: {
141
+ readonly lastName: {
99
142
  readonly type: "string";
100
143
  };
101
- readonly url: {
144
+ readonly gender: {
145
+ readonly $ref: "#/components/schemas/GenderEnum";
146
+ };
147
+ readonly email: {
148
+ readonly type: "string";
149
+ readonly format: "email";
150
+ };
151
+ readonly phone: {
102
152
  readonly type: "string";
153
+ readonly minLength: 1;
103
154
  };
104
155
  };
105
- readonly required: readonly ["key", "originalName", "url"];
156
+ readonly required: readonly ["phone"];
106
157
  };
107
- export declare const PresignedUrlsResponseSchema: {
158
+ export declare const AssignToMemberRequestSchema: {
108
159
  readonly type: "object";
109
160
  readonly properties: {
110
- readonly data: {
111
- readonly type: "array";
112
- readonly items: {
113
- readonly $ref: "#/components/schemas/PresignedUrlResponse";
114
- };
161
+ readonly memberId: {
162
+ readonly type: "string";
163
+ readonly format: "uuid";
115
164
  };
116
165
  };
117
- readonly required: readonly ["data"];
166
+ readonly required: readonly ["memberId"];
118
167
  };
119
- export declare const MeasurementRequestSchema: {
168
+ export declare const ClientRequirementRequestSchema: {
120
169
  readonly type: "object";
121
170
  readonly properties: {
122
- readonly totalArea: {
171
+ readonly propertyType: {
172
+ readonly type: "array";
173
+ readonly items: {
174
+ readonly $ref: "#/components/schemas/PropertyTypeEnum";
175
+ };
176
+ readonly uniqueItems: true;
177
+ };
178
+ readonly listingType: {
179
+ readonly $ref: "#/components/schemas/ListingTypeEnum";
180
+ };
181
+ readonly priceMin: {
182
+ readonly type: "number";
183
+ };
184
+ readonly priceMax: {
185
+ readonly type: "number";
186
+ };
187
+ readonly bedroomsMin: {
188
+ readonly type: "integer";
189
+ readonly format: "int32";
190
+ };
191
+ readonly bedroomsMax: {
192
+ readonly type: "integer";
193
+ readonly format: "int32";
194
+ };
195
+ readonly bathroomsMin: {
196
+ readonly type: "integer";
197
+ readonly format: "int32";
198
+ };
199
+ readonly bathroomsMax: {
200
+ readonly type: "integer";
201
+ readonly format: "int32";
202
+ };
203
+ readonly totalMin: {
204
+ readonly type: "number";
205
+ readonly format: "double";
206
+ };
207
+ readonly totalMax: {
123
208
  readonly type: "number";
124
209
  readonly format: "double";
125
- readonly minimum: 1;
126
210
  };
127
- readonly livingArea: {
211
+ readonly livingMin: {
128
212
  readonly type: "number";
129
213
  readonly format: "double";
130
214
  };
131
- readonly balconyArea: {
215
+ readonly livingMax: {
132
216
  readonly type: "number";
133
217
  readonly format: "double";
134
218
  };
219
+ readonly targetLocation: {
220
+ readonly $ref: "#/components/schemas/LocationRefRequest";
221
+ };
135
222
  };
136
- readonly required: readonly ["totalArea"];
223
+ readonly required: readonly ["listingType", "propertyType"];
137
224
  };
138
- export declare const TitleAndDescriptionRequestSchema: {
225
+ export declare const UpdatePriorityRequestSchema: {
139
226
  readonly type: "object";
140
227
  readonly properties: {
141
- readonly title: {
142
- readonly type: "string";
143
- };
144
- readonly description: {
145
- readonly type: "object";
146
- readonly additionalProperties: {
147
- readonly type: "string";
148
- };
228
+ readonly priority: {
229
+ readonly $ref: "#/components/schemas/PriorityEnum";
149
230
  };
150
231
  };
151
232
  };
152
- export declare const AmenitiesRequestSchema: {
233
+ export declare const UpdateContactMethodsRequestSchema: {
153
234
  readonly type: "object";
154
235
  readonly properties: {
155
- readonly amenities: {
236
+ readonly contactMethods: {
156
237
  readonly type: "array";
157
238
  readonly items: {
158
- readonly type: "integer";
159
- readonly format: "int32";
239
+ readonly $ref: "#/components/schemas/ItemsEnum2";
160
240
  };
241
+ readonly uniqueItems: true;
242
+ };
243
+ readonly favoriteContactMethod: {
244
+ readonly $ref: "#/components/schemas/ItemsEnum2";
161
245
  };
162
246
  };
247
+ readonly required: readonly ["contactMethods", "favoriteContactMethod"];
163
248
  };
164
249
  export declare const AddressRequestSchema: {
165
250
  readonly type: "object";
166
251
  readonly properties: {
167
- readonly placeId: {
168
- readonly type: "string";
169
- readonly maxLength: 255;
170
- readonly minLength: 0;
171
- };
172
- readonly cadastralCode: {
252
+ readonly country: {
173
253
  readonly type: "string";
174
- readonly maxLength: 255;
254
+ readonly maxLength: 100;
175
255
  readonly minLength: 0;
176
256
  };
177
- readonly fullName: {
257
+ readonly city: {
178
258
  readonly type: "string";
179
- readonly maxLength: 500;
259
+ readonly maxLength: 100;
180
260
  readonly minLength: 0;
181
261
  };
182
- readonly lat: {
183
- readonly type: "number";
184
- readonly format: "double";
185
- readonly maximum: 90;
186
- readonly minimum: -90;
187
- };
188
- readonly lng: {
189
- readonly type: "number";
190
- readonly format: "double";
191
- readonly maximum: 180;
192
- readonly minimum: -180;
193
- };
194
- readonly country: {
262
+ readonly district: {
195
263
  readonly type: "string";
196
264
  readonly maxLength: 100;
197
265
  readonly minLength: 0;
198
266
  };
199
- readonly city: {
267
+ readonly subdistrict: {
200
268
  readonly type: "string";
201
269
  readonly maxLength: 100;
202
270
  readonly minLength: 0;
@@ -207,253 +275,1014 @@ export declare const AddressRequestSchema: {
207
275
  readonly minLength: 0;
208
276
  };
209
277
  };
210
- readonly required: readonly ["cadastralCode", "city", "country", "fullName", "lat", "lng", "placeId", "street"];
278
+ readonly required: readonly ["city", "country", "district", "street", "subdistrict"];
211
279
  };
212
- export declare const PhotoReorderRequestSchema: {
280
+ export declare const CreateAgencyRequestSchema: {
213
281
  readonly type: "object";
214
282
  readonly properties: {
215
- readonly photos: {
216
- readonly type: "array";
217
- readonly items: {
218
- readonly type: "string";
219
- };
220
- readonly minItems: 1;
283
+ readonly name: {
284
+ readonly type: "string";
285
+ readonly minLength: 1;
286
+ };
287
+ readonly email: {
288
+ readonly type: "string";
289
+ readonly format: "email";
290
+ readonly minLength: 1;
291
+ };
292
+ readonly seats: {
293
+ readonly type: "integer";
294
+ readonly format: "int32";
295
+ };
296
+ readonly subDomain: {
297
+ readonly type: "string";
298
+ readonly minLength: 1;
299
+ };
300
+ readonly phone: {
301
+ readonly type: "string";
302
+ readonly minLength: 1;
303
+ };
304
+ readonly address: {
305
+ readonly $ref: "#/components/schemas/AddressRequest";
306
+ };
307
+ readonly yearSince: {
308
+ readonly type: "integer";
309
+ readonly format: "int32";
221
310
  };
222
311
  };
223
- readonly required: readonly ["photos"];
312
+ readonly required: readonly ["address", "email", "name", "phone", "seats", "subDomain", "yearSince"];
224
313
  };
225
- export declare const StartRegistrationRequestSchema: {
314
+ export declare const SocialMediaRequestSchema: {
226
315
  readonly type: "object";
227
316
  readonly properties: {
228
- readonly draftType: {
229
- readonly $ref: "#/components/schemas/DraftTypeEnum";
317
+ readonly type: {
318
+ readonly $ref: "#/components/schemas/TypeEnum";
319
+ };
320
+ readonly url: {
321
+ readonly type: "string";
230
322
  };
231
323
  };
232
- readonly required: readonly ["draftType"];
324
+ readonly required: readonly ["type"];
233
325
  };
234
- export declare const AgencyStartRegistrationRequestSchema: {
326
+ export declare const SocialMediasRequestSchema: {
235
327
  readonly type: "object";
236
328
  readonly properties: {
237
- readonly draftType: {
238
- readonly $ref: "#/components/schemas/DraftTypeEnum";
239
- };
240
- readonly ownerId: {
241
- readonly type: "string";
242
- readonly minLength: 1;
329
+ readonly data: {
330
+ readonly type: "array";
331
+ readonly items: {
332
+ readonly $ref: "#/components/schemas/SocialMediaRequest";
333
+ };
334
+ readonly maxItems: 5;
335
+ readonly minItems: 1;
243
336
  };
244
337
  };
245
- readonly required: readonly ["draftType", "ownerId"];
338
+ readonly required: readonly ["data"];
246
339
  };
247
- export declare const AddressResponseSchema: {
340
+ export declare const TransferFundsRequestSchema: {
248
341
  readonly type: "object";
249
342
  readonly properties: {
250
- readonly placeId: {
251
- readonly type: "string";
252
- };
253
- readonly cadastralCode: {
254
- readonly type: "string";
255
- };
256
- readonly fullAddressName: {
343
+ readonly transferTo: {
257
344
  readonly type: "string";
345
+ readonly format: "uuid";
258
346
  };
259
- readonly lat: {
347
+ readonly amount: {
260
348
  readonly type: "number";
261
- readonly format: "double";
262
349
  };
263
- readonly lng: {
350
+ };
351
+ readonly required: readonly ["amount", "transferTo"];
352
+ };
353
+ export declare const DepositFundsRequestSchema: {
354
+ readonly type: "object";
355
+ readonly properties: {
356
+ readonly amount: {
264
357
  readonly type: "number";
265
- readonly format: "double";
266
358
  };
267
- readonly country: {
268
- readonly type: "string";
359
+ };
360
+ readonly required: readonly ["amount"];
361
+ };
362
+ export declare const IdResponseIntegerSchema: {
363
+ readonly type: "object";
364
+ readonly properties: {
365
+ readonly id: {
366
+ readonly type: "integer";
367
+ readonly format: "int32";
269
368
  };
270
- readonly city: {
369
+ };
370
+ readonly required: readonly ["id"];
371
+ };
372
+ export declare const CreateLeadRequestSchema: {
373
+ readonly type: "object";
374
+ readonly properties: {
375
+ readonly contactInfo: {
376
+ readonly $ref: "#/components/schemas/ContactInfoRequest";
377
+ };
378
+ readonly note: {
271
379
  readonly type: "string";
380
+ readonly maxLength: 500;
381
+ readonly minLength: 0;
272
382
  };
273
- readonly street: {
383
+ readonly sourceUrl: {
274
384
  readonly type: "string";
275
385
  };
276
386
  };
277
- readonly required: readonly ["cadastralCode", "city", "country", "fullAddressName", "lat", "lng", "placeId", "street"];
387
+ readonly required: readonly ["contactInfo"];
278
388
  };
279
- export declare const LangTextResponseSchema: {
389
+ export declare const IdResponseLongSchema: {
280
390
  readonly type: "object";
281
391
  readonly properties: {
282
- readonly language: {
283
- readonly $ref: "#/components/schemas/LanguageEnum";
284
- };
285
- readonly text: {
286
- readonly type: "string";
392
+ readonly id: {
393
+ readonly type: "integer";
394
+ readonly format: "int64";
287
395
  };
288
396
  };
289
- readonly required: readonly ["language", "text"];
397
+ readonly required: readonly ["id"];
290
398
  };
291
- export declare const MeasurementResponseSchema: {
399
+ export declare const InvitationDetailsRequestSchema: {
292
400
  readonly type: "object";
293
401
  readonly properties: {
294
- readonly totalArea: {
295
- readonly type: "number";
296
- readonly format: "double";
402
+ readonly email: {
403
+ readonly type: "string";
404
+ readonly format: "email";
297
405
  };
298
- readonly livingArea: {
299
- readonly type: "number";
300
- readonly format: "double";
406
+ readonly roleId: {
407
+ readonly type: "integer";
408
+ readonly format: "int32";
301
409
  };
302
- readonly balconyArea: {
303
- readonly type: "number";
304
- readonly format: "double";
410
+ };
411
+ readonly required: readonly ["email", "roleId"];
412
+ };
413
+ export declare const InviteMemberRequestSchema: {
414
+ readonly type: "object";
415
+ readonly properties: {
416
+ readonly emails: {
417
+ readonly type: "array";
418
+ readonly items: {
419
+ readonly $ref: "#/components/schemas/InvitationDetailsRequest";
420
+ };
421
+ readonly minItems: 1;
305
422
  };
306
423
  };
307
- readonly required: readonly ["totalArea"];
424
+ readonly required: readonly ["emails"];
308
425
  };
309
- export declare const PhotosKeyUrlResponseSchema: {
426
+ export declare const AuthRequestSchema: {
310
427
  readonly type: "object";
311
428
  readonly properties: {
312
- readonly key: {
429
+ readonly sub: {
313
430
  readonly type: "string";
314
431
  };
315
- readonly url: {
432
+ readonly agencyId: {
316
433
  readonly type: "string";
434
+ readonly format: "uuid";
317
435
  };
318
436
  };
319
437
  };
320
- export declare const RegistrationDraftResponseSchema: {
438
+ export declare const AgencyPrincipalDtoSchema: {
321
439
  readonly type: "object";
322
440
  readonly properties: {
323
- readonly propertyId: {
441
+ readonly memberId: {
324
442
  readonly type: "string";
325
443
  readonly format: "uuid";
326
444
  };
327
- readonly ownerId: {
328
- readonly type: "string";
445
+ readonly permissions: {
446
+ readonly type: "array";
447
+ readonly items: {
448
+ readonly $ref: "#/components/schemas/ItemsEnum";
449
+ };
450
+ readonly uniqueItems: true;
329
451
  };
330
- readonly type: {
331
- readonly $ref: "#/components/schemas/DraftTypeEnum";
452
+ readonly isActive: {
453
+ readonly type: "boolean";
454
+ };
455
+ readonly isOwner: {
456
+ readonly type: "boolean";
457
+ };
458
+ };
459
+ };
460
+ export declare const CreateClientRequestSchema: {
461
+ readonly type: "object";
462
+ readonly properties: {
463
+ readonly contactInfo: {
464
+ readonly $ref: "#/components/schemas/ContactInfoRequest";
332
465
  };
333
- readonly title: {
466
+ readonly sourceUrl: {
334
467
  readonly type: "string";
335
468
  };
336
- readonly description: {
469
+ readonly contactMethods: {
337
470
  readonly type: "array";
338
471
  readonly items: {
339
- readonly $ref: "#/components/schemas/LangTextResponse";
472
+ readonly $ref: "#/components/schemas/ItemsEnum2";
340
473
  };
474
+ readonly minItems: 1;
475
+ readonly uniqueItems: true;
341
476
  };
342
- readonly measurements: {
343
- readonly $ref: "#/components/schemas/MeasurementResponse";
477
+ readonly favoriteContactMethod: {
478
+ readonly $ref: "#/components/schemas/ItemsEnum2";
344
479
  };
345
- readonly address: {
346
- readonly $ref: "#/components/schemas/AddressResponse";
480
+ readonly priority: {
481
+ readonly $ref: "#/components/schemas/PriorityEnum";
347
482
  };
348
- readonly spaces: {
349
- readonly type: "array";
483
+ };
484
+ readonly required: readonly ["contactInfo", "contactMethods", "favoriteContactMethod"];
485
+ };
486
+ export declare const IdResponseUUIDSchema: {
487
+ readonly type: "object";
488
+ readonly properties: {
489
+ readonly id: {
490
+ readonly type: "string";
491
+ readonly format: "uuid";
492
+ };
493
+ };
494
+ readonly required: readonly ["id"];
495
+ };
496
+ export declare const PhotoRequestSchema: {
497
+ readonly type: "object";
498
+ readonly properties: {
499
+ readonly photo: {
500
+ readonly type: "string";
501
+ readonly maxLength: 255;
502
+ readonly minLength: 0;
503
+ };
504
+ readonly type: {
505
+ readonly $ref: "#/components/schemas/TypeEnum2";
506
+ };
507
+ readonly width: {
508
+ readonly type: "integer";
509
+ readonly format: "int32";
510
+ readonly maximum: 11000;
511
+ readonly minimum: 10;
512
+ };
513
+ readonly height: {
514
+ readonly type: "integer";
515
+ readonly format: "int32";
516
+ readonly maximum: 11000;
517
+ readonly minimum: 10;
518
+ };
519
+ };
520
+ readonly required: readonly ["photo", "type", "width"];
521
+ };
522
+ export declare const PresignedUrlResponseSchema: {
523
+ readonly type: "object";
524
+ readonly properties: {
525
+ readonly originalName: {
526
+ readonly type: "string";
527
+ };
528
+ readonly key: {
529
+ readonly type: "string";
530
+ };
531
+ readonly url: {
532
+ readonly type: "string";
533
+ };
534
+ };
535
+ readonly required: readonly ["key", "originalName", "url"];
536
+ };
537
+ export declare const PresignedUrlsResponseSchema: {
538
+ readonly type: "object";
539
+ readonly properties: {
540
+ readonly data: {
541
+ readonly type: "array";
542
+ readonly items: {
543
+ readonly $ref: "#/components/schemas/PresignedUrlResponse";
544
+ };
545
+ };
546
+ };
547
+ readonly required: readonly ["data"];
548
+ };
549
+ export declare const UploadAcknowledgmentResponseSchema: {
550
+ readonly type: "object";
551
+ readonly properties: {
552
+ readonly success: {
553
+ readonly type: "array";
350
554
  readonly items: {
351
- readonly $ref: "#/components/schemas/SpaceResponse";
555
+ readonly type: "string";
352
556
  };
353
557
  };
354
- readonly photos: {
558
+ readonly fail: {
355
559
  readonly type: "array";
356
560
  readonly items: {
357
- readonly $ref: "#/components/schemas/PhotosKeyUrlResponse";
561
+ readonly type: "string";
358
562
  };
359
563
  };
360
- readonly amenities: {
564
+ };
565
+ readonly required: readonly ["fail", "success"];
566
+ };
567
+ export declare const OrganizationSummaryViewResponseSchema: {
568
+ readonly type: "object";
569
+ readonly properties: {
570
+ readonly agencyId: {
571
+ readonly type: "string";
572
+ readonly format: "uuid";
573
+ };
574
+ readonly isOwner: {
575
+ readonly type: "boolean";
576
+ };
577
+ readonly agencyName: {
578
+ readonly type: "string";
579
+ };
580
+ readonly subDomain: {
581
+ readonly type: "string";
582
+ };
583
+ readonly roleId: {
584
+ readonly type: "integer";
585
+ readonly format: "int32";
586
+ };
587
+ readonly memberId: {
588
+ readonly type: "string";
589
+ readonly format: "uuid";
590
+ };
591
+ readonly roleName: {
592
+ readonly type: "string";
593
+ };
594
+ readonly permissions: {
361
595
  readonly type: "array";
362
596
  readonly items: {
363
- readonly type: "integer";
364
- readonly format: "int32";
597
+ readonly $ref: "#/components/schemas/ItemsEnum";
365
598
  };
366
599
  };
367
- readonly pages: {
600
+ readonly status: {
601
+ readonly $ref: "#/components/schemas/SchemaEnum2";
602
+ };
603
+ };
604
+ readonly required: readonly ["agencyId", "agencyName", "isOwner", "memberId", "permissions", "roleName", "status", "subDomain"];
605
+ };
606
+ export declare const UserContextViewResponseSchema: {
607
+ readonly type: "object";
608
+ readonly properties: {
609
+ readonly user: {
610
+ readonly $ref: "#/components/schemas/UserSummaryViewResponse";
611
+ };
612
+ readonly organizations: {
368
613
  readonly type: "array";
369
614
  readonly items: {
370
- readonly type: "string";
615
+ readonly $ref: "#/components/schemas/OrganizationSummaryViewResponse";
616
+ };
617
+ };
618
+ };
619
+ readonly required: readonly ["organizations", "user"];
620
+ };
621
+ export declare const UserSummaryViewResponseSchema: {
622
+ readonly type: "object";
623
+ readonly properties: {
624
+ readonly email: {
625
+ readonly type: "string";
626
+ };
627
+ readonly firstName: {
628
+ readonly type: "string";
629
+ };
630
+ readonly lastName: {
631
+ readonly type: "string";
632
+ };
633
+ };
634
+ readonly required: readonly ["email", "firstName", "lastName"];
635
+ };
636
+ export declare const PageMetadataSchema: {
637
+ readonly type: "object";
638
+ readonly properties: {
639
+ readonly size: {
640
+ readonly type: "integer";
641
+ readonly format: "int64";
642
+ };
643
+ readonly number: {
644
+ readonly type: "integer";
645
+ readonly format: "int64";
646
+ };
647
+ readonly totalElements: {
648
+ readonly type: "integer";
649
+ readonly format: "int64";
650
+ };
651
+ readonly totalPages: {
652
+ readonly type: "integer";
653
+ readonly format: "int64";
654
+ };
655
+ };
656
+ };
657
+ export declare const PagedModelRoleResponseSchema: {
658
+ readonly type: "object";
659
+ readonly properties: {
660
+ readonly content: {
661
+ readonly type: "array";
662
+ readonly items: {
663
+ readonly $ref: "#/components/schemas/RoleResponse";
371
664
  };
372
665
  };
373
- readonly total: {
666
+ readonly page: {
667
+ readonly $ref: "#/components/schemas/PageMetadata";
668
+ };
669
+ };
670
+ };
671
+ export declare const RoleResponseSchema: {
672
+ readonly type: "object";
673
+ readonly properties: {
674
+ readonly id: {
374
675
  readonly type: "integer";
375
676
  readonly format: "int32";
376
677
  };
678
+ readonly name: {
679
+ readonly type: "string";
680
+ };
681
+ readonly description: {
682
+ readonly type: "string";
683
+ };
684
+ readonly permissions: {
685
+ readonly type: "array";
686
+ readonly items: {
687
+ readonly $ref: "#/components/schemas/ItemsEnum";
688
+ };
689
+ };
690
+ };
691
+ readonly required: readonly ["description", "id", "name", "permissions"];
692
+ };
693
+ export declare const InvitationDetailsResponseSchema: {
694
+ readonly type: "object";
695
+ readonly properties: {
696
+ readonly invitationId: {
697
+ readonly type: "string";
698
+ readonly format: "uuid";
699
+ };
700
+ readonly agencyId: {
701
+ readonly type: "string";
702
+ readonly format: "uuid";
703
+ };
704
+ readonly email: {
705
+ readonly type: "string";
706
+ };
707
+ readonly status: {
708
+ readonly $ref: "#/components/schemas/StatusEnum";
709
+ };
710
+ readonly agencyName: {
711
+ readonly type: "string";
712
+ };
713
+ readonly agencyLogo: {
714
+ readonly type: "string";
715
+ };
716
+ };
717
+ readonly required: readonly ["agencyId", "agencyName", "email", "invitationId", "status"];
718
+ };
719
+ export declare const AgencySummaryResponseSchema: {
720
+ readonly type: "object";
721
+ readonly properties: {
722
+ readonly id: {
723
+ readonly type: "string";
724
+ readonly format: "uuid";
725
+ };
726
+ readonly owner: {
727
+ readonly type: "string";
728
+ };
729
+ readonly name: {
730
+ readonly type: "string";
731
+ };
732
+ readonly email: {
733
+ readonly type: "string";
734
+ };
735
+ readonly seats: {
736
+ readonly type: "string";
737
+ };
738
+ readonly subDomain: {
739
+ readonly type: "string";
740
+ };
741
+ readonly phone: {
742
+ readonly type: "string";
743
+ };
744
+ readonly website: {
745
+ readonly type: "string";
746
+ };
747
+ readonly yearSince: {
748
+ readonly type: "string";
749
+ };
750
+ readonly status: {
751
+ readonly $ref: "#/components/schemas/SchemaEnum2";
752
+ };
753
+ readonly logo: {
754
+ readonly type: "string";
755
+ };
756
+ };
757
+ readonly required: readonly ["email", "id", "name", "owner", "phone", "seats", "status", "subDomain", "yearSince"];
758
+ };
759
+ export declare const PagedModelAgencySummaryResponseSchema: {
760
+ readonly type: "object";
761
+ readonly properties: {
762
+ readonly content: {
763
+ readonly type: "array";
764
+ readonly items: {
765
+ readonly $ref: "#/components/schemas/AgencySummaryResponse";
766
+ };
767
+ };
768
+ readonly page: {
769
+ readonly $ref: "#/components/schemas/PageMetadata";
770
+ };
771
+ };
772
+ };
773
+ export declare const GroupedPermissionsResponseSchema: {
774
+ readonly type: "object";
775
+ readonly properties: {
377
776
  readonly group: {
378
777
  readonly $ref: "#/components/schemas/GroupEnum";
379
778
  };
779
+ readonly permissions: {
780
+ readonly type: "array";
781
+ readonly items: {
782
+ readonly $ref: "#/components/schemas/PermissionResponse";
783
+ };
784
+ };
380
785
  };
381
- readonly required: readonly ["amenities", "description", "group", "ownerId", "pages", "photos", "propertyId", "spaces", "title", "total", "type"];
786
+ readonly required: readonly ["group", "permissions"];
382
787
  };
383
- export declare const SpaceResponseSchema: {
788
+ export declare const PermissionResponseSchema: {
384
789
  readonly type: "object";
385
790
  readonly properties: {
386
- readonly type: {
387
- readonly $ref: "#/components/schemas/TypeEnum";
791
+ readonly permission: {
792
+ readonly $ref: "#/components/schemas/ItemsEnum";
793
+ };
794
+ readonly implied: {
795
+ readonly type: "array";
796
+ readonly items: {
797
+ readonly $ref: "#/components/schemas/ItemsEnum";
798
+ };
799
+ };
800
+ };
801
+ readonly required: readonly ["implied", "permission"];
802
+ };
803
+ export declare const MemberViewResponseSchema: {
804
+ readonly type: "object";
805
+ readonly properties: {
806
+ readonly userId: {
807
+ readonly type: "string";
808
+ };
809
+ readonly firstName: {
810
+ readonly type: "string";
811
+ };
812
+ readonly lastName: {
813
+ readonly type: "string";
814
+ };
815
+ readonly phone: {
816
+ readonly type: "string";
817
+ };
818
+ readonly email: {
819
+ readonly type: "string";
820
+ };
821
+ readonly roleId: {
822
+ readonly type: "integer";
823
+ readonly format: "int32";
824
+ };
825
+ readonly roleName: {
826
+ readonly type: "string";
827
+ };
828
+ readonly joinedAt: {
829
+ readonly type: "string";
830
+ readonly format: "date-time";
831
+ };
832
+ };
833
+ readonly required: readonly ["email", "firstName", "joinedAt", "lastName", "roleId", "roleName", "userId"];
834
+ };
835
+ export declare const PagedModelMemberViewResponseSchema: {
836
+ readonly type: "object";
837
+ readonly properties: {
838
+ readonly content: {
839
+ readonly type: "array";
840
+ readonly items: {
841
+ readonly $ref: "#/components/schemas/MemberViewResponse";
842
+ };
843
+ };
844
+ readonly page: {
845
+ readonly $ref: "#/components/schemas/PageMetadata";
846
+ };
847
+ };
848
+ };
849
+ export declare const IntentResponseSchema: {
850
+ readonly type: "object";
851
+ readonly properties: {
852
+ readonly id: {
853
+ readonly type: "integer";
854
+ readonly format: "int64";
855
+ };
856
+ readonly clientType: {
857
+ readonly $ref: "#/components/schemas/ClientTypeEnum";
858
+ };
859
+ readonly listingType: {
860
+ readonly $ref: "#/components/schemas/ListingTypeEnum";
861
+ };
862
+ readonly propertyType: {
863
+ readonly $ref: "#/components/schemas/PropertyTypeEnum";
864
+ };
865
+ readonly priceMin: {
866
+ readonly type: "number";
867
+ };
868
+ readonly priceMax: {
869
+ readonly type: "number";
870
+ };
871
+ readonly regionId: {
872
+ readonly type: "integer";
873
+ readonly format: "int64";
874
+ };
875
+ readonly districtId: {
876
+ readonly type: "integer";
877
+ readonly format: "int64";
878
+ };
879
+ readonly subDistrictId: {
880
+ readonly type: "integer";
881
+ readonly format: "int64";
882
+ };
883
+ readonly streetId: {
884
+ readonly type: "integer";
885
+ readonly format: "int64";
388
886
  };
389
887
  readonly area: {
390
888
  readonly type: "number";
391
889
  readonly format: "double";
392
890
  };
891
+ readonly numberOfRooms: {
892
+ readonly type: "integer";
893
+ readonly format: "int32";
894
+ };
393
895
  };
896
+ readonly required: readonly ["clientType", "id", "listingType", "propertyType"];
394
897
  };
395
- export declare const DraftCardResponseSchema: {
898
+ export declare const LeadProjectionResponseSchema: {
396
899
  readonly type: "object";
397
900
  readonly properties: {
398
901
  readonly id: {
902
+ readonly type: "integer";
903
+ readonly format: "int64";
904
+ };
905
+ readonly createdBy: {
399
906
  readonly type: "string";
400
907
  readonly format: "uuid";
401
908
  };
402
- readonly type: {
403
- readonly $ref: "#/components/schemas/DraftTypeEnum";
909
+ readonly assignedTo: {
910
+ readonly type: "string";
911
+ readonly format: "uuid";
404
912
  };
405
- readonly title: {
913
+ readonly status: {
914
+ readonly $ref: "#/components/schemas/SchemaEnum";
915
+ };
916
+ readonly contactFullName: {
406
917
  readonly type: "string";
407
918
  };
408
- readonly city: {
919
+ readonly contactGender: {
920
+ readonly $ref: "#/components/schemas/GenderEnum";
921
+ };
922
+ readonly contactPhoneNumber: {
409
923
  readonly type: "string";
410
924
  };
411
- readonly street: {
925
+ readonly contactEmail: {
412
926
  readonly type: "string";
413
927
  };
414
- readonly coverPhoto: {
928
+ readonly note: {
415
929
  readonly type: "string";
416
930
  };
417
- readonly uploadDate: {
931
+ readonly sourceType: {
932
+ readonly $ref: "#/components/schemas/SourceTypeEnum";
933
+ };
934
+ readonly sourceLink: {
418
935
  readonly type: "string";
419
- readonly format: "date-time";
936
+ };
937
+ readonly isSearching: {
938
+ readonly type: "boolean";
939
+ };
940
+ readonly isListing: {
941
+ readonly type: "boolean";
942
+ };
943
+ readonly intents: {
944
+ readonly type: "array";
945
+ readonly items: {
946
+ readonly $ref: "#/components/schemas/IntentResponse";
947
+ };
948
+ };
949
+ };
950
+ readonly required: readonly ["contactPhoneNumber", "createdBy", "id", "isListing", "isSearching", "status"];
951
+ };
952
+ export declare const PagedModelLeadProjectionResponseSchema: {
953
+ readonly type: "object";
954
+ readonly properties: {
955
+ readonly content: {
956
+ readonly type: "array";
957
+ readonly items: {
958
+ readonly $ref: "#/components/schemas/LeadProjectionResponse";
959
+ };
960
+ };
961
+ readonly page: {
962
+ readonly $ref: "#/components/schemas/PageMetadata";
420
963
  };
421
964
  };
422
- readonly required: readonly ["id", "title", "type", "uploadDate"];
423
965
  };
424
- export declare const DraftStatusResponseSchema: {
966
+ export declare const InvitationViewResponseSchema: {
425
967
  readonly type: "object";
426
968
  readonly properties: {
969
+ readonly invitationId: {
970
+ readonly type: "string";
971
+ readonly format: "uuid";
972
+ };
973
+ readonly email: {
974
+ readonly type: "string";
975
+ };
427
976
  readonly status: {
428
977
  readonly $ref: "#/components/schemas/StatusEnum";
429
978
  };
979
+ readonly createdAt: {
980
+ readonly type: "string";
981
+ readonly format: "date-time";
982
+ };
983
+ readonly expiresAt: {
984
+ readonly type: "string";
985
+ readonly format: "date-time";
986
+ };
987
+ readonly acceptedAt: {
988
+ readonly type: "string";
989
+ readonly format: "date-time";
990
+ };
991
+ readonly acceptedBy: {
992
+ readonly type: "string";
993
+ };
430
994
  };
431
- readonly required: readonly ["status"];
995
+ readonly required: readonly ["createdAt", "email", "expiresAt", "invitationId", "status"];
432
996
  };
433
- export declare const TypeEnumSchema: {
997
+ export declare const PagedModelInvitationViewResponseSchema: {
998
+ readonly type: "object";
999
+ readonly properties: {
1000
+ readonly content: {
1001
+ readonly type: "array";
1002
+ readonly items: {
1003
+ readonly $ref: "#/components/schemas/InvitationViewResponse";
1004
+ };
1005
+ };
1006
+ readonly page: {
1007
+ readonly $ref: "#/components/schemas/PageMetadata";
1008
+ };
1009
+ };
1010
+ };
1011
+ export declare const ClientProjectionResponseSchema: {
1012
+ readonly type: "object";
1013
+ readonly properties: {
1014
+ readonly id: {
1015
+ readonly type: "integer";
1016
+ readonly format: "int64";
1017
+ };
1018
+ readonly createdBy: {
1019
+ readonly type: "string";
1020
+ readonly format: "uuid";
1021
+ };
1022
+ readonly leadId: {
1023
+ readonly type: "integer";
1024
+ readonly format: "int64";
1025
+ };
1026
+ readonly assignedTo: {
1027
+ readonly type: "string";
1028
+ readonly format: "uuid";
1029
+ };
1030
+ readonly contactFullName: {
1031
+ readonly type: "string";
1032
+ };
1033
+ readonly contactPhoneNumber: {
1034
+ readonly type: "string";
1035
+ };
1036
+ readonly contactGender: {
1037
+ readonly $ref: "#/components/schemas/GenderEnum";
1038
+ };
1039
+ readonly contactEmail: {
1040
+ readonly type: "string";
1041
+ };
1042
+ readonly sourceType: {
1043
+ readonly $ref: "#/components/schemas/SourceTypeEnum";
1044
+ };
1045
+ readonly sourceLink: {
1046
+ readonly type: "string";
1047
+ };
1048
+ readonly isSearching: {
1049
+ readonly type: "boolean";
1050
+ };
1051
+ readonly isListing: {
1052
+ readonly type: "boolean";
1053
+ };
1054
+ readonly contactMethods: {
1055
+ readonly type: "array";
1056
+ readonly items: {
1057
+ readonly $ref: "#/components/schemas/ItemsEnum2";
1058
+ };
1059
+ readonly uniqueItems: true;
1060
+ };
1061
+ readonly favoriteContactMethod: {
1062
+ readonly $ref: "#/components/schemas/ItemsEnum2";
1063
+ };
1064
+ readonly priority: {
1065
+ readonly $ref: "#/components/schemas/PriorityEnum";
1066
+ };
1067
+ readonly requirements: {
1068
+ readonly type: "array";
1069
+ readonly items: {
1070
+ readonly $ref: "#/components/schemas/RequirementResponse";
1071
+ };
1072
+ };
1073
+ readonly properties: {
1074
+ readonly type: "array";
1075
+ readonly items: {
1076
+ readonly $ref: "#/components/schemas/PropertyResponse";
1077
+ };
1078
+ };
1079
+ };
1080
+ readonly required: readonly ["contactMethods", "contactPhoneNumber", "createdBy", "id", "isListing", "isSearching"];
1081
+ };
1082
+ export declare const PagedModelClientProjectionResponseSchema: {
1083
+ readonly type: "object";
1084
+ readonly properties: {
1085
+ readonly content: {
1086
+ readonly type: "array";
1087
+ readonly items: {
1088
+ readonly $ref: "#/components/schemas/ClientProjectionResponse";
1089
+ };
1090
+ };
1091
+ readonly page: {
1092
+ readonly $ref: "#/components/schemas/PageMetadata";
1093
+ };
1094
+ };
1095
+ };
1096
+ export declare const PropertyResponseSchema: {
1097
+ readonly type: "object";
1098
+ readonly properties: {
1099
+ readonly propertyId: {
1100
+ readonly type: "string";
1101
+ readonly format: "uuid";
1102
+ };
1103
+ readonly propertyType: {
1104
+ readonly $ref: "#/components/schemas/PropertyTypeEnum";
1105
+ };
1106
+ };
1107
+ readonly required: readonly ["propertyId", "propertyType"];
1108
+ };
1109
+ export declare const RequirementResponseSchema: {
1110
+ readonly type: "object";
1111
+ readonly properties: {
1112
+ readonly id: {
1113
+ readonly type: "integer";
1114
+ readonly format: "int64";
1115
+ };
1116
+ readonly propertyType: {
1117
+ readonly type: "array";
1118
+ readonly items: {
1119
+ readonly $ref: "#/components/schemas/PropertyTypeEnum";
1120
+ };
1121
+ };
1122
+ readonly listingType: {
1123
+ readonly $ref: "#/components/schemas/ListingTypeEnum";
1124
+ };
1125
+ readonly priceMin: {
1126
+ readonly type: "number";
1127
+ };
1128
+ readonly priceMax: {
1129
+ readonly type: "number";
1130
+ };
1131
+ readonly bedroomsMin: {
1132
+ readonly type: "integer";
1133
+ readonly format: "int32";
1134
+ };
1135
+ readonly bedroomsMax: {
1136
+ readonly type: "integer";
1137
+ readonly format: "int32";
1138
+ };
1139
+ readonly bathroomsMin: {
1140
+ readonly type: "integer";
1141
+ readonly format: "int32";
1142
+ };
1143
+ readonly bathroomsMax: {
1144
+ readonly type: "integer";
1145
+ readonly format: "int32";
1146
+ };
1147
+ readonly totalMin: {
1148
+ readonly type: "number";
1149
+ readonly format: "double";
1150
+ };
1151
+ readonly totalMax: {
1152
+ readonly type: "number";
1153
+ readonly format: "double";
1154
+ };
1155
+ readonly livingMin: {
1156
+ readonly type: "number";
1157
+ readonly format: "double";
1158
+ };
1159
+ readonly livingMax: {
1160
+ readonly type: "number";
1161
+ readonly format: "double";
1162
+ };
1163
+ readonly regionId: {
1164
+ readonly type: "integer";
1165
+ readonly format: "int64";
1166
+ };
1167
+ readonly districtId: {
1168
+ readonly type: "integer";
1169
+ readonly format: "int64";
1170
+ };
1171
+ readonly subDistrictId: {
1172
+ readonly type: "integer";
1173
+ readonly format: "int64";
1174
+ };
1175
+ readonly streetId: {
1176
+ readonly type: "integer";
1177
+ readonly format: "int64";
1178
+ };
1179
+ };
1180
+ readonly required: readonly ["id", "listingType", "propertyType"];
1181
+ };
1182
+ export declare const AddressViewResponseSchema: {
1183
+ readonly type: "object";
1184
+ readonly properties: {
1185
+ readonly country: {
1186
+ readonly type: "string";
1187
+ };
1188
+ readonly city: {
1189
+ readonly type: "string";
1190
+ };
1191
+ readonly district: {
1192
+ readonly type: "string";
1193
+ };
1194
+ readonly subdistrict: {
1195
+ readonly type: "string";
1196
+ };
1197
+ readonly street: {
1198
+ readonly type: "string";
1199
+ };
1200
+ };
1201
+ readonly required: readonly ["city", "country", "district", "street", "subdistrict"];
1202
+ };
1203
+ export declare const AgencyProfileResponseSchema: {
1204
+ readonly type: "object";
1205
+ readonly properties: {
1206
+ readonly name: {
1207
+ readonly type: "string";
1208
+ };
1209
+ readonly email: {
1210
+ readonly type: "string";
1211
+ };
1212
+ readonly seats: {
1213
+ readonly type: "integer";
1214
+ readonly format: "int32";
1215
+ };
1216
+ readonly subDomain: {
1217
+ readonly type: "string";
1218
+ };
1219
+ readonly phone: {
1220
+ readonly type: "string";
1221
+ };
1222
+ readonly address: {
1223
+ readonly $ref: "#/components/schemas/AddressViewResponse";
1224
+ };
1225
+ readonly yearSince: {
1226
+ readonly type: "integer";
1227
+ readonly format: "int32";
1228
+ };
1229
+ };
1230
+ readonly required: readonly ["address", "email", "name", "phone", "seats", "subDomain", "yearSince"];
1231
+ };
1232
+ export declare const SchemaEnumSchema: {
434
1233
  readonly type: "string";
435
- readonly enum: readonly ["BEDROOM", "BATHROOM", "KITCHEN", "LIVING_ROOM", "GARAGE", "BACKYARD", "GYM", "LAUNDRY", "HOME_THEATRE", "GAME_ROOM"];
1234
+ readonly enum: readonly ["NEW", "ATTEMPTED_CONTACT", "CONTACTED", "DISQUALIFIED", "CONVERTED", "LOST"];
436
1235
  };
437
- export declare const GroupEnumSchema: {
1236
+ export declare const SchemaEnum2Schema: {
438
1237
  readonly type: "string";
439
- readonly description: "property group being registered";
440
- readonly enum: readonly ["HOUSE_GROUP", "APARTMENT_GROUP", "HOSPITALITY_GROUP", "LAND_GROUP", "BUSINESS_GROUP", "STORAGE_GROUP"];
1238
+ readonly enum: readonly ["NEW", "ACTIVE", "PAYMENT_FAILED", "INACTIVE"];
441
1239
  };
442
- export declare const TypeEnum2Schema: {
1240
+ export declare const ItemsEnumSchema: {
443
1241
  readonly type: "string";
444
- readonly enum: readonly ["JPEG", "JPG", "PNG", "WEBP"];
1242
+ 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"];
1243
+ };
1244
+ export declare const ClientTypeEnumSchema: {
1245
+ readonly type: "string";
1246
+ readonly enum: readonly ["LISTING", "SEEKING"];
445
1247
  };
446
- export declare const DraftTypeEnumSchema: {
1248
+ export declare const ListingTypeEnumSchema: {
1249
+ readonly type: "string";
1250
+ readonly enum: readonly ["SALE", "RENT", "DAILY_RENT", "PLEDGE"];
1251
+ };
1252
+ export declare const PropertyTypeEnumSchema: {
447
1253
  readonly type: "string";
448
1254
  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"];
449
1255
  };
450
- export declare const LanguageEnumSchema: {
1256
+ export declare const GenderEnumSchema: {
1257
+ readonly type: "string";
1258
+ readonly enum: readonly ["MALE", "FEMALE", "UNKNOWN"];
1259
+ };
1260
+ export declare const PriorityEnumSchema: {
1261
+ readonly type: "string";
1262
+ readonly enum: readonly ["CRITICAL", "HIGH", "MEDIUM", "LOW"];
1263
+ };
1264
+ export declare const ItemsEnum2Schema: {
1265
+ readonly type: "string";
1266
+ readonly enum: readonly ["WHATSAPP", "VIBER", "PHONE_CALL"];
1267
+ };
1268
+ export declare const TypeEnumSchema: {
451
1269
  readonly type: "string";
452
- readonly enum: readonly ["KA", "EN", "RU"];
1270
+ readonly enum: readonly ["FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN"];
1271
+ };
1272
+ export declare const TypeEnum2Schema: {
1273
+ readonly type: "string";
1274
+ readonly enum: readonly ["JPEG", "JPG", "PNG", "WEBP"];
453
1275
  };
454
1276
  export declare const StatusEnumSchema: {
455
1277
  readonly type: "string";
456
- readonly description: "property draft status";
457
- readonly enum: readonly ["IN_REGISTRATION", "PROCESSING", "COMPLETED"];
1278
+ readonly enum: readonly ["PENDING", "ACCEPTED", "CANCELLED", "EXPIRED"];
1279
+ };
1280
+ export declare const GroupEnumSchema: {
1281
+ readonly type: "string";
1282
+ readonly enum: readonly ["AGENCY", "INVITATION", "ROLE", "MEMBER", "LEAD"];
1283
+ };
1284
+ export declare const SourceTypeEnumSchema: {
1285
+ readonly type: "string";
1286
+ readonly enum: readonly ["MY_HOME", "SS", "FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN", "UNKNOWN"];
458
1287
  };
459
1288
  //# sourceMappingURL=schemas.gen.d.ts.map