@ember-home/unbound-ts-client 0.0.15 → 0.0.17
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/index.d.mts +535 -414
- package/dist/index.d.ts +535 -414
- package/dist/index.js +226 -54
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +186 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,43 +159,43 @@ type APIValidationErrorLocInner = number | string;
|
|
|
159
159
|
/**
|
|
160
160
|
*
|
|
161
161
|
* @export
|
|
162
|
-
* @interface
|
|
162
|
+
* @interface AddressApi
|
|
163
163
|
*/
|
|
164
|
-
interface
|
|
164
|
+
interface AddressApi {
|
|
165
165
|
/**
|
|
166
166
|
*
|
|
167
167
|
* @type {string}
|
|
168
|
-
* @memberof
|
|
168
|
+
* @memberof AddressApi
|
|
169
169
|
*/
|
|
170
170
|
'street1': string | null;
|
|
171
171
|
/**
|
|
172
172
|
*
|
|
173
173
|
* @type {string}
|
|
174
|
-
* @memberof
|
|
174
|
+
* @memberof AddressApi
|
|
175
175
|
*/
|
|
176
176
|
'street2'?: string | null;
|
|
177
177
|
/**
|
|
178
178
|
*
|
|
179
179
|
* @type {string}
|
|
180
|
-
* @memberof
|
|
180
|
+
* @memberof AddressApi
|
|
181
181
|
*/
|
|
182
182
|
'country': string | null;
|
|
183
183
|
/**
|
|
184
184
|
*
|
|
185
185
|
* @type {string}
|
|
186
|
-
* @memberof
|
|
186
|
+
* @memberof AddressApi
|
|
187
187
|
*/
|
|
188
188
|
'locality': string | null;
|
|
189
189
|
/**
|
|
190
190
|
*
|
|
191
191
|
* @type {string}
|
|
192
|
-
* @memberof
|
|
192
|
+
* @memberof AddressApi
|
|
193
193
|
*/
|
|
194
194
|
'postalCode': string | null;
|
|
195
195
|
/**
|
|
196
196
|
*
|
|
197
197
|
* @type {string}
|
|
198
|
-
* @memberof
|
|
198
|
+
* @memberof AddressApi
|
|
199
199
|
*/
|
|
200
200
|
'region': string | null;
|
|
201
201
|
}
|
|
@@ -245,67 +245,67 @@ interface AddressCreate {
|
|
|
245
245
|
/**
|
|
246
246
|
*
|
|
247
247
|
* @export
|
|
248
|
-
* @interface
|
|
248
|
+
* @interface AddressItemApi
|
|
249
249
|
*/
|
|
250
|
-
interface
|
|
250
|
+
interface AddressItemApi {
|
|
251
251
|
/**
|
|
252
252
|
*
|
|
253
253
|
* @type {string}
|
|
254
|
-
* @memberof
|
|
254
|
+
* @memberof AddressItemApi
|
|
255
255
|
*/
|
|
256
256
|
'street1': string | null;
|
|
257
257
|
/**
|
|
258
258
|
*
|
|
259
259
|
* @type {string}
|
|
260
|
-
* @memberof
|
|
260
|
+
* @memberof AddressItemApi
|
|
261
261
|
*/
|
|
262
262
|
'street2'?: string | null;
|
|
263
263
|
/**
|
|
264
264
|
*
|
|
265
265
|
* @type {string}
|
|
266
|
-
* @memberof
|
|
266
|
+
* @memberof AddressItemApi
|
|
267
267
|
*/
|
|
268
268
|
'country': string | null;
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
271
|
* @type {string}
|
|
272
|
-
* @memberof
|
|
272
|
+
* @memberof AddressItemApi
|
|
273
273
|
*/
|
|
274
274
|
'locality': string | null;
|
|
275
275
|
/**
|
|
276
276
|
*
|
|
277
277
|
* @type {string}
|
|
278
|
-
* @memberof
|
|
278
|
+
* @memberof AddressItemApi
|
|
279
279
|
*/
|
|
280
280
|
'postalCode': string | null;
|
|
281
281
|
/**
|
|
282
282
|
*
|
|
283
283
|
* @type {string}
|
|
284
|
-
* @memberof
|
|
284
|
+
* @memberof AddressItemApi
|
|
285
285
|
*/
|
|
286
286
|
'region': string | null;
|
|
287
287
|
/**
|
|
288
288
|
*
|
|
289
289
|
* @type {string}
|
|
290
|
-
* @memberof
|
|
290
|
+
* @memberof AddressItemApi
|
|
291
291
|
*/
|
|
292
292
|
'addressId': string;
|
|
293
293
|
/**
|
|
294
294
|
*
|
|
295
295
|
* @type {DataSource}
|
|
296
|
-
* @memberof
|
|
296
|
+
* @memberof AddressItemApi
|
|
297
297
|
*/
|
|
298
298
|
'dataSource': DataSource;
|
|
299
299
|
/**
|
|
300
300
|
*
|
|
301
301
|
* @type {string}
|
|
302
|
-
* @memberof
|
|
302
|
+
* @memberof AddressItemApi
|
|
303
303
|
*/
|
|
304
304
|
'deletedAt'?: string | null;
|
|
305
305
|
/**
|
|
306
306
|
*
|
|
307
307
|
* @type {boolean}
|
|
308
|
-
* @memberof
|
|
308
|
+
* @memberof AddressItemApi
|
|
309
309
|
*/
|
|
310
310
|
'isPrimary': boolean;
|
|
311
311
|
}
|
|
@@ -355,86 +355,86 @@ interface AddressUpdate {
|
|
|
355
355
|
/**
|
|
356
356
|
*
|
|
357
357
|
* @export
|
|
358
|
-
* @interface
|
|
358
|
+
* @interface AddressesCreate
|
|
359
359
|
*/
|
|
360
|
-
interface
|
|
360
|
+
interface AddressesCreate {
|
|
361
361
|
/**
|
|
362
362
|
*
|
|
363
363
|
* @type {string}
|
|
364
|
-
* @memberof
|
|
364
|
+
* @memberof AddressesCreate
|
|
365
365
|
*/
|
|
366
366
|
'street1': string | null;
|
|
367
367
|
/**
|
|
368
368
|
*
|
|
369
369
|
* @type {string}
|
|
370
|
-
* @memberof
|
|
370
|
+
* @memberof AddressesCreate
|
|
371
371
|
*/
|
|
372
372
|
'street2'?: string | null;
|
|
373
373
|
/**
|
|
374
374
|
*
|
|
375
375
|
* @type {string}
|
|
376
|
-
* @memberof
|
|
376
|
+
* @memberof AddressesCreate
|
|
377
377
|
*/
|
|
378
378
|
'country': string | null;
|
|
379
379
|
/**
|
|
380
380
|
*
|
|
381
381
|
* @type {string}
|
|
382
|
-
* @memberof
|
|
382
|
+
* @memberof AddressesCreate
|
|
383
383
|
*/
|
|
384
384
|
'locality': string | null;
|
|
385
385
|
/**
|
|
386
386
|
*
|
|
387
387
|
* @type {string}
|
|
388
|
-
* @memberof
|
|
388
|
+
* @memberof AddressesCreate
|
|
389
389
|
*/
|
|
390
390
|
'postalCode': string | null;
|
|
391
391
|
/**
|
|
392
392
|
*
|
|
393
393
|
* @type {string}
|
|
394
|
-
* @memberof
|
|
394
|
+
* @memberof AddressesCreate
|
|
395
395
|
*/
|
|
396
396
|
'region': string | null;
|
|
397
397
|
}
|
|
398
398
|
/**
|
|
399
399
|
*
|
|
400
400
|
* @export
|
|
401
|
-
* @interface
|
|
401
|
+
* @interface AddressesUpdate
|
|
402
402
|
*/
|
|
403
|
-
interface
|
|
403
|
+
interface AddressesUpdate {
|
|
404
404
|
/**
|
|
405
405
|
*
|
|
406
406
|
* @type {string}
|
|
407
|
-
* @memberof
|
|
407
|
+
* @memberof AddressesUpdate
|
|
408
408
|
*/
|
|
409
409
|
'street1': string | null;
|
|
410
410
|
/**
|
|
411
411
|
*
|
|
412
412
|
* @type {string}
|
|
413
|
-
* @memberof
|
|
413
|
+
* @memberof AddressesUpdate
|
|
414
414
|
*/
|
|
415
415
|
'street2'?: string | null;
|
|
416
416
|
/**
|
|
417
417
|
*
|
|
418
418
|
* @type {string}
|
|
419
|
-
* @memberof
|
|
419
|
+
* @memberof AddressesUpdate
|
|
420
420
|
*/
|
|
421
421
|
'country': string | null;
|
|
422
422
|
/**
|
|
423
423
|
*
|
|
424
424
|
* @type {string}
|
|
425
|
-
* @memberof
|
|
425
|
+
* @memberof AddressesUpdate
|
|
426
426
|
*/
|
|
427
427
|
'locality': string | null;
|
|
428
428
|
/**
|
|
429
429
|
*
|
|
430
430
|
* @type {string}
|
|
431
|
-
* @memberof
|
|
431
|
+
* @memberof AddressesUpdate
|
|
432
432
|
*/
|
|
433
433
|
'postalCode': string | null;
|
|
434
434
|
/**
|
|
435
435
|
*
|
|
436
436
|
* @type {string}
|
|
437
|
-
* @memberof
|
|
437
|
+
* @memberof AddressesUpdate
|
|
438
438
|
*/
|
|
439
439
|
'region': string | null;
|
|
440
440
|
}
|
|
@@ -478,27 +478,27 @@ interface ContactCreate {
|
|
|
478
478
|
/**
|
|
479
479
|
*
|
|
480
480
|
* @export
|
|
481
|
-
* @interface
|
|
481
|
+
* @interface ContactTypeDataApi
|
|
482
482
|
*/
|
|
483
|
-
interface
|
|
483
|
+
interface ContactTypeDataApi {
|
|
484
484
|
/**
|
|
485
485
|
*
|
|
486
|
-
* @type {
|
|
487
|
-
* @memberof
|
|
486
|
+
* @type {GuestDataApi}
|
|
487
|
+
* @memberof ContactTypeDataApi
|
|
488
488
|
*/
|
|
489
|
-
'guest'?:
|
|
489
|
+
'guest'?: GuestDataApi | null;
|
|
490
490
|
/**
|
|
491
491
|
*
|
|
492
|
-
* @type {
|
|
493
|
-
* @memberof
|
|
492
|
+
* @type {OwnerDataApi}
|
|
493
|
+
* @memberof ContactTypeDataApi
|
|
494
494
|
*/
|
|
495
|
-
'owner'?:
|
|
495
|
+
'owner'?: OwnerDataApi | null;
|
|
496
496
|
/**
|
|
497
497
|
*
|
|
498
|
-
* @type {
|
|
499
|
-
* @memberof
|
|
498
|
+
* @type {LeadDataApi}
|
|
499
|
+
* @memberof ContactTypeDataApi
|
|
500
500
|
*/
|
|
501
|
-
'lead'?:
|
|
501
|
+
'lead'?: LeadDataApi | null;
|
|
502
502
|
}
|
|
503
503
|
/**
|
|
504
504
|
*
|
|
@@ -558,702 +558,702 @@ interface ContactUpdate {
|
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
560
|
* @export
|
|
561
|
-
* @interface
|
|
561
|
+
* @interface Contacts
|
|
562
562
|
*/
|
|
563
|
-
interface
|
|
563
|
+
interface Contacts {
|
|
564
564
|
/**
|
|
565
565
|
*
|
|
566
566
|
* @type {string}
|
|
567
|
-
* @memberof
|
|
567
|
+
* @memberof Contacts
|
|
568
568
|
*/
|
|
569
569
|
'contactId': string;
|
|
570
570
|
/**
|
|
571
571
|
*
|
|
572
572
|
* @type {string}
|
|
573
|
-
* @memberof
|
|
573
|
+
* @memberof Contacts
|
|
574
574
|
*/
|
|
575
575
|
'company'?: string | null;
|
|
576
576
|
/**
|
|
577
577
|
*
|
|
578
578
|
* @type {string}
|
|
579
|
-
* @memberof
|
|
579
|
+
* @memberof Contacts
|
|
580
580
|
*/
|
|
581
|
-
'firstName': string;
|
|
581
|
+
'firstName': string | null;
|
|
582
582
|
/**
|
|
583
583
|
*
|
|
584
584
|
* @type {string}
|
|
585
|
-
* @memberof
|
|
585
|
+
* @memberof Contacts
|
|
586
586
|
*/
|
|
587
|
-
'lastName': string;
|
|
587
|
+
'lastName': string | null;
|
|
588
588
|
/**
|
|
589
589
|
*
|
|
590
590
|
* @type {string}
|
|
591
|
-
* @memberof
|
|
591
|
+
* @memberof Contacts
|
|
592
592
|
*/
|
|
593
|
-
'fullName'?: string;
|
|
593
|
+
'fullName'?: string | null;
|
|
594
594
|
/**
|
|
595
595
|
*
|
|
596
596
|
* @type {string}
|
|
597
|
-
* @memberof
|
|
597
|
+
* @memberof Contacts
|
|
598
598
|
*/
|
|
599
599
|
'title'?: string | null;
|
|
600
600
|
/**
|
|
601
601
|
*
|
|
602
602
|
* @type {string}
|
|
603
|
-
* @memberof
|
|
603
|
+
* @memberof Contacts
|
|
604
604
|
*/
|
|
605
605
|
'local'?: string;
|
|
606
606
|
/**
|
|
607
607
|
*
|
|
608
608
|
* @type {string}
|
|
609
|
-
* @memberof
|
|
609
|
+
* @memberof Contacts
|
|
610
610
|
*/
|
|
611
611
|
'updatedAt'?: string;
|
|
612
612
|
/**
|
|
613
613
|
*
|
|
614
614
|
* @type {string}
|
|
615
|
-
* @memberof
|
|
615
|
+
* @memberof Contacts
|
|
616
616
|
*/
|
|
617
617
|
'createdAt': string;
|
|
618
618
|
/**
|
|
619
619
|
*
|
|
620
620
|
* @type {string}
|
|
621
|
-
* @memberof
|
|
621
|
+
* @memberof Contacts
|
|
622
622
|
*/
|
|
623
623
|
'deletedAt'?: string | null;
|
|
624
624
|
/**
|
|
625
625
|
*
|
|
626
626
|
* @type {string}
|
|
627
|
-
* @memberof
|
|
627
|
+
* @memberof Contacts
|
|
628
628
|
*/
|
|
629
629
|
'createdBy': string;
|
|
630
630
|
/**
|
|
631
631
|
*
|
|
632
632
|
* @type {string}
|
|
633
|
-
* @memberof
|
|
633
|
+
* @memberof Contacts
|
|
634
634
|
*/
|
|
635
635
|
'updatedBy': string;
|
|
636
636
|
/**
|
|
637
637
|
*
|
|
638
638
|
* @type {string}
|
|
639
|
-
* @memberof
|
|
639
|
+
* @memberof Contacts
|
|
640
640
|
*/
|
|
641
641
|
'profilePicUrlRegular'?: string | null;
|
|
642
642
|
/**
|
|
643
643
|
*
|
|
644
644
|
* @type {string}
|
|
645
|
-
* @memberof
|
|
645
|
+
* @memberof Contacts
|
|
646
646
|
*/
|
|
647
647
|
'profilePicUrlLarge'?: string | null;
|
|
648
648
|
/**
|
|
649
649
|
*
|
|
650
650
|
* @type {string}
|
|
651
|
-
* @memberof
|
|
651
|
+
* @memberof Contacts
|
|
652
652
|
*/
|
|
653
653
|
'profilePicUrlThumbnail'?: string | null;
|
|
654
654
|
/**
|
|
655
655
|
*
|
|
656
656
|
* @type {boolean}
|
|
657
|
-
* @memberof
|
|
657
|
+
* @memberof Contacts
|
|
658
658
|
*/
|
|
659
659
|
'smsMarketingIsSubscribed'?: boolean;
|
|
660
660
|
/**
|
|
661
661
|
*
|
|
662
662
|
* @type {string}
|
|
663
|
-
* @memberof
|
|
663
|
+
* @memberof Contacts
|
|
664
664
|
*/
|
|
665
665
|
'smsMarketingConsentType'?: string | null;
|
|
666
666
|
/**
|
|
667
667
|
*
|
|
668
668
|
* @type {string}
|
|
669
|
-
* @memberof
|
|
669
|
+
* @memberof Contacts
|
|
670
670
|
*/
|
|
671
671
|
'smsMarketingUpdatedAt'?: string | null;
|
|
672
672
|
/**
|
|
673
673
|
*
|
|
674
674
|
* @type {boolean}
|
|
675
|
-
* @memberof
|
|
675
|
+
* @memberof Contacts
|
|
676
676
|
*/
|
|
677
677
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
678
678
|
/**
|
|
679
679
|
*
|
|
680
680
|
* @type {string}
|
|
681
|
-
* @memberof
|
|
681
|
+
* @memberof Contacts
|
|
682
682
|
*/
|
|
683
683
|
'smsTransactionalConsentType'?: string | null;
|
|
684
684
|
/**
|
|
685
685
|
*
|
|
686
686
|
* @type {string}
|
|
687
|
-
* @memberof
|
|
687
|
+
* @memberof Contacts
|
|
688
688
|
*/
|
|
689
689
|
'primaryEmail'?: string | null;
|
|
690
690
|
/**
|
|
691
691
|
*
|
|
692
|
-
* @type {Array<
|
|
693
|
-
* @memberof
|
|
692
|
+
* @type {Array<EmailApi>}
|
|
693
|
+
* @memberof Contacts
|
|
694
694
|
*/
|
|
695
|
-
'emails'?: Array<
|
|
695
|
+
'emails'?: Array<EmailApi>;
|
|
696
696
|
/**
|
|
697
697
|
*
|
|
698
698
|
* @type {string}
|
|
699
|
-
* @memberof
|
|
699
|
+
* @memberof Contacts
|
|
700
700
|
*/
|
|
701
701
|
'primaryPhone'?: string | null;
|
|
702
702
|
/**
|
|
703
703
|
*
|
|
704
|
-
* @type {Array<
|
|
705
|
-
* @memberof
|
|
704
|
+
* @type {Array<PhoneApi>}
|
|
705
|
+
* @memberof Contacts
|
|
706
706
|
*/
|
|
707
|
-
'phones'?: Array<
|
|
707
|
+
'phones'?: Array<PhoneApi>;
|
|
708
708
|
/**
|
|
709
709
|
*
|
|
710
710
|
* @type {Array<string>}
|
|
711
|
-
* @memberof
|
|
711
|
+
* @memberof Contacts
|
|
712
712
|
*/
|
|
713
713
|
'tags'?: Array<string>;
|
|
714
714
|
/**
|
|
715
715
|
*
|
|
716
|
-
* @type {
|
|
717
|
-
* @memberof
|
|
716
|
+
* @type {AddressApi}
|
|
717
|
+
* @memberof Contacts
|
|
718
718
|
*/
|
|
719
|
-
'address'?:
|
|
719
|
+
'address'?: AddressApi | null;
|
|
720
720
|
/**
|
|
721
721
|
*
|
|
722
|
-
* @type {Array<
|
|
723
|
-
* @memberof
|
|
722
|
+
* @type {Array<AddressItemApi>}
|
|
723
|
+
* @memberof Contacts
|
|
724
724
|
*/
|
|
725
|
-
'addresses'?: Array<
|
|
725
|
+
'addresses'?: Array<AddressItemApi>;
|
|
726
726
|
/**
|
|
727
727
|
*
|
|
728
|
-
* @type {
|
|
729
|
-
* @memberof
|
|
728
|
+
* @type {ContactTypeDataApi}
|
|
729
|
+
* @memberof Contacts
|
|
730
730
|
*/
|
|
731
|
-
'contactTypeData'?:
|
|
731
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
732
732
|
}
|
|
733
733
|
/**
|
|
734
734
|
*
|
|
735
735
|
* @export
|
|
736
|
-
* @interface
|
|
736
|
+
* @interface ContactsCreate
|
|
737
737
|
*/
|
|
738
|
-
interface
|
|
738
|
+
interface ContactsCreate {
|
|
739
739
|
/**
|
|
740
740
|
*
|
|
741
741
|
* @type {string}
|
|
742
|
-
* @memberof
|
|
742
|
+
* @memberof ContactsCreate
|
|
743
743
|
*/
|
|
744
744
|
'contactId': string;
|
|
745
745
|
/**
|
|
746
746
|
*
|
|
747
747
|
* @type {string}
|
|
748
|
-
* @memberof
|
|
748
|
+
* @memberof ContactsCreate
|
|
749
749
|
*/
|
|
750
750
|
'company'?: string | null;
|
|
751
751
|
/**
|
|
752
752
|
*
|
|
753
753
|
* @type {string}
|
|
754
|
-
* @memberof
|
|
754
|
+
* @memberof ContactsCreate
|
|
755
755
|
*/
|
|
756
|
-
'firstName': string;
|
|
756
|
+
'firstName': string | null;
|
|
757
757
|
/**
|
|
758
758
|
*
|
|
759
759
|
* @type {string}
|
|
760
|
-
* @memberof
|
|
760
|
+
* @memberof ContactsCreate
|
|
761
761
|
*/
|
|
762
|
-
'lastName': string;
|
|
762
|
+
'lastName': string | null;
|
|
763
763
|
/**
|
|
764
764
|
*
|
|
765
765
|
* @type {string}
|
|
766
|
-
* @memberof
|
|
766
|
+
* @memberof ContactsCreate
|
|
767
767
|
*/
|
|
768
|
-
'fullName'?: string;
|
|
768
|
+
'fullName'?: string | null;
|
|
769
769
|
/**
|
|
770
770
|
*
|
|
771
771
|
* @type {string}
|
|
772
|
-
* @memberof
|
|
772
|
+
* @memberof ContactsCreate
|
|
773
773
|
*/
|
|
774
774
|
'title'?: string | null;
|
|
775
775
|
/**
|
|
776
776
|
*
|
|
777
777
|
* @type {string}
|
|
778
|
-
* @memberof
|
|
778
|
+
* @memberof ContactsCreate
|
|
779
779
|
*/
|
|
780
780
|
'local'?: string;
|
|
781
781
|
/**
|
|
782
782
|
*
|
|
783
783
|
* @type {string}
|
|
784
|
-
* @memberof
|
|
784
|
+
* @memberof ContactsCreate
|
|
785
785
|
*/
|
|
786
786
|
'updatedAt'?: string;
|
|
787
787
|
/**
|
|
788
788
|
*
|
|
789
789
|
* @type {string}
|
|
790
|
-
* @memberof
|
|
790
|
+
* @memberof ContactsCreate
|
|
791
791
|
*/
|
|
792
792
|
'createdAt': string;
|
|
793
793
|
/**
|
|
794
794
|
*
|
|
795
795
|
* @type {string}
|
|
796
|
-
* @memberof
|
|
796
|
+
* @memberof ContactsCreate
|
|
797
797
|
*/
|
|
798
798
|
'deletedAt'?: string | null;
|
|
799
799
|
/**
|
|
800
800
|
*
|
|
801
801
|
* @type {string}
|
|
802
|
-
* @memberof
|
|
802
|
+
* @memberof ContactsCreate
|
|
803
803
|
*/
|
|
804
804
|
'createdBy': string;
|
|
805
805
|
/**
|
|
806
806
|
*
|
|
807
807
|
* @type {string}
|
|
808
|
-
* @memberof
|
|
808
|
+
* @memberof ContactsCreate
|
|
809
809
|
*/
|
|
810
810
|
'updatedBy': string;
|
|
811
811
|
/**
|
|
812
812
|
*
|
|
813
813
|
* @type {string}
|
|
814
|
-
* @memberof
|
|
814
|
+
* @memberof ContactsCreate
|
|
815
815
|
*/
|
|
816
816
|
'profilePicUrlRegular'?: string | null;
|
|
817
817
|
/**
|
|
818
818
|
*
|
|
819
819
|
* @type {string}
|
|
820
|
-
* @memberof
|
|
820
|
+
* @memberof ContactsCreate
|
|
821
821
|
*/
|
|
822
822
|
'profilePicUrlLarge'?: string | null;
|
|
823
823
|
/**
|
|
824
824
|
*
|
|
825
825
|
* @type {string}
|
|
826
|
-
* @memberof
|
|
826
|
+
* @memberof ContactsCreate
|
|
827
827
|
*/
|
|
828
828
|
'profilePicUrlThumbnail'?: string | null;
|
|
829
829
|
/**
|
|
830
830
|
*
|
|
831
831
|
* @type {boolean}
|
|
832
|
-
* @memberof
|
|
832
|
+
* @memberof ContactsCreate
|
|
833
833
|
*/
|
|
834
834
|
'smsMarketingIsSubscribed'?: boolean;
|
|
835
835
|
/**
|
|
836
836
|
*
|
|
837
837
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
838
|
+
* @memberof ContactsCreate
|
|
839
839
|
*/
|
|
840
840
|
'smsMarketingConsentType'?: string | null;
|
|
841
841
|
/**
|
|
842
842
|
*
|
|
843
843
|
* @type {string}
|
|
844
|
-
* @memberof
|
|
844
|
+
* @memberof ContactsCreate
|
|
845
845
|
*/
|
|
846
846
|
'smsMarketingUpdatedAt'?: string | null;
|
|
847
847
|
/**
|
|
848
848
|
*
|
|
849
849
|
* @type {boolean}
|
|
850
|
-
* @memberof
|
|
850
|
+
* @memberof ContactsCreate
|
|
851
851
|
*/
|
|
852
852
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
853
853
|
/**
|
|
854
854
|
*
|
|
855
855
|
* @type {string}
|
|
856
|
-
* @memberof
|
|
856
|
+
* @memberof ContactsCreate
|
|
857
857
|
*/
|
|
858
858
|
'smsTransactionalConsentType'?: string | null;
|
|
859
859
|
/**
|
|
860
860
|
*
|
|
861
861
|
* @type {string}
|
|
862
|
-
* @memberof
|
|
862
|
+
* @memberof ContactsCreate
|
|
863
863
|
*/
|
|
864
864
|
'primaryEmail'?: string | null;
|
|
865
865
|
/**
|
|
866
866
|
*
|
|
867
|
-
* @type {Array<
|
|
868
|
-
* @memberof
|
|
867
|
+
* @type {Array<EmailApi>}
|
|
868
|
+
* @memberof ContactsCreate
|
|
869
869
|
*/
|
|
870
|
-
'emails'?: Array<
|
|
870
|
+
'emails'?: Array<EmailApi>;
|
|
871
871
|
/**
|
|
872
872
|
*
|
|
873
873
|
* @type {string}
|
|
874
|
-
* @memberof
|
|
874
|
+
* @memberof ContactsCreate
|
|
875
875
|
*/
|
|
876
876
|
'primaryPhone'?: string | null;
|
|
877
877
|
/**
|
|
878
878
|
*
|
|
879
|
-
* @type {Array<
|
|
880
|
-
* @memberof
|
|
879
|
+
* @type {Array<PhoneApi>}
|
|
880
|
+
* @memberof ContactsCreate
|
|
881
881
|
*/
|
|
882
|
-
'phones'?: Array<
|
|
882
|
+
'phones'?: Array<PhoneApi>;
|
|
883
883
|
/**
|
|
884
884
|
*
|
|
885
885
|
* @type {Array<string>}
|
|
886
|
-
* @memberof
|
|
886
|
+
* @memberof ContactsCreate
|
|
887
887
|
*/
|
|
888
888
|
'tags'?: Array<string>;
|
|
889
889
|
/**
|
|
890
890
|
*
|
|
891
|
-
* @type {
|
|
892
|
-
* @memberof
|
|
891
|
+
* @type {AddressApi}
|
|
892
|
+
* @memberof ContactsCreate
|
|
893
893
|
*/
|
|
894
|
-
'address'?:
|
|
894
|
+
'address'?: AddressApi | null;
|
|
895
895
|
/**
|
|
896
896
|
*
|
|
897
|
-
* @type {Array<
|
|
898
|
-
* @memberof
|
|
897
|
+
* @type {Array<AddressItemApi>}
|
|
898
|
+
* @memberof ContactsCreate
|
|
899
899
|
*/
|
|
900
|
-
'addresses'?: Array<
|
|
900
|
+
'addresses'?: Array<AddressItemApi>;
|
|
901
901
|
/**
|
|
902
902
|
*
|
|
903
|
-
* @type {
|
|
904
|
-
* @memberof
|
|
903
|
+
* @type {ContactTypeDataApi}
|
|
904
|
+
* @memberof ContactsCreate
|
|
905
905
|
*/
|
|
906
|
-
'contactTypeData'?:
|
|
906
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
907
907
|
}
|
|
908
908
|
/**
|
|
909
909
|
*
|
|
910
910
|
* @export
|
|
911
|
-
* @interface
|
|
911
|
+
* @interface ContactsGet
|
|
912
912
|
*/
|
|
913
|
-
interface
|
|
913
|
+
interface ContactsGet {
|
|
914
914
|
/**
|
|
915
915
|
*
|
|
916
916
|
* @type {string}
|
|
917
|
-
* @memberof
|
|
917
|
+
* @memberof ContactsGet
|
|
918
918
|
*/
|
|
919
919
|
'contactId': string;
|
|
920
920
|
/**
|
|
921
921
|
*
|
|
922
922
|
* @type {string}
|
|
923
|
-
* @memberof
|
|
923
|
+
* @memberof ContactsGet
|
|
924
924
|
*/
|
|
925
925
|
'company'?: string | null;
|
|
926
926
|
/**
|
|
927
927
|
*
|
|
928
928
|
* @type {string}
|
|
929
|
-
* @memberof
|
|
929
|
+
* @memberof ContactsGet
|
|
930
930
|
*/
|
|
931
|
-
'firstName': string;
|
|
931
|
+
'firstName': string | null;
|
|
932
932
|
/**
|
|
933
933
|
*
|
|
934
934
|
* @type {string}
|
|
935
|
-
* @memberof
|
|
935
|
+
* @memberof ContactsGet
|
|
936
936
|
*/
|
|
937
|
-
'lastName': string;
|
|
937
|
+
'lastName': string | null;
|
|
938
938
|
/**
|
|
939
939
|
*
|
|
940
940
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
941
|
+
* @memberof ContactsGet
|
|
942
942
|
*/
|
|
943
|
-
'fullName'?: string;
|
|
943
|
+
'fullName'?: string | null;
|
|
944
944
|
/**
|
|
945
945
|
*
|
|
946
946
|
* @type {string}
|
|
947
|
-
* @memberof
|
|
947
|
+
* @memberof ContactsGet
|
|
948
948
|
*/
|
|
949
949
|
'title'?: string | null;
|
|
950
950
|
/**
|
|
951
951
|
*
|
|
952
952
|
* @type {string}
|
|
953
|
-
* @memberof
|
|
953
|
+
* @memberof ContactsGet
|
|
954
954
|
*/
|
|
955
955
|
'local'?: string;
|
|
956
956
|
/**
|
|
957
957
|
*
|
|
958
958
|
* @type {string}
|
|
959
|
-
* @memberof
|
|
959
|
+
* @memberof ContactsGet
|
|
960
960
|
*/
|
|
961
961
|
'updatedAt'?: string;
|
|
962
962
|
/**
|
|
963
963
|
*
|
|
964
964
|
* @type {string}
|
|
965
|
-
* @memberof
|
|
965
|
+
* @memberof ContactsGet
|
|
966
966
|
*/
|
|
967
967
|
'createdAt': string;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
970
|
* @type {string}
|
|
971
|
-
* @memberof
|
|
971
|
+
* @memberof ContactsGet
|
|
972
972
|
*/
|
|
973
973
|
'deletedAt'?: string | null;
|
|
974
974
|
/**
|
|
975
975
|
*
|
|
976
976
|
* @type {string}
|
|
977
|
-
* @memberof
|
|
977
|
+
* @memberof ContactsGet
|
|
978
978
|
*/
|
|
979
979
|
'createdBy': string;
|
|
980
980
|
/**
|
|
981
981
|
*
|
|
982
982
|
* @type {string}
|
|
983
|
-
* @memberof
|
|
983
|
+
* @memberof ContactsGet
|
|
984
984
|
*/
|
|
985
985
|
'updatedBy': string;
|
|
986
986
|
/**
|
|
987
987
|
*
|
|
988
988
|
* @type {string}
|
|
989
|
-
* @memberof
|
|
989
|
+
* @memberof ContactsGet
|
|
990
990
|
*/
|
|
991
991
|
'profilePicUrlRegular'?: string | null;
|
|
992
992
|
/**
|
|
993
993
|
*
|
|
994
994
|
* @type {string}
|
|
995
|
-
* @memberof
|
|
995
|
+
* @memberof ContactsGet
|
|
996
996
|
*/
|
|
997
997
|
'profilePicUrlLarge'?: string | null;
|
|
998
998
|
/**
|
|
999
999
|
*
|
|
1000
1000
|
* @type {string}
|
|
1001
|
-
* @memberof
|
|
1001
|
+
* @memberof ContactsGet
|
|
1002
1002
|
*/
|
|
1003
1003
|
'profilePicUrlThumbnail'?: string | null;
|
|
1004
1004
|
/**
|
|
1005
1005
|
*
|
|
1006
1006
|
* @type {boolean}
|
|
1007
|
-
* @memberof
|
|
1007
|
+
* @memberof ContactsGet
|
|
1008
1008
|
*/
|
|
1009
1009
|
'smsMarketingIsSubscribed'?: boolean;
|
|
1010
1010
|
/**
|
|
1011
1011
|
*
|
|
1012
1012
|
* @type {string}
|
|
1013
|
-
* @memberof
|
|
1013
|
+
* @memberof ContactsGet
|
|
1014
1014
|
*/
|
|
1015
1015
|
'smsMarketingConsentType'?: string | null;
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
1018
|
* @type {string}
|
|
1019
|
-
* @memberof
|
|
1019
|
+
* @memberof ContactsGet
|
|
1020
1020
|
*/
|
|
1021
1021
|
'smsMarketingUpdatedAt'?: string | null;
|
|
1022
1022
|
/**
|
|
1023
1023
|
*
|
|
1024
1024
|
* @type {boolean}
|
|
1025
|
-
* @memberof
|
|
1025
|
+
* @memberof ContactsGet
|
|
1026
1026
|
*/
|
|
1027
1027
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
1028
1028
|
/**
|
|
1029
1029
|
*
|
|
1030
1030
|
* @type {string}
|
|
1031
|
-
* @memberof
|
|
1031
|
+
* @memberof ContactsGet
|
|
1032
1032
|
*/
|
|
1033
1033
|
'smsTransactionalConsentType'?: string | null;
|
|
1034
1034
|
/**
|
|
1035
1035
|
*
|
|
1036
1036
|
* @type {string}
|
|
1037
|
-
* @memberof
|
|
1037
|
+
* @memberof ContactsGet
|
|
1038
1038
|
*/
|
|
1039
1039
|
'primaryEmail'?: string | null;
|
|
1040
1040
|
/**
|
|
1041
1041
|
*
|
|
1042
|
-
* @type {Array<
|
|
1043
|
-
* @memberof
|
|
1042
|
+
* @type {Array<EmailApi>}
|
|
1043
|
+
* @memberof ContactsGet
|
|
1044
1044
|
*/
|
|
1045
|
-
'emails'?: Array<
|
|
1045
|
+
'emails'?: Array<EmailApi>;
|
|
1046
1046
|
/**
|
|
1047
1047
|
*
|
|
1048
1048
|
* @type {string}
|
|
1049
|
-
* @memberof
|
|
1049
|
+
* @memberof ContactsGet
|
|
1050
1050
|
*/
|
|
1051
1051
|
'primaryPhone'?: string | null;
|
|
1052
1052
|
/**
|
|
1053
1053
|
*
|
|
1054
|
-
* @type {Array<
|
|
1055
|
-
* @memberof
|
|
1054
|
+
* @type {Array<PhoneApi>}
|
|
1055
|
+
* @memberof ContactsGet
|
|
1056
1056
|
*/
|
|
1057
|
-
'phones'?: Array<
|
|
1057
|
+
'phones'?: Array<PhoneApi>;
|
|
1058
1058
|
/**
|
|
1059
1059
|
*
|
|
1060
1060
|
* @type {Array<string>}
|
|
1061
|
-
* @memberof
|
|
1061
|
+
* @memberof ContactsGet
|
|
1062
1062
|
*/
|
|
1063
1063
|
'tags'?: Array<string>;
|
|
1064
1064
|
/**
|
|
1065
1065
|
*
|
|
1066
|
-
* @type {
|
|
1067
|
-
* @memberof
|
|
1066
|
+
* @type {AddressApi}
|
|
1067
|
+
* @memberof ContactsGet
|
|
1068
1068
|
*/
|
|
1069
|
-
'address'?:
|
|
1069
|
+
'address'?: AddressApi | null;
|
|
1070
1070
|
/**
|
|
1071
1071
|
*
|
|
1072
|
-
* @type {Array<
|
|
1073
|
-
* @memberof
|
|
1072
|
+
* @type {Array<AddressItemApi>}
|
|
1073
|
+
* @memberof ContactsGet
|
|
1074
1074
|
*/
|
|
1075
|
-
'addresses'?: Array<
|
|
1075
|
+
'addresses'?: Array<AddressItemApi>;
|
|
1076
1076
|
/**
|
|
1077
1077
|
*
|
|
1078
|
-
* @type {
|
|
1079
|
-
* @memberof
|
|
1078
|
+
* @type {ContactTypeDataApi}
|
|
1079
|
+
* @memberof ContactsGet
|
|
1080
1080
|
*/
|
|
1081
|
-
'contactTypeData'?:
|
|
1081
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
1082
1082
|
}
|
|
1083
1083
|
/**
|
|
1084
1084
|
*
|
|
1085
1085
|
* @export
|
|
1086
|
-
* @interface
|
|
1086
|
+
* @interface ContactsUpdate
|
|
1087
1087
|
*/
|
|
1088
|
-
interface
|
|
1088
|
+
interface ContactsUpdate {
|
|
1089
1089
|
/**
|
|
1090
1090
|
*
|
|
1091
1091
|
* @type {string}
|
|
1092
|
-
* @memberof
|
|
1092
|
+
* @memberof ContactsUpdate
|
|
1093
1093
|
*/
|
|
1094
1094
|
'contactId': string;
|
|
1095
1095
|
/**
|
|
1096
1096
|
*
|
|
1097
1097
|
* @type {string}
|
|
1098
|
-
* @memberof
|
|
1098
|
+
* @memberof ContactsUpdate
|
|
1099
1099
|
*/
|
|
1100
1100
|
'company'?: string | null;
|
|
1101
1101
|
/**
|
|
1102
1102
|
*
|
|
1103
1103
|
* @type {string}
|
|
1104
|
-
* @memberof
|
|
1104
|
+
* @memberof ContactsUpdate
|
|
1105
1105
|
*/
|
|
1106
|
-
'firstName': string;
|
|
1106
|
+
'firstName': string | null;
|
|
1107
1107
|
/**
|
|
1108
1108
|
*
|
|
1109
1109
|
* @type {string}
|
|
1110
|
-
* @memberof
|
|
1110
|
+
* @memberof ContactsUpdate
|
|
1111
1111
|
*/
|
|
1112
|
-
'lastName': string;
|
|
1112
|
+
'lastName': string | null;
|
|
1113
1113
|
/**
|
|
1114
1114
|
*
|
|
1115
1115
|
* @type {string}
|
|
1116
|
-
* @memberof
|
|
1116
|
+
* @memberof ContactsUpdate
|
|
1117
1117
|
*/
|
|
1118
|
-
'fullName'?: string;
|
|
1118
|
+
'fullName'?: string | null;
|
|
1119
1119
|
/**
|
|
1120
1120
|
*
|
|
1121
1121
|
* @type {string}
|
|
1122
|
-
* @memberof
|
|
1122
|
+
* @memberof ContactsUpdate
|
|
1123
1123
|
*/
|
|
1124
1124
|
'title'?: string | null;
|
|
1125
1125
|
/**
|
|
1126
1126
|
*
|
|
1127
1127
|
* @type {string}
|
|
1128
|
-
* @memberof
|
|
1128
|
+
* @memberof ContactsUpdate
|
|
1129
1129
|
*/
|
|
1130
1130
|
'local'?: string;
|
|
1131
1131
|
/**
|
|
1132
1132
|
*
|
|
1133
1133
|
* @type {string}
|
|
1134
|
-
* @memberof
|
|
1134
|
+
* @memberof ContactsUpdate
|
|
1135
1135
|
*/
|
|
1136
1136
|
'updatedAt'?: string;
|
|
1137
1137
|
/**
|
|
1138
1138
|
*
|
|
1139
1139
|
* @type {string}
|
|
1140
|
-
* @memberof
|
|
1140
|
+
* @memberof ContactsUpdate
|
|
1141
1141
|
*/
|
|
1142
1142
|
'createdAt': string;
|
|
1143
1143
|
/**
|
|
1144
1144
|
*
|
|
1145
1145
|
* @type {string}
|
|
1146
|
-
* @memberof
|
|
1146
|
+
* @memberof ContactsUpdate
|
|
1147
1147
|
*/
|
|
1148
1148
|
'deletedAt'?: string | null;
|
|
1149
1149
|
/**
|
|
1150
1150
|
*
|
|
1151
1151
|
* @type {string}
|
|
1152
|
-
* @memberof
|
|
1152
|
+
* @memberof ContactsUpdate
|
|
1153
1153
|
*/
|
|
1154
1154
|
'createdBy': string;
|
|
1155
1155
|
/**
|
|
1156
1156
|
*
|
|
1157
1157
|
* @type {string}
|
|
1158
|
-
* @memberof
|
|
1158
|
+
* @memberof ContactsUpdate
|
|
1159
1159
|
*/
|
|
1160
1160
|
'updatedBy': string;
|
|
1161
1161
|
/**
|
|
1162
1162
|
*
|
|
1163
1163
|
* @type {string}
|
|
1164
|
-
* @memberof
|
|
1164
|
+
* @memberof ContactsUpdate
|
|
1165
1165
|
*/
|
|
1166
1166
|
'profilePicUrlRegular'?: string | null;
|
|
1167
1167
|
/**
|
|
1168
1168
|
*
|
|
1169
1169
|
* @type {string}
|
|
1170
|
-
* @memberof
|
|
1170
|
+
* @memberof ContactsUpdate
|
|
1171
1171
|
*/
|
|
1172
1172
|
'profilePicUrlLarge'?: string | null;
|
|
1173
1173
|
/**
|
|
1174
1174
|
*
|
|
1175
1175
|
* @type {string}
|
|
1176
|
-
* @memberof
|
|
1176
|
+
* @memberof ContactsUpdate
|
|
1177
1177
|
*/
|
|
1178
1178
|
'profilePicUrlThumbnail'?: string | null;
|
|
1179
1179
|
/**
|
|
1180
1180
|
*
|
|
1181
1181
|
* @type {boolean}
|
|
1182
|
-
* @memberof
|
|
1182
|
+
* @memberof ContactsUpdate
|
|
1183
1183
|
*/
|
|
1184
1184
|
'smsMarketingIsSubscribed'?: boolean;
|
|
1185
1185
|
/**
|
|
1186
1186
|
*
|
|
1187
1187
|
* @type {string}
|
|
1188
|
-
* @memberof
|
|
1188
|
+
* @memberof ContactsUpdate
|
|
1189
1189
|
*/
|
|
1190
1190
|
'smsMarketingConsentType'?: string | null;
|
|
1191
1191
|
/**
|
|
1192
1192
|
*
|
|
1193
1193
|
* @type {string}
|
|
1194
|
-
* @memberof
|
|
1194
|
+
* @memberof ContactsUpdate
|
|
1195
1195
|
*/
|
|
1196
1196
|
'smsMarketingUpdatedAt'?: string | null;
|
|
1197
1197
|
/**
|
|
1198
1198
|
*
|
|
1199
1199
|
* @type {boolean}
|
|
1200
|
-
* @memberof
|
|
1200
|
+
* @memberof ContactsUpdate
|
|
1201
1201
|
*/
|
|
1202
1202
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
1203
1203
|
/**
|
|
1204
1204
|
*
|
|
1205
1205
|
* @type {string}
|
|
1206
|
-
* @memberof
|
|
1206
|
+
* @memberof ContactsUpdate
|
|
1207
1207
|
*/
|
|
1208
1208
|
'smsTransactionalConsentType'?: string | null;
|
|
1209
1209
|
/**
|
|
1210
1210
|
*
|
|
1211
1211
|
* @type {string}
|
|
1212
|
-
* @memberof
|
|
1212
|
+
* @memberof ContactsUpdate
|
|
1213
1213
|
*/
|
|
1214
1214
|
'primaryEmail'?: string | null;
|
|
1215
1215
|
/**
|
|
1216
1216
|
*
|
|
1217
|
-
* @type {Array<
|
|
1218
|
-
* @memberof
|
|
1217
|
+
* @type {Array<EmailApi>}
|
|
1218
|
+
* @memberof ContactsUpdate
|
|
1219
1219
|
*/
|
|
1220
|
-
'emails'?: Array<
|
|
1220
|
+
'emails'?: Array<EmailApi>;
|
|
1221
1221
|
/**
|
|
1222
1222
|
*
|
|
1223
1223
|
* @type {string}
|
|
1224
|
-
* @memberof
|
|
1224
|
+
* @memberof ContactsUpdate
|
|
1225
1225
|
*/
|
|
1226
1226
|
'primaryPhone'?: string | null;
|
|
1227
1227
|
/**
|
|
1228
1228
|
*
|
|
1229
|
-
* @type {Array<
|
|
1230
|
-
* @memberof
|
|
1229
|
+
* @type {Array<PhoneApi>}
|
|
1230
|
+
* @memberof ContactsUpdate
|
|
1231
1231
|
*/
|
|
1232
|
-
'phones'?: Array<
|
|
1232
|
+
'phones'?: Array<PhoneApi>;
|
|
1233
1233
|
/**
|
|
1234
1234
|
*
|
|
1235
1235
|
* @type {Array<string>}
|
|
1236
|
-
* @memberof
|
|
1236
|
+
* @memberof ContactsUpdate
|
|
1237
1237
|
*/
|
|
1238
1238
|
'tags'?: Array<string>;
|
|
1239
1239
|
/**
|
|
1240
1240
|
*
|
|
1241
|
-
* @type {
|
|
1242
|
-
* @memberof
|
|
1241
|
+
* @type {AddressApi}
|
|
1242
|
+
* @memberof ContactsUpdate
|
|
1243
1243
|
*/
|
|
1244
|
-
'address'?:
|
|
1244
|
+
'address'?: AddressApi | null;
|
|
1245
1245
|
/**
|
|
1246
1246
|
*
|
|
1247
|
-
* @type {Array<
|
|
1248
|
-
* @memberof
|
|
1247
|
+
* @type {Array<AddressItemApi>}
|
|
1248
|
+
* @memberof ContactsUpdate
|
|
1249
1249
|
*/
|
|
1250
|
-
'addresses'?: Array<
|
|
1250
|
+
'addresses'?: Array<AddressItemApi>;
|
|
1251
1251
|
/**
|
|
1252
1252
|
*
|
|
1253
|
-
* @type {
|
|
1254
|
-
* @memberof
|
|
1253
|
+
* @type {ContactTypeDataApi}
|
|
1254
|
+
* @memberof ContactsUpdate
|
|
1255
1255
|
*/
|
|
1256
|
-
'contactTypeData'?:
|
|
1256
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
1257
1257
|
}
|
|
1258
1258
|
/**
|
|
1259
1259
|
*
|
|
@@ -1269,39 +1269,39 @@ type DataSource = typeof DataSource[keyof typeof DataSource];
|
|
|
1269
1269
|
/**
|
|
1270
1270
|
*
|
|
1271
1271
|
* @export
|
|
1272
|
-
* @interface
|
|
1272
|
+
* @interface EmailApi
|
|
1273
1273
|
*/
|
|
1274
|
-
interface
|
|
1274
|
+
interface EmailApi {
|
|
1275
1275
|
/**
|
|
1276
1276
|
*
|
|
1277
|
-
* @type {
|
|
1278
|
-
* @memberof
|
|
1277
|
+
* @type {string}
|
|
1278
|
+
* @memberof EmailApi
|
|
1279
1279
|
*/
|
|
1280
|
-
'
|
|
1280
|
+
'emailId': string;
|
|
1281
1281
|
/**
|
|
1282
1282
|
*
|
|
1283
1283
|
* @type {string}
|
|
1284
|
-
* @memberof
|
|
1284
|
+
* @memberof EmailApi
|
|
1285
1285
|
*/
|
|
1286
|
-
'
|
|
1286
|
+
'email': string;
|
|
1287
1287
|
/**
|
|
1288
1288
|
*
|
|
1289
|
-
* @type {
|
|
1290
|
-
* @memberof
|
|
1289
|
+
* @type {boolean}
|
|
1290
|
+
* @memberof EmailApi
|
|
1291
1291
|
*/
|
|
1292
|
-
'
|
|
1292
|
+
'isPrimary': boolean;
|
|
1293
1293
|
/**
|
|
1294
1294
|
*
|
|
1295
|
-
* @type {
|
|
1296
|
-
* @memberof
|
|
1295
|
+
* @type {DataSource}
|
|
1296
|
+
* @memberof EmailApi
|
|
1297
1297
|
*/
|
|
1298
|
-
'
|
|
1298
|
+
'dataSource': DataSource;
|
|
1299
1299
|
/**
|
|
1300
1300
|
*
|
|
1301
|
-
* @type {
|
|
1302
|
-
* @memberof
|
|
1301
|
+
* @type {string}
|
|
1302
|
+
* @memberof EmailApi
|
|
1303
1303
|
*/
|
|
1304
|
-
'
|
|
1304
|
+
'deletedAt'?: string | null;
|
|
1305
1305
|
}
|
|
1306
1306
|
/**
|
|
1307
1307
|
*
|
|
@@ -1325,76 +1325,76 @@ interface EmailCreate {
|
|
|
1325
1325
|
/**
|
|
1326
1326
|
*
|
|
1327
1327
|
* @export
|
|
1328
|
-
* @interface
|
|
1328
|
+
* @interface EmailsCreate
|
|
1329
1329
|
*/
|
|
1330
|
-
interface
|
|
1330
|
+
interface EmailsCreate {
|
|
1331
1331
|
/**
|
|
1332
1332
|
*
|
|
1333
|
-
* @type {
|
|
1334
|
-
* @memberof
|
|
1333
|
+
* @type {string}
|
|
1334
|
+
* @memberof EmailsCreate
|
|
1335
1335
|
*/
|
|
1336
|
-
'
|
|
1336
|
+
'emailId': string;
|
|
1337
1337
|
/**
|
|
1338
1338
|
*
|
|
1339
1339
|
* @type {string}
|
|
1340
|
-
* @memberof
|
|
1340
|
+
* @memberof EmailsCreate
|
|
1341
1341
|
*/
|
|
1342
|
-
'
|
|
1342
|
+
'email': string;
|
|
1343
1343
|
/**
|
|
1344
1344
|
*
|
|
1345
|
-
* @type {
|
|
1346
|
-
* @memberof
|
|
1345
|
+
* @type {boolean}
|
|
1346
|
+
* @memberof EmailsCreate
|
|
1347
1347
|
*/
|
|
1348
|
-
'
|
|
1348
|
+
'isPrimary': boolean;
|
|
1349
1349
|
/**
|
|
1350
1350
|
*
|
|
1351
|
-
* @type {
|
|
1352
|
-
* @memberof
|
|
1351
|
+
* @type {DataSource}
|
|
1352
|
+
* @memberof EmailsCreate
|
|
1353
1353
|
*/
|
|
1354
|
-
'
|
|
1354
|
+
'dataSource': DataSource;
|
|
1355
1355
|
/**
|
|
1356
1356
|
*
|
|
1357
|
-
* @type {
|
|
1358
|
-
* @memberof
|
|
1357
|
+
* @type {string}
|
|
1358
|
+
* @memberof EmailsCreate
|
|
1359
1359
|
*/
|
|
1360
|
-
'
|
|
1360
|
+
'deletedAt'?: string | null;
|
|
1361
1361
|
}
|
|
1362
1362
|
/**
|
|
1363
1363
|
*
|
|
1364
1364
|
* @export
|
|
1365
|
-
* @interface
|
|
1365
|
+
* @interface GuestDataApi
|
|
1366
1366
|
*/
|
|
1367
|
-
interface
|
|
1367
|
+
interface GuestDataApi {
|
|
1368
1368
|
/**
|
|
1369
1369
|
*
|
|
1370
1370
|
* @type {string}
|
|
1371
|
-
* @memberof
|
|
1371
|
+
* @memberof GuestDataApi
|
|
1372
1372
|
*/
|
|
1373
1373
|
'firstBookedAt': string;
|
|
1374
1374
|
/**
|
|
1375
1375
|
*
|
|
1376
1376
|
* @type {string}
|
|
1377
|
-
* @memberof
|
|
1377
|
+
* @memberof GuestDataApi
|
|
1378
1378
|
*/
|
|
1379
1379
|
'firstStayAt': string;
|
|
1380
1380
|
/**
|
|
1381
1381
|
*
|
|
1382
1382
|
* @type {number}
|
|
1383
|
-
* @memberof
|
|
1383
|
+
* @memberof GuestDataApi
|
|
1384
1384
|
*/
|
|
1385
1385
|
'totalNightsStayed'?: number;
|
|
1386
1386
|
/**
|
|
1387
1387
|
*
|
|
1388
1388
|
* @type {number}
|
|
1389
|
-
* @memberof
|
|
1389
|
+
* @memberof GuestDataApi
|
|
1390
1390
|
*/
|
|
1391
1391
|
'totalAmountSpent'?: number;
|
|
1392
1392
|
/**
|
|
1393
1393
|
*
|
|
1394
1394
|
* @type {Array<string>}
|
|
1395
|
-
* @memberof
|
|
1395
|
+
* @memberof GuestDataApi
|
|
1396
1396
|
*/
|
|
1397
|
-
'listingIds'
|
|
1397
|
+
'listingIds': Array<string>;
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
1400
|
*
|
|
@@ -1445,165 +1445,178 @@ interface HostawayWebhook {
|
|
|
1445
1445
|
/**
|
|
1446
1446
|
*
|
|
1447
1447
|
* @export
|
|
1448
|
-
* @interface
|
|
1448
|
+
* @interface LeadDataApi
|
|
1449
1449
|
*/
|
|
1450
|
-
interface
|
|
1451
|
-
/**
|
|
1452
|
-
*
|
|
1453
|
-
* @type {string}
|
|
1454
|
-
* @memberof LeadData
|
|
1455
|
-
*/
|
|
1456
|
-
'createdAt': string;
|
|
1450
|
+
interface LeadDataApi {
|
|
1457
1451
|
/**
|
|
1458
1452
|
*
|
|
1459
1453
|
* @type {Array<string>}
|
|
1460
|
-
* @memberof
|
|
1454
|
+
* @memberof LeadDataApi
|
|
1461
1455
|
*/
|
|
1462
|
-
'listingIds'
|
|
1456
|
+
'listingIds': Array<string>;
|
|
1463
1457
|
}
|
|
1464
1458
|
/**
|
|
1465
1459
|
*
|
|
1466
1460
|
* @export
|
|
1467
|
-
* @interface
|
|
1461
|
+
* @interface ListResponseInquiriesList
|
|
1468
1462
|
*/
|
|
1469
|
-
interface
|
|
1463
|
+
interface ListResponseInquiriesList {
|
|
1470
1464
|
/**
|
|
1471
1465
|
*
|
|
1472
|
-
* @type {Array<
|
|
1473
|
-
* @memberof
|
|
1466
|
+
* @type {Array<object>}
|
|
1467
|
+
* @memberof ListResponseInquiriesList
|
|
1474
1468
|
*/
|
|
1475
|
-
'data': Array<
|
|
1469
|
+
'data': Array<object>;
|
|
1476
1470
|
}
|
|
1477
1471
|
/**
|
|
1478
1472
|
*
|
|
1479
1473
|
* @export
|
|
1480
|
-
* @interface
|
|
1474
|
+
* @interface ListResponseListingsList
|
|
1481
1475
|
*/
|
|
1482
|
-
interface
|
|
1476
|
+
interface ListResponseListingsList {
|
|
1483
1477
|
/**
|
|
1484
1478
|
*
|
|
1485
|
-
* @type {Array<
|
|
1486
|
-
* @memberof
|
|
1479
|
+
* @type {Array<ListingsList>}
|
|
1480
|
+
* @memberof ListResponseListingsList
|
|
1487
1481
|
*/
|
|
1488
|
-
'data': Array<
|
|
1482
|
+
'data': Array<ListingsList>;
|
|
1489
1483
|
}
|
|
1490
1484
|
/**
|
|
1491
1485
|
*
|
|
1492
1486
|
* @export
|
|
1493
|
-
* @interface
|
|
1487
|
+
* @interface ListResponseReservationsList
|
|
1494
1488
|
*/
|
|
1495
|
-
interface
|
|
1489
|
+
interface ListResponseReservationsList {
|
|
1496
1490
|
/**
|
|
1497
1491
|
*
|
|
1498
|
-
* @type {Array<
|
|
1499
|
-
* @memberof
|
|
1492
|
+
* @type {Array<ReservationsList>}
|
|
1493
|
+
* @memberof ListResponseReservationsList
|
|
1500
1494
|
*/
|
|
1501
|
-
'data': Array<
|
|
1495
|
+
'data': Array<ReservationsList>;
|
|
1502
1496
|
}
|
|
1503
1497
|
/**
|
|
1504
1498
|
*
|
|
1505
1499
|
* @export
|
|
1506
|
-
* @interface
|
|
1500
|
+
* @interface ListingsList
|
|
1507
1501
|
*/
|
|
1508
|
-
interface
|
|
1502
|
+
interface ListingsList {
|
|
1509
1503
|
/**
|
|
1510
1504
|
*
|
|
1511
1505
|
* @type {string}
|
|
1512
|
-
* @memberof
|
|
1506
|
+
* @memberof ListingsList
|
|
1513
1507
|
*/
|
|
1514
1508
|
'listingId'?: string | null;
|
|
1515
1509
|
/**
|
|
1516
1510
|
*
|
|
1517
1511
|
* @type {string}
|
|
1518
|
-
* @memberof
|
|
1512
|
+
* @memberof ListingsList
|
|
1519
1513
|
*/
|
|
1520
|
-
'
|
|
1514
|
+
'dataSource': string;
|
|
1521
1515
|
/**
|
|
1522
1516
|
*
|
|
1523
1517
|
* @type {string}
|
|
1524
|
-
* @memberof
|
|
1518
|
+
* @memberof ListingsList
|
|
1525
1519
|
*/
|
|
1526
1520
|
'providerListingId': string;
|
|
1527
1521
|
/**
|
|
1528
1522
|
*
|
|
1529
1523
|
* @type {string}
|
|
1530
|
-
* @memberof
|
|
1524
|
+
* @memberof ListingsList
|
|
1531
1525
|
*/
|
|
1532
1526
|
'title': string;
|
|
1533
1527
|
/**
|
|
1534
1528
|
*
|
|
1535
1529
|
* @type {string}
|
|
1536
|
-
* @memberof
|
|
1530
|
+
* @memberof ListingsList
|
|
1537
1531
|
*/
|
|
1538
1532
|
'description'?: string | null;
|
|
1539
1533
|
}
|
|
1540
1534
|
/**
|
|
1541
1535
|
*
|
|
1542
1536
|
* @export
|
|
1543
|
-
* @interface
|
|
1537
|
+
* @interface OwnerDataApi
|
|
1544
1538
|
*/
|
|
1545
|
-
interface
|
|
1539
|
+
interface OwnerDataApi {
|
|
1546
1540
|
/**
|
|
1547
1541
|
*
|
|
1548
1542
|
* @type {string}
|
|
1549
|
-
* @memberof
|
|
1543
|
+
* @memberof OwnerDataApi
|
|
1550
1544
|
*/
|
|
1551
1545
|
'firstBookedAt'?: string;
|
|
1552
1546
|
/**
|
|
1553
1547
|
*
|
|
1554
1548
|
* @type {string}
|
|
1555
|
-
* @memberof
|
|
1549
|
+
* @memberof OwnerDataApi
|
|
1556
1550
|
*/
|
|
1557
1551
|
'firstStayAt'?: string;
|
|
1558
1552
|
/**
|
|
1559
1553
|
*
|
|
1560
1554
|
* @type {number}
|
|
1561
|
-
* @memberof
|
|
1555
|
+
* @memberof OwnerDataApi
|
|
1562
1556
|
*/
|
|
1563
1557
|
'totalNightsStayed'?: number;
|
|
1564
1558
|
/**
|
|
1565
1559
|
*
|
|
1566
1560
|
* @type {Array<string>}
|
|
1567
|
-
* @memberof
|
|
1561
|
+
* @memberof OwnerDataApi
|
|
1568
1562
|
*/
|
|
1569
|
-
'listingIds'
|
|
1563
|
+
'listingIds': Array<string>;
|
|
1570
1564
|
}
|
|
1571
1565
|
/**
|
|
1572
1566
|
*
|
|
1573
1567
|
* @export
|
|
1574
|
-
* @interface
|
|
1568
|
+
* @interface PaginatedResponseContacts
|
|
1575
1569
|
*/
|
|
1576
|
-
interface
|
|
1570
|
+
interface PaginatedResponseContacts {
|
|
1577
1571
|
/**
|
|
1578
1572
|
*
|
|
1579
|
-
* @type {
|
|
1580
|
-
* @memberof
|
|
1573
|
+
* @type {Array<Contacts>}
|
|
1574
|
+
* @memberof PaginatedResponseContacts
|
|
1581
1575
|
*/
|
|
1582
|
-
'
|
|
1576
|
+
'data': Array<Contacts>;
|
|
1583
1577
|
/**
|
|
1584
1578
|
*
|
|
1585
|
-
* @type {
|
|
1586
|
-
* @memberof
|
|
1579
|
+
* @type {number}
|
|
1580
|
+
* @memberof PaginatedResponseContacts
|
|
1587
1581
|
*/
|
|
1588
|
-
'
|
|
1582
|
+
'total': number;
|
|
1583
|
+
}
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @export
|
|
1587
|
+
* @interface PhoneApi
|
|
1588
|
+
*/
|
|
1589
|
+
interface PhoneApi {
|
|
1589
1590
|
/**
|
|
1590
1591
|
*
|
|
1591
|
-
* @type {
|
|
1592
|
-
* @memberof
|
|
1592
|
+
* @type {string}
|
|
1593
|
+
* @memberof PhoneApi
|
|
1593
1594
|
*/
|
|
1594
|
-
'
|
|
1595
|
+
'phoneId': string;
|
|
1595
1596
|
/**
|
|
1596
1597
|
*
|
|
1597
1598
|
* @type {string}
|
|
1598
|
-
* @memberof
|
|
1599
|
+
* @memberof PhoneApi
|
|
1599
1600
|
*/
|
|
1600
|
-
'
|
|
1601
|
+
'phone': string;
|
|
1602
|
+
/**
|
|
1603
|
+
*
|
|
1604
|
+
* @type {DataSource}
|
|
1605
|
+
* @memberof PhoneApi
|
|
1606
|
+
*/
|
|
1607
|
+
'dataSource': DataSource;
|
|
1601
1608
|
/**
|
|
1602
1609
|
*
|
|
1603
1610
|
* @type {string}
|
|
1604
|
-
* @memberof
|
|
1611
|
+
* @memberof PhoneApi
|
|
1605
1612
|
*/
|
|
1606
|
-
'
|
|
1613
|
+
'deletedAt'?: string | null;
|
|
1614
|
+
/**
|
|
1615
|
+
*
|
|
1616
|
+
* @type {boolean}
|
|
1617
|
+
* @memberof PhoneApi
|
|
1618
|
+
*/
|
|
1619
|
+
'isPrimary': boolean;
|
|
1607
1620
|
}
|
|
1608
1621
|
/**
|
|
1609
1622
|
*
|
|
@@ -1616,7 +1629,7 @@ interface PhoneCreate {
|
|
|
1616
1629
|
* @type {string}
|
|
1617
1630
|
* @memberof PhoneCreate
|
|
1618
1631
|
*/
|
|
1619
|
-
'phone': string
|
|
1632
|
+
'phone': string;
|
|
1620
1633
|
/**
|
|
1621
1634
|
*
|
|
1622
1635
|
* @type {boolean}
|
|
@@ -1627,86 +1640,86 @@ interface PhoneCreate {
|
|
|
1627
1640
|
/**
|
|
1628
1641
|
*
|
|
1629
1642
|
* @export
|
|
1630
|
-
* @interface
|
|
1643
|
+
* @interface PhonesCreate
|
|
1631
1644
|
*/
|
|
1632
|
-
interface
|
|
1645
|
+
interface PhonesCreate {
|
|
1633
1646
|
/**
|
|
1634
1647
|
*
|
|
1635
|
-
* @type {
|
|
1636
|
-
* @memberof
|
|
1648
|
+
* @type {string}
|
|
1649
|
+
* @memberof PhonesCreate
|
|
1637
1650
|
*/
|
|
1638
|
-
'
|
|
1651
|
+
'phoneId': string;
|
|
1639
1652
|
/**
|
|
1640
1653
|
*
|
|
1641
1654
|
* @type {string}
|
|
1642
|
-
* @memberof
|
|
1655
|
+
* @memberof PhonesCreate
|
|
1643
1656
|
*/
|
|
1644
|
-
'
|
|
1657
|
+
'phone': string;
|
|
1645
1658
|
/**
|
|
1646
1659
|
*
|
|
1647
|
-
* @type {
|
|
1648
|
-
* @memberof
|
|
1660
|
+
* @type {DataSource}
|
|
1661
|
+
* @memberof PhonesCreate
|
|
1649
1662
|
*/
|
|
1650
|
-
'
|
|
1663
|
+
'dataSource': DataSource;
|
|
1651
1664
|
/**
|
|
1652
1665
|
*
|
|
1653
1666
|
* @type {string}
|
|
1654
|
-
* @memberof
|
|
1667
|
+
* @memberof PhonesCreate
|
|
1655
1668
|
*/
|
|
1656
|
-
'
|
|
1669
|
+
'deletedAt'?: string | null;
|
|
1657
1670
|
/**
|
|
1658
1671
|
*
|
|
1659
|
-
* @type {
|
|
1660
|
-
* @memberof
|
|
1672
|
+
* @type {boolean}
|
|
1673
|
+
* @memberof PhonesCreate
|
|
1661
1674
|
*/
|
|
1662
|
-
'
|
|
1675
|
+
'isPrimary': boolean;
|
|
1663
1676
|
}
|
|
1664
1677
|
/**
|
|
1665
1678
|
*
|
|
1666
1679
|
* @export
|
|
1667
|
-
* @interface
|
|
1680
|
+
* @interface ReservationsList
|
|
1668
1681
|
*/
|
|
1669
|
-
interface
|
|
1682
|
+
interface ReservationsList {
|
|
1670
1683
|
/**
|
|
1671
1684
|
*
|
|
1672
1685
|
* @type {string}
|
|
1673
|
-
* @memberof
|
|
1686
|
+
* @memberof ReservationsList
|
|
1674
1687
|
*/
|
|
1675
1688
|
'providerReservationId': string;
|
|
1676
1689
|
/**
|
|
1677
1690
|
*
|
|
1678
1691
|
* @type {string}
|
|
1679
|
-
* @memberof
|
|
1692
|
+
* @memberof ReservationsList
|
|
1680
1693
|
*/
|
|
1681
1694
|
'providerListingId': string;
|
|
1682
1695
|
/**
|
|
1683
1696
|
*
|
|
1684
1697
|
* @type {string}
|
|
1685
|
-
* @memberof
|
|
1698
|
+
* @memberof ReservationsList
|
|
1686
1699
|
*/
|
|
1687
1700
|
'reservationStatus': string;
|
|
1688
1701
|
/**
|
|
1689
1702
|
*
|
|
1690
1703
|
* @type {string}
|
|
1691
|
-
* @memberof
|
|
1704
|
+
* @memberof ReservationsList
|
|
1692
1705
|
*/
|
|
1693
1706
|
'arrivalAtPropertyTz': string;
|
|
1694
1707
|
/**
|
|
1695
1708
|
*
|
|
1696
1709
|
* @type {string}
|
|
1697
|
-
* @memberof
|
|
1710
|
+
* @memberof ReservationsList
|
|
1698
1711
|
*/
|
|
1699
1712
|
'departureAtPropertyTz': string;
|
|
1700
1713
|
/**
|
|
1701
1714
|
*
|
|
1702
1715
|
* @type {number}
|
|
1703
|
-
* @memberof
|
|
1716
|
+
* @memberof ReservationsList
|
|
1704
1717
|
*/
|
|
1705
1718
|
'nights': number;
|
|
1706
1719
|
/**
|
|
1707
1720
|
*
|
|
1708
1721
|
* @type {number}
|
|
1709
|
-
* @memberof
|
|
1722
|
+
* @memberof ReservationsList
|
|
1710
1723
|
*/
|
|
1711
1724
|
'totalPrice': number;
|
|
1712
1725
|
}
|
|
@@ -1755,7 +1768,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1755
1768
|
* @param {*} [options] Override http request option.
|
|
1756
1769
|
* @throws {RequiredError}
|
|
1757
1770
|
*/
|
|
1758
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1771
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
1759
1772
|
/**
|
|
1760
1773
|
*
|
|
1761
1774
|
* @summary Addresses Delete
|
|
@@ -1772,7 +1785,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1772
1785
|
* @param {*} [options] Override http request option.
|
|
1773
1786
|
* @throws {RequiredError}
|
|
1774
1787
|
*/
|
|
1775
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1788
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
1776
1789
|
};
|
|
1777
1790
|
/**
|
|
1778
1791
|
* AddressesApi - factory interface
|
|
@@ -1787,7 +1800,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1787
1800
|
* @param {*} [options] Override http request option.
|
|
1788
1801
|
* @throws {RequiredError}
|
|
1789
1802
|
*/
|
|
1790
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1803
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
1791
1804
|
/**
|
|
1792
1805
|
*
|
|
1793
1806
|
* @summary Addresses Delete
|
|
@@ -1804,7 +1817,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1804
1817
|
* @param {*} [options] Override http request option.
|
|
1805
1818
|
* @throws {RequiredError}
|
|
1806
1819
|
*/
|
|
1807
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1820
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
1808
1821
|
};
|
|
1809
1822
|
/**
|
|
1810
1823
|
* AddressesApi - object-oriented interface
|
|
@@ -1822,7 +1835,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1822
1835
|
* @throws {RequiredError}
|
|
1823
1836
|
* @memberof AddressesApi
|
|
1824
1837
|
*/
|
|
1825
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1838
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
1826
1839
|
/**
|
|
1827
1840
|
*
|
|
1828
1841
|
* @summary Addresses Delete
|
|
@@ -1841,7 +1854,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1841
1854
|
* @throws {RequiredError}
|
|
1842
1855
|
* @memberof AddressesApi
|
|
1843
1856
|
*/
|
|
1844
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1857
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
1845
1858
|
}
|
|
1846
1859
|
/**
|
|
1847
1860
|
* ContactsApi - axios parameter creator
|
|
@@ -1903,10 +1916,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1903
1916
|
* @summary Contacts List
|
|
1904
1917
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1905
1918
|
* @param {string} [searchString]
|
|
1919
|
+
* @param {number} [limit]
|
|
1920
|
+
* @param {number} [offset]
|
|
1906
1921
|
* @param {*} [options] Override http request option.
|
|
1907
1922
|
* @throws {RequiredError}
|
|
1908
1923
|
*/
|
|
1909
|
-
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1924
|
+
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1910
1925
|
/**
|
|
1911
1926
|
*
|
|
1912
1927
|
* @summary Contacts Update
|
|
@@ -1964,7 +1979,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1964
1979
|
* @param {*} [options] Override http request option.
|
|
1965
1980
|
* @throws {RequiredError}
|
|
1966
1981
|
*/
|
|
1967
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1982
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
1968
1983
|
/**
|
|
1969
1984
|
*
|
|
1970
1985
|
* @summary Addresses Delete
|
|
@@ -1981,7 +1996,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1981
1996
|
* @param {*} [options] Override http request option.
|
|
1982
1997
|
* @throws {RequiredError}
|
|
1983
1998
|
*/
|
|
1984
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1999
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
1985
2000
|
/**
|
|
1986
2001
|
*
|
|
1987
2002
|
* @summary Contacts Create
|
|
@@ -1989,7 +2004,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1989
2004
|
* @param {*} [options] Override http request option.
|
|
1990
2005
|
* @throws {RequiredError}
|
|
1991
2006
|
*/
|
|
1992
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2007
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
1993
2008
|
/**
|
|
1994
2009
|
*
|
|
1995
2010
|
* @summary Contacts Delete
|
|
@@ -2005,16 +2020,18 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2005
2020
|
* @param {*} [options] Override http request option.
|
|
2006
2021
|
* @throws {RequiredError}
|
|
2007
2022
|
*/
|
|
2008
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2023
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2009
2024
|
/**
|
|
2010
2025
|
*
|
|
2011
2026
|
* @summary Contacts List
|
|
2012
2027
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2013
2028
|
* @param {string} [searchString]
|
|
2029
|
+
* @param {number} [limit]
|
|
2030
|
+
* @param {number} [offset]
|
|
2014
2031
|
* @param {*} [options] Override http request option.
|
|
2015
2032
|
* @throws {RequiredError}
|
|
2016
2033
|
*/
|
|
2017
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2034
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2018
2035
|
/**
|
|
2019
2036
|
*
|
|
2020
2037
|
* @summary Contacts Update
|
|
@@ -2023,7 +2040,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2023
2040
|
* @param {*} [options] Override http request option.
|
|
2024
2041
|
* @throws {RequiredError}
|
|
2025
2042
|
*/
|
|
2026
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2043
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsUpdate>>;
|
|
2027
2044
|
/**
|
|
2028
2045
|
*
|
|
2029
2046
|
* @summary Emails Create
|
|
@@ -2032,7 +2049,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2032
2049
|
* @param {*} [options] Override http request option.
|
|
2033
2050
|
* @throws {RequiredError}
|
|
2034
2051
|
*/
|
|
2035
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2052
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2036
2053
|
/**
|
|
2037
2054
|
*
|
|
2038
2055
|
* @summary Emails Delete
|
|
@@ -2049,7 +2066,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2049
2066
|
* @param {*} [options] Override http request option.
|
|
2050
2067
|
* @throws {RequiredError}
|
|
2051
2068
|
*/
|
|
2052
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2069
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2053
2070
|
/**
|
|
2054
2071
|
*
|
|
2055
2072
|
* @summary Phones Delete
|
|
@@ -2072,7 +2089,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2072
2089
|
* @param {*} [options] Override http request option.
|
|
2073
2090
|
* @throws {RequiredError}
|
|
2074
2091
|
*/
|
|
2075
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2092
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2076
2093
|
/**
|
|
2077
2094
|
*
|
|
2078
2095
|
* @summary Addresses Delete
|
|
@@ -2089,7 +2106,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2089
2106
|
* @param {*} [options] Override http request option.
|
|
2090
2107
|
* @throws {RequiredError}
|
|
2091
2108
|
*/
|
|
2092
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2109
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
2093
2110
|
/**
|
|
2094
2111
|
*
|
|
2095
2112
|
* @summary Contacts Create
|
|
@@ -2097,7 +2114,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2097
2114
|
* @param {*} [options] Override http request option.
|
|
2098
2115
|
* @throws {RequiredError}
|
|
2099
2116
|
*/
|
|
2100
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2117
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2101
2118
|
/**
|
|
2102
2119
|
*
|
|
2103
2120
|
* @summary Contacts Delete
|
|
@@ -2113,16 +2130,18 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2113
2130
|
* @param {*} [options] Override http request option.
|
|
2114
2131
|
* @throws {RequiredError}
|
|
2115
2132
|
*/
|
|
2116
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2133
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2117
2134
|
/**
|
|
2118
2135
|
*
|
|
2119
2136
|
* @summary Contacts List
|
|
2120
2137
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2121
2138
|
* @param {string} [searchString]
|
|
2139
|
+
* @param {number} [limit]
|
|
2140
|
+
* @param {number} [offset]
|
|
2122
2141
|
* @param {*} [options] Override http request option.
|
|
2123
2142
|
* @throws {RequiredError}
|
|
2124
2143
|
*/
|
|
2125
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2144
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2126
2145
|
/**
|
|
2127
2146
|
*
|
|
2128
2147
|
* @summary Contacts Update
|
|
@@ -2131,7 +2150,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2131
2150
|
* @param {*} [options] Override http request option.
|
|
2132
2151
|
* @throws {RequiredError}
|
|
2133
2152
|
*/
|
|
2134
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2153
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
2135
2154
|
/**
|
|
2136
2155
|
*
|
|
2137
2156
|
* @summary Emails Create
|
|
@@ -2140,7 +2159,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2140
2159
|
* @param {*} [options] Override http request option.
|
|
2141
2160
|
* @throws {RequiredError}
|
|
2142
2161
|
*/
|
|
2143
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2162
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2144
2163
|
/**
|
|
2145
2164
|
*
|
|
2146
2165
|
* @summary Emails Delete
|
|
@@ -2157,7 +2176,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2157
2176
|
* @param {*} [options] Override http request option.
|
|
2158
2177
|
* @throws {RequiredError}
|
|
2159
2178
|
*/
|
|
2160
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2179
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2161
2180
|
/**
|
|
2162
2181
|
*
|
|
2163
2182
|
* @summary Phones Delete
|
|
@@ -2183,7 +2202,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2183
2202
|
* @throws {RequiredError}
|
|
2184
2203
|
* @memberof ContactsApi
|
|
2185
2204
|
*/
|
|
2186
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2205
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
2187
2206
|
/**
|
|
2188
2207
|
*
|
|
2189
2208
|
* @summary Addresses Delete
|
|
@@ -2202,7 +2221,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2202
2221
|
* @throws {RequiredError}
|
|
2203
2222
|
* @memberof ContactsApi
|
|
2204
2223
|
*/
|
|
2205
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2224
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
2206
2225
|
/**
|
|
2207
2226
|
*
|
|
2208
2227
|
* @summary Contacts Create
|
|
@@ -2211,7 +2230,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2211
2230
|
* @throws {RequiredError}
|
|
2212
2231
|
* @memberof ContactsApi
|
|
2213
2232
|
*/
|
|
2214
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2233
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
2215
2234
|
/**
|
|
2216
2235
|
*
|
|
2217
2236
|
* @summary Contacts Delete
|
|
@@ -2229,17 +2248,19 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2229
2248
|
* @throws {RequiredError}
|
|
2230
2249
|
* @memberof ContactsApi
|
|
2231
2250
|
*/
|
|
2232
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2251
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
2233
2252
|
/**
|
|
2234
2253
|
*
|
|
2235
2254
|
* @summary Contacts List
|
|
2236
2255
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2237
2256
|
* @param {string} [searchString]
|
|
2257
|
+
* @param {number} [limit]
|
|
2258
|
+
* @param {number} [offset]
|
|
2238
2259
|
* @param {*} [options] Override http request option.
|
|
2239
2260
|
* @throws {RequiredError}
|
|
2240
2261
|
* @memberof ContactsApi
|
|
2241
2262
|
*/
|
|
2242
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2263
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
2243
2264
|
/**
|
|
2244
2265
|
*
|
|
2245
2266
|
* @summary Contacts Update
|
|
@@ -2249,7 +2270,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2249
2270
|
* @throws {RequiredError}
|
|
2250
2271
|
* @memberof ContactsApi
|
|
2251
2272
|
*/
|
|
2252
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2273
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
2253
2274
|
/**
|
|
2254
2275
|
*
|
|
2255
2276
|
* @summary Emails Create
|
|
@@ -2259,7 +2280,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2259
2280
|
* @throws {RequiredError}
|
|
2260
2281
|
* @memberof ContactsApi
|
|
2261
2282
|
*/
|
|
2262
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2283
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2263
2284
|
/**
|
|
2264
2285
|
*
|
|
2265
2286
|
* @summary Emails Delete
|
|
@@ -2278,7 +2299,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2278
2299
|
* @throws {RequiredError}
|
|
2279
2300
|
* @memberof ContactsApi
|
|
2280
2301
|
*/
|
|
2281
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2302
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2282
2303
|
/**
|
|
2283
2304
|
*
|
|
2284
2305
|
* @summary Phones Delete
|
|
@@ -2325,7 +2346,7 @@ declare const EmailsApiFp: (configuration?: Configuration) => {
|
|
|
2325
2346
|
* @param {*} [options] Override http request option.
|
|
2326
2347
|
* @throws {RequiredError}
|
|
2327
2348
|
*/
|
|
2328
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2349
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2329
2350
|
/**
|
|
2330
2351
|
*
|
|
2331
2352
|
* @summary Emails Delete
|
|
@@ -2348,7 +2369,7 @@ declare const EmailsApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2348
2369
|
* @param {*} [options] Override http request option.
|
|
2349
2370
|
* @throws {RequiredError}
|
|
2350
2371
|
*/
|
|
2351
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2372
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2352
2373
|
/**
|
|
2353
2374
|
*
|
|
2354
2375
|
* @summary Emails Delete
|
|
@@ -2374,7 +2395,7 @@ declare class EmailsApi extends BaseAPI {
|
|
|
2374
2395
|
* @throws {RequiredError}
|
|
2375
2396
|
* @memberof EmailsApi
|
|
2376
2397
|
*/
|
|
2377
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2398
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2378
2399
|
/**
|
|
2379
2400
|
*
|
|
2380
2401
|
* @summary Emails Delete
|
|
@@ -2444,6 +2465,65 @@ declare class HostawayApi extends BaseAPI {
|
|
|
2444
2465
|
*/
|
|
2445
2466
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2446
2467
|
}
|
|
2468
|
+
/**
|
|
2469
|
+
* InquiriesApi - axios parameter creator
|
|
2470
|
+
* @export
|
|
2471
|
+
*/
|
|
2472
|
+
declare const InquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2473
|
+
/**
|
|
2474
|
+
* List all listings
|
|
2475
|
+
* @summary Inquiries List
|
|
2476
|
+
* @param {string} [contactId]
|
|
2477
|
+
* @param {*} [options] Override http request option.
|
|
2478
|
+
* @throws {RequiredError}
|
|
2479
|
+
*/
|
|
2480
|
+
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2481
|
+
};
|
|
2482
|
+
/**
|
|
2483
|
+
* InquiriesApi - functional programming interface
|
|
2484
|
+
* @export
|
|
2485
|
+
*/
|
|
2486
|
+
declare const InquiriesApiFp: (configuration?: Configuration) => {
|
|
2487
|
+
/**
|
|
2488
|
+
* List all listings
|
|
2489
|
+
* @summary Inquiries List
|
|
2490
|
+
* @param {string} [contactId]
|
|
2491
|
+
* @param {*} [options] Override http request option.
|
|
2492
|
+
* @throws {RequiredError}
|
|
2493
|
+
*/
|
|
2494
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
2495
|
+
};
|
|
2496
|
+
/**
|
|
2497
|
+
* InquiriesApi - factory interface
|
|
2498
|
+
* @export
|
|
2499
|
+
*/
|
|
2500
|
+
declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2501
|
+
/**
|
|
2502
|
+
* List all listings
|
|
2503
|
+
* @summary Inquiries List
|
|
2504
|
+
* @param {string} [contactId]
|
|
2505
|
+
* @param {*} [options] Override http request option.
|
|
2506
|
+
* @throws {RequiredError}
|
|
2507
|
+
*/
|
|
2508
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
2509
|
+
};
|
|
2510
|
+
/**
|
|
2511
|
+
* InquiriesApi - object-oriented interface
|
|
2512
|
+
* @export
|
|
2513
|
+
* @class InquiriesApi
|
|
2514
|
+
* @extends {BaseAPI}
|
|
2515
|
+
*/
|
|
2516
|
+
declare class InquiriesApi extends BaseAPI {
|
|
2517
|
+
/**
|
|
2518
|
+
* List all listings
|
|
2519
|
+
* @summary Inquiries List
|
|
2520
|
+
* @param {string} [contactId]
|
|
2521
|
+
* @param {*} [options] Override http request option.
|
|
2522
|
+
* @throws {RequiredError}
|
|
2523
|
+
* @memberof InquiriesApi
|
|
2524
|
+
*/
|
|
2525
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
2526
|
+
}
|
|
2447
2527
|
/**
|
|
2448
2528
|
* ListingsApi - axios parameter creator
|
|
2449
2529
|
* @export
|
|
@@ -2470,7 +2550,7 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
2470
2550
|
* @param {*} [options] Override http request option.
|
|
2471
2551
|
* @throws {RequiredError}
|
|
2472
2552
|
*/
|
|
2473
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2553
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2474
2554
|
};
|
|
2475
2555
|
/**
|
|
2476
2556
|
* ListingsApi - factory interface
|
|
@@ -2484,7 +2564,7 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2484
2564
|
* @param {*} [options] Override http request option.
|
|
2485
2565
|
* @throws {RequiredError}
|
|
2486
2566
|
*/
|
|
2487
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2567
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
2488
2568
|
};
|
|
2489
2569
|
/**
|
|
2490
2570
|
* ListingsApi - object-oriented interface
|
|
@@ -2501,7 +2581,7 @@ declare class ListingsApi extends BaseAPI {
|
|
|
2501
2581
|
* @throws {RequiredError}
|
|
2502
2582
|
* @memberof ListingsApi
|
|
2503
2583
|
*/
|
|
2504
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2584
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
2505
2585
|
}
|
|
2506
2586
|
/**
|
|
2507
2587
|
* PhonesApi - axios parameter creator
|
|
@@ -2539,7 +2619,7 @@ declare const PhonesApiFp: (configuration?: Configuration) => {
|
|
|
2539
2619
|
* @param {*} [options] Override http request option.
|
|
2540
2620
|
* @throws {RequiredError}
|
|
2541
2621
|
*/
|
|
2542
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2622
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2543
2623
|
/**
|
|
2544
2624
|
*
|
|
2545
2625
|
* @summary Phones Delete
|
|
@@ -2562,7 +2642,7 @@ declare const PhonesApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2562
2642
|
* @param {*} [options] Override http request option.
|
|
2563
2643
|
* @throws {RequiredError}
|
|
2564
2644
|
*/
|
|
2565
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2645
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2566
2646
|
/**
|
|
2567
2647
|
*
|
|
2568
2648
|
* @summary Phones Delete
|
|
@@ -2588,7 +2668,7 @@ declare class PhonesApi extends BaseAPI {
|
|
|
2588
2668
|
* @throws {RequiredError}
|
|
2589
2669
|
* @memberof PhonesApi
|
|
2590
2670
|
*/
|
|
2591
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2671
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2592
2672
|
/**
|
|
2593
2673
|
*
|
|
2594
2674
|
* @summary Phones Delete
|
|
@@ -2625,7 +2705,7 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
2625
2705
|
* @param {*} [options] Override http request option.
|
|
2626
2706
|
* @throws {RequiredError}
|
|
2627
2707
|
*/
|
|
2628
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2708
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2629
2709
|
};
|
|
2630
2710
|
/**
|
|
2631
2711
|
* ReservationsApi - factory interface
|
|
@@ -2639,7 +2719,7 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2639
2719
|
* @param {*} [options] Override http request option.
|
|
2640
2720
|
* @throws {RequiredError}
|
|
2641
2721
|
*/
|
|
2642
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2722
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
2643
2723
|
};
|
|
2644
2724
|
/**
|
|
2645
2725
|
* ReservationsApi - object-oriented interface
|
|
@@ -2656,7 +2736,7 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
2656
2736
|
* @throws {RequiredError}
|
|
2657
2737
|
* @memberof ReservationsApi
|
|
2658
2738
|
*/
|
|
2659
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2739
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
2660
2740
|
}
|
|
2661
2741
|
/**
|
|
2662
2742
|
* UnboundApi - axios parameter creator
|
|
@@ -2718,10 +2798,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2718
2798
|
* @summary Contacts List
|
|
2719
2799
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2720
2800
|
* @param {string} [searchString]
|
|
2801
|
+
* @param {number} [limit]
|
|
2802
|
+
* @param {number} [offset]
|
|
2721
2803
|
* @param {*} [options] Override http request option.
|
|
2722
2804
|
* @throws {RequiredError}
|
|
2723
2805
|
*/
|
|
2724
|
-
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2806
|
+
contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2725
2807
|
/**
|
|
2726
2808
|
*
|
|
2727
2809
|
* @summary Contacts Update
|
|
@@ -2748,6 +2830,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2748
2830
|
* @throws {RequiredError}
|
|
2749
2831
|
*/
|
|
2750
2832
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2833
|
+
/**
|
|
2834
|
+
* List all listings
|
|
2835
|
+
* @summary Inquiries List
|
|
2836
|
+
* @param {string} [contactId]
|
|
2837
|
+
* @param {*} [options] Override http request option.
|
|
2838
|
+
* @throws {RequiredError}
|
|
2839
|
+
*/
|
|
2840
|
+
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2751
2841
|
/**
|
|
2752
2842
|
* List all listings
|
|
2753
2843
|
* @summary Listings List
|
|
@@ -2803,7 +2893,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2803
2893
|
* @param {*} [options] Override http request option.
|
|
2804
2894
|
* @throws {RequiredError}
|
|
2805
2895
|
*/
|
|
2806
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2896
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
2807
2897
|
/**
|
|
2808
2898
|
*
|
|
2809
2899
|
* @summary Addresses Delete
|
|
@@ -2820,7 +2910,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2820
2910
|
* @param {*} [options] Override http request option.
|
|
2821
2911
|
* @throws {RequiredError}
|
|
2822
2912
|
*/
|
|
2823
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2913
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
2824
2914
|
/**
|
|
2825
2915
|
*
|
|
2826
2916
|
* @summary Contacts Create
|
|
@@ -2828,7 +2918,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2828
2918
|
* @param {*} [options] Override http request option.
|
|
2829
2919
|
* @throws {RequiredError}
|
|
2830
2920
|
*/
|
|
2831
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2921
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
2832
2922
|
/**
|
|
2833
2923
|
*
|
|
2834
2924
|
* @summary Contacts Delete
|
|
@@ -2844,16 +2934,18 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2844
2934
|
* @param {*} [options] Override http request option.
|
|
2845
2935
|
* @throws {RequiredError}
|
|
2846
2936
|
*/
|
|
2847
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2937
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2848
2938
|
/**
|
|
2849
2939
|
*
|
|
2850
2940
|
* @summary Contacts List
|
|
2851
2941
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2852
2942
|
* @param {string} [searchString]
|
|
2943
|
+
* @param {number} [limit]
|
|
2944
|
+
* @param {number} [offset]
|
|
2853
2945
|
* @param {*} [options] Override http request option.
|
|
2854
2946
|
* @throws {RequiredError}
|
|
2855
2947
|
*/
|
|
2856
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2948
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2857
2949
|
/**
|
|
2858
2950
|
*
|
|
2859
2951
|
* @summary Contacts Update
|
|
@@ -2862,7 +2954,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2862
2954
|
* @param {*} [options] Override http request option.
|
|
2863
2955
|
* @throws {RequiredError}
|
|
2864
2956
|
*/
|
|
2865
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2957
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsUpdate>>;
|
|
2866
2958
|
/**
|
|
2867
2959
|
*
|
|
2868
2960
|
* @summary Emails Create
|
|
@@ -2871,7 +2963,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2871
2963
|
* @param {*} [options] Override http request option.
|
|
2872
2964
|
* @throws {RequiredError}
|
|
2873
2965
|
*/
|
|
2874
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2966
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2875
2967
|
/**
|
|
2876
2968
|
*
|
|
2877
2969
|
* @summary Emails Delete
|
|
@@ -2880,6 +2972,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2880
2972
|
* @throws {RequiredError}
|
|
2881
2973
|
*/
|
|
2882
2974
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2975
|
+
/**
|
|
2976
|
+
* List all listings
|
|
2977
|
+
* @summary Inquiries List
|
|
2978
|
+
* @param {string} [contactId]
|
|
2979
|
+
* @param {*} [options] Override http request option.
|
|
2980
|
+
* @throws {RequiredError}
|
|
2981
|
+
*/
|
|
2982
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
2883
2983
|
/**
|
|
2884
2984
|
* List all listings
|
|
2885
2985
|
* @summary Listings List
|
|
@@ -2887,7 +2987,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2887
2987
|
* @param {*} [options] Override http request option.
|
|
2888
2988
|
* @throws {RequiredError}
|
|
2889
2989
|
*/
|
|
2890
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2990
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2891
2991
|
/**
|
|
2892
2992
|
*
|
|
2893
2993
|
* @summary Phones Create
|
|
@@ -2896,7 +2996,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2896
2996
|
* @param {*} [options] Override http request option.
|
|
2897
2997
|
* @throws {RequiredError}
|
|
2898
2998
|
*/
|
|
2899
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2999
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2900
3000
|
/**
|
|
2901
3001
|
*
|
|
2902
3002
|
* @summary Phones Delete
|
|
@@ -2912,7 +3012,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2912
3012
|
* @param {*} [options] Override http request option.
|
|
2913
3013
|
* @throws {RequiredError}
|
|
2914
3014
|
*/
|
|
2915
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3015
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2916
3016
|
/**
|
|
2917
3017
|
*
|
|
2918
3018
|
* @summary Unifiedwebhook
|
|
@@ -2935,7 +3035,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2935
3035
|
* @param {*} [options] Override http request option.
|
|
2936
3036
|
* @throws {RequiredError}
|
|
2937
3037
|
*/
|
|
2938
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3038
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2939
3039
|
/**
|
|
2940
3040
|
*
|
|
2941
3041
|
* @summary Addresses Delete
|
|
@@ -2952,7 +3052,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2952
3052
|
* @param {*} [options] Override http request option.
|
|
2953
3053
|
* @throws {RequiredError}
|
|
2954
3054
|
*/
|
|
2955
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3055
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
2956
3056
|
/**
|
|
2957
3057
|
*
|
|
2958
3058
|
* @summary Contacts Create
|
|
@@ -2960,7 +3060,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2960
3060
|
* @param {*} [options] Override http request option.
|
|
2961
3061
|
* @throws {RequiredError}
|
|
2962
3062
|
*/
|
|
2963
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3063
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2964
3064
|
/**
|
|
2965
3065
|
*
|
|
2966
3066
|
* @summary Contacts Delete
|
|
@@ -2976,16 +3076,18 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2976
3076
|
* @param {*} [options] Override http request option.
|
|
2977
3077
|
* @throws {RequiredError}
|
|
2978
3078
|
*/
|
|
2979
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3079
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2980
3080
|
/**
|
|
2981
3081
|
*
|
|
2982
3082
|
* @summary Contacts List
|
|
2983
3083
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2984
3084
|
* @param {string} [searchString]
|
|
3085
|
+
* @param {number} [limit]
|
|
3086
|
+
* @param {number} [offset]
|
|
2985
3087
|
* @param {*} [options] Override http request option.
|
|
2986
3088
|
* @throws {RequiredError}
|
|
2987
3089
|
*/
|
|
2988
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3090
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2989
3091
|
/**
|
|
2990
3092
|
*
|
|
2991
3093
|
* @summary Contacts Update
|
|
@@ -2994,7 +3096,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2994
3096
|
* @param {*} [options] Override http request option.
|
|
2995
3097
|
* @throws {RequiredError}
|
|
2996
3098
|
*/
|
|
2997
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3099
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
2998
3100
|
/**
|
|
2999
3101
|
*
|
|
3000
3102
|
* @summary Emails Create
|
|
@@ -3003,7 +3105,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3003
3105
|
* @param {*} [options] Override http request option.
|
|
3004
3106
|
* @throws {RequiredError}
|
|
3005
3107
|
*/
|
|
3006
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3108
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
3007
3109
|
/**
|
|
3008
3110
|
*
|
|
3009
3111
|
* @summary Emails Delete
|
|
@@ -3012,6 +3114,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3012
3114
|
* @throws {RequiredError}
|
|
3013
3115
|
*/
|
|
3014
3116
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3117
|
+
/**
|
|
3118
|
+
* List all listings
|
|
3119
|
+
* @summary Inquiries List
|
|
3120
|
+
* @param {string} [contactId]
|
|
3121
|
+
* @param {*} [options] Override http request option.
|
|
3122
|
+
* @throws {RequiredError}
|
|
3123
|
+
*/
|
|
3124
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
3015
3125
|
/**
|
|
3016
3126
|
* List all listings
|
|
3017
3127
|
* @summary Listings List
|
|
@@ -3019,7 +3129,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3019
3129
|
* @param {*} [options] Override http request option.
|
|
3020
3130
|
* @throws {RequiredError}
|
|
3021
3131
|
*/
|
|
3022
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3132
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
3023
3133
|
/**
|
|
3024
3134
|
*
|
|
3025
3135
|
* @summary Phones Create
|
|
@@ -3028,7 +3138,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3028
3138
|
* @param {*} [options] Override http request option.
|
|
3029
3139
|
* @throws {RequiredError}
|
|
3030
3140
|
*/
|
|
3031
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3141
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
3032
3142
|
/**
|
|
3033
3143
|
*
|
|
3034
3144
|
* @summary Phones Delete
|
|
@@ -3044,7 +3154,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3044
3154
|
* @param {*} [options] Override http request option.
|
|
3045
3155
|
* @throws {RequiredError}
|
|
3046
3156
|
*/
|
|
3047
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3157
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
3048
3158
|
/**
|
|
3049
3159
|
*
|
|
3050
3160
|
* @summary Unifiedwebhook
|
|
@@ -3070,7 +3180,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3070
3180
|
* @throws {RequiredError}
|
|
3071
3181
|
* @memberof UnboundApi
|
|
3072
3182
|
*/
|
|
3073
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3183
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
3074
3184
|
/**
|
|
3075
3185
|
*
|
|
3076
3186
|
* @summary Addresses Delete
|
|
@@ -3089,7 +3199,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3089
3199
|
* @throws {RequiredError}
|
|
3090
3200
|
* @memberof UnboundApi
|
|
3091
3201
|
*/
|
|
3092
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3202
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
3093
3203
|
/**
|
|
3094
3204
|
*
|
|
3095
3205
|
* @summary Contacts Create
|
|
@@ -3098,7 +3208,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3098
3208
|
* @throws {RequiredError}
|
|
3099
3209
|
* @memberof UnboundApi
|
|
3100
3210
|
*/
|
|
3101
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3211
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
3102
3212
|
/**
|
|
3103
3213
|
*
|
|
3104
3214
|
* @summary Contacts Delete
|
|
@@ -3116,17 +3226,19 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3116
3226
|
* @throws {RequiredError}
|
|
3117
3227
|
* @memberof UnboundApi
|
|
3118
3228
|
*/
|
|
3119
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3229
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
3120
3230
|
/**
|
|
3121
3231
|
*
|
|
3122
3232
|
* @summary Contacts List
|
|
3123
3233
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
3124
3234
|
* @param {string} [searchString]
|
|
3235
|
+
* @param {number} [limit]
|
|
3236
|
+
* @param {number} [offset]
|
|
3125
3237
|
* @param {*} [options] Override http request option.
|
|
3126
3238
|
* @throws {RequiredError}
|
|
3127
3239
|
* @memberof UnboundApi
|
|
3128
3240
|
*/
|
|
3129
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3241
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3130
3242
|
/**
|
|
3131
3243
|
*
|
|
3132
3244
|
* @summary Contacts Update
|
|
@@ -3136,7 +3248,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3136
3248
|
* @throws {RequiredError}
|
|
3137
3249
|
* @memberof UnboundApi
|
|
3138
3250
|
*/
|
|
3139
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3251
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
3140
3252
|
/**
|
|
3141
3253
|
*
|
|
3142
3254
|
* @summary Emails Create
|
|
@@ -3146,7 +3258,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3146
3258
|
* @throws {RequiredError}
|
|
3147
3259
|
* @memberof UnboundApi
|
|
3148
3260
|
*/
|
|
3149
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3261
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
3150
3262
|
/**
|
|
3151
3263
|
*
|
|
3152
3264
|
* @summary Emails Delete
|
|
@@ -3156,6 +3268,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3156
3268
|
* @memberof UnboundApi
|
|
3157
3269
|
*/
|
|
3158
3270
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3271
|
+
/**
|
|
3272
|
+
* List all listings
|
|
3273
|
+
* @summary Inquiries List
|
|
3274
|
+
* @param {string} [contactId]
|
|
3275
|
+
* @param {*} [options] Override http request option.
|
|
3276
|
+
* @throws {RequiredError}
|
|
3277
|
+
* @memberof UnboundApi
|
|
3278
|
+
*/
|
|
3279
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
3159
3280
|
/**
|
|
3160
3281
|
* List all listings
|
|
3161
3282
|
* @summary Listings List
|
|
@@ -3164,7 +3285,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3164
3285
|
* @throws {RequiredError}
|
|
3165
3286
|
* @memberof UnboundApi
|
|
3166
3287
|
*/
|
|
3167
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3288
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
3168
3289
|
/**
|
|
3169
3290
|
*
|
|
3170
3291
|
* @summary Phones Create
|
|
@@ -3174,7 +3295,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3174
3295
|
* @throws {RequiredError}
|
|
3175
3296
|
* @memberof UnboundApi
|
|
3176
3297
|
*/
|
|
3177
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3298
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
3178
3299
|
/**
|
|
3179
3300
|
*
|
|
3180
3301
|
* @summary Phones Delete
|
|
@@ -3192,7 +3313,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3192
3313
|
* @throws {RequiredError}
|
|
3193
3314
|
* @memberof UnboundApi
|
|
3194
3315
|
*/
|
|
3195
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3316
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
3196
3317
|
/**
|
|
3197
3318
|
*
|
|
3198
3319
|
* @summary Unifiedwebhook
|
|
@@ -3204,4 +3325,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3204
3325
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3205
3326
|
}
|
|
3206
3327
|
|
|
3207
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type
|
|
3328
|
+
export { type APIValidationError, type APIValidationErrorLocInner, type AddressApi, type AddressCreate, type AddressItemApi, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeDataApi, ContactTypeFilter, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, DataSource, type EmailApi, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseInquiriesList, type ListResponseListingsList, type ListResponseReservationsList, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsList, type OwnerDataApi, type PaginatedResponseContacts, type PhoneApi, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreate, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsList, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|