@homespot-sdk/core 0.0.119 → 0.0.121
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/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/sdk.gen.d.ts +19 -19
- package/dist/registration/sdk.gen.d.ts.map +1 -1
- package/dist/registration/sdk.gen.js +20 -20
- package/dist/registration/sdk.gen.js.map +1 -1
- package/dist/registration/transformers.gen.d.ts +2 -2
- package/dist/registration/transformers.gen.d.ts.map +1 -1
- package/dist/registration/transformers.gen.js +1 -1
- package/dist/registration/transformers.gen.js.map +1 -1
- package/dist/registration/types.gen.d.ts +53 -53
- package/dist/registration/types.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.d.ts +35 -35
- package/dist/registration/zod.gen.d.ts.map +1 -1
- package/dist/registration/zod.gen.js +35 -35
- package/dist/registration/zod.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/sdk.gen.d.ts +55 -55
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +57 -57
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +3 -3
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +2 -2
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +159 -159
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +105 -105
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +105 -105
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
|
@@ -148,7 +148,7 @@ export type OwnershipTypeEnum = 'DIRECT' | 'AGENCY_MANAGED' | 'CO_MANAGED';
|
|
|
148
148
|
* property draft status
|
|
149
149
|
*/
|
|
150
150
|
export type StatusEnum = 'IN_REGISTRATION' | 'PROCESSING' | 'COMPLETED';
|
|
151
|
-
export type
|
|
151
|
+
export type PutRegistrationByDraftIdSpacesData = {
|
|
152
152
|
body: SpacesRequest;
|
|
153
153
|
path: {
|
|
154
154
|
draftId: string;
|
|
@@ -156,14 +156,14 @@ export type RegisterSpacesData = {
|
|
|
156
156
|
query?: never;
|
|
157
157
|
url: '/registration/{draftId}/spaces';
|
|
158
158
|
};
|
|
159
|
-
export type
|
|
159
|
+
export type PutRegistrationByDraftIdSpacesResponses = {
|
|
160
160
|
/**
|
|
161
161
|
* OK
|
|
162
162
|
*/
|
|
163
163
|
200: RegistrationProgressDto;
|
|
164
164
|
};
|
|
165
|
-
export type
|
|
166
|
-
export type
|
|
165
|
+
export type PutRegistrationByDraftIdSpacesResponse = PutRegistrationByDraftIdSpacesResponses[keyof PutRegistrationByDraftIdSpacesResponses];
|
|
166
|
+
export type PutRegistrationByDraftIdPresignedUrlsData = {
|
|
167
167
|
body: PhotosRequest;
|
|
168
168
|
path: {
|
|
169
169
|
draftId: string;
|
|
@@ -171,14 +171,14 @@ export type RequestPresignedUrlsData = {
|
|
|
171
171
|
query?: never;
|
|
172
172
|
url: '/registration/{draftId}/presigned-urls';
|
|
173
173
|
};
|
|
174
|
-
export type
|
|
174
|
+
export type PutRegistrationByDraftIdPresignedUrlsResponses = {
|
|
175
175
|
/**
|
|
176
176
|
* OK
|
|
177
177
|
*/
|
|
178
178
|
200: PresignedUrlsResponse;
|
|
179
179
|
};
|
|
180
|
-
export type
|
|
181
|
-
export type
|
|
180
|
+
export type PutRegistrationByDraftIdPresignedUrlsResponse = PutRegistrationByDraftIdPresignedUrlsResponses[keyof PutRegistrationByDraftIdPresignedUrlsResponses];
|
|
181
|
+
export type PutRegistrationByDraftIdMeasurementsData = {
|
|
182
182
|
body: MeasurementRequest;
|
|
183
183
|
path: {
|
|
184
184
|
draftId: string;
|
|
@@ -186,14 +186,14 @@ export type RegisterMeasurementsData = {
|
|
|
186
186
|
query?: never;
|
|
187
187
|
url: '/registration/{draftId}/measurements';
|
|
188
188
|
};
|
|
189
|
-
export type
|
|
189
|
+
export type PutRegistrationByDraftIdMeasurementsResponses = {
|
|
190
190
|
/**
|
|
191
191
|
* OK
|
|
192
192
|
*/
|
|
193
193
|
200: RegistrationProgressDto;
|
|
194
194
|
};
|
|
195
|
-
export type
|
|
196
|
-
export type
|
|
195
|
+
export type PutRegistrationByDraftIdMeasurementsResponse = PutRegistrationByDraftIdMeasurementsResponses[keyof PutRegistrationByDraftIdMeasurementsResponses];
|
|
196
|
+
export type PutRegistrationByDraftIdDescriptionData = {
|
|
197
197
|
body: TitleAndDescriptionRequest;
|
|
198
198
|
path: {
|
|
199
199
|
draftId: string;
|
|
@@ -201,14 +201,14 @@ export type RegisterDescriptionData = {
|
|
|
201
201
|
query?: never;
|
|
202
202
|
url: '/registration/{draftId}/description';
|
|
203
203
|
};
|
|
204
|
-
export type
|
|
204
|
+
export type PutRegistrationByDraftIdDescriptionResponses = {
|
|
205
205
|
/**
|
|
206
206
|
* OK
|
|
207
207
|
*/
|
|
208
208
|
200: RegistrationProgressDto;
|
|
209
209
|
};
|
|
210
|
-
export type
|
|
211
|
-
export type
|
|
210
|
+
export type PutRegistrationByDraftIdDescriptionResponse = PutRegistrationByDraftIdDescriptionResponses[keyof PutRegistrationByDraftIdDescriptionResponses];
|
|
211
|
+
export type PutRegistrationByDraftIdAmenitiesData = {
|
|
212
212
|
body: AmenitiesRequest;
|
|
213
213
|
path: {
|
|
214
214
|
draftId: string;
|
|
@@ -216,14 +216,14 @@ export type RegisterAmenitiesData = {
|
|
|
216
216
|
query?: never;
|
|
217
217
|
url: '/registration/{draftId}/amenities';
|
|
218
218
|
};
|
|
219
|
-
export type
|
|
219
|
+
export type PutRegistrationByDraftIdAmenitiesResponses = {
|
|
220
220
|
/**
|
|
221
221
|
* OK
|
|
222
222
|
*/
|
|
223
223
|
200: RegistrationProgressDto;
|
|
224
224
|
};
|
|
225
|
-
export type
|
|
226
|
-
export type
|
|
225
|
+
export type PutRegistrationByDraftIdAmenitiesResponse = PutRegistrationByDraftIdAmenitiesResponses[keyof PutRegistrationByDraftIdAmenitiesResponses];
|
|
226
|
+
export type PutRegistrationByDraftIdAddressData = {
|
|
227
227
|
body: AddressRequest;
|
|
228
228
|
path: {
|
|
229
229
|
draftId: string;
|
|
@@ -231,14 +231,14 @@ export type RegisterAddressData = {
|
|
|
231
231
|
query?: never;
|
|
232
232
|
url: '/registration/{draftId}/address';
|
|
233
233
|
};
|
|
234
|
-
export type
|
|
234
|
+
export type PutRegistrationByDraftIdAddressResponses = {
|
|
235
235
|
/**
|
|
236
236
|
* OK
|
|
237
237
|
*/
|
|
238
238
|
200: RegistrationProgressDto;
|
|
239
239
|
};
|
|
240
|
-
export type
|
|
241
|
-
export type
|
|
240
|
+
export type PutRegistrationByDraftIdAddressResponse = PutRegistrationByDraftIdAddressResponses[keyof PutRegistrationByDraftIdAddressResponses];
|
|
241
|
+
export type PutDraftByDraftIdPhotosReorderData = {
|
|
242
242
|
body: PhotoReorderRequest;
|
|
243
243
|
path: {
|
|
244
244
|
draftId: string;
|
|
@@ -246,27 +246,27 @@ export type ReorderPhotosData = {
|
|
|
246
246
|
query?: never;
|
|
247
247
|
url: '/draft/{draftId}/photos/reorder';
|
|
248
248
|
};
|
|
249
|
-
export type
|
|
249
|
+
export type PutDraftByDraftIdPhotosReorderResponses = {
|
|
250
250
|
/**
|
|
251
251
|
* No Content
|
|
252
252
|
*/
|
|
253
253
|
204: void;
|
|
254
254
|
};
|
|
255
|
-
export type
|
|
256
|
-
export type
|
|
255
|
+
export type PutDraftByDraftIdPhotosReorderResponse = PutDraftByDraftIdPhotosReorderResponses[keyof PutDraftByDraftIdPhotosReorderResponses];
|
|
256
|
+
export type PostRegistrationData = {
|
|
257
257
|
body: StartRegistrationRequest;
|
|
258
258
|
path?: never;
|
|
259
259
|
query?: never;
|
|
260
260
|
url: '/registration';
|
|
261
261
|
};
|
|
262
|
-
export type
|
|
262
|
+
export type PostRegistrationResponses = {
|
|
263
263
|
/**
|
|
264
264
|
* Created
|
|
265
265
|
*/
|
|
266
266
|
201: RegistrationProgressDto;
|
|
267
267
|
};
|
|
268
|
-
export type
|
|
269
|
-
export type
|
|
268
|
+
export type PostRegistrationResponse = PostRegistrationResponses[keyof PostRegistrationResponses];
|
|
269
|
+
export type GetRegistrationByDraftIdData = {
|
|
270
270
|
body?: never;
|
|
271
271
|
path: {
|
|
272
272
|
draftId: string;
|
|
@@ -274,14 +274,14 @@ export type GetDraftData = {
|
|
|
274
274
|
query?: never;
|
|
275
275
|
url: '/registration/{draftId}';
|
|
276
276
|
};
|
|
277
|
-
export type
|
|
277
|
+
export type GetRegistrationByDraftIdResponses = {
|
|
278
278
|
/**
|
|
279
279
|
* OK
|
|
280
280
|
*/
|
|
281
281
|
200: RegistrationDraftResponse;
|
|
282
282
|
};
|
|
283
|
-
export type
|
|
284
|
-
export type
|
|
283
|
+
export type GetRegistrationByDraftIdResponse = GetRegistrationByDraftIdResponses[keyof GetRegistrationByDraftIdResponses];
|
|
284
|
+
export type PostRegistrationByDraftIdData = {
|
|
285
285
|
body: StartRegistrationRequest;
|
|
286
286
|
path: {
|
|
287
287
|
draftId: string;
|
|
@@ -289,14 +289,14 @@ export type RestartRegistrationData = {
|
|
|
289
289
|
query?: never;
|
|
290
290
|
url: '/registration/{draftId}';
|
|
291
291
|
};
|
|
292
|
-
export type
|
|
292
|
+
export type PostRegistrationByDraftIdResponses = {
|
|
293
293
|
/**
|
|
294
294
|
* OK
|
|
295
295
|
*/
|
|
296
296
|
200: RegistrationProgressDto;
|
|
297
297
|
};
|
|
298
|
-
export type
|
|
299
|
-
export type
|
|
298
|
+
export type PostRegistrationByDraftIdResponse = PostRegistrationByDraftIdResponses[keyof PostRegistrationByDraftIdResponses];
|
|
299
|
+
export type PostRegistrationByDraftIdRegisterData = {
|
|
300
300
|
body?: never;
|
|
301
301
|
path: {
|
|
302
302
|
draftId: string;
|
|
@@ -304,13 +304,13 @@ export type CompleteRegistrationData = {
|
|
|
304
304
|
query?: never;
|
|
305
305
|
url: '/registration/{draftId}/register';
|
|
306
306
|
};
|
|
307
|
-
export type
|
|
307
|
+
export type PostRegistrationByDraftIdRegisterResponses = {
|
|
308
308
|
/**
|
|
309
309
|
* OK
|
|
310
310
|
*/
|
|
311
311
|
200: unknown;
|
|
312
312
|
};
|
|
313
|
-
export type
|
|
313
|
+
export type PostRegistrationByDraftIdPresignedUrlsNotifyData = {
|
|
314
314
|
body: PhotosRequest;
|
|
315
315
|
path: {
|
|
316
316
|
draftId: string;
|
|
@@ -318,40 +318,40 @@ export type NotifyPhotoUploadData = {
|
|
|
318
318
|
query?: never;
|
|
319
319
|
url: '/registration/{draftId}/presigned-urls/notify';
|
|
320
320
|
};
|
|
321
|
-
export type
|
|
321
|
+
export type PostRegistrationByDraftIdPresignedUrlsNotifyResponses = {
|
|
322
322
|
/**
|
|
323
323
|
* OK
|
|
324
324
|
*/
|
|
325
325
|
200: RegistrationProgressDto;
|
|
326
326
|
};
|
|
327
|
-
export type
|
|
328
|
-
export type
|
|
327
|
+
export type PostRegistrationByDraftIdPresignedUrlsNotifyResponse = PostRegistrationByDraftIdPresignedUrlsNotifyResponses[keyof PostRegistrationByDraftIdPresignedUrlsNotifyResponses];
|
|
328
|
+
export type PostRegistrationAgencyData = {
|
|
329
329
|
body: AgencyStartRegistrationRequest;
|
|
330
330
|
path?: never;
|
|
331
331
|
query?: never;
|
|
332
332
|
url: '/registration/agency';
|
|
333
333
|
};
|
|
334
|
-
export type
|
|
334
|
+
export type PostRegistrationAgencyResponses = {
|
|
335
335
|
/**
|
|
336
336
|
* Created
|
|
337
337
|
*/
|
|
338
338
|
201: RegistrationProgressDto;
|
|
339
339
|
};
|
|
340
|
-
export type
|
|
341
|
-
export type
|
|
340
|
+
export type PostRegistrationAgencyResponse = PostRegistrationAgencyResponses[keyof PostRegistrationAgencyResponses];
|
|
341
|
+
export type GetDraftData = {
|
|
342
342
|
body?: never;
|
|
343
343
|
path?: never;
|
|
344
344
|
query?: never;
|
|
345
345
|
url: '/draft';
|
|
346
346
|
};
|
|
347
|
-
export type
|
|
347
|
+
export type GetDraftResponses = {
|
|
348
348
|
/**
|
|
349
349
|
* OK
|
|
350
350
|
*/
|
|
351
351
|
200: Array<DraftCardResponse>;
|
|
352
352
|
};
|
|
353
|
-
export type
|
|
354
|
-
export type
|
|
353
|
+
export type GetDraftResponse = GetDraftResponses[keyof GetDraftResponses];
|
|
354
|
+
export type GetDraftByDraftIdStatusData = {
|
|
355
355
|
body?: never;
|
|
356
356
|
path: {
|
|
357
357
|
draftId: string;
|
|
@@ -359,14 +359,14 @@ export type GetDraftStatusData = {
|
|
|
359
359
|
query?: never;
|
|
360
360
|
url: '/draft/{draftId}/status';
|
|
361
361
|
};
|
|
362
|
-
export type
|
|
362
|
+
export type GetDraftByDraftIdStatusResponses = {
|
|
363
363
|
/**
|
|
364
364
|
* OK
|
|
365
365
|
*/
|
|
366
366
|
200: DraftStatusResponse;
|
|
367
367
|
};
|
|
368
|
-
export type
|
|
369
|
-
export type
|
|
368
|
+
export type GetDraftByDraftIdStatusResponse = GetDraftByDraftIdStatusResponses[keyof GetDraftByDraftIdStatusResponses];
|
|
369
|
+
export type DeleteDraftByDraftIdData = {
|
|
370
370
|
body?: never;
|
|
371
371
|
path: {
|
|
372
372
|
draftId: string;
|
|
@@ -374,14 +374,14 @@ export type DeleteDraftData = {
|
|
|
374
374
|
query?: never;
|
|
375
375
|
url: '/draft/{draftId}';
|
|
376
376
|
};
|
|
377
|
-
export type
|
|
377
|
+
export type DeleteDraftByDraftIdResponses = {
|
|
378
378
|
/**
|
|
379
379
|
* No Content
|
|
380
380
|
*/
|
|
381
381
|
204: void;
|
|
382
382
|
};
|
|
383
|
-
export type
|
|
384
|
-
export type
|
|
383
|
+
export type DeleteDraftByDraftIdResponse = DeleteDraftByDraftIdResponses[keyof DeleteDraftByDraftIdResponses];
|
|
384
|
+
export type DeleteDraftByDraftIdPhotosData = {
|
|
385
385
|
body?: never;
|
|
386
386
|
path: {
|
|
387
387
|
draftId: string;
|
|
@@ -389,14 +389,14 @@ export type DeleteAllPhotosData = {
|
|
|
389
389
|
query?: never;
|
|
390
390
|
url: '/draft/{draftId}/photos';
|
|
391
391
|
};
|
|
392
|
-
export type
|
|
392
|
+
export type DeleteDraftByDraftIdPhotosResponses = {
|
|
393
393
|
/**
|
|
394
394
|
* No Content
|
|
395
395
|
*/
|
|
396
396
|
204: void;
|
|
397
397
|
};
|
|
398
|
-
export type
|
|
399
|
-
export type
|
|
398
|
+
export type DeleteDraftByDraftIdPhotosResponse = DeleteDraftByDraftIdPhotosResponses[keyof DeleteDraftByDraftIdPhotosResponses];
|
|
399
|
+
export type DeleteDraftByDraftIdPhotosByPhotoKeyData = {
|
|
400
400
|
body?: never;
|
|
401
401
|
path: {
|
|
402
402
|
draftId: string;
|
|
@@ -405,11 +405,11 @@ export type DeletePhotoData = {
|
|
|
405
405
|
query?: never;
|
|
406
406
|
url: '/draft/{draftId}/photos/{photoKey}';
|
|
407
407
|
};
|
|
408
|
-
export type
|
|
408
|
+
export type DeleteDraftByDraftIdPhotosByPhotoKeyResponses = {
|
|
409
409
|
/**
|
|
410
410
|
* No Content
|
|
411
411
|
*/
|
|
412
412
|
204: void;
|
|
413
413
|
};
|
|
414
|
-
export type
|
|
414
|
+
export type DeleteDraftByDraftIdPhotosByPhotoKeyResponse = DeleteDraftByDraftIdPhotosByPhotoKeyResponses[keyof DeleteDraftByDraftIdPhotosByPhotoKeyResponses];
|
|
415
415
|
//# sourceMappingURL=types.gen.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.gen.d.ts","sourceRoot":"","sources":["../../api/registration/types.gen.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,aAAa,GAAG;IACxB,OAAO,EAAE,8CAA8C,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;CAC3E,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IACxB,MAAM,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IAClC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IACxB,MAAM,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAChC,IAAI,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACtB,QAAQ,EAAE,YAAY,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,0BAA0B,GAAG;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACnC,YAAY,EAAE,gBAAgB,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG;IACzC,YAAY,EAAE,gBAAgB,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,QAAQ,EAAE,YAAY,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IACpC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,iBAAiB,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IACrC,YAAY,CAAC,EAAE,mBAAmB,CAAC;IACnC,OAAO,CAAC,EAAE,eAAe,CAAC;IAC1B,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IAC7B,MAAM,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IACpC,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACzB,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IACxB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,IAAI,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,MAAM,EAAE,UAAU,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,QAAQ,GACd,SAAS,GACT,UAAU,GACV,SAAS,GACT,aAAa,GACb,QAAQ,GACR,UAAU,GACV,KAAK,GACL,SAAS,GACT,cAAc,GACd,WAAW,CAAC;AAElB;;GAEG;AACH,MAAM,MAAM,SAAS,GACf,aAAa,GACb,iBAAiB,GACjB,mBAAmB,GACnB,YAAY,GACZ,gBAAgB,GAChB,eAAe,CAAC;AAEtB,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GACtB,OAAO,GACP,YAAY,GACZ,eAAe,GACf,OAAO,GACP,SAAS,GACT,WAAW,GACX,QAAQ,GACR,SAAS,GACT,eAAe,GACf,OAAO,GACP,mBAAmB,GACnB,kBAAkB,GAClB,YAAY,GACZ,YAAY,GACZ,iBAAiB,GACjB,QAAQ,GACR,kBAAkB,GAClB,kBAAkB,GAClB,WAAW,GACX,QAAQ,CAAC;AAEf,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,gBAAgB,GAAG,YAAY,CAAC;AAE3E;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,iBAAiB,GAAG,YAAY,GAAG,WAAW,CAAC;AAExE,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"types.gen.d.ts","sourceRoot":"","sources":["../../api/registration/types.gen.ts"],"names":[],"mappings":"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"}
|
|
@@ -406,7 +406,7 @@ export declare const zDraftStatusResponse: z.ZodObject<{
|
|
|
406
406
|
COMPLETED: "COMPLETED";
|
|
407
407
|
}>;
|
|
408
408
|
}, z.core.$strip>;
|
|
409
|
-
export declare const
|
|
409
|
+
export declare const zPutRegistrationByDraftIdSpacesData: z.ZodObject<{
|
|
410
410
|
body: z.ZodObject<{
|
|
411
411
|
spaces: z.ZodArray<z.ZodObject<{
|
|
412
412
|
type: z.ZodEnum<{
|
|
@@ -432,7 +432,7 @@ export declare const zRegisterSpacesData: z.ZodObject<{
|
|
|
432
432
|
/**
|
|
433
433
|
* OK
|
|
434
434
|
*/
|
|
435
|
-
export declare const
|
|
435
|
+
export declare const zPutRegistrationByDraftIdSpacesResponse: z.ZodObject<{
|
|
436
436
|
registrationId: z.ZodUUID;
|
|
437
437
|
pages: z.ZodArray<z.ZodString>;
|
|
438
438
|
total: z.ZodInt;
|
|
@@ -445,7 +445,7 @@ export declare const zRegisterSpacesResponse: z.ZodObject<{
|
|
|
445
445
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
446
446
|
}>;
|
|
447
447
|
}, z.core.$strip>;
|
|
448
|
-
export declare const
|
|
448
|
+
export declare const zPutRegistrationByDraftIdPresignedUrlsData: z.ZodObject<{
|
|
449
449
|
body: z.ZodObject<{
|
|
450
450
|
photos: z.ZodArray<z.ZodObject<{
|
|
451
451
|
photo: z.ZodString;
|
|
@@ -467,14 +467,14 @@ export declare const zRequestPresignedUrlsData: z.ZodObject<{
|
|
|
467
467
|
/**
|
|
468
468
|
* OK
|
|
469
469
|
*/
|
|
470
|
-
export declare const
|
|
470
|
+
export declare const zPutRegistrationByDraftIdPresignedUrlsResponse: z.ZodObject<{
|
|
471
471
|
data: z.ZodArray<z.ZodObject<{
|
|
472
472
|
originalName: z.ZodString;
|
|
473
473
|
key: z.ZodString;
|
|
474
474
|
url: z.ZodString;
|
|
475
475
|
}, z.core.$strip>>;
|
|
476
476
|
}, z.core.$strip>;
|
|
477
|
-
export declare const
|
|
477
|
+
export declare const zPutRegistrationByDraftIdMeasurementsData: z.ZodObject<{
|
|
478
478
|
body: z.ZodObject<{
|
|
479
479
|
totalArea: z.ZodNumber;
|
|
480
480
|
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
@@ -488,7 +488,7 @@ export declare const zRegisterMeasurementsData: z.ZodObject<{
|
|
|
488
488
|
/**
|
|
489
489
|
* OK
|
|
490
490
|
*/
|
|
491
|
-
export declare const
|
|
491
|
+
export declare const zPutRegistrationByDraftIdMeasurementsResponse: z.ZodObject<{
|
|
492
492
|
registrationId: z.ZodUUID;
|
|
493
493
|
pages: z.ZodArray<z.ZodString>;
|
|
494
494
|
total: z.ZodInt;
|
|
@@ -501,7 +501,7 @@ export declare const zRegisterMeasurementsResponse: z.ZodObject<{
|
|
|
501
501
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
502
502
|
}>;
|
|
503
503
|
}, z.core.$strip>;
|
|
504
|
-
export declare const
|
|
504
|
+
export declare const zPutRegistrationByDraftIdDescriptionData: z.ZodObject<{
|
|
505
505
|
body: z.ZodObject<{
|
|
506
506
|
title: z.ZodOptional<z.ZodString>;
|
|
507
507
|
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -521,7 +521,7 @@ export declare const zRegisterDescriptionData: z.ZodObject<{
|
|
|
521
521
|
/**
|
|
522
522
|
* OK
|
|
523
523
|
*/
|
|
524
|
-
export declare const
|
|
524
|
+
export declare const zPutRegistrationByDraftIdDescriptionResponse: z.ZodObject<{
|
|
525
525
|
registrationId: z.ZodUUID;
|
|
526
526
|
pages: z.ZodArray<z.ZodString>;
|
|
527
527
|
total: z.ZodInt;
|
|
@@ -534,7 +534,7 @@ export declare const zRegisterDescriptionResponse: z.ZodObject<{
|
|
|
534
534
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
535
535
|
}>;
|
|
536
536
|
}, z.core.$strip>;
|
|
537
|
-
export declare const
|
|
537
|
+
export declare const zPutRegistrationByDraftIdAmenitiesData: z.ZodObject<{
|
|
538
538
|
body: z.ZodObject<{
|
|
539
539
|
amenities: z.ZodOptional<z.ZodArray<z.ZodInt>>;
|
|
540
540
|
}, z.core.$strip>;
|
|
@@ -546,7 +546,7 @@ export declare const zRegisterAmenitiesData: z.ZodObject<{
|
|
|
546
546
|
/**
|
|
547
547
|
* OK
|
|
548
548
|
*/
|
|
549
|
-
export declare const
|
|
549
|
+
export declare const zPutRegistrationByDraftIdAmenitiesResponse: z.ZodObject<{
|
|
550
550
|
registrationId: z.ZodUUID;
|
|
551
551
|
pages: z.ZodArray<z.ZodString>;
|
|
552
552
|
total: z.ZodInt;
|
|
@@ -559,7 +559,7 @@ export declare const zRegisterAmenitiesResponse: z.ZodObject<{
|
|
|
559
559
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
560
560
|
}>;
|
|
561
561
|
}, z.core.$strip>;
|
|
562
|
-
export declare const
|
|
562
|
+
export declare const zPutRegistrationByDraftIdAddressData: z.ZodObject<{
|
|
563
563
|
body: z.ZodObject<{
|
|
564
564
|
placeId: z.ZodString;
|
|
565
565
|
cadastralCode: z.ZodString;
|
|
@@ -578,7 +578,7 @@ export declare const zRegisterAddressData: z.ZodObject<{
|
|
|
578
578
|
/**
|
|
579
579
|
* OK
|
|
580
580
|
*/
|
|
581
|
-
export declare const
|
|
581
|
+
export declare const zPutRegistrationByDraftIdAddressResponse: z.ZodObject<{
|
|
582
582
|
registrationId: z.ZodUUID;
|
|
583
583
|
pages: z.ZodArray<z.ZodString>;
|
|
584
584
|
total: z.ZodInt;
|
|
@@ -591,7 +591,7 @@ export declare const zRegisterAddressResponse: z.ZodObject<{
|
|
|
591
591
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
592
592
|
}>;
|
|
593
593
|
}, z.core.$strip>;
|
|
594
|
-
export declare const
|
|
594
|
+
export declare const zPutDraftByDraftIdPhotosReorderData: z.ZodObject<{
|
|
595
595
|
body: z.ZodObject<{
|
|
596
596
|
photos: z.ZodArray<z.ZodString>;
|
|
597
597
|
}, z.core.$strip>;
|
|
@@ -603,8 +603,8 @@ export declare const zReorderPhotosData: z.ZodObject<{
|
|
|
603
603
|
/**
|
|
604
604
|
* No Content
|
|
605
605
|
*/
|
|
606
|
-
export declare const
|
|
607
|
-
export declare const
|
|
606
|
+
export declare const zPutDraftByDraftIdPhotosReorderResponse: z.ZodVoid;
|
|
607
|
+
export declare const zPostRegistrationData: z.ZodObject<{
|
|
608
608
|
body: z.ZodObject<{
|
|
609
609
|
propertyType: z.ZodEnum<{
|
|
610
610
|
GARAGE: "GARAGE";
|
|
@@ -635,7 +635,7 @@ export declare const zStartRegistrationData: z.ZodObject<{
|
|
|
635
635
|
/**
|
|
636
636
|
* Created
|
|
637
637
|
*/
|
|
638
|
-
export declare const
|
|
638
|
+
export declare const zPostRegistrationResponse: z.ZodObject<{
|
|
639
639
|
registrationId: z.ZodUUID;
|
|
640
640
|
pages: z.ZodArray<z.ZodString>;
|
|
641
641
|
total: z.ZodInt;
|
|
@@ -648,7 +648,7 @@ export declare const zStartRegistrationResponse: z.ZodObject<{
|
|
|
648
648
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
649
649
|
}>;
|
|
650
650
|
}, z.core.$strip>;
|
|
651
|
-
export declare const
|
|
651
|
+
export declare const zGetRegistrationByDraftIdData: z.ZodObject<{
|
|
652
652
|
body: z.ZodOptional<z.ZodNever>;
|
|
653
653
|
path: z.ZodObject<{
|
|
654
654
|
draftId: z.ZodUUID;
|
|
@@ -658,7 +658,7 @@ export declare const zGetDraftData: z.ZodObject<{
|
|
|
658
658
|
/**
|
|
659
659
|
* OK
|
|
660
660
|
*/
|
|
661
|
-
export declare const
|
|
661
|
+
export declare const zGetRegistrationByDraftIdResponse: z.ZodObject<{
|
|
662
662
|
propertyId: z.ZodUUID;
|
|
663
663
|
ownershipType: z.ZodEnum<{
|
|
664
664
|
DIRECT: "DIRECT";
|
|
@@ -746,7 +746,7 @@ export declare const zGetDraftResponse: z.ZodObject<{
|
|
|
746
746
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
747
747
|
}>;
|
|
748
748
|
}, z.core.$strip>;
|
|
749
|
-
export declare const
|
|
749
|
+
export declare const zPostRegistrationByDraftIdData: z.ZodObject<{
|
|
750
750
|
body: z.ZodObject<{
|
|
751
751
|
propertyType: z.ZodEnum<{
|
|
752
752
|
GARAGE: "GARAGE";
|
|
@@ -779,7 +779,7 @@ export declare const zRestartRegistrationData: z.ZodObject<{
|
|
|
779
779
|
/**
|
|
780
780
|
* OK
|
|
781
781
|
*/
|
|
782
|
-
export declare const
|
|
782
|
+
export declare const zPostRegistrationByDraftIdResponse: z.ZodObject<{
|
|
783
783
|
registrationId: z.ZodUUID;
|
|
784
784
|
pages: z.ZodArray<z.ZodString>;
|
|
785
785
|
total: z.ZodInt;
|
|
@@ -792,14 +792,14 @@ export declare const zRestartRegistrationResponse: z.ZodObject<{
|
|
|
792
792
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
793
793
|
}>;
|
|
794
794
|
}, z.core.$strip>;
|
|
795
|
-
export declare const
|
|
795
|
+
export declare const zPostRegistrationByDraftIdRegisterData: z.ZodObject<{
|
|
796
796
|
body: z.ZodOptional<z.ZodNever>;
|
|
797
797
|
path: z.ZodObject<{
|
|
798
798
|
draftId: z.ZodUUID;
|
|
799
799
|
}, z.core.$strip>;
|
|
800
800
|
query: z.ZodOptional<z.ZodNever>;
|
|
801
801
|
}, z.core.$strip>;
|
|
802
|
-
export declare const
|
|
802
|
+
export declare const zPostRegistrationByDraftIdPresignedUrlsNotifyData: z.ZodObject<{
|
|
803
803
|
body: z.ZodObject<{
|
|
804
804
|
photos: z.ZodArray<z.ZodObject<{
|
|
805
805
|
photo: z.ZodString;
|
|
@@ -821,7 +821,7 @@ export declare const zNotifyPhotoUploadData: z.ZodObject<{
|
|
|
821
821
|
/**
|
|
822
822
|
* OK
|
|
823
823
|
*/
|
|
824
|
-
export declare const
|
|
824
|
+
export declare const zPostRegistrationByDraftIdPresignedUrlsNotifyResponse: z.ZodObject<{
|
|
825
825
|
registrationId: z.ZodUUID;
|
|
826
826
|
pages: z.ZodArray<z.ZodString>;
|
|
827
827
|
total: z.ZodInt;
|
|
@@ -834,7 +834,7 @@ export declare const zNotifyPhotoUploadResponse: z.ZodObject<{
|
|
|
834
834
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
835
835
|
}>;
|
|
836
836
|
}, z.core.$strip>;
|
|
837
|
-
export declare const
|
|
837
|
+
export declare const zPostRegistrationAgencyData: z.ZodObject<{
|
|
838
838
|
body: z.ZodObject<{
|
|
839
839
|
propertyType: z.ZodEnum<{
|
|
840
840
|
GARAGE: "GARAGE";
|
|
@@ -867,7 +867,7 @@ export declare const zStartRegistrationForAgencyData: z.ZodObject<{
|
|
|
867
867
|
/**
|
|
868
868
|
* Created
|
|
869
869
|
*/
|
|
870
|
-
export declare const
|
|
870
|
+
export declare const zPostRegistrationAgencyResponse: z.ZodObject<{
|
|
871
871
|
registrationId: z.ZodUUID;
|
|
872
872
|
pages: z.ZodArray<z.ZodString>;
|
|
873
873
|
total: z.ZodInt;
|
|
@@ -880,7 +880,7 @@ export declare const zStartRegistrationForAgencyResponse: z.ZodObject<{
|
|
|
880
880
|
STORAGE_GROUP: "STORAGE_GROUP";
|
|
881
881
|
}>;
|
|
882
882
|
}, z.core.$strip>;
|
|
883
|
-
export declare const
|
|
883
|
+
export declare const zGetDraftData: z.ZodObject<{
|
|
884
884
|
body: z.ZodOptional<z.ZodNever>;
|
|
885
885
|
path: z.ZodOptional<z.ZodNever>;
|
|
886
886
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -888,7 +888,7 @@ export declare const zGetDraftsData: z.ZodObject<{
|
|
|
888
888
|
/**
|
|
889
889
|
* OK
|
|
890
890
|
*/
|
|
891
|
-
export declare const
|
|
891
|
+
export declare const zGetDraftResponse: z.ZodArray<z.ZodObject<{
|
|
892
892
|
id: z.ZodUUID;
|
|
893
893
|
type: z.ZodEnum<{
|
|
894
894
|
GARAGE: "GARAGE";
|
|
@@ -918,7 +918,7 @@ export declare const zGetDraftsResponse: z.ZodArray<z.ZodObject<{
|
|
|
918
918
|
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
919
919
|
uploadDate: z.ZodISODateTime;
|
|
920
920
|
}, z.core.$strip>>;
|
|
921
|
-
export declare const
|
|
921
|
+
export declare const zGetDraftByDraftIdStatusData: z.ZodObject<{
|
|
922
922
|
body: z.ZodOptional<z.ZodNever>;
|
|
923
923
|
path: z.ZodObject<{
|
|
924
924
|
draftId: z.ZodUUID;
|
|
@@ -928,14 +928,14 @@ export declare const zGetDraftStatusData: z.ZodObject<{
|
|
|
928
928
|
/**
|
|
929
929
|
* OK
|
|
930
930
|
*/
|
|
931
|
-
export declare const
|
|
931
|
+
export declare const zGetDraftByDraftIdStatusResponse: z.ZodObject<{
|
|
932
932
|
status: z.ZodEnum<{
|
|
933
933
|
IN_REGISTRATION: "IN_REGISTRATION";
|
|
934
934
|
PROCESSING: "PROCESSING";
|
|
935
935
|
COMPLETED: "COMPLETED";
|
|
936
936
|
}>;
|
|
937
937
|
}, z.core.$strip>;
|
|
938
|
-
export declare const
|
|
938
|
+
export declare const zDeleteDraftByDraftIdData: z.ZodObject<{
|
|
939
939
|
body: z.ZodOptional<z.ZodNever>;
|
|
940
940
|
path: z.ZodObject<{
|
|
941
941
|
draftId: z.ZodUUID;
|
|
@@ -945,8 +945,8 @@ export declare const zDeleteDraftData: z.ZodObject<{
|
|
|
945
945
|
/**
|
|
946
946
|
* No Content
|
|
947
947
|
*/
|
|
948
|
-
export declare const
|
|
949
|
-
export declare const
|
|
948
|
+
export declare const zDeleteDraftByDraftIdResponse: z.ZodVoid;
|
|
949
|
+
export declare const zDeleteDraftByDraftIdPhotosData: z.ZodObject<{
|
|
950
950
|
body: z.ZodOptional<z.ZodNever>;
|
|
951
951
|
path: z.ZodObject<{
|
|
952
952
|
draftId: z.ZodUUID;
|
|
@@ -956,8 +956,8 @@ export declare const zDeleteAllPhotosData: z.ZodObject<{
|
|
|
956
956
|
/**
|
|
957
957
|
* No Content
|
|
958
958
|
*/
|
|
959
|
-
export declare const
|
|
960
|
-
export declare const
|
|
959
|
+
export declare const zDeleteDraftByDraftIdPhotosResponse: z.ZodVoid;
|
|
960
|
+
export declare const zDeleteDraftByDraftIdPhotosByPhotoKeyData: z.ZodObject<{
|
|
961
961
|
body: z.ZodOptional<z.ZodNever>;
|
|
962
962
|
path: z.ZodObject<{
|
|
963
963
|
draftId: z.ZodUUID;
|
|
@@ -968,5 +968,5 @@ export declare const zDeletePhotoData: z.ZodObject<{
|
|
|
968
968
|
/**
|
|
969
969
|
* No Content
|
|
970
970
|
*/
|
|
971
|
-
export declare const
|
|
971
|
+
export declare const zDeleteDraftByDraftIdPhotosByPhotoKeyResponse: z.ZodVoid;
|
|
972
972
|
//# sourceMappingURL=zod.gen.d.ts.map
|