@ember-home/unbound-ts-client 0.0.16 → 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 +491 -364
- package/dist/index.d.ts +491 -364
- 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.mts
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
581
|
'firstName': string | null;
|
|
582
582
|
/**
|
|
583
583
|
*
|
|
584
584
|
* @type {string}
|
|
585
|
-
* @memberof
|
|
585
|
+
* @memberof Contacts
|
|
586
586
|
*/
|
|
587
587
|
'lastName': string | null;
|
|
588
588
|
/**
|
|
589
589
|
*
|
|
590
590
|
* @type {string}
|
|
591
|
-
* @memberof
|
|
591
|
+
* @memberof Contacts
|
|
592
592
|
*/
|
|
593
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
756
|
'firstName': string | null;
|
|
757
757
|
/**
|
|
758
758
|
*
|
|
759
759
|
* @type {string}
|
|
760
|
-
* @memberof
|
|
760
|
+
* @memberof ContactsCreate
|
|
761
761
|
*/
|
|
762
762
|
'lastName': string | null;
|
|
763
763
|
/**
|
|
764
764
|
*
|
|
765
765
|
* @type {string}
|
|
766
|
-
* @memberof
|
|
766
|
+
* @memberof ContactsCreate
|
|
767
767
|
*/
|
|
768
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
931
|
'firstName': string | null;
|
|
932
932
|
/**
|
|
933
933
|
*
|
|
934
934
|
* @type {string}
|
|
935
|
-
* @memberof
|
|
935
|
+
* @memberof ContactsGet
|
|
936
936
|
*/
|
|
937
937
|
'lastName': string | null;
|
|
938
938
|
/**
|
|
939
939
|
*
|
|
940
940
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
941
|
+
* @memberof ContactsGet
|
|
942
942
|
*/
|
|
943
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
1106
|
'firstName': string | null;
|
|
1107
1107
|
/**
|
|
1108
1108
|
*
|
|
1109
1109
|
* @type {string}
|
|
1110
|
-
* @memberof
|
|
1110
|
+
* @memberof ContactsUpdate
|
|
1111
1111
|
*/
|
|
1112
1112
|
'lastName': string | null;
|
|
1113
1113
|
/**
|
|
1114
1114
|
*
|
|
1115
1115
|
* @type {string}
|
|
1116
|
-
* @memberof
|
|
1116
|
+
* @memberof ContactsUpdate
|
|
1117
1117
|
*/
|
|
1118
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,37 +1269,37 @@ 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
1277
|
* @type {string}
|
|
1278
|
-
* @memberof
|
|
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
1289
|
* @type {boolean}
|
|
1290
|
-
* @memberof
|
|
1290
|
+
* @memberof EmailApi
|
|
1291
1291
|
*/
|
|
1292
1292
|
'isPrimary': boolean;
|
|
1293
1293
|
/**
|
|
1294
1294
|
*
|
|
1295
1295
|
* @type {DataSource}
|
|
1296
|
-
* @memberof
|
|
1296
|
+
* @memberof EmailApi
|
|
1297
1297
|
*/
|
|
1298
1298
|
'dataSource': DataSource;
|
|
1299
1299
|
/**
|
|
1300
1300
|
*
|
|
1301
1301
|
* @type {string}
|
|
1302
|
-
* @memberof
|
|
1302
|
+
* @memberof EmailApi
|
|
1303
1303
|
*/
|
|
1304
1304
|
'deletedAt'?: string | null;
|
|
1305
1305
|
}
|
|
@@ -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
1333
|
* @type {string}
|
|
1334
|
-
* @memberof
|
|
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
1345
|
* @type {boolean}
|
|
1346
|
-
* @memberof
|
|
1346
|
+
* @memberof EmailsCreate
|
|
1347
1347
|
*/
|
|
1348
1348
|
'isPrimary': boolean;
|
|
1349
1349
|
/**
|
|
1350
1350
|
*
|
|
1351
1351
|
* @type {DataSource}
|
|
1352
|
-
* @memberof
|
|
1352
|
+
* @memberof EmailsCreate
|
|
1353
1353
|
*/
|
|
1354
1354
|
'dataSource': DataSource;
|
|
1355
1355
|
/**
|
|
1356
1356
|
*
|
|
1357
1357
|
* @type {string}
|
|
1358
|
-
* @memberof
|
|
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,157 +1445,176 @@ interface HostawayWebhook {
|
|
|
1445
1445
|
/**
|
|
1446
1446
|
*
|
|
1447
1447
|
* @export
|
|
1448
|
-
* @interface
|
|
1448
|
+
* @interface LeadDataApi
|
|
1449
1449
|
*/
|
|
1450
|
-
interface
|
|
1450
|
+
interface LeadDataApi {
|
|
1451
1451
|
/**
|
|
1452
1452
|
*
|
|
1453
1453
|
* @type {Array<string>}
|
|
1454
|
-
* @memberof
|
|
1454
|
+
* @memberof LeadDataApi
|
|
1455
1455
|
*/
|
|
1456
|
-
'listingIds'
|
|
1456
|
+
'listingIds': Array<string>;
|
|
1457
1457
|
}
|
|
1458
1458
|
/**
|
|
1459
1459
|
*
|
|
1460
1460
|
* @export
|
|
1461
|
-
* @interface
|
|
1461
|
+
* @interface ListResponseInquiriesList
|
|
1462
1462
|
*/
|
|
1463
|
-
interface
|
|
1463
|
+
interface ListResponseInquiriesList {
|
|
1464
1464
|
/**
|
|
1465
1465
|
*
|
|
1466
|
-
* @type {Array<
|
|
1467
|
-
* @memberof
|
|
1466
|
+
* @type {Array<object>}
|
|
1467
|
+
* @memberof ListResponseInquiriesList
|
|
1468
1468
|
*/
|
|
1469
|
-
'data': Array<
|
|
1469
|
+
'data': Array<object>;
|
|
1470
1470
|
}
|
|
1471
1471
|
/**
|
|
1472
1472
|
*
|
|
1473
1473
|
* @export
|
|
1474
|
-
* @interface
|
|
1474
|
+
* @interface ListResponseListingsList
|
|
1475
1475
|
*/
|
|
1476
|
-
interface
|
|
1476
|
+
interface ListResponseListingsList {
|
|
1477
1477
|
/**
|
|
1478
1478
|
*
|
|
1479
|
-
* @type {Array<
|
|
1480
|
-
* @memberof
|
|
1479
|
+
* @type {Array<ListingsList>}
|
|
1480
|
+
* @memberof ListResponseListingsList
|
|
1481
1481
|
*/
|
|
1482
|
-
'data': Array<
|
|
1482
|
+
'data': Array<ListingsList>;
|
|
1483
1483
|
}
|
|
1484
1484
|
/**
|
|
1485
1485
|
*
|
|
1486
1486
|
* @export
|
|
1487
|
-
* @interface
|
|
1487
|
+
* @interface ListResponseReservationsList
|
|
1488
1488
|
*/
|
|
1489
|
-
interface
|
|
1489
|
+
interface ListResponseReservationsList {
|
|
1490
1490
|
/**
|
|
1491
1491
|
*
|
|
1492
|
-
* @type {Array<
|
|
1493
|
-
* @memberof
|
|
1492
|
+
* @type {Array<ReservationsList>}
|
|
1493
|
+
* @memberof ListResponseReservationsList
|
|
1494
1494
|
*/
|
|
1495
|
-
'data': Array<
|
|
1495
|
+
'data': Array<ReservationsList>;
|
|
1496
1496
|
}
|
|
1497
1497
|
/**
|
|
1498
1498
|
*
|
|
1499
1499
|
* @export
|
|
1500
|
-
* @interface
|
|
1500
|
+
* @interface ListingsList
|
|
1501
1501
|
*/
|
|
1502
|
-
interface
|
|
1502
|
+
interface ListingsList {
|
|
1503
1503
|
/**
|
|
1504
1504
|
*
|
|
1505
1505
|
* @type {string}
|
|
1506
|
-
* @memberof
|
|
1506
|
+
* @memberof ListingsList
|
|
1507
1507
|
*/
|
|
1508
1508
|
'listingId'?: string | null;
|
|
1509
1509
|
/**
|
|
1510
1510
|
*
|
|
1511
1511
|
* @type {string}
|
|
1512
|
-
* @memberof
|
|
1512
|
+
* @memberof ListingsList
|
|
1513
1513
|
*/
|
|
1514
|
-
'
|
|
1514
|
+
'dataSource': string;
|
|
1515
1515
|
/**
|
|
1516
1516
|
*
|
|
1517
1517
|
* @type {string}
|
|
1518
|
-
* @memberof
|
|
1518
|
+
* @memberof ListingsList
|
|
1519
1519
|
*/
|
|
1520
1520
|
'providerListingId': string;
|
|
1521
1521
|
/**
|
|
1522
1522
|
*
|
|
1523
1523
|
* @type {string}
|
|
1524
|
-
* @memberof
|
|
1524
|
+
* @memberof ListingsList
|
|
1525
1525
|
*/
|
|
1526
1526
|
'title': string;
|
|
1527
1527
|
/**
|
|
1528
1528
|
*
|
|
1529
1529
|
* @type {string}
|
|
1530
|
-
* @memberof
|
|
1530
|
+
* @memberof ListingsList
|
|
1531
1531
|
*/
|
|
1532
1532
|
'description'?: string | null;
|
|
1533
1533
|
}
|
|
1534
1534
|
/**
|
|
1535
1535
|
*
|
|
1536
1536
|
* @export
|
|
1537
|
-
* @interface
|
|
1537
|
+
* @interface OwnerDataApi
|
|
1538
1538
|
*/
|
|
1539
|
-
interface
|
|
1539
|
+
interface OwnerDataApi {
|
|
1540
1540
|
/**
|
|
1541
1541
|
*
|
|
1542
1542
|
* @type {string}
|
|
1543
|
-
* @memberof
|
|
1543
|
+
* @memberof OwnerDataApi
|
|
1544
1544
|
*/
|
|
1545
1545
|
'firstBookedAt'?: string;
|
|
1546
1546
|
/**
|
|
1547
1547
|
*
|
|
1548
1548
|
* @type {string}
|
|
1549
|
-
* @memberof
|
|
1549
|
+
* @memberof OwnerDataApi
|
|
1550
1550
|
*/
|
|
1551
1551
|
'firstStayAt'?: string;
|
|
1552
1552
|
/**
|
|
1553
1553
|
*
|
|
1554
1554
|
* @type {number}
|
|
1555
|
-
* @memberof
|
|
1555
|
+
* @memberof OwnerDataApi
|
|
1556
1556
|
*/
|
|
1557
1557
|
'totalNightsStayed'?: number;
|
|
1558
1558
|
/**
|
|
1559
1559
|
*
|
|
1560
1560
|
* @type {Array<string>}
|
|
1561
|
-
* @memberof
|
|
1561
|
+
* @memberof OwnerDataApi
|
|
1562
1562
|
*/
|
|
1563
|
-
'listingIds'
|
|
1563
|
+
'listingIds': Array<string>;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
1566
1566
|
*
|
|
1567
1567
|
* @export
|
|
1568
|
-
* @interface
|
|
1568
|
+
* @interface PaginatedResponseContacts
|
|
1569
1569
|
*/
|
|
1570
|
-
interface
|
|
1570
|
+
interface PaginatedResponseContacts {
|
|
1571
|
+
/**
|
|
1572
|
+
*
|
|
1573
|
+
* @type {Array<Contacts>}
|
|
1574
|
+
* @memberof PaginatedResponseContacts
|
|
1575
|
+
*/
|
|
1576
|
+
'data': Array<Contacts>;
|
|
1577
|
+
/**
|
|
1578
|
+
*
|
|
1579
|
+
* @type {number}
|
|
1580
|
+
* @memberof PaginatedResponseContacts
|
|
1581
|
+
*/
|
|
1582
|
+
'total': number;
|
|
1583
|
+
}
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @export
|
|
1587
|
+
* @interface PhoneApi
|
|
1588
|
+
*/
|
|
1589
|
+
interface PhoneApi {
|
|
1571
1590
|
/**
|
|
1572
1591
|
*
|
|
1573
1592
|
* @type {string}
|
|
1574
|
-
* @memberof
|
|
1593
|
+
* @memberof PhoneApi
|
|
1575
1594
|
*/
|
|
1576
1595
|
'phoneId': string;
|
|
1577
1596
|
/**
|
|
1578
1597
|
*
|
|
1579
1598
|
* @type {string}
|
|
1580
|
-
* @memberof
|
|
1599
|
+
* @memberof PhoneApi
|
|
1581
1600
|
*/
|
|
1582
|
-
'phone': string
|
|
1601
|
+
'phone': string;
|
|
1583
1602
|
/**
|
|
1584
1603
|
*
|
|
1585
1604
|
* @type {DataSource}
|
|
1586
|
-
* @memberof
|
|
1605
|
+
* @memberof PhoneApi
|
|
1587
1606
|
*/
|
|
1588
1607
|
'dataSource': DataSource;
|
|
1589
1608
|
/**
|
|
1590
1609
|
*
|
|
1591
1610
|
* @type {string}
|
|
1592
|
-
* @memberof
|
|
1611
|
+
* @memberof PhoneApi
|
|
1593
1612
|
*/
|
|
1594
1613
|
'deletedAt'?: string | null;
|
|
1595
1614
|
/**
|
|
1596
1615
|
*
|
|
1597
1616
|
* @type {boolean}
|
|
1598
|
-
* @memberof
|
|
1617
|
+
* @memberof PhoneApi
|
|
1599
1618
|
*/
|
|
1600
1619
|
'isPrimary': boolean;
|
|
1601
1620
|
}
|
|
@@ -1610,7 +1629,7 @@ interface PhoneCreate {
|
|
|
1610
1629
|
* @type {string}
|
|
1611
1630
|
* @memberof PhoneCreate
|
|
1612
1631
|
*/
|
|
1613
|
-
'phone': string
|
|
1632
|
+
'phone': string;
|
|
1614
1633
|
/**
|
|
1615
1634
|
*
|
|
1616
1635
|
* @type {boolean}
|
|
@@ -1621,86 +1640,86 @@ interface PhoneCreate {
|
|
|
1621
1640
|
/**
|
|
1622
1641
|
*
|
|
1623
1642
|
* @export
|
|
1624
|
-
* @interface
|
|
1643
|
+
* @interface PhonesCreate
|
|
1625
1644
|
*/
|
|
1626
|
-
interface
|
|
1645
|
+
interface PhonesCreate {
|
|
1627
1646
|
/**
|
|
1628
1647
|
*
|
|
1629
1648
|
* @type {string}
|
|
1630
|
-
* @memberof
|
|
1649
|
+
* @memberof PhonesCreate
|
|
1631
1650
|
*/
|
|
1632
1651
|
'phoneId': string;
|
|
1633
1652
|
/**
|
|
1634
1653
|
*
|
|
1635
1654
|
* @type {string}
|
|
1636
|
-
* @memberof
|
|
1655
|
+
* @memberof PhonesCreate
|
|
1637
1656
|
*/
|
|
1638
|
-
'phone': string
|
|
1657
|
+
'phone': string;
|
|
1639
1658
|
/**
|
|
1640
1659
|
*
|
|
1641
1660
|
* @type {DataSource}
|
|
1642
|
-
* @memberof
|
|
1661
|
+
* @memberof PhonesCreate
|
|
1643
1662
|
*/
|
|
1644
1663
|
'dataSource': DataSource;
|
|
1645
1664
|
/**
|
|
1646
1665
|
*
|
|
1647
1666
|
* @type {string}
|
|
1648
|
-
* @memberof
|
|
1667
|
+
* @memberof PhonesCreate
|
|
1649
1668
|
*/
|
|
1650
1669
|
'deletedAt'?: string | null;
|
|
1651
1670
|
/**
|
|
1652
1671
|
*
|
|
1653
1672
|
* @type {boolean}
|
|
1654
|
-
* @memberof
|
|
1673
|
+
* @memberof PhonesCreate
|
|
1655
1674
|
*/
|
|
1656
1675
|
'isPrimary': boolean;
|
|
1657
1676
|
}
|
|
1658
1677
|
/**
|
|
1659
1678
|
*
|
|
1660
1679
|
* @export
|
|
1661
|
-
* @interface
|
|
1680
|
+
* @interface ReservationsList
|
|
1662
1681
|
*/
|
|
1663
|
-
interface
|
|
1682
|
+
interface ReservationsList {
|
|
1664
1683
|
/**
|
|
1665
1684
|
*
|
|
1666
1685
|
* @type {string}
|
|
1667
|
-
* @memberof
|
|
1686
|
+
* @memberof ReservationsList
|
|
1668
1687
|
*/
|
|
1669
1688
|
'providerReservationId': string;
|
|
1670
1689
|
/**
|
|
1671
1690
|
*
|
|
1672
1691
|
* @type {string}
|
|
1673
|
-
* @memberof
|
|
1692
|
+
* @memberof ReservationsList
|
|
1674
1693
|
*/
|
|
1675
1694
|
'providerListingId': string;
|
|
1676
1695
|
/**
|
|
1677
1696
|
*
|
|
1678
1697
|
* @type {string}
|
|
1679
|
-
* @memberof
|
|
1698
|
+
* @memberof ReservationsList
|
|
1680
1699
|
*/
|
|
1681
1700
|
'reservationStatus': string;
|
|
1682
1701
|
/**
|
|
1683
1702
|
*
|
|
1684
1703
|
* @type {string}
|
|
1685
|
-
* @memberof
|
|
1704
|
+
* @memberof ReservationsList
|
|
1686
1705
|
*/
|
|
1687
1706
|
'arrivalAtPropertyTz': string;
|
|
1688
1707
|
/**
|
|
1689
1708
|
*
|
|
1690
1709
|
* @type {string}
|
|
1691
|
-
* @memberof
|
|
1710
|
+
* @memberof ReservationsList
|
|
1692
1711
|
*/
|
|
1693
1712
|
'departureAtPropertyTz': string;
|
|
1694
1713
|
/**
|
|
1695
1714
|
*
|
|
1696
1715
|
* @type {number}
|
|
1697
|
-
* @memberof
|
|
1716
|
+
* @memberof ReservationsList
|
|
1698
1717
|
*/
|
|
1699
1718
|
'nights': number;
|
|
1700
1719
|
/**
|
|
1701
1720
|
*
|
|
1702
1721
|
* @type {number}
|
|
1703
|
-
* @memberof
|
|
1722
|
+
* @memberof ReservationsList
|
|
1704
1723
|
*/
|
|
1705
1724
|
'totalPrice': number;
|
|
1706
1725
|
}
|
|
@@ -1749,7 +1768,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1749
1768
|
* @param {*} [options] Override http request option.
|
|
1750
1769
|
* @throws {RequiredError}
|
|
1751
1770
|
*/
|
|
1752
|
-
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>>;
|
|
1753
1772
|
/**
|
|
1754
1773
|
*
|
|
1755
1774
|
* @summary Addresses Delete
|
|
@@ -1766,7 +1785,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1766
1785
|
* @param {*} [options] Override http request option.
|
|
1767
1786
|
* @throws {RequiredError}
|
|
1768
1787
|
*/
|
|
1769
|
-
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>>;
|
|
1770
1789
|
};
|
|
1771
1790
|
/**
|
|
1772
1791
|
* AddressesApi - factory interface
|
|
@@ -1781,7 +1800,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1781
1800
|
* @param {*} [options] Override http request option.
|
|
1782
1801
|
* @throws {RequiredError}
|
|
1783
1802
|
*/
|
|
1784
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1803
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
1785
1804
|
/**
|
|
1786
1805
|
*
|
|
1787
1806
|
* @summary Addresses Delete
|
|
@@ -1798,7 +1817,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1798
1817
|
* @param {*} [options] Override http request option.
|
|
1799
1818
|
* @throws {RequiredError}
|
|
1800
1819
|
*/
|
|
1801
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1820
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
1802
1821
|
};
|
|
1803
1822
|
/**
|
|
1804
1823
|
* AddressesApi - object-oriented interface
|
|
@@ -1816,7 +1835,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1816
1835
|
* @throws {RequiredError}
|
|
1817
1836
|
* @memberof AddressesApi
|
|
1818
1837
|
*/
|
|
1819
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1838
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
1820
1839
|
/**
|
|
1821
1840
|
*
|
|
1822
1841
|
* @summary Addresses Delete
|
|
@@ -1835,7 +1854,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1835
1854
|
* @throws {RequiredError}
|
|
1836
1855
|
* @memberof AddressesApi
|
|
1837
1856
|
*/
|
|
1838
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1857
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
1839
1858
|
}
|
|
1840
1859
|
/**
|
|
1841
1860
|
* ContactsApi - axios parameter creator
|
|
@@ -1897,10 +1916,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1897
1916
|
* @summary Contacts List
|
|
1898
1917
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1899
1918
|
* @param {string} [searchString]
|
|
1919
|
+
* @param {number} [limit]
|
|
1920
|
+
* @param {number} [offset]
|
|
1900
1921
|
* @param {*} [options] Override http request option.
|
|
1901
1922
|
* @throws {RequiredError}
|
|
1902
1923
|
*/
|
|
1903
|
-
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>;
|
|
1904
1925
|
/**
|
|
1905
1926
|
*
|
|
1906
1927
|
* @summary Contacts Update
|
|
@@ -1958,7 +1979,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1958
1979
|
* @param {*} [options] Override http request option.
|
|
1959
1980
|
* @throws {RequiredError}
|
|
1960
1981
|
*/
|
|
1961
|
-
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>>;
|
|
1962
1983
|
/**
|
|
1963
1984
|
*
|
|
1964
1985
|
* @summary Addresses Delete
|
|
@@ -1975,7 +1996,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1975
1996
|
* @param {*} [options] Override http request option.
|
|
1976
1997
|
* @throws {RequiredError}
|
|
1977
1998
|
*/
|
|
1978
|
-
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>>;
|
|
1979
2000
|
/**
|
|
1980
2001
|
*
|
|
1981
2002
|
* @summary Contacts Create
|
|
@@ -1983,7 +2004,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1983
2004
|
* @param {*} [options] Override http request option.
|
|
1984
2005
|
* @throws {RequiredError}
|
|
1985
2006
|
*/
|
|
1986
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2007
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
1987
2008
|
/**
|
|
1988
2009
|
*
|
|
1989
2010
|
* @summary Contacts Delete
|
|
@@ -1999,16 +2020,18 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1999
2020
|
* @param {*} [options] Override http request option.
|
|
2000
2021
|
* @throws {RequiredError}
|
|
2001
2022
|
*/
|
|
2002
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2023
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2003
2024
|
/**
|
|
2004
2025
|
*
|
|
2005
2026
|
* @summary Contacts List
|
|
2006
2027
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2007
2028
|
* @param {string} [searchString]
|
|
2029
|
+
* @param {number} [limit]
|
|
2030
|
+
* @param {number} [offset]
|
|
2008
2031
|
* @param {*} [options] Override http request option.
|
|
2009
2032
|
* @throws {RequiredError}
|
|
2010
2033
|
*/
|
|
2011
|
-
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>>;
|
|
2012
2035
|
/**
|
|
2013
2036
|
*
|
|
2014
2037
|
* @summary Contacts Update
|
|
@@ -2017,7 +2040,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2017
2040
|
* @param {*} [options] Override http request option.
|
|
2018
2041
|
* @throws {RequiredError}
|
|
2019
2042
|
*/
|
|
2020
|
-
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>>;
|
|
2021
2044
|
/**
|
|
2022
2045
|
*
|
|
2023
2046
|
* @summary Emails Create
|
|
@@ -2026,7 +2049,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2026
2049
|
* @param {*} [options] Override http request option.
|
|
2027
2050
|
* @throws {RequiredError}
|
|
2028
2051
|
*/
|
|
2029
|
-
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>>;
|
|
2030
2053
|
/**
|
|
2031
2054
|
*
|
|
2032
2055
|
* @summary Emails Delete
|
|
@@ -2043,7 +2066,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2043
2066
|
* @param {*} [options] Override http request option.
|
|
2044
2067
|
* @throws {RequiredError}
|
|
2045
2068
|
*/
|
|
2046
|
-
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>>;
|
|
2047
2070
|
/**
|
|
2048
2071
|
*
|
|
2049
2072
|
* @summary Phones Delete
|
|
@@ -2066,7 +2089,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2066
2089
|
* @param {*} [options] Override http request option.
|
|
2067
2090
|
* @throws {RequiredError}
|
|
2068
2091
|
*/
|
|
2069
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2092
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2070
2093
|
/**
|
|
2071
2094
|
*
|
|
2072
2095
|
* @summary Addresses Delete
|
|
@@ -2083,7 +2106,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2083
2106
|
* @param {*} [options] Override http request option.
|
|
2084
2107
|
* @throws {RequiredError}
|
|
2085
2108
|
*/
|
|
2086
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2109
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
2087
2110
|
/**
|
|
2088
2111
|
*
|
|
2089
2112
|
* @summary Contacts Create
|
|
@@ -2091,7 +2114,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2091
2114
|
* @param {*} [options] Override http request option.
|
|
2092
2115
|
* @throws {RequiredError}
|
|
2093
2116
|
*/
|
|
2094
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2117
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2095
2118
|
/**
|
|
2096
2119
|
*
|
|
2097
2120
|
* @summary Contacts Delete
|
|
@@ -2107,16 +2130,18 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2107
2130
|
* @param {*} [options] Override http request option.
|
|
2108
2131
|
* @throws {RequiredError}
|
|
2109
2132
|
*/
|
|
2110
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2133
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2111
2134
|
/**
|
|
2112
2135
|
*
|
|
2113
2136
|
* @summary Contacts List
|
|
2114
2137
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2115
2138
|
* @param {string} [searchString]
|
|
2139
|
+
* @param {number} [limit]
|
|
2140
|
+
* @param {number} [offset]
|
|
2116
2141
|
* @param {*} [options] Override http request option.
|
|
2117
2142
|
* @throws {RequiredError}
|
|
2118
2143
|
*/
|
|
2119
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2144
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2120
2145
|
/**
|
|
2121
2146
|
*
|
|
2122
2147
|
* @summary Contacts Update
|
|
@@ -2125,7 +2150,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2125
2150
|
* @param {*} [options] Override http request option.
|
|
2126
2151
|
* @throws {RequiredError}
|
|
2127
2152
|
*/
|
|
2128
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2153
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
2129
2154
|
/**
|
|
2130
2155
|
*
|
|
2131
2156
|
* @summary Emails Create
|
|
@@ -2134,7 +2159,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2134
2159
|
* @param {*} [options] Override http request option.
|
|
2135
2160
|
* @throws {RequiredError}
|
|
2136
2161
|
*/
|
|
2137
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2162
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2138
2163
|
/**
|
|
2139
2164
|
*
|
|
2140
2165
|
* @summary Emails Delete
|
|
@@ -2151,7 +2176,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2151
2176
|
* @param {*} [options] Override http request option.
|
|
2152
2177
|
* @throws {RequiredError}
|
|
2153
2178
|
*/
|
|
2154
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2179
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2155
2180
|
/**
|
|
2156
2181
|
*
|
|
2157
2182
|
* @summary Phones Delete
|
|
@@ -2177,7 +2202,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2177
2202
|
* @throws {RequiredError}
|
|
2178
2203
|
* @memberof ContactsApi
|
|
2179
2204
|
*/
|
|
2180
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2205
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
2181
2206
|
/**
|
|
2182
2207
|
*
|
|
2183
2208
|
* @summary Addresses Delete
|
|
@@ -2196,7 +2221,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2196
2221
|
* @throws {RequiredError}
|
|
2197
2222
|
* @memberof ContactsApi
|
|
2198
2223
|
*/
|
|
2199
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2224
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
2200
2225
|
/**
|
|
2201
2226
|
*
|
|
2202
2227
|
* @summary Contacts Create
|
|
@@ -2205,7 +2230,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2205
2230
|
* @throws {RequiredError}
|
|
2206
2231
|
* @memberof ContactsApi
|
|
2207
2232
|
*/
|
|
2208
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2233
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
2209
2234
|
/**
|
|
2210
2235
|
*
|
|
2211
2236
|
* @summary Contacts Delete
|
|
@@ -2223,17 +2248,19 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2223
2248
|
* @throws {RequiredError}
|
|
2224
2249
|
* @memberof ContactsApi
|
|
2225
2250
|
*/
|
|
2226
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2251
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
2227
2252
|
/**
|
|
2228
2253
|
*
|
|
2229
2254
|
* @summary Contacts List
|
|
2230
2255
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2231
2256
|
* @param {string} [searchString]
|
|
2257
|
+
* @param {number} [limit]
|
|
2258
|
+
* @param {number} [offset]
|
|
2232
2259
|
* @param {*} [options] Override http request option.
|
|
2233
2260
|
* @throws {RequiredError}
|
|
2234
2261
|
* @memberof ContactsApi
|
|
2235
2262
|
*/
|
|
2236
|
-
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>>;
|
|
2237
2264
|
/**
|
|
2238
2265
|
*
|
|
2239
2266
|
* @summary Contacts Update
|
|
@@ -2243,7 +2270,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2243
2270
|
* @throws {RequiredError}
|
|
2244
2271
|
* @memberof ContactsApi
|
|
2245
2272
|
*/
|
|
2246
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2273
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
2247
2274
|
/**
|
|
2248
2275
|
*
|
|
2249
2276
|
* @summary Emails Create
|
|
@@ -2253,7 +2280,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2253
2280
|
* @throws {RequiredError}
|
|
2254
2281
|
* @memberof ContactsApi
|
|
2255
2282
|
*/
|
|
2256
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2283
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2257
2284
|
/**
|
|
2258
2285
|
*
|
|
2259
2286
|
* @summary Emails Delete
|
|
@@ -2272,7 +2299,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2272
2299
|
* @throws {RequiredError}
|
|
2273
2300
|
* @memberof ContactsApi
|
|
2274
2301
|
*/
|
|
2275
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2302
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2276
2303
|
/**
|
|
2277
2304
|
*
|
|
2278
2305
|
* @summary Phones Delete
|
|
@@ -2319,7 +2346,7 @@ declare const EmailsApiFp: (configuration?: Configuration) => {
|
|
|
2319
2346
|
* @param {*} [options] Override http request option.
|
|
2320
2347
|
* @throws {RequiredError}
|
|
2321
2348
|
*/
|
|
2322
|
-
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>>;
|
|
2323
2350
|
/**
|
|
2324
2351
|
*
|
|
2325
2352
|
* @summary Emails Delete
|
|
@@ -2342,7 +2369,7 @@ declare const EmailsApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2342
2369
|
* @param {*} [options] Override http request option.
|
|
2343
2370
|
* @throws {RequiredError}
|
|
2344
2371
|
*/
|
|
2345
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2372
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2346
2373
|
/**
|
|
2347
2374
|
*
|
|
2348
2375
|
* @summary Emails Delete
|
|
@@ -2368,7 +2395,7 @@ declare class EmailsApi extends BaseAPI {
|
|
|
2368
2395
|
* @throws {RequiredError}
|
|
2369
2396
|
* @memberof EmailsApi
|
|
2370
2397
|
*/
|
|
2371
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2398
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2372
2399
|
/**
|
|
2373
2400
|
*
|
|
2374
2401
|
* @summary Emails Delete
|
|
@@ -2438,6 +2465,65 @@ declare class HostawayApi extends BaseAPI {
|
|
|
2438
2465
|
*/
|
|
2439
2466
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2440
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
|
+
}
|
|
2441
2527
|
/**
|
|
2442
2528
|
* ListingsApi - axios parameter creator
|
|
2443
2529
|
* @export
|
|
@@ -2464,7 +2550,7 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
2464
2550
|
* @param {*} [options] Override http request option.
|
|
2465
2551
|
* @throws {RequiredError}
|
|
2466
2552
|
*/
|
|
2467
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2553
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2468
2554
|
};
|
|
2469
2555
|
/**
|
|
2470
2556
|
* ListingsApi - factory interface
|
|
@@ -2478,7 +2564,7 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2478
2564
|
* @param {*} [options] Override http request option.
|
|
2479
2565
|
* @throws {RequiredError}
|
|
2480
2566
|
*/
|
|
2481
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2567
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
2482
2568
|
};
|
|
2483
2569
|
/**
|
|
2484
2570
|
* ListingsApi - object-oriented interface
|
|
@@ -2495,7 +2581,7 @@ declare class ListingsApi extends BaseAPI {
|
|
|
2495
2581
|
* @throws {RequiredError}
|
|
2496
2582
|
* @memberof ListingsApi
|
|
2497
2583
|
*/
|
|
2498
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2584
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
2499
2585
|
}
|
|
2500
2586
|
/**
|
|
2501
2587
|
* PhonesApi - axios parameter creator
|
|
@@ -2533,7 +2619,7 @@ declare const PhonesApiFp: (configuration?: Configuration) => {
|
|
|
2533
2619
|
* @param {*} [options] Override http request option.
|
|
2534
2620
|
* @throws {RequiredError}
|
|
2535
2621
|
*/
|
|
2536
|
-
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>>;
|
|
2537
2623
|
/**
|
|
2538
2624
|
*
|
|
2539
2625
|
* @summary Phones Delete
|
|
@@ -2556,7 +2642,7 @@ declare const PhonesApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2556
2642
|
* @param {*} [options] Override http request option.
|
|
2557
2643
|
* @throws {RequiredError}
|
|
2558
2644
|
*/
|
|
2559
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2645
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2560
2646
|
/**
|
|
2561
2647
|
*
|
|
2562
2648
|
* @summary Phones Delete
|
|
@@ -2582,7 +2668,7 @@ declare class PhonesApi extends BaseAPI {
|
|
|
2582
2668
|
* @throws {RequiredError}
|
|
2583
2669
|
* @memberof PhonesApi
|
|
2584
2670
|
*/
|
|
2585
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2671
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2586
2672
|
/**
|
|
2587
2673
|
*
|
|
2588
2674
|
* @summary Phones Delete
|
|
@@ -2619,7 +2705,7 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
2619
2705
|
* @param {*} [options] Override http request option.
|
|
2620
2706
|
* @throws {RequiredError}
|
|
2621
2707
|
*/
|
|
2622
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2708
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2623
2709
|
};
|
|
2624
2710
|
/**
|
|
2625
2711
|
* ReservationsApi - factory interface
|
|
@@ -2633,7 +2719,7 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2633
2719
|
* @param {*} [options] Override http request option.
|
|
2634
2720
|
* @throws {RequiredError}
|
|
2635
2721
|
*/
|
|
2636
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2722
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
2637
2723
|
};
|
|
2638
2724
|
/**
|
|
2639
2725
|
* ReservationsApi - object-oriented interface
|
|
@@ -2650,7 +2736,7 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
2650
2736
|
* @throws {RequiredError}
|
|
2651
2737
|
* @memberof ReservationsApi
|
|
2652
2738
|
*/
|
|
2653
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2739
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
2654
2740
|
}
|
|
2655
2741
|
/**
|
|
2656
2742
|
* UnboundApi - axios parameter creator
|
|
@@ -2712,10 +2798,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2712
2798
|
* @summary Contacts List
|
|
2713
2799
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2714
2800
|
* @param {string} [searchString]
|
|
2801
|
+
* @param {number} [limit]
|
|
2802
|
+
* @param {number} [offset]
|
|
2715
2803
|
* @param {*} [options] Override http request option.
|
|
2716
2804
|
* @throws {RequiredError}
|
|
2717
2805
|
*/
|
|
2718
|
-
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>;
|
|
2719
2807
|
/**
|
|
2720
2808
|
*
|
|
2721
2809
|
* @summary Contacts Update
|
|
@@ -2742,6 +2830,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2742
2830
|
* @throws {RequiredError}
|
|
2743
2831
|
*/
|
|
2744
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>;
|
|
2745
2841
|
/**
|
|
2746
2842
|
* List all listings
|
|
2747
2843
|
* @summary Listings List
|
|
@@ -2797,7 +2893,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2797
2893
|
* @param {*} [options] Override http request option.
|
|
2798
2894
|
* @throws {RequiredError}
|
|
2799
2895
|
*/
|
|
2800
|
-
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>>;
|
|
2801
2897
|
/**
|
|
2802
2898
|
*
|
|
2803
2899
|
* @summary Addresses Delete
|
|
@@ -2814,7 +2910,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2814
2910
|
* @param {*} [options] Override http request option.
|
|
2815
2911
|
* @throws {RequiredError}
|
|
2816
2912
|
*/
|
|
2817
|
-
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>>;
|
|
2818
2914
|
/**
|
|
2819
2915
|
*
|
|
2820
2916
|
* @summary Contacts Create
|
|
@@ -2822,7 +2918,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2822
2918
|
* @param {*} [options] Override http request option.
|
|
2823
2919
|
* @throws {RequiredError}
|
|
2824
2920
|
*/
|
|
2825
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2921
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
2826
2922
|
/**
|
|
2827
2923
|
*
|
|
2828
2924
|
* @summary Contacts Delete
|
|
@@ -2838,16 +2934,18 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2838
2934
|
* @param {*} [options] Override http request option.
|
|
2839
2935
|
* @throws {RequiredError}
|
|
2840
2936
|
*/
|
|
2841
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2937
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2842
2938
|
/**
|
|
2843
2939
|
*
|
|
2844
2940
|
* @summary Contacts List
|
|
2845
2941
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2846
2942
|
* @param {string} [searchString]
|
|
2943
|
+
* @param {number} [limit]
|
|
2944
|
+
* @param {number} [offset]
|
|
2847
2945
|
* @param {*} [options] Override http request option.
|
|
2848
2946
|
* @throws {RequiredError}
|
|
2849
2947
|
*/
|
|
2850
|
-
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>>;
|
|
2851
2949
|
/**
|
|
2852
2950
|
*
|
|
2853
2951
|
* @summary Contacts Update
|
|
@@ -2856,7 +2954,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2856
2954
|
* @param {*} [options] Override http request option.
|
|
2857
2955
|
* @throws {RequiredError}
|
|
2858
2956
|
*/
|
|
2859
|
-
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>>;
|
|
2860
2958
|
/**
|
|
2861
2959
|
*
|
|
2862
2960
|
* @summary Emails Create
|
|
@@ -2865,7 +2963,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2865
2963
|
* @param {*} [options] Override http request option.
|
|
2866
2964
|
* @throws {RequiredError}
|
|
2867
2965
|
*/
|
|
2868
|
-
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>>;
|
|
2869
2967
|
/**
|
|
2870
2968
|
*
|
|
2871
2969
|
* @summary Emails Delete
|
|
@@ -2874,6 +2972,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2874
2972
|
* @throws {RequiredError}
|
|
2875
2973
|
*/
|
|
2876
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>>;
|
|
2877
2983
|
/**
|
|
2878
2984
|
* List all listings
|
|
2879
2985
|
* @summary Listings List
|
|
@@ -2881,7 +2987,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2881
2987
|
* @param {*} [options] Override http request option.
|
|
2882
2988
|
* @throws {RequiredError}
|
|
2883
2989
|
*/
|
|
2884
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2990
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2885
2991
|
/**
|
|
2886
2992
|
*
|
|
2887
2993
|
* @summary Phones Create
|
|
@@ -2890,7 +2996,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2890
2996
|
* @param {*} [options] Override http request option.
|
|
2891
2997
|
* @throws {RequiredError}
|
|
2892
2998
|
*/
|
|
2893
|
-
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>>;
|
|
2894
3000
|
/**
|
|
2895
3001
|
*
|
|
2896
3002
|
* @summary Phones Delete
|
|
@@ -2906,7 +3012,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2906
3012
|
* @param {*} [options] Override http request option.
|
|
2907
3013
|
* @throws {RequiredError}
|
|
2908
3014
|
*/
|
|
2909
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3015
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2910
3016
|
/**
|
|
2911
3017
|
*
|
|
2912
3018
|
* @summary Unifiedwebhook
|
|
@@ -2929,7 +3035,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2929
3035
|
* @param {*} [options] Override http request option.
|
|
2930
3036
|
* @throws {RequiredError}
|
|
2931
3037
|
*/
|
|
2932
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3038
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2933
3039
|
/**
|
|
2934
3040
|
*
|
|
2935
3041
|
* @summary Addresses Delete
|
|
@@ -2946,7 +3052,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2946
3052
|
* @param {*} [options] Override http request option.
|
|
2947
3053
|
* @throws {RequiredError}
|
|
2948
3054
|
*/
|
|
2949
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3055
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
2950
3056
|
/**
|
|
2951
3057
|
*
|
|
2952
3058
|
* @summary Contacts Create
|
|
@@ -2954,7 +3060,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2954
3060
|
* @param {*} [options] Override http request option.
|
|
2955
3061
|
* @throws {RequiredError}
|
|
2956
3062
|
*/
|
|
2957
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3063
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2958
3064
|
/**
|
|
2959
3065
|
*
|
|
2960
3066
|
* @summary Contacts Delete
|
|
@@ -2970,16 +3076,18 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2970
3076
|
* @param {*} [options] Override http request option.
|
|
2971
3077
|
* @throws {RequiredError}
|
|
2972
3078
|
*/
|
|
2973
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3079
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2974
3080
|
/**
|
|
2975
3081
|
*
|
|
2976
3082
|
* @summary Contacts List
|
|
2977
3083
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2978
3084
|
* @param {string} [searchString]
|
|
3085
|
+
* @param {number} [limit]
|
|
3086
|
+
* @param {number} [offset]
|
|
2979
3087
|
* @param {*} [options] Override http request option.
|
|
2980
3088
|
* @throws {RequiredError}
|
|
2981
3089
|
*/
|
|
2982
|
-
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3090
|
+
contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2983
3091
|
/**
|
|
2984
3092
|
*
|
|
2985
3093
|
* @summary Contacts Update
|
|
@@ -2988,7 +3096,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2988
3096
|
* @param {*} [options] Override http request option.
|
|
2989
3097
|
* @throws {RequiredError}
|
|
2990
3098
|
*/
|
|
2991
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3099
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
2992
3100
|
/**
|
|
2993
3101
|
*
|
|
2994
3102
|
* @summary Emails Create
|
|
@@ -2997,7 +3105,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2997
3105
|
* @param {*} [options] Override http request option.
|
|
2998
3106
|
* @throws {RequiredError}
|
|
2999
3107
|
*/
|
|
3000
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3108
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
3001
3109
|
/**
|
|
3002
3110
|
*
|
|
3003
3111
|
* @summary Emails Delete
|
|
@@ -3006,6 +3114,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3006
3114
|
* @throws {RequiredError}
|
|
3007
3115
|
*/
|
|
3008
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>;
|
|
3009
3125
|
/**
|
|
3010
3126
|
* List all listings
|
|
3011
3127
|
* @summary Listings List
|
|
@@ -3013,7 +3129,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3013
3129
|
* @param {*} [options] Override http request option.
|
|
3014
3130
|
* @throws {RequiredError}
|
|
3015
3131
|
*/
|
|
3016
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3132
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
3017
3133
|
/**
|
|
3018
3134
|
*
|
|
3019
3135
|
* @summary Phones Create
|
|
@@ -3022,7 +3138,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3022
3138
|
* @param {*} [options] Override http request option.
|
|
3023
3139
|
* @throws {RequiredError}
|
|
3024
3140
|
*/
|
|
3025
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3141
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
3026
3142
|
/**
|
|
3027
3143
|
*
|
|
3028
3144
|
* @summary Phones Delete
|
|
@@ -3038,7 +3154,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3038
3154
|
* @param {*} [options] Override http request option.
|
|
3039
3155
|
* @throws {RequiredError}
|
|
3040
3156
|
*/
|
|
3041
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3157
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
3042
3158
|
/**
|
|
3043
3159
|
*
|
|
3044
3160
|
* @summary Unifiedwebhook
|
|
@@ -3064,7 +3180,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3064
3180
|
* @throws {RequiredError}
|
|
3065
3181
|
* @memberof UnboundApi
|
|
3066
3182
|
*/
|
|
3067
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3183
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
3068
3184
|
/**
|
|
3069
3185
|
*
|
|
3070
3186
|
* @summary Addresses Delete
|
|
@@ -3083,7 +3199,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3083
3199
|
* @throws {RequiredError}
|
|
3084
3200
|
* @memberof UnboundApi
|
|
3085
3201
|
*/
|
|
3086
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3202
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
3087
3203
|
/**
|
|
3088
3204
|
*
|
|
3089
3205
|
* @summary Contacts Create
|
|
@@ -3092,7 +3208,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3092
3208
|
* @throws {RequiredError}
|
|
3093
3209
|
* @memberof UnboundApi
|
|
3094
3210
|
*/
|
|
3095
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3211
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
3096
3212
|
/**
|
|
3097
3213
|
*
|
|
3098
3214
|
* @summary Contacts Delete
|
|
@@ -3110,17 +3226,19 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3110
3226
|
* @throws {RequiredError}
|
|
3111
3227
|
* @memberof UnboundApi
|
|
3112
3228
|
*/
|
|
3113
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3229
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
3114
3230
|
/**
|
|
3115
3231
|
*
|
|
3116
3232
|
* @summary Contacts List
|
|
3117
3233
|
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
3118
3234
|
* @param {string} [searchString]
|
|
3235
|
+
* @param {number} [limit]
|
|
3236
|
+
* @param {number} [offset]
|
|
3119
3237
|
* @param {*} [options] Override http request option.
|
|
3120
3238
|
* @throws {RequiredError}
|
|
3121
3239
|
* @memberof UnboundApi
|
|
3122
3240
|
*/
|
|
3123
|
-
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>>;
|
|
3124
3242
|
/**
|
|
3125
3243
|
*
|
|
3126
3244
|
* @summary Contacts Update
|
|
@@ -3130,7 +3248,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3130
3248
|
* @throws {RequiredError}
|
|
3131
3249
|
* @memberof UnboundApi
|
|
3132
3250
|
*/
|
|
3133
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3251
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
3134
3252
|
/**
|
|
3135
3253
|
*
|
|
3136
3254
|
* @summary Emails Create
|
|
@@ -3140,7 +3258,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3140
3258
|
* @throws {RequiredError}
|
|
3141
3259
|
* @memberof UnboundApi
|
|
3142
3260
|
*/
|
|
3143
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3261
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
3144
3262
|
/**
|
|
3145
3263
|
*
|
|
3146
3264
|
* @summary Emails Delete
|
|
@@ -3150,6 +3268,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3150
3268
|
* @memberof UnboundApi
|
|
3151
3269
|
*/
|
|
3152
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>>;
|
|
3153
3280
|
/**
|
|
3154
3281
|
* List all listings
|
|
3155
3282
|
* @summary Listings List
|
|
@@ -3158,7 +3285,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3158
3285
|
* @throws {RequiredError}
|
|
3159
3286
|
* @memberof UnboundApi
|
|
3160
3287
|
*/
|
|
3161
|
-
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3288
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
3162
3289
|
/**
|
|
3163
3290
|
*
|
|
3164
3291
|
* @summary Phones Create
|
|
@@ -3168,7 +3295,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3168
3295
|
* @throws {RequiredError}
|
|
3169
3296
|
* @memberof UnboundApi
|
|
3170
3297
|
*/
|
|
3171
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3298
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
3172
3299
|
/**
|
|
3173
3300
|
*
|
|
3174
3301
|
* @summary Phones Delete
|
|
@@ -3186,7 +3313,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3186
3313
|
* @throws {RequiredError}
|
|
3187
3314
|
* @memberof UnboundApi
|
|
3188
3315
|
*/
|
|
3189
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3316
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
3190
3317
|
/**
|
|
3191
3318
|
*
|
|
3192
3319
|
* @summary Unifiedwebhook
|
|
@@ -3198,4 +3325,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3198
3325
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3199
3326
|
}
|
|
3200
3327
|
|
|
3201
|
-
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 };
|