@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.
- package/dist/registration/client.gen.js +1 -1
- package/dist/registration/client.gen.js.map +1 -1
- package/dist/registration/index.d.ts +2 -2
- package/dist/registration/index.d.ts.map +1 -1
- package/dist/registration/index.js +1 -1
- package/dist/registration/index.js.map +1 -1
- package/dist/registration/schemas.gen.d.ts +215 -1044
- package/dist/registration/schemas.gen.d.ts.map +1 -1
- package/dist/registration/schemas.gen.js +247 -1113
- package/dist/registration/schemas.gen.js.map +1 -1
- package/dist/registration/sdk.gen.d.ts +19 -51
- package/dist/registration/sdk.gen.d.ts.map +1 -1
- package/dist/registration/sdk.gen.js +38 -275
- package/dist/registration/sdk.gen.js.map +1 -1
- package/dist/registration/transformers.gen.d.ts +2 -3
- package/dist/registration/transformers.gen.d.ts.map +1 -1
- package/dist/registration/transformers.gen.js +4 -28
- package/dist/registration/transformers.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +232 -1023
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.d.ts +655 -2825
- package/dist/registration/zod.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.js +194 -1274
- package/dist/registration/zod.gen.js.map +1 -1
- package/dist/rem/client.gen.js +1 -1
- package/dist/rem/client.gen.js.map +1 -1
- package/dist/rem/index.d.ts +2 -2
- package/dist/rem/index.d.ts.map +1 -1
- package/dist/rem/index.js +1 -1
- package/dist/rem/index.js.map +1 -1
- package/dist/rem/schemas.gen.d.ts +1045 -216
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +1111 -245
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +51 -19
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +275 -38
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +3 -2
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +28 -4
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +1023 -232
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +2823 -653
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +1274 -194
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,270 +1,202 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const SpaceRequestSchema: {
|
|
2
2
|
readonly type: "object";
|
|
3
3
|
readonly properties: {
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly minLength: 1;
|
|
7
|
-
};
|
|
8
|
-
readonly description: {
|
|
9
|
-
readonly type: "string";
|
|
10
|
-
readonly minLength: 1;
|
|
4
|
+
readonly type: {
|
|
5
|
+
readonly $ref: "#/components/schemas/TypeEnum";
|
|
11
6
|
};
|
|
12
|
-
readonly
|
|
13
|
-
readonly type: "
|
|
14
|
-
readonly
|
|
15
|
-
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
16
|
-
};
|
|
7
|
+
readonly area: {
|
|
8
|
+
readonly type: "number";
|
|
9
|
+
readonly format: "double";
|
|
17
10
|
};
|
|
18
11
|
};
|
|
19
|
-
readonly required: readonly ["
|
|
12
|
+
readonly required: readonly ["area", "type"];
|
|
20
13
|
};
|
|
21
|
-
export declare const
|
|
14
|
+
export declare const SpacesRequestSchema: {
|
|
22
15
|
readonly type: "object";
|
|
23
16
|
readonly properties: {
|
|
24
|
-
readonly
|
|
25
|
-
readonly type: "
|
|
26
|
-
readonly
|
|
17
|
+
readonly spaces: {
|
|
18
|
+
readonly type: "array";
|
|
19
|
+
readonly items: {
|
|
20
|
+
readonly $ref: "#/components/schemas/SpaceRequest";
|
|
21
|
+
};
|
|
27
22
|
};
|
|
28
23
|
};
|
|
29
|
-
readonly required: readonly ["
|
|
24
|
+
readonly required: readonly ["spaces"];
|
|
30
25
|
};
|
|
31
|
-
export declare const
|
|
26
|
+
export declare const RegistrationProgressDtoSchema: {
|
|
32
27
|
readonly type: "object";
|
|
33
28
|
readonly properties: {
|
|
34
|
-
readonly
|
|
35
|
-
readonly type: "
|
|
36
|
-
readonly format: "
|
|
29
|
+
readonly registrationId: {
|
|
30
|
+
readonly type: "string";
|
|
31
|
+
readonly format: "uuid";
|
|
32
|
+
readonly description: "id of the property being registered";
|
|
37
33
|
};
|
|
38
|
-
readonly
|
|
34
|
+
readonly pages: {
|
|
39
35
|
readonly type: "array";
|
|
36
|
+
readonly description: "multiform pages";
|
|
40
37
|
readonly items: {
|
|
41
38
|
readonly type: "string";
|
|
42
|
-
readonly format: "uuid";
|
|
43
39
|
};
|
|
44
|
-
readonly minItems: 1;
|
|
45
40
|
};
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
readonly type: "object";
|
|
51
|
-
readonly properties: {
|
|
52
|
-
readonly status: {
|
|
53
|
-
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
41
|
+
readonly total: {
|
|
42
|
+
readonly type: "integer";
|
|
43
|
+
readonly format: "int32";
|
|
44
|
+
readonly description: "total pages";
|
|
54
45
|
};
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
};
|
|
58
|
-
export declare const SourceRequestSchema: {
|
|
59
|
-
readonly type: "object";
|
|
60
|
-
readonly properties: {
|
|
61
|
-
readonly sourceUrl: {
|
|
62
|
-
readonly type: "string";
|
|
46
|
+
readonly group: {
|
|
47
|
+
readonly $ref: "#/components/schemas/GroupEnum";
|
|
63
48
|
};
|
|
64
49
|
};
|
|
50
|
+
readonly required: readonly ["group", "pages", "registrationId", "total"];
|
|
65
51
|
};
|
|
66
|
-
export declare const
|
|
52
|
+
export declare const PhotoRequestSchema: {
|
|
67
53
|
readonly type: "object";
|
|
68
54
|
readonly properties: {
|
|
69
|
-
readonly
|
|
55
|
+
readonly photo: {
|
|
70
56
|
readonly type: "string";
|
|
57
|
+
readonly maxLength: 255;
|
|
58
|
+
readonly minLength: 0;
|
|
71
59
|
};
|
|
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";
|
|
60
|
+
readonly type: {
|
|
61
|
+
readonly $ref: "#/components/schemas/TypeEnum2";
|
|
95
62
|
};
|
|
96
|
-
readonly
|
|
63
|
+
readonly width: {
|
|
97
64
|
readonly type: "integer";
|
|
98
65
|
readonly format: "int32";
|
|
66
|
+
readonly maximum: 11000;
|
|
67
|
+
readonly minimum: 10;
|
|
99
68
|
};
|
|
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: {
|
|
69
|
+
readonly height: {
|
|
119
70
|
readonly type: "integer";
|
|
120
|
-
readonly format: "
|
|
71
|
+
readonly format: "int32";
|
|
72
|
+
readonly maximum: 11000;
|
|
73
|
+
readonly minimum: 10;
|
|
121
74
|
};
|
|
122
75
|
};
|
|
76
|
+
readonly required: readonly ["photo", "type", "width"];
|
|
123
77
|
};
|
|
124
|
-
export declare const
|
|
78
|
+
export declare const PhotosRequestSchema: {
|
|
125
79
|
readonly type: "object";
|
|
126
80
|
readonly properties: {
|
|
127
|
-
readonly
|
|
128
|
-
readonly type: "
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
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;
|
|
132
88
|
};
|
|
133
89
|
};
|
|
90
|
+
readonly required: readonly ["photos"];
|
|
134
91
|
};
|
|
135
|
-
export declare const
|
|
92
|
+
export declare const PresignedUrlResponseSchema: {
|
|
136
93
|
readonly type: "object";
|
|
137
94
|
readonly properties: {
|
|
138
|
-
readonly
|
|
139
|
-
readonly type: "string";
|
|
140
|
-
};
|
|
141
|
-
readonly lastName: {
|
|
95
|
+
readonly originalName: {
|
|
142
96
|
readonly type: "string";
|
|
143
97
|
};
|
|
144
|
-
readonly
|
|
145
|
-
readonly $ref: "#/components/schemas/GenderEnum";
|
|
146
|
-
};
|
|
147
|
-
readonly email: {
|
|
98
|
+
readonly key: {
|
|
148
99
|
readonly type: "string";
|
|
149
|
-
readonly format: "email";
|
|
150
100
|
};
|
|
151
|
-
readonly
|
|
101
|
+
readonly url: {
|
|
152
102
|
readonly type: "string";
|
|
153
|
-
readonly minLength: 1;
|
|
154
103
|
};
|
|
155
104
|
};
|
|
156
|
-
readonly required: readonly ["
|
|
105
|
+
readonly required: readonly ["key", "originalName", "url"];
|
|
157
106
|
};
|
|
158
|
-
export declare const
|
|
107
|
+
export declare const PresignedUrlsResponseSchema: {
|
|
159
108
|
readonly type: "object";
|
|
160
109
|
readonly properties: {
|
|
161
|
-
readonly
|
|
162
|
-
readonly type: "
|
|
163
|
-
readonly
|
|
110
|
+
readonly data: {
|
|
111
|
+
readonly type: "array";
|
|
112
|
+
readonly items: {
|
|
113
|
+
readonly $ref: "#/components/schemas/PresignedUrlResponse";
|
|
114
|
+
};
|
|
164
115
|
};
|
|
165
116
|
};
|
|
166
|
-
readonly required: readonly ["
|
|
117
|
+
readonly required: readonly ["data"];
|
|
167
118
|
};
|
|
168
|
-
export declare const
|
|
119
|
+
export declare const MeasurementRequestSchema: {
|
|
169
120
|
readonly type: "object";
|
|
170
121
|
readonly properties: {
|
|
171
|
-
readonly
|
|
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: {
|
|
122
|
+
readonly totalArea: {
|
|
208
123
|
readonly type: "number";
|
|
209
124
|
readonly format: "double";
|
|
125
|
+
readonly minimum: 1;
|
|
210
126
|
};
|
|
211
|
-
readonly
|
|
127
|
+
readonly livingArea: {
|
|
212
128
|
readonly type: "number";
|
|
213
129
|
readonly format: "double";
|
|
214
130
|
};
|
|
215
|
-
readonly
|
|
131
|
+
readonly balconyArea: {
|
|
216
132
|
readonly type: "number";
|
|
217
133
|
readonly format: "double";
|
|
218
134
|
};
|
|
219
|
-
readonly targetLocation: {
|
|
220
|
-
readonly $ref: "#/components/schemas/LocationRefRequest";
|
|
221
|
-
};
|
|
222
135
|
};
|
|
223
|
-
readonly required: readonly ["
|
|
136
|
+
readonly required: readonly ["totalArea"];
|
|
224
137
|
};
|
|
225
|
-
export declare const
|
|
138
|
+
export declare const TitleAndDescriptionRequestSchema: {
|
|
226
139
|
readonly type: "object";
|
|
227
140
|
readonly properties: {
|
|
228
|
-
readonly
|
|
229
|
-
readonly
|
|
141
|
+
readonly title: {
|
|
142
|
+
readonly type: "string";
|
|
143
|
+
};
|
|
144
|
+
readonly description: {
|
|
145
|
+
readonly type: "object";
|
|
146
|
+
readonly additionalProperties: {
|
|
147
|
+
readonly type: "string";
|
|
148
|
+
};
|
|
230
149
|
};
|
|
231
150
|
};
|
|
232
151
|
};
|
|
233
|
-
export declare const
|
|
152
|
+
export declare const AmenitiesRequestSchema: {
|
|
234
153
|
readonly type: "object";
|
|
235
154
|
readonly properties: {
|
|
236
|
-
readonly
|
|
155
|
+
readonly amenities: {
|
|
237
156
|
readonly type: "array";
|
|
238
157
|
readonly items: {
|
|
239
|
-
readonly
|
|
158
|
+
readonly type: "integer";
|
|
159
|
+
readonly format: "int32";
|
|
240
160
|
};
|
|
241
|
-
readonly uniqueItems: true;
|
|
242
|
-
};
|
|
243
|
-
readonly favoriteContactMethod: {
|
|
244
|
-
readonly $ref: "#/components/schemas/ItemsEnum2";
|
|
245
161
|
};
|
|
246
162
|
};
|
|
247
|
-
readonly required: readonly ["contactMethods", "favoriteContactMethod"];
|
|
248
163
|
};
|
|
249
164
|
export declare const AddressRequestSchema: {
|
|
250
165
|
readonly type: "object";
|
|
251
166
|
readonly properties: {
|
|
252
|
-
readonly
|
|
167
|
+
readonly placeId: {
|
|
253
168
|
readonly type: "string";
|
|
254
|
-
readonly maxLength:
|
|
169
|
+
readonly maxLength: 255;
|
|
255
170
|
readonly minLength: 0;
|
|
256
171
|
};
|
|
257
|
-
readonly
|
|
172
|
+
readonly cadastralCode: {
|
|
258
173
|
readonly type: "string";
|
|
259
|
-
readonly maxLength:
|
|
174
|
+
readonly maxLength: 255;
|
|
175
|
+
readonly minLength: 0;
|
|
176
|
+
};
|
|
177
|
+
readonly fullName: {
|
|
178
|
+
readonly type: "string";
|
|
179
|
+
readonly maxLength: 500;
|
|
260
180
|
readonly minLength: 0;
|
|
261
181
|
};
|
|
262
|
-
readonly
|
|
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: {
|
|
263
195
|
readonly type: "string";
|
|
264
196
|
readonly maxLength: 100;
|
|
265
197
|
readonly minLength: 0;
|
|
266
198
|
};
|
|
267
|
-
readonly
|
|
199
|
+
readonly city: {
|
|
268
200
|
readonly type: "string";
|
|
269
201
|
readonly maxLength: 100;
|
|
270
202
|
readonly minLength: 0;
|
|
@@ -275,1014 +207,253 @@ export declare const AddressRequestSchema: {
|
|
|
275
207
|
readonly minLength: 0;
|
|
276
208
|
};
|
|
277
209
|
};
|
|
278
|
-
readonly required: readonly ["city", "country", "
|
|
210
|
+
readonly required: readonly ["cadastralCode", "city", "country", "fullName", "lat", "lng", "placeId", "street"];
|
|
279
211
|
};
|
|
280
|
-
export declare const
|
|
212
|
+
export declare const PhotoReorderRequestSchema: {
|
|
281
213
|
readonly type: "object";
|
|
282
214
|
readonly properties: {
|
|
283
|
-
readonly
|
|
284
|
-
readonly type: "
|
|
285
|
-
readonly
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
readonly
|
|
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";
|
|
215
|
+
readonly photos: {
|
|
216
|
+
readonly type: "array";
|
|
217
|
+
readonly items: {
|
|
218
|
+
readonly type: "string";
|
|
219
|
+
};
|
|
220
|
+
readonly minItems: 1;
|
|
310
221
|
};
|
|
311
222
|
};
|
|
312
|
-
readonly required: readonly ["
|
|
223
|
+
readonly required: readonly ["photos"];
|
|
313
224
|
};
|
|
314
|
-
export declare const
|
|
225
|
+
export declare const StartRegistrationRequestSchema: {
|
|
315
226
|
readonly type: "object";
|
|
316
227
|
readonly properties: {
|
|
317
|
-
readonly
|
|
318
|
-
readonly $ref: "#/components/schemas/
|
|
319
|
-
};
|
|
320
|
-
readonly url: {
|
|
321
|
-
readonly type: "string";
|
|
228
|
+
readonly draftType: {
|
|
229
|
+
readonly $ref: "#/components/schemas/DraftTypeEnum";
|
|
322
230
|
};
|
|
323
231
|
};
|
|
324
|
-
readonly required: readonly ["
|
|
232
|
+
readonly required: readonly ["draftType"];
|
|
325
233
|
};
|
|
326
|
-
export declare const
|
|
234
|
+
export declare const AgencyStartRegistrationRequestSchema: {
|
|
327
235
|
readonly type: "object";
|
|
328
236
|
readonly properties: {
|
|
329
|
-
readonly
|
|
330
|
-
readonly
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
readonly
|
|
335
|
-
readonly minItems: 1;
|
|
237
|
+
readonly draftType: {
|
|
238
|
+
readonly $ref: "#/components/schemas/DraftTypeEnum";
|
|
239
|
+
};
|
|
240
|
+
readonly ownerId: {
|
|
241
|
+
readonly type: "string";
|
|
242
|
+
readonly minLength: 1;
|
|
336
243
|
};
|
|
337
244
|
};
|
|
338
|
-
readonly required: readonly ["
|
|
245
|
+
readonly required: readonly ["draftType", "ownerId"];
|
|
339
246
|
};
|
|
340
|
-
export declare const
|
|
247
|
+
export declare const AddressResponseSchema: {
|
|
341
248
|
readonly type: "object";
|
|
342
249
|
readonly properties: {
|
|
343
|
-
readonly
|
|
250
|
+
readonly placeId: {
|
|
344
251
|
readonly type: "string";
|
|
345
|
-
readonly format: "uuid";
|
|
346
252
|
};
|
|
347
|
-
readonly
|
|
348
|
-
readonly type: "
|
|
253
|
+
readonly cadastralCode: {
|
|
254
|
+
readonly type: "string";
|
|
349
255
|
};
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
};
|
|
353
|
-
|
|
354
|
-
readonly type: "object";
|
|
355
|
-
readonly properties: {
|
|
356
|
-
readonly amount: {
|
|
256
|
+
readonly fullAddressName: {
|
|
257
|
+
readonly type: "string";
|
|
258
|
+
};
|
|
259
|
+
readonly lat: {
|
|
357
260
|
readonly type: "number";
|
|
261
|
+
readonly format: "double";
|
|
358
262
|
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
export declare const IdResponseIntegerSchema: {
|
|
363
|
-
readonly type: "object";
|
|
364
|
-
readonly properties: {
|
|
365
|
-
readonly id: {
|
|
366
|
-
readonly type: "integer";
|
|
367
|
-
readonly format: "int32";
|
|
263
|
+
readonly lng: {
|
|
264
|
+
readonly type: "number";
|
|
265
|
+
readonly format: "double";
|
|
368
266
|
};
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
};
|
|
372
|
-
export declare const CreateLeadRequestSchema: {
|
|
373
|
-
readonly type: "object";
|
|
374
|
-
readonly properties: {
|
|
375
|
-
readonly contactInfo: {
|
|
376
|
-
readonly $ref: "#/components/schemas/ContactInfoRequest";
|
|
267
|
+
readonly country: {
|
|
268
|
+
readonly type: "string";
|
|
377
269
|
};
|
|
378
|
-
readonly
|
|
270
|
+
readonly city: {
|
|
379
271
|
readonly type: "string";
|
|
380
|
-
readonly maxLength: 500;
|
|
381
|
-
readonly minLength: 0;
|
|
382
272
|
};
|
|
383
|
-
readonly
|
|
273
|
+
readonly street: {
|
|
384
274
|
readonly type: "string";
|
|
385
275
|
};
|
|
386
276
|
};
|
|
387
|
-
readonly required: readonly ["
|
|
277
|
+
readonly required: readonly ["cadastralCode", "city", "country", "fullAddressName", "lat", "lng", "placeId", "street"];
|
|
388
278
|
};
|
|
389
|
-
export declare const
|
|
279
|
+
export declare const LangTextResponseSchema: {
|
|
390
280
|
readonly type: "object";
|
|
391
281
|
readonly properties: {
|
|
392
|
-
readonly
|
|
393
|
-
readonly
|
|
394
|
-
readonly format: "int64";
|
|
282
|
+
readonly language: {
|
|
283
|
+
readonly $ref: "#/components/schemas/LanguageEnum";
|
|
395
284
|
};
|
|
396
|
-
|
|
397
|
-
readonly required: readonly ["id"];
|
|
398
|
-
};
|
|
399
|
-
export declare const InvitationDetailsRequestSchema: {
|
|
400
|
-
readonly type: "object";
|
|
401
|
-
readonly properties: {
|
|
402
|
-
readonly email: {
|
|
285
|
+
readonly text: {
|
|
403
286
|
readonly type: "string";
|
|
404
|
-
readonly format: "email";
|
|
405
|
-
};
|
|
406
|
-
readonly roleId: {
|
|
407
|
-
readonly type: "integer";
|
|
408
|
-
readonly format: "int32";
|
|
409
287
|
};
|
|
410
288
|
};
|
|
411
|
-
readonly required: readonly ["
|
|
289
|
+
readonly required: readonly ["language", "text"];
|
|
412
290
|
};
|
|
413
|
-
export declare const
|
|
291
|
+
export declare const MeasurementResponseSchema: {
|
|
414
292
|
readonly type: "object";
|
|
415
293
|
readonly properties: {
|
|
416
|
-
readonly
|
|
417
|
-
readonly type: "
|
|
418
|
-
readonly
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
readonly
|
|
294
|
+
readonly totalArea: {
|
|
295
|
+
readonly type: "number";
|
|
296
|
+
readonly format: "double";
|
|
297
|
+
};
|
|
298
|
+
readonly livingArea: {
|
|
299
|
+
readonly type: "number";
|
|
300
|
+
readonly format: "double";
|
|
301
|
+
};
|
|
302
|
+
readonly balconyArea: {
|
|
303
|
+
readonly type: "number";
|
|
304
|
+
readonly format: "double";
|
|
422
305
|
};
|
|
423
306
|
};
|
|
424
|
-
readonly required: readonly ["
|
|
307
|
+
readonly required: readonly ["totalArea"];
|
|
425
308
|
};
|
|
426
|
-
export declare const
|
|
309
|
+
export declare const PhotosKeyUrlResponseSchema: {
|
|
427
310
|
readonly type: "object";
|
|
428
311
|
readonly properties: {
|
|
429
|
-
readonly
|
|
312
|
+
readonly key: {
|
|
430
313
|
readonly type: "string";
|
|
431
314
|
};
|
|
432
|
-
readonly
|
|
315
|
+
readonly url: {
|
|
433
316
|
readonly type: "string";
|
|
434
|
-
readonly format: "uuid";
|
|
435
317
|
};
|
|
436
318
|
};
|
|
437
319
|
};
|
|
438
|
-
export declare const
|
|
320
|
+
export declare const RegistrationDraftResponseSchema: {
|
|
439
321
|
readonly type: "object";
|
|
440
322
|
readonly properties: {
|
|
441
|
-
readonly
|
|
323
|
+
readonly propertyId: {
|
|
442
324
|
readonly type: "string";
|
|
443
325
|
readonly format: "uuid";
|
|
444
326
|
};
|
|
445
|
-
readonly
|
|
446
|
-
readonly type: "
|
|
447
|
-
readonly items: {
|
|
448
|
-
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
449
|
-
};
|
|
450
|
-
readonly uniqueItems: true;
|
|
451
|
-
};
|
|
452
|
-
readonly isActive: {
|
|
453
|
-
readonly type: "boolean";
|
|
454
|
-
};
|
|
455
|
-
readonly isOwner: {
|
|
456
|
-
readonly type: "boolean";
|
|
327
|
+
readonly ownerId: {
|
|
328
|
+
readonly type: "string";
|
|
457
329
|
};
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
export declare const CreateClientRequestSchema: {
|
|
461
|
-
readonly type: "object";
|
|
462
|
-
readonly properties: {
|
|
463
|
-
readonly contactInfo: {
|
|
464
|
-
readonly $ref: "#/components/schemas/ContactInfoRequest";
|
|
330
|
+
readonly type: {
|
|
331
|
+
readonly $ref: "#/components/schemas/DraftTypeEnum";
|
|
465
332
|
};
|
|
466
|
-
readonly
|
|
333
|
+
readonly title: {
|
|
467
334
|
readonly type: "string";
|
|
468
335
|
};
|
|
469
|
-
readonly
|
|
336
|
+
readonly description: {
|
|
470
337
|
readonly type: "array";
|
|
471
338
|
readonly items: {
|
|
472
|
-
readonly $ref: "#/components/schemas/
|
|
339
|
+
readonly $ref: "#/components/schemas/LangTextResponse";
|
|
473
340
|
};
|
|
474
|
-
readonly minItems: 1;
|
|
475
|
-
readonly uniqueItems: true;
|
|
476
341
|
};
|
|
477
|
-
readonly
|
|
478
|
-
readonly $ref: "#/components/schemas/
|
|
342
|
+
readonly measurements: {
|
|
343
|
+
readonly $ref: "#/components/schemas/MeasurementResponse";
|
|
479
344
|
};
|
|
480
|
-
readonly
|
|
481
|
-
readonly $ref: "#/components/schemas/
|
|
345
|
+
readonly address: {
|
|
346
|
+
readonly $ref: "#/components/schemas/AddressResponse";
|
|
482
347
|
};
|
|
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: {
|
|
348
|
+
readonly spaces: {
|
|
553
349
|
readonly type: "array";
|
|
554
350
|
readonly items: {
|
|
555
|
-
readonly
|
|
351
|
+
readonly $ref: "#/components/schemas/SpaceResponse";
|
|
556
352
|
};
|
|
557
353
|
};
|
|
558
|
-
readonly
|
|
354
|
+
readonly photos: {
|
|
559
355
|
readonly type: "array";
|
|
560
356
|
readonly items: {
|
|
561
|
-
readonly
|
|
357
|
+
readonly $ref: "#/components/schemas/PhotosKeyUrlResponse";
|
|
562
358
|
};
|
|
563
359
|
};
|
|
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: {
|
|
360
|
+
readonly amenities: {
|
|
595
361
|
readonly type: "array";
|
|
596
362
|
readonly items: {
|
|
597
|
-
readonly
|
|
363
|
+
readonly type: "integer";
|
|
364
|
+
readonly format: "int32";
|
|
598
365
|
};
|
|
599
366
|
};
|
|
600
|
-
readonly
|
|
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: {
|
|
367
|
+
readonly pages: {
|
|
613
368
|
readonly type: "array";
|
|
614
369
|
readonly items: {
|
|
615
|
-
readonly
|
|
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";
|
|
370
|
+
readonly type: "string";
|
|
664
371
|
};
|
|
665
372
|
};
|
|
666
|
-
readonly
|
|
667
|
-
readonly $ref: "#/components/schemas/PageMetadata";
|
|
668
|
-
};
|
|
669
|
-
};
|
|
670
|
-
};
|
|
671
|
-
export declare const RoleResponseSchema: {
|
|
672
|
-
readonly type: "object";
|
|
673
|
-
readonly properties: {
|
|
674
|
-
readonly id: {
|
|
373
|
+
readonly total: {
|
|
675
374
|
readonly type: "integer";
|
|
676
375
|
readonly format: "int32";
|
|
677
376
|
};
|
|
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: {
|
|
776
377
|
readonly group: {
|
|
777
378
|
readonly $ref: "#/components/schemas/GroupEnum";
|
|
778
379
|
};
|
|
779
|
-
readonly permissions: {
|
|
780
|
-
readonly type: "array";
|
|
781
|
-
readonly items: {
|
|
782
|
-
readonly $ref: "#/components/schemas/PermissionResponse";
|
|
783
|
-
};
|
|
784
|
-
};
|
|
785
|
-
};
|
|
786
|
-
readonly required: readonly ["group", "permissions"];
|
|
787
|
-
};
|
|
788
|
-
export declare const PermissionResponseSchema: {
|
|
789
|
-
readonly type: "object";
|
|
790
|
-
readonly properties: {
|
|
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
380
|
};
|
|
381
|
+
readonly required: readonly ["amenities", "description", "group", "ownerId", "pages", "photos", "propertyId", "spaces", "title", "total", "type"];
|
|
848
382
|
};
|
|
849
|
-
export declare const
|
|
383
|
+
export declare const SpaceResponseSchema: {
|
|
850
384
|
readonly type: "object";
|
|
851
385
|
readonly properties: {
|
|
852
|
-
readonly
|
|
853
|
-
readonly
|
|
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";
|
|
386
|
+
readonly type: {
|
|
387
|
+
readonly $ref: "#/components/schemas/TypeEnum";
|
|
886
388
|
};
|
|
887
389
|
readonly area: {
|
|
888
390
|
readonly type: "number";
|
|
889
391
|
readonly format: "double";
|
|
890
392
|
};
|
|
891
|
-
readonly numberOfRooms: {
|
|
892
|
-
readonly type: "integer";
|
|
893
|
-
readonly format: "int32";
|
|
894
|
-
};
|
|
895
393
|
};
|
|
896
|
-
readonly required: readonly ["clientType", "id", "listingType", "propertyType"];
|
|
897
394
|
};
|
|
898
|
-
export declare const
|
|
395
|
+
export declare const DraftCardResponseSchema: {
|
|
899
396
|
readonly type: "object";
|
|
900
397
|
readonly properties: {
|
|
901
398
|
readonly id: {
|
|
902
|
-
readonly type: "integer";
|
|
903
|
-
readonly format: "int64";
|
|
904
|
-
};
|
|
905
|
-
readonly createdBy: {
|
|
906
399
|
readonly type: "string";
|
|
907
400
|
readonly format: "uuid";
|
|
908
401
|
};
|
|
909
|
-
readonly
|
|
910
|
-
readonly
|
|
911
|
-
readonly format: "uuid";
|
|
912
|
-
};
|
|
913
|
-
readonly status: {
|
|
914
|
-
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
402
|
+
readonly type: {
|
|
403
|
+
readonly $ref: "#/components/schemas/DraftTypeEnum";
|
|
915
404
|
};
|
|
916
|
-
readonly
|
|
405
|
+
readonly title: {
|
|
917
406
|
readonly type: "string";
|
|
918
407
|
};
|
|
919
|
-
readonly
|
|
920
|
-
readonly $ref: "#/components/schemas/GenderEnum";
|
|
921
|
-
};
|
|
922
|
-
readonly contactPhoneNumber: {
|
|
408
|
+
readonly city: {
|
|
923
409
|
readonly type: "string";
|
|
924
410
|
};
|
|
925
|
-
readonly
|
|
411
|
+
readonly street: {
|
|
926
412
|
readonly type: "string";
|
|
927
413
|
};
|
|
928
|
-
readonly
|
|
414
|
+
readonly coverPhoto: {
|
|
929
415
|
readonly type: "string";
|
|
930
416
|
};
|
|
931
|
-
readonly
|
|
932
|
-
readonly $ref: "#/components/schemas/SourceTypeEnum";
|
|
933
|
-
};
|
|
934
|
-
readonly sourceLink: {
|
|
417
|
+
readonly uploadDate: {
|
|
935
418
|
readonly type: "string";
|
|
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";
|
|
419
|
+
readonly format: "date-time";
|
|
963
420
|
};
|
|
964
421
|
};
|
|
422
|
+
readonly required: readonly ["id", "title", "type", "uploadDate"];
|
|
965
423
|
};
|
|
966
|
-
export declare const
|
|
424
|
+
export declare const DraftStatusResponseSchema: {
|
|
967
425
|
readonly type: "object";
|
|
968
426
|
readonly properties: {
|
|
969
|
-
readonly invitationId: {
|
|
970
|
-
readonly type: "string";
|
|
971
|
-
readonly format: "uuid";
|
|
972
|
-
};
|
|
973
|
-
readonly email: {
|
|
974
|
-
readonly type: "string";
|
|
975
|
-
};
|
|
976
427
|
readonly status: {
|
|
977
428
|
readonly $ref: "#/components/schemas/StatusEnum";
|
|
978
429
|
};
|
|
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
|
-
};
|
|
994
|
-
};
|
|
995
|
-
readonly required: readonly ["createdAt", "email", "expiresAt", "invitationId", "status"];
|
|
996
|
-
};
|
|
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
430
|
};
|
|
431
|
+
readonly required: readonly ["status"];
|
|
1010
432
|
};
|
|
1011
|
-
export declare const
|
|
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: {
|
|
1233
|
-
readonly type: "string";
|
|
1234
|
-
readonly enum: readonly ["NEW", "ATTEMPTED_CONTACT", "CONTACTED", "DISQUALIFIED", "CONVERTED", "LOST"];
|
|
1235
|
-
};
|
|
1236
|
-
export declare const SchemaEnum2Schema: {
|
|
1237
|
-
readonly type: "string";
|
|
1238
|
-
readonly enum: readonly ["NEW", "ACTIVE", "PAYMENT_FAILED", "INACTIVE"];
|
|
1239
|
-
};
|
|
1240
|
-
export declare const ItemsEnumSchema: {
|
|
1241
|
-
readonly type: "string";
|
|
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"];
|
|
1247
|
-
};
|
|
1248
|
-
export declare const ListingTypeEnumSchema: {
|
|
1249
|
-
readonly type: "string";
|
|
1250
|
-
readonly enum: readonly ["SALE", "RENT", "DAILY_RENT", "PLEDGE"];
|
|
1251
|
-
};
|
|
1252
|
-
export declare const PropertyTypeEnumSchema: {
|
|
1253
|
-
readonly type: "string";
|
|
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"];
|
|
1255
|
-
};
|
|
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: {
|
|
433
|
+
export declare const TypeEnumSchema: {
|
|
1265
434
|
readonly type: "string";
|
|
1266
|
-
readonly enum: readonly ["
|
|
435
|
+
readonly enum: readonly ["BEDROOM", "BATHROOM", "KITCHEN", "LIVING_ROOM", "GARAGE", "BACKYARD", "GYM", "LAUNDRY", "HOME_THEATRE", "GAME_ROOM"];
|
|
1267
436
|
};
|
|
1268
|
-
export declare const
|
|
437
|
+
export declare const GroupEnumSchema: {
|
|
1269
438
|
readonly type: "string";
|
|
1270
|
-
readonly
|
|
439
|
+
readonly description: "property group being registered";
|
|
440
|
+
readonly enum: readonly ["HOUSE_GROUP", "APARTMENT_GROUP", "HOSPITALITY_GROUP", "LAND_GROUP", "BUSINESS_GROUP", "STORAGE_GROUP"];
|
|
1271
441
|
};
|
|
1272
442
|
export declare const TypeEnum2Schema: {
|
|
1273
443
|
readonly type: "string";
|
|
1274
444
|
readonly enum: readonly ["JPEG", "JPG", "PNG", "WEBP"];
|
|
1275
445
|
};
|
|
1276
|
-
export declare const
|
|
446
|
+
export declare const DraftTypeEnumSchema: {
|
|
1277
447
|
readonly type: "string";
|
|
1278
|
-
readonly enum: readonly ["
|
|
448
|
+
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"];
|
|
1279
449
|
};
|
|
1280
|
-
export declare const
|
|
450
|
+
export declare const LanguageEnumSchema: {
|
|
1281
451
|
readonly type: "string";
|
|
1282
|
-
readonly enum: readonly ["
|
|
452
|
+
readonly enum: readonly ["KA", "EN", "RU"];
|
|
1283
453
|
};
|
|
1284
|
-
export declare const
|
|
454
|
+
export declare const StatusEnumSchema: {
|
|
1285
455
|
readonly type: "string";
|
|
1286
|
-
readonly
|
|
456
|
+
readonly description: "property draft status";
|
|
457
|
+
readonly enum: readonly ["IN_REGISTRATION", "PROCESSING", "COMPLETED"];
|
|
1287
458
|
};
|
|
1288
459
|
//# sourceMappingURL=schemas.gen.d.ts.map
|