@homespot-sdk/core 0.0.118 → 0.0.119
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/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 +133 -208
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +149 -211
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +28 -24
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +92 -72
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +331 -291
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +729 -1005
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +336 -322
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
|
@@ -46,16 +46,7 @@ export declare const BatchAssignRoleRequestSchema: {
|
|
|
46
46
|
};
|
|
47
47
|
readonly required: readonly ["memberIds", "roleId"];
|
|
48
48
|
};
|
|
49
|
-
export declare const
|
|
50
|
-
readonly type: "object";
|
|
51
|
-
readonly properties: {
|
|
52
|
-
readonly status: {
|
|
53
|
-
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
readonly required: readonly ["status"];
|
|
57
|
-
};
|
|
58
|
-
export declare const SourceRequestSchema: {
|
|
49
|
+
export declare const RecordSourceRequestSchema: {
|
|
59
50
|
readonly type: "object";
|
|
60
51
|
readonly properties: {
|
|
61
52
|
readonly sourceUrl: {
|
|
@@ -63,7 +54,7 @@ export declare const SourceRequestSchema: {
|
|
|
63
54
|
};
|
|
64
55
|
};
|
|
65
56
|
};
|
|
66
|
-
export declare const
|
|
57
|
+
export declare const NoteRequestSchema: {
|
|
67
58
|
readonly type: "object";
|
|
68
59
|
readonly properties: {
|
|
69
60
|
readonly note: {
|
|
@@ -71,7 +62,7 @@ export declare const UpdateNoteRequestSchema: {
|
|
|
71
62
|
};
|
|
72
63
|
};
|
|
73
64
|
};
|
|
74
|
-
export declare const
|
|
65
|
+
export declare const IntentRequestSchema: {
|
|
75
66
|
readonly type: "object";
|
|
76
67
|
readonly properties: {
|
|
77
68
|
readonly clientType: {
|
|
@@ -155,7 +146,7 @@ export declare const ContactInfoRequestSchema: {
|
|
|
155
146
|
};
|
|
156
147
|
readonly required: readonly ["phone"];
|
|
157
148
|
};
|
|
158
|
-
export declare const
|
|
149
|
+
export declare const ReassignMemberRequestSchema: {
|
|
159
150
|
readonly type: "object";
|
|
160
151
|
readonly properties: {
|
|
161
152
|
readonly memberId: {
|
|
@@ -165,14 +156,23 @@ export declare const AssignToMemberRequestSchema: {
|
|
|
165
156
|
};
|
|
166
157
|
readonly required: readonly ["memberId"];
|
|
167
158
|
};
|
|
168
|
-
export declare const
|
|
159
|
+
export declare const ReprioritizeClientRequestSchema: {
|
|
169
160
|
readonly type: "object";
|
|
170
161
|
readonly properties: {
|
|
171
|
-
readonly
|
|
162
|
+
readonly priority: {
|
|
163
|
+
readonly $ref: "#/components/schemas/PriorityEnum";
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
export declare const CaptureInterestRequestSchema: {
|
|
168
|
+
readonly type: "object";
|
|
169
|
+
readonly properties: {
|
|
170
|
+
readonly propertyTypes: {
|
|
172
171
|
readonly type: "array";
|
|
173
172
|
readonly items: {
|
|
174
173
|
readonly $ref: "#/components/schemas/PropertyTypeEnum";
|
|
175
174
|
};
|
|
175
|
+
readonly minItems: 1;
|
|
176
176
|
readonly uniqueItems: true;
|
|
177
177
|
};
|
|
178
178
|
readonly listingType: {
|
|
@@ -200,37 +200,29 @@ export declare const ClientRequirementRequestSchema: {
|
|
|
200
200
|
readonly type: "integer";
|
|
201
201
|
readonly format: "int32";
|
|
202
202
|
};
|
|
203
|
-
readonly
|
|
203
|
+
readonly totalAreaMin: {
|
|
204
204
|
readonly type: "number";
|
|
205
205
|
readonly format: "double";
|
|
206
206
|
};
|
|
207
|
-
readonly
|
|
207
|
+
readonly totalAreaMax: {
|
|
208
208
|
readonly type: "number";
|
|
209
209
|
readonly format: "double";
|
|
210
210
|
};
|
|
211
|
-
readonly
|
|
211
|
+
readonly livingAreaMin: {
|
|
212
212
|
readonly type: "number";
|
|
213
213
|
readonly format: "double";
|
|
214
214
|
};
|
|
215
|
-
readonly
|
|
215
|
+
readonly livingAreaMax: {
|
|
216
216
|
readonly type: "number";
|
|
217
217
|
readonly format: "double";
|
|
218
218
|
};
|
|
219
|
-
readonly
|
|
219
|
+
readonly location: {
|
|
220
220
|
readonly $ref: "#/components/schemas/LocationRefRequest";
|
|
221
221
|
};
|
|
222
222
|
};
|
|
223
|
-
readonly required: readonly ["listingType", "
|
|
223
|
+
readonly required: readonly ["listingType", "propertyTypes"];
|
|
224
224
|
};
|
|
225
|
-
export declare const
|
|
226
|
-
readonly type: "object";
|
|
227
|
-
readonly properties: {
|
|
228
|
-
readonly priority: {
|
|
229
|
-
readonly $ref: "#/components/schemas/PriorityEnum";
|
|
230
|
-
};
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
export declare const UpdateContactMethodsRequestSchema: {
|
|
225
|
+
export declare const UpdateContactPreferencesRequestSchema: {
|
|
234
226
|
readonly type: "object";
|
|
235
227
|
readonly properties: {
|
|
236
228
|
readonly contactMethods: {
|
|
@@ -238,13 +230,12 @@ export declare const UpdateContactMethodsRequestSchema: {
|
|
|
238
230
|
readonly items: {
|
|
239
231
|
readonly $ref: "#/components/schemas/ItemsEnum2";
|
|
240
232
|
};
|
|
241
|
-
readonly uniqueItems: true;
|
|
242
233
|
};
|
|
243
234
|
readonly favoriteContactMethod: {
|
|
244
235
|
readonly $ref: "#/components/schemas/ItemsEnum2";
|
|
245
236
|
};
|
|
246
237
|
};
|
|
247
|
-
readonly required: readonly ["contactMethods"
|
|
238
|
+
readonly required: readonly ["contactMethods"];
|
|
248
239
|
};
|
|
249
240
|
export declare const AddressRequestSchema: {
|
|
250
241
|
readonly type: "object";
|
|
@@ -282,24 +273,20 @@ export declare const CreateAgencyRequestSchema: {
|
|
|
282
273
|
readonly properties: {
|
|
283
274
|
readonly name: {
|
|
284
275
|
readonly type: "string";
|
|
285
|
-
readonly minLength: 1;
|
|
286
276
|
};
|
|
287
277
|
readonly email: {
|
|
288
278
|
readonly type: "string";
|
|
289
279
|
readonly format: "email";
|
|
290
|
-
readonly minLength: 1;
|
|
291
280
|
};
|
|
292
281
|
readonly seats: {
|
|
293
282
|
readonly type: "integer";
|
|
294
283
|
readonly format: "int32";
|
|
295
284
|
};
|
|
296
|
-
readonly
|
|
285
|
+
readonly subdomain: {
|
|
297
286
|
readonly type: "string";
|
|
298
|
-
readonly minLength: 1;
|
|
299
287
|
};
|
|
300
288
|
readonly phone: {
|
|
301
289
|
readonly type: "string";
|
|
302
|
-
readonly minLength: 1;
|
|
303
290
|
};
|
|
304
291
|
readonly address: {
|
|
305
292
|
readonly $ref: "#/components/schemas/AddressRequest";
|
|
@@ -309,7 +296,7 @@ export declare const CreateAgencyRequestSchema: {
|
|
|
309
296
|
readonly format: "int32";
|
|
310
297
|
};
|
|
311
298
|
};
|
|
312
|
-
readonly required: readonly ["address", "email", "name", "phone", "seats", "
|
|
299
|
+
readonly required: readonly ["address", "email", "name", "phone", "seats", "subdomain", "yearSince"];
|
|
313
300
|
};
|
|
314
301
|
export declare const SocialMediaRequestSchema: {
|
|
315
302
|
readonly type: "object";
|
|
@@ -369,7 +356,7 @@ export declare const IdResponseIntegerSchema: {
|
|
|
369
356
|
};
|
|
370
357
|
readonly required: readonly ["id"];
|
|
371
358
|
};
|
|
372
|
-
export declare const
|
|
359
|
+
export declare const CaptureLeadRequestSchema: {
|
|
373
360
|
readonly type: "object";
|
|
374
361
|
readonly properties: {
|
|
375
362
|
readonly contactInfo: {
|
|
@@ -380,49 +367,60 @@ export declare const CreateLeadRequestSchema: {
|
|
|
380
367
|
readonly maxLength: 500;
|
|
381
368
|
readonly minLength: 0;
|
|
382
369
|
};
|
|
383
|
-
readonly
|
|
370
|
+
readonly sourceLink: {
|
|
384
371
|
readonly type: "string";
|
|
385
372
|
};
|
|
386
373
|
};
|
|
387
374
|
readonly required: readonly ["contactInfo"];
|
|
388
375
|
};
|
|
389
|
-
export declare const
|
|
376
|
+
export declare const LeadIdSchema: {
|
|
390
377
|
readonly type: "object";
|
|
391
378
|
readonly properties: {
|
|
392
|
-
readonly
|
|
379
|
+
readonly value: {
|
|
393
380
|
readonly type: "integer";
|
|
394
381
|
readonly format: "int64";
|
|
395
382
|
};
|
|
396
383
|
};
|
|
397
|
-
readonly required: readonly ["id"];
|
|
398
384
|
};
|
|
399
|
-
export declare const
|
|
385
|
+
export declare const RecordOutcomeRequestSchema: {
|
|
400
386
|
readonly type: "object";
|
|
401
387
|
readonly properties: {
|
|
402
|
-
readonly
|
|
403
|
-
readonly
|
|
404
|
-
readonly format: "email";
|
|
388
|
+
readonly outcome: {
|
|
389
|
+
readonly $ref: "#/components/schemas/OutcomeEnum";
|
|
405
390
|
};
|
|
406
|
-
readonly
|
|
407
|
-
readonly type: "
|
|
408
|
-
readonly format: "int32";
|
|
391
|
+
readonly reason: {
|
|
392
|
+
readonly type: "string";
|
|
409
393
|
};
|
|
410
394
|
};
|
|
411
|
-
readonly required: readonly ["
|
|
395
|
+
readonly required: readonly ["outcome"];
|
|
412
396
|
};
|
|
413
|
-
export declare const
|
|
397
|
+
export declare const BulkRecruitmentRequestSchema: {
|
|
414
398
|
readonly type: "object";
|
|
415
399
|
readonly properties: {
|
|
416
400
|
readonly emails: {
|
|
417
401
|
readonly type: "array";
|
|
418
402
|
readonly items: {
|
|
419
|
-
readonly $ref: "#/components/schemas/
|
|
403
|
+
readonly $ref: "#/components/schemas/RecruitmentRequest";
|
|
420
404
|
};
|
|
421
405
|
readonly minItems: 1;
|
|
422
406
|
};
|
|
423
407
|
};
|
|
424
408
|
readonly required: readonly ["emails"];
|
|
425
409
|
};
|
|
410
|
+
export declare const RecruitmentRequestSchema: {
|
|
411
|
+
readonly type: "object";
|
|
412
|
+
readonly properties: {
|
|
413
|
+
readonly email: {
|
|
414
|
+
readonly type: "string";
|
|
415
|
+
readonly format: "email";
|
|
416
|
+
};
|
|
417
|
+
readonly roleId: {
|
|
418
|
+
readonly type: "integer";
|
|
419
|
+
readonly format: "int32";
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
readonly required: readonly ["email", "roleId"];
|
|
423
|
+
};
|
|
426
424
|
export declare const AuthRequestSchema: {
|
|
427
425
|
readonly type: "object";
|
|
428
426
|
readonly properties: {
|
|
@@ -457,7 +455,7 @@ export declare const AgencyPrincipalDtoSchema: {
|
|
|
457
455
|
};
|
|
458
456
|
};
|
|
459
457
|
};
|
|
460
|
-
export declare const
|
|
458
|
+
export declare const OnboardClientRequestSchema: {
|
|
461
459
|
readonly type: "object";
|
|
462
460
|
readonly properties: {
|
|
463
461
|
readonly contactInfo: {
|
|
@@ -471,7 +469,6 @@ export declare const CreateClientRequestSchema: {
|
|
|
471
469
|
readonly items: {
|
|
472
470
|
readonly $ref: "#/components/schemas/ItemsEnum2";
|
|
473
471
|
};
|
|
474
|
-
readonly minItems: 1;
|
|
475
472
|
readonly uniqueItems: true;
|
|
476
473
|
};
|
|
477
474
|
readonly favoriteContactMethod: {
|
|
@@ -480,8 +477,30 @@ export declare const CreateClientRequestSchema: {
|
|
|
480
477
|
readonly priority: {
|
|
481
478
|
readonly $ref: "#/components/schemas/PriorityEnum";
|
|
482
479
|
};
|
|
480
|
+
readonly convertedFromLeadId: {
|
|
481
|
+
readonly type: "integer";
|
|
482
|
+
readonly format: "int64";
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
readonly required: readonly ["contactInfo", "contactMethods"];
|
|
486
|
+
};
|
|
487
|
+
export declare const ClientIdSchema: {
|
|
488
|
+
readonly type: "object";
|
|
489
|
+
readonly properties: {
|
|
490
|
+
readonly value: {
|
|
491
|
+
readonly type: "integer";
|
|
492
|
+
readonly format: "int64";
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
export declare const InterestIdSchema: {
|
|
497
|
+
readonly type: "object";
|
|
498
|
+
readonly properties: {
|
|
499
|
+
readonly value: {
|
|
500
|
+
readonly type: "integer";
|
|
501
|
+
readonly format: "int64";
|
|
502
|
+
};
|
|
483
503
|
};
|
|
484
|
-
readonly required: readonly ["contactInfo", "contactMethods", "favoriteContactMethod"];
|
|
485
504
|
};
|
|
486
505
|
export declare const IdResponseUUIDSchema: {
|
|
487
506
|
readonly type: "object";
|
|
@@ -577,7 +596,7 @@ export declare const OrganizationSummaryViewResponseSchema: {
|
|
|
577
596
|
readonly agencyName: {
|
|
578
597
|
readonly type: "string";
|
|
579
598
|
};
|
|
580
|
-
readonly
|
|
599
|
+
readonly subdomain: {
|
|
581
600
|
readonly type: "string";
|
|
582
601
|
};
|
|
583
602
|
readonly roleId: {
|
|
@@ -598,10 +617,10 @@ export declare const OrganizationSummaryViewResponseSchema: {
|
|
|
598
617
|
};
|
|
599
618
|
};
|
|
600
619
|
readonly status: {
|
|
601
|
-
readonly $ref: "#/components/schemas/
|
|
620
|
+
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
602
621
|
};
|
|
603
622
|
};
|
|
604
|
-
readonly required: readonly ["agencyId", "agencyName", "isOwner", "memberId", "permissions", "roleName", "status", "
|
|
623
|
+
readonly required: readonly ["agencyId", "agencyName", "isOwner", "memberId", "permissions", "roleName", "status", "subdomain"];
|
|
605
624
|
};
|
|
606
625
|
export declare const UserContextViewResponseSchema: {
|
|
607
626
|
readonly type: "object";
|
|
@@ -690,6 +709,36 @@ export declare const RoleResponseSchema: {
|
|
|
690
709
|
};
|
|
691
710
|
readonly required: readonly ["description", "id", "name", "permissions"];
|
|
692
711
|
};
|
|
712
|
+
export declare const GroupedPermissionsResponseSchema: {
|
|
713
|
+
readonly type: "object";
|
|
714
|
+
readonly properties: {
|
|
715
|
+
readonly group: {
|
|
716
|
+
readonly $ref: "#/components/schemas/GroupEnum";
|
|
717
|
+
};
|
|
718
|
+
readonly permissions: {
|
|
719
|
+
readonly type: "array";
|
|
720
|
+
readonly items: {
|
|
721
|
+
readonly $ref: "#/components/schemas/PermissionResponse";
|
|
722
|
+
};
|
|
723
|
+
};
|
|
724
|
+
};
|
|
725
|
+
readonly required: readonly ["group", "permissions"];
|
|
726
|
+
};
|
|
727
|
+
export declare const PermissionResponseSchema: {
|
|
728
|
+
readonly type: "object";
|
|
729
|
+
readonly properties: {
|
|
730
|
+
readonly permission: {
|
|
731
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
732
|
+
};
|
|
733
|
+
readonly implied: {
|
|
734
|
+
readonly type: "array";
|
|
735
|
+
readonly items: {
|
|
736
|
+
readonly $ref: "#/components/schemas/ItemsEnum";
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
readonly required: readonly ["implied", "permission"];
|
|
741
|
+
};
|
|
693
742
|
export declare const InvitationDetailsResponseSchema: {
|
|
694
743
|
readonly type: "object";
|
|
695
744
|
readonly properties: {
|
|
@@ -735,7 +784,7 @@ export declare const AgencySummaryResponseSchema: {
|
|
|
735
784
|
readonly seats: {
|
|
736
785
|
readonly type: "string";
|
|
737
786
|
};
|
|
738
|
-
readonly
|
|
787
|
+
readonly subdomain: {
|
|
739
788
|
readonly type: "string";
|
|
740
789
|
};
|
|
741
790
|
readonly phone: {
|
|
@@ -744,17 +793,17 @@ export declare const AgencySummaryResponseSchema: {
|
|
|
744
793
|
readonly website: {
|
|
745
794
|
readonly type: "string";
|
|
746
795
|
};
|
|
747
|
-
readonly
|
|
796
|
+
readonly establishedYear: {
|
|
748
797
|
readonly type: "string";
|
|
749
798
|
};
|
|
750
799
|
readonly status: {
|
|
751
|
-
readonly $ref: "#/components/schemas/
|
|
800
|
+
readonly $ref: "#/components/schemas/SchemaEnum";
|
|
752
801
|
};
|
|
753
802
|
readonly logo: {
|
|
754
803
|
readonly type: "string";
|
|
755
804
|
};
|
|
756
805
|
};
|
|
757
|
-
readonly required: readonly ["email", "id", "name", "owner", "phone", "seats", "status", "
|
|
806
|
+
readonly required: readonly ["email", "establishedYear", "id", "name", "owner", "phone", "seats", "status", "subdomain"];
|
|
758
807
|
};
|
|
759
808
|
export declare const PagedModelAgencySummaryResponseSchema: {
|
|
760
809
|
readonly type: "object";
|
|
@@ -770,36 +819,6 @@ export declare const PagedModelAgencySummaryResponseSchema: {
|
|
|
770
819
|
};
|
|
771
820
|
};
|
|
772
821
|
};
|
|
773
|
-
export declare const GroupedPermissionsResponseSchema: {
|
|
774
|
-
readonly type: "object";
|
|
775
|
-
readonly properties: {
|
|
776
|
-
readonly group: {
|
|
777
|
-
readonly $ref: "#/components/schemas/GroupEnum";
|
|
778
|
-
};
|
|
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
822
|
export declare const MemberViewResponseSchema: {
|
|
804
823
|
readonly type: "object";
|
|
805
824
|
readonly properties: {
|
|
@@ -895,7 +914,7 @@ export declare const IntentResponseSchema: {
|
|
|
895
914
|
};
|
|
896
915
|
readonly required: readonly ["clientType", "id", "listingType", "propertyType"];
|
|
897
916
|
};
|
|
898
|
-
export declare const
|
|
917
|
+
export declare const LeadGridResponseSchema: {
|
|
899
918
|
readonly type: "object";
|
|
900
919
|
readonly properties: {
|
|
901
920
|
readonly id: {
|
|
@@ -911,7 +930,7 @@ export declare const LeadProjectionResponseSchema: {
|
|
|
911
930
|
readonly format: "uuid";
|
|
912
931
|
};
|
|
913
932
|
readonly status: {
|
|
914
|
-
readonly $ref: "#/components/schemas/
|
|
933
|
+
readonly $ref: "#/components/schemas/SchemaEnum2";
|
|
915
934
|
};
|
|
916
935
|
readonly contactFullName: {
|
|
917
936
|
readonly type: "string";
|
|
@@ -949,13 +968,13 @@ export declare const LeadProjectionResponseSchema: {
|
|
|
949
968
|
};
|
|
950
969
|
readonly required: readonly ["contactPhoneNumber", "createdBy", "id", "isListing", "isSearching", "status"];
|
|
951
970
|
};
|
|
952
|
-
export declare const
|
|
971
|
+
export declare const PagedModelLeadGridResponseSchema: {
|
|
953
972
|
readonly type: "object";
|
|
954
973
|
readonly properties: {
|
|
955
974
|
readonly content: {
|
|
956
975
|
readonly type: "array";
|
|
957
976
|
readonly items: {
|
|
958
|
-
readonly $ref: "#/components/schemas/
|
|
977
|
+
readonly $ref: "#/components/schemas/LeadGridResponse";
|
|
959
978
|
};
|
|
960
979
|
};
|
|
961
980
|
readonly page: {
|
|
@@ -1008,7 +1027,7 @@ export declare const PagedModelInvitationViewResponseSchema: {
|
|
|
1008
1027
|
};
|
|
1009
1028
|
};
|
|
1010
1029
|
};
|
|
1011
|
-
export declare const
|
|
1030
|
+
export declare const ClientGridResponseSchema: {
|
|
1012
1031
|
readonly type: "object";
|
|
1013
1032
|
readonly properties: {
|
|
1014
1033
|
readonly id: {
|
|
@@ -1064,28 +1083,16 @@ export declare const ClientProjectionResponseSchema: {
|
|
|
1064
1083
|
readonly priority: {
|
|
1065
1084
|
readonly $ref: "#/components/schemas/PriorityEnum";
|
|
1066
1085
|
};
|
|
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
1086
|
};
|
|
1080
1087
|
readonly required: readonly ["contactMethods", "contactPhoneNumber", "createdBy", "id", "isListing", "isSearching"];
|
|
1081
1088
|
};
|
|
1082
|
-
export declare const
|
|
1089
|
+
export declare const PagedModelClientGridResponseSchema: {
|
|
1083
1090
|
readonly type: "object";
|
|
1084
1091
|
readonly properties: {
|
|
1085
1092
|
readonly content: {
|
|
1086
1093
|
readonly type: "array";
|
|
1087
1094
|
readonly items: {
|
|
1088
|
-
readonly $ref: "#/components/schemas/
|
|
1095
|
+
readonly $ref: "#/components/schemas/ClientGridResponse";
|
|
1089
1096
|
};
|
|
1090
1097
|
};
|
|
1091
1098
|
readonly page: {
|
|
@@ -1093,92 +1100,6 @@ export declare const PagedModelClientProjectionResponseSchema: {
|
|
|
1093
1100
|
};
|
|
1094
1101
|
};
|
|
1095
1102
|
};
|
|
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
1103
|
export declare const AddressViewResponseSchema: {
|
|
1183
1104
|
readonly type: "object";
|
|
1184
1105
|
readonly properties: {
|
|
@@ -1213,7 +1134,7 @@ export declare const AgencyProfileResponseSchema: {
|
|
|
1213
1134
|
readonly type: "integer";
|
|
1214
1135
|
readonly format: "int32";
|
|
1215
1136
|
};
|
|
1216
|
-
readonly
|
|
1137
|
+
readonly subdomain: {
|
|
1217
1138
|
readonly type: "string";
|
|
1218
1139
|
};
|
|
1219
1140
|
readonly phone: {
|
|
@@ -1222,24 +1143,24 @@ export declare const AgencyProfileResponseSchema: {
|
|
|
1222
1143
|
readonly address: {
|
|
1223
1144
|
readonly $ref: "#/components/schemas/AddressViewResponse";
|
|
1224
1145
|
};
|
|
1225
|
-
readonly
|
|
1146
|
+
readonly establishedYear: {
|
|
1226
1147
|
readonly type: "integer";
|
|
1227
1148
|
readonly format: "int32";
|
|
1228
1149
|
};
|
|
1229
1150
|
};
|
|
1230
|
-
readonly required: readonly ["address", "email", "
|
|
1151
|
+
readonly required: readonly ["address", "email", "establishedYear", "name", "phone", "seats", "subdomain"];
|
|
1231
1152
|
};
|
|
1232
1153
|
export declare const SchemaEnumSchema: {
|
|
1233
1154
|
readonly type: "string";
|
|
1234
|
-
readonly enum: readonly ["NEW", "
|
|
1155
|
+
readonly enum: readonly ["NEW", "ACTIVE", "PAYMENT_FAILED", "INACTIVE"];
|
|
1235
1156
|
};
|
|
1236
1157
|
export declare const SchemaEnum2Schema: {
|
|
1237
1158
|
readonly type: "string";
|
|
1238
|
-
readonly enum: readonly ["NEW", "
|
|
1159
|
+
readonly enum: readonly ["NEW", "ATTEMPTED_CONTACT", "CONTACTED", "DISQUALIFIED", "CONVERTED", "LOST"];
|
|
1239
1160
|
};
|
|
1240
1161
|
export declare const ItemsEnumSchema: {
|
|
1241
1162
|
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"];
|
|
1163
|
+
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", "CLIENT_READ", "CLIENT_WRITE", "CLIENT_READ_ALL", "CLIENT_WRITE_ALL", "PROPERTY_READ_ALL"];
|
|
1243
1164
|
};
|
|
1244
1165
|
export declare const ClientTypeEnumSchema: {
|
|
1245
1166
|
readonly type: "string";
|
|
@@ -1269,17 +1190,21 @@ export declare const TypeEnumSchema: {
|
|
|
1269
1190
|
readonly type: "string";
|
|
1270
1191
|
readonly enum: readonly ["FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN"];
|
|
1271
1192
|
};
|
|
1193
|
+
export declare const OutcomeEnumSchema: {
|
|
1194
|
+
readonly type: "string";
|
|
1195
|
+
readonly enum: readonly ["CONVERTED", "LOST", "DISQUALIFIED"];
|
|
1196
|
+
};
|
|
1272
1197
|
export declare const TypeEnum2Schema: {
|
|
1273
1198
|
readonly type: "string";
|
|
1274
1199
|
readonly enum: readonly ["JPEG", "JPG", "PNG", "WEBP"];
|
|
1275
1200
|
};
|
|
1276
|
-
export declare const
|
|
1201
|
+
export declare const GroupEnumSchema: {
|
|
1277
1202
|
readonly type: "string";
|
|
1278
|
-
readonly enum: readonly ["
|
|
1203
|
+
readonly enum: readonly ["AGENCY", "INVITATION", "ROLE", "MEMBER", "LEAD", "CLIENT", "PROPERTY"];
|
|
1279
1204
|
};
|
|
1280
|
-
export declare const
|
|
1205
|
+
export declare const StatusEnumSchema: {
|
|
1281
1206
|
readonly type: "string";
|
|
1282
|
-
readonly enum: readonly ["
|
|
1207
|
+
readonly enum: readonly ["PENDING", "ACCEPTED", "CANCELLED", "EXPIRED"];
|
|
1283
1208
|
};
|
|
1284
1209
|
export declare const SourceTypeEnumSchema: {
|
|
1285
1210
|
readonly type: "string";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../../api/rem/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;CAmBrB,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;CAS1B,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;CAiB/B,CAAC;AAEX,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../../api/rem/schemas.gen.ts"],"names":[],"mappings":"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"}
|