@ember-home/unbound-ts-client 0.0.16 → 0.0.18
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 +862 -414
- package/dist/index.d.ts +862 -414
- package/dist/index.js +694 -127
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +632 -65
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,43 +159,43 @@ type APIValidationErrorLocInner = number | string;
|
|
|
159
159
|
/**
|
|
160
160
|
*
|
|
161
161
|
* @export
|
|
162
|
-
* @interface
|
|
162
|
+
* @interface AddressApi
|
|
163
163
|
*/
|
|
164
|
-
interface
|
|
164
|
+
interface AddressApi {
|
|
165
165
|
/**
|
|
166
166
|
*
|
|
167
167
|
* @type {string}
|
|
168
|
-
* @memberof
|
|
168
|
+
* @memberof AddressApi
|
|
169
169
|
*/
|
|
170
170
|
'street1': string | null;
|
|
171
171
|
/**
|
|
172
172
|
*
|
|
173
173
|
* @type {string}
|
|
174
|
-
* @memberof
|
|
174
|
+
* @memberof AddressApi
|
|
175
175
|
*/
|
|
176
176
|
'street2'?: string | null;
|
|
177
177
|
/**
|
|
178
178
|
*
|
|
179
179
|
* @type {string}
|
|
180
|
-
* @memberof
|
|
180
|
+
* @memberof AddressApi
|
|
181
181
|
*/
|
|
182
182
|
'country': string | null;
|
|
183
183
|
/**
|
|
184
184
|
*
|
|
185
185
|
* @type {string}
|
|
186
|
-
* @memberof
|
|
186
|
+
* @memberof AddressApi
|
|
187
187
|
*/
|
|
188
188
|
'locality': string | null;
|
|
189
189
|
/**
|
|
190
190
|
*
|
|
191
191
|
* @type {string}
|
|
192
|
-
* @memberof
|
|
192
|
+
* @memberof AddressApi
|
|
193
193
|
*/
|
|
194
194
|
'postalCode': string | null;
|
|
195
195
|
/**
|
|
196
196
|
*
|
|
197
197
|
* @type {string}
|
|
198
|
-
* @memberof
|
|
198
|
+
* @memberof AddressApi
|
|
199
199
|
*/
|
|
200
200
|
'region': string | null;
|
|
201
201
|
}
|
|
@@ -245,67 +245,67 @@ interface AddressCreate {
|
|
|
245
245
|
/**
|
|
246
246
|
*
|
|
247
247
|
* @export
|
|
248
|
-
* @interface
|
|
248
|
+
* @interface AddressItemApi
|
|
249
249
|
*/
|
|
250
|
-
interface
|
|
250
|
+
interface AddressItemApi {
|
|
251
251
|
/**
|
|
252
252
|
*
|
|
253
253
|
* @type {string}
|
|
254
|
-
* @memberof
|
|
254
|
+
* @memberof AddressItemApi
|
|
255
255
|
*/
|
|
256
256
|
'street1': string | null;
|
|
257
257
|
/**
|
|
258
258
|
*
|
|
259
259
|
* @type {string}
|
|
260
|
-
* @memberof
|
|
260
|
+
* @memberof AddressItemApi
|
|
261
261
|
*/
|
|
262
262
|
'street2'?: string | null;
|
|
263
263
|
/**
|
|
264
264
|
*
|
|
265
265
|
* @type {string}
|
|
266
|
-
* @memberof
|
|
266
|
+
* @memberof AddressItemApi
|
|
267
267
|
*/
|
|
268
268
|
'country': string | null;
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
271
|
* @type {string}
|
|
272
|
-
* @memberof
|
|
272
|
+
* @memberof AddressItemApi
|
|
273
273
|
*/
|
|
274
274
|
'locality': string | null;
|
|
275
275
|
/**
|
|
276
276
|
*
|
|
277
277
|
* @type {string}
|
|
278
|
-
* @memberof
|
|
278
|
+
* @memberof AddressItemApi
|
|
279
279
|
*/
|
|
280
280
|
'postalCode': string | null;
|
|
281
281
|
/**
|
|
282
282
|
*
|
|
283
283
|
* @type {string}
|
|
284
|
-
* @memberof
|
|
284
|
+
* @memberof AddressItemApi
|
|
285
285
|
*/
|
|
286
286
|
'region': string | null;
|
|
287
287
|
/**
|
|
288
288
|
*
|
|
289
289
|
* @type {string}
|
|
290
|
-
* @memberof
|
|
290
|
+
* @memberof AddressItemApi
|
|
291
291
|
*/
|
|
292
292
|
'addressId': string;
|
|
293
293
|
/**
|
|
294
294
|
*
|
|
295
|
-
* @type {
|
|
296
|
-
* @memberof
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof AddressItemApi
|
|
297
297
|
*/
|
|
298
|
-
'
|
|
298
|
+
'providerId': string;
|
|
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
|
}
|
|
@@ -449,13 +449,19 @@ interface ContactCreate {
|
|
|
449
449
|
* @type {string}
|
|
450
450
|
* @memberof ContactCreate
|
|
451
451
|
*/
|
|
452
|
-
'firstName'
|
|
452
|
+
'firstName'?: string | null;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ContactCreate
|
|
457
|
+
*/
|
|
458
|
+
'lastName'?: string | null;
|
|
453
459
|
/**
|
|
454
460
|
*
|
|
455
461
|
* @type {string}
|
|
456
462
|
* @memberof ContactCreate
|
|
457
463
|
*/
|
|
458
|
-
'
|
|
464
|
+
'company'?: string | null;
|
|
459
465
|
/**
|
|
460
466
|
*
|
|
461
467
|
* @type {string}
|
|
@@ -478,40 +484,37 @@ interface ContactCreate {
|
|
|
478
484
|
/**
|
|
479
485
|
*
|
|
480
486
|
* @export
|
|
481
|
-
* @
|
|
487
|
+
* @enum {string}
|
|
488
|
+
*/
|
|
489
|
+
declare const ContactListingType: {
|
|
490
|
+
readonly Owner: "OWNER";
|
|
491
|
+
};
|
|
492
|
+
type ContactListingType = typeof ContactListingType[keyof typeof ContactListingType];
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @export
|
|
496
|
+
* @interface ContactTypeDataApi
|
|
482
497
|
*/
|
|
483
|
-
interface
|
|
498
|
+
interface ContactTypeDataApi {
|
|
484
499
|
/**
|
|
485
500
|
*
|
|
486
|
-
* @type {
|
|
487
|
-
* @memberof
|
|
501
|
+
* @type {GuestDataApi}
|
|
502
|
+
* @memberof ContactTypeDataApi
|
|
488
503
|
*/
|
|
489
|
-
'guest'?:
|
|
504
|
+
'guest'?: GuestDataApi | null;
|
|
490
505
|
/**
|
|
491
506
|
*
|
|
492
|
-
* @type {
|
|
493
|
-
* @memberof
|
|
507
|
+
* @type {OwnerDataApi}
|
|
508
|
+
* @memberof ContactTypeDataApi
|
|
494
509
|
*/
|
|
495
|
-
'owner'?:
|
|
510
|
+
'owner'?: OwnerDataApi | null;
|
|
496
511
|
/**
|
|
497
512
|
*
|
|
498
|
-
* @type {
|
|
499
|
-
* @memberof
|
|
513
|
+
* @type {LeadDataApi}
|
|
514
|
+
* @memberof ContactTypeDataApi
|
|
500
515
|
*/
|
|
501
|
-
'lead'?:
|
|
516
|
+
'lead'?: LeadDataApi | null;
|
|
502
517
|
}
|
|
503
|
-
/**
|
|
504
|
-
*
|
|
505
|
-
* @export
|
|
506
|
-
* @enum {string}
|
|
507
|
-
*/
|
|
508
|
-
declare const ContactTypeFilter: {
|
|
509
|
-
readonly Guest: "guest";
|
|
510
|
-
readonly Owner: "owner";
|
|
511
|
-
readonly Lead: "lead";
|
|
512
|
-
readonly Basic: "basic";
|
|
513
|
-
};
|
|
514
|
-
type ContactTypeFilter = typeof ContactTypeFilter[keyof typeof ContactTypeFilter];
|
|
515
518
|
/**
|
|
516
519
|
*
|
|
517
520
|
* @export
|
|
@@ -553,753 +556,804 @@ interface ContactUpdate {
|
|
|
553
556
|
* @type {string}
|
|
554
557
|
* @memberof ContactUpdate
|
|
555
558
|
*/
|
|
556
|
-
'
|
|
559
|
+
'profilePicUrlRegular'?: string | null;
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
* @type {boolean}
|
|
563
|
+
* @memberof ContactUpdate
|
|
564
|
+
*/
|
|
565
|
+
'smsMarketingIsSubscribed'?: boolean | null;
|
|
566
|
+
/**
|
|
567
|
+
*
|
|
568
|
+
* @type {string}
|
|
569
|
+
* @memberof ContactUpdate
|
|
570
|
+
*/
|
|
571
|
+
'smsMarketingConsentType'?: string | null;
|
|
572
|
+
/**
|
|
573
|
+
*
|
|
574
|
+
* @type {boolean}
|
|
575
|
+
* @memberof ContactUpdate
|
|
576
|
+
*/
|
|
577
|
+
'smsTransactionalIsSubscribed'?: boolean | null;
|
|
578
|
+
/**
|
|
579
|
+
*
|
|
580
|
+
* @type {string}
|
|
581
|
+
* @memberof ContactUpdate
|
|
582
|
+
*/
|
|
583
|
+
'smsTransactionalConsentType'?: string | null;
|
|
557
584
|
}
|
|
558
585
|
/**
|
|
559
586
|
*
|
|
560
587
|
* @export
|
|
561
|
-
* @interface
|
|
588
|
+
* @interface Contacts
|
|
562
589
|
*/
|
|
563
|
-
interface
|
|
590
|
+
interface Contacts {
|
|
564
591
|
/**
|
|
565
592
|
*
|
|
566
593
|
* @type {string}
|
|
567
|
-
* @memberof
|
|
594
|
+
* @memberof Contacts
|
|
568
595
|
*/
|
|
569
596
|
'contactId': string;
|
|
570
597
|
/**
|
|
571
598
|
*
|
|
572
599
|
* @type {string}
|
|
573
|
-
* @memberof
|
|
600
|
+
* @memberof Contacts
|
|
574
601
|
*/
|
|
575
602
|
'company'?: string | null;
|
|
576
603
|
/**
|
|
577
604
|
*
|
|
578
605
|
* @type {string}
|
|
579
|
-
* @memberof
|
|
606
|
+
* @memberof Contacts
|
|
580
607
|
*/
|
|
581
608
|
'firstName': string | null;
|
|
582
609
|
/**
|
|
583
610
|
*
|
|
584
611
|
* @type {string}
|
|
585
|
-
* @memberof
|
|
612
|
+
* @memberof Contacts
|
|
586
613
|
*/
|
|
587
614
|
'lastName': string | null;
|
|
588
615
|
/**
|
|
589
616
|
*
|
|
590
617
|
* @type {string}
|
|
591
|
-
* @memberof
|
|
618
|
+
* @memberof Contacts
|
|
592
619
|
*/
|
|
593
620
|
'fullName'?: string | null;
|
|
594
621
|
/**
|
|
595
622
|
*
|
|
596
623
|
* @type {string}
|
|
597
|
-
* @memberof
|
|
624
|
+
* @memberof Contacts
|
|
598
625
|
*/
|
|
599
626
|
'title'?: string | null;
|
|
600
627
|
/**
|
|
601
628
|
*
|
|
602
629
|
* @type {string}
|
|
603
|
-
* @memberof
|
|
630
|
+
* @memberof Contacts
|
|
604
631
|
*/
|
|
605
632
|
'local'?: string;
|
|
606
633
|
/**
|
|
607
634
|
*
|
|
608
635
|
* @type {string}
|
|
609
|
-
* @memberof
|
|
636
|
+
* @memberof Contacts
|
|
610
637
|
*/
|
|
611
638
|
'updatedAt'?: string;
|
|
612
639
|
/**
|
|
613
640
|
*
|
|
614
641
|
* @type {string}
|
|
615
|
-
* @memberof
|
|
642
|
+
* @memberof Contacts
|
|
616
643
|
*/
|
|
617
644
|
'createdAt': string;
|
|
618
645
|
/**
|
|
619
646
|
*
|
|
620
647
|
* @type {string}
|
|
621
|
-
* @memberof
|
|
648
|
+
* @memberof Contacts
|
|
622
649
|
*/
|
|
623
650
|
'deletedAt'?: string | null;
|
|
624
651
|
/**
|
|
625
652
|
*
|
|
626
653
|
* @type {string}
|
|
627
|
-
* @memberof
|
|
654
|
+
* @memberof Contacts
|
|
628
655
|
*/
|
|
629
656
|
'createdBy': string;
|
|
630
657
|
/**
|
|
631
658
|
*
|
|
632
659
|
* @type {string}
|
|
633
|
-
* @memberof
|
|
660
|
+
* @memberof Contacts
|
|
634
661
|
*/
|
|
635
662
|
'updatedBy': string;
|
|
636
663
|
/**
|
|
637
664
|
*
|
|
638
665
|
* @type {string}
|
|
639
|
-
* @memberof
|
|
666
|
+
* @memberof Contacts
|
|
640
667
|
*/
|
|
641
668
|
'profilePicUrlRegular'?: string | null;
|
|
642
669
|
/**
|
|
643
670
|
*
|
|
644
671
|
* @type {string}
|
|
645
|
-
* @memberof
|
|
672
|
+
* @memberof Contacts
|
|
646
673
|
*/
|
|
647
674
|
'profilePicUrlLarge'?: string | null;
|
|
648
675
|
/**
|
|
649
676
|
*
|
|
650
677
|
* @type {string}
|
|
651
|
-
* @memberof
|
|
678
|
+
* @memberof Contacts
|
|
652
679
|
*/
|
|
653
680
|
'profilePicUrlThumbnail'?: string | null;
|
|
654
681
|
/**
|
|
655
682
|
*
|
|
656
683
|
* @type {boolean}
|
|
657
|
-
* @memberof
|
|
684
|
+
* @memberof Contacts
|
|
658
685
|
*/
|
|
659
686
|
'smsMarketingIsSubscribed'?: boolean;
|
|
660
687
|
/**
|
|
661
688
|
*
|
|
662
689
|
* @type {string}
|
|
663
|
-
* @memberof
|
|
690
|
+
* @memberof Contacts
|
|
664
691
|
*/
|
|
665
692
|
'smsMarketingConsentType'?: string | null;
|
|
666
693
|
/**
|
|
667
694
|
*
|
|
668
695
|
* @type {string}
|
|
669
|
-
* @memberof
|
|
696
|
+
* @memberof Contacts
|
|
670
697
|
*/
|
|
671
698
|
'smsMarketingUpdatedAt'?: string | null;
|
|
672
699
|
/**
|
|
673
700
|
*
|
|
674
701
|
* @type {boolean}
|
|
675
|
-
* @memberof
|
|
702
|
+
* @memberof Contacts
|
|
676
703
|
*/
|
|
677
704
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
678
705
|
/**
|
|
679
706
|
*
|
|
680
707
|
* @type {string}
|
|
681
|
-
* @memberof
|
|
708
|
+
* @memberof Contacts
|
|
682
709
|
*/
|
|
683
710
|
'smsTransactionalConsentType'?: string | null;
|
|
684
711
|
/**
|
|
685
712
|
*
|
|
686
713
|
* @type {string}
|
|
687
|
-
* @memberof
|
|
714
|
+
* @memberof Contacts
|
|
688
715
|
*/
|
|
689
716
|
'primaryEmail'?: string | null;
|
|
690
717
|
/**
|
|
691
718
|
*
|
|
692
|
-
* @type {Array<
|
|
693
|
-
* @memberof
|
|
719
|
+
* @type {Array<EmailApi>}
|
|
720
|
+
* @memberof Contacts
|
|
694
721
|
*/
|
|
695
|
-
'emails'?: Array<
|
|
722
|
+
'emails'?: Array<EmailApi>;
|
|
696
723
|
/**
|
|
697
724
|
*
|
|
698
725
|
* @type {string}
|
|
699
|
-
* @memberof
|
|
726
|
+
* @memberof Contacts
|
|
700
727
|
*/
|
|
701
728
|
'primaryPhone'?: string | null;
|
|
702
729
|
/**
|
|
703
730
|
*
|
|
704
|
-
* @type {Array<
|
|
705
|
-
* @memberof
|
|
731
|
+
* @type {Array<PhoneApi>}
|
|
732
|
+
* @memberof Contacts
|
|
706
733
|
*/
|
|
707
|
-
'phones'?: Array<
|
|
734
|
+
'phones'?: Array<PhoneApi>;
|
|
708
735
|
/**
|
|
709
736
|
*
|
|
710
737
|
* @type {Array<string>}
|
|
711
|
-
* @memberof
|
|
738
|
+
* @memberof Contacts
|
|
712
739
|
*/
|
|
713
740
|
'tags'?: Array<string>;
|
|
714
741
|
/**
|
|
715
742
|
*
|
|
716
|
-
* @type {
|
|
717
|
-
* @memberof
|
|
743
|
+
* @type {AddressApi}
|
|
744
|
+
* @memberof Contacts
|
|
718
745
|
*/
|
|
719
|
-
'address'?:
|
|
746
|
+
'address'?: AddressApi | null;
|
|
720
747
|
/**
|
|
721
748
|
*
|
|
722
|
-
* @type {Array<
|
|
723
|
-
* @memberof
|
|
749
|
+
* @type {Array<AddressItemApi>}
|
|
750
|
+
* @memberof Contacts
|
|
724
751
|
*/
|
|
725
|
-
'addresses'?: Array<
|
|
752
|
+
'addresses'?: Array<AddressItemApi>;
|
|
726
753
|
/**
|
|
727
754
|
*
|
|
728
|
-
* @type {
|
|
729
|
-
* @memberof
|
|
755
|
+
* @type {ContactTypeDataApi}
|
|
756
|
+
* @memberof Contacts
|
|
730
757
|
*/
|
|
731
|
-
'contactTypeData'?:
|
|
758
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
732
759
|
}
|
|
733
760
|
/**
|
|
734
761
|
*
|
|
735
762
|
* @export
|
|
736
|
-
* @interface
|
|
763
|
+
* @interface ContactsCreate
|
|
737
764
|
*/
|
|
738
|
-
interface
|
|
765
|
+
interface ContactsCreate {
|
|
739
766
|
/**
|
|
740
767
|
*
|
|
741
768
|
* @type {string}
|
|
742
|
-
* @memberof
|
|
769
|
+
* @memberof ContactsCreate
|
|
743
770
|
*/
|
|
744
771
|
'contactId': string;
|
|
745
772
|
/**
|
|
746
773
|
*
|
|
747
774
|
* @type {string}
|
|
748
|
-
* @memberof
|
|
775
|
+
* @memberof ContactsCreate
|
|
749
776
|
*/
|
|
750
777
|
'company'?: string | null;
|
|
751
778
|
/**
|
|
752
779
|
*
|
|
753
780
|
* @type {string}
|
|
754
|
-
* @memberof
|
|
781
|
+
* @memberof ContactsCreate
|
|
755
782
|
*/
|
|
756
783
|
'firstName': string | null;
|
|
757
784
|
/**
|
|
758
785
|
*
|
|
759
786
|
* @type {string}
|
|
760
|
-
* @memberof
|
|
787
|
+
* @memberof ContactsCreate
|
|
761
788
|
*/
|
|
762
789
|
'lastName': string | null;
|
|
763
790
|
/**
|
|
764
791
|
*
|
|
765
792
|
* @type {string}
|
|
766
|
-
* @memberof
|
|
793
|
+
* @memberof ContactsCreate
|
|
767
794
|
*/
|
|
768
795
|
'fullName'?: string | null;
|
|
769
796
|
/**
|
|
770
797
|
*
|
|
771
798
|
* @type {string}
|
|
772
|
-
* @memberof
|
|
799
|
+
* @memberof ContactsCreate
|
|
773
800
|
*/
|
|
774
801
|
'title'?: string | null;
|
|
775
802
|
/**
|
|
776
803
|
*
|
|
777
804
|
* @type {string}
|
|
778
|
-
* @memberof
|
|
805
|
+
* @memberof ContactsCreate
|
|
779
806
|
*/
|
|
780
807
|
'local'?: string;
|
|
781
808
|
/**
|
|
782
809
|
*
|
|
783
810
|
* @type {string}
|
|
784
|
-
* @memberof
|
|
811
|
+
* @memberof ContactsCreate
|
|
785
812
|
*/
|
|
786
813
|
'updatedAt'?: string;
|
|
787
814
|
/**
|
|
788
815
|
*
|
|
789
816
|
* @type {string}
|
|
790
|
-
* @memberof
|
|
817
|
+
* @memberof ContactsCreate
|
|
791
818
|
*/
|
|
792
819
|
'createdAt': string;
|
|
793
820
|
/**
|
|
794
821
|
*
|
|
795
822
|
* @type {string}
|
|
796
|
-
* @memberof
|
|
823
|
+
* @memberof ContactsCreate
|
|
797
824
|
*/
|
|
798
825
|
'deletedAt'?: string | null;
|
|
799
826
|
/**
|
|
800
827
|
*
|
|
801
828
|
* @type {string}
|
|
802
|
-
* @memberof
|
|
829
|
+
* @memberof ContactsCreate
|
|
803
830
|
*/
|
|
804
831
|
'createdBy': string;
|
|
805
832
|
/**
|
|
806
833
|
*
|
|
807
834
|
* @type {string}
|
|
808
|
-
* @memberof
|
|
835
|
+
* @memberof ContactsCreate
|
|
809
836
|
*/
|
|
810
837
|
'updatedBy': string;
|
|
811
838
|
/**
|
|
812
839
|
*
|
|
813
840
|
* @type {string}
|
|
814
|
-
* @memberof
|
|
841
|
+
* @memberof ContactsCreate
|
|
815
842
|
*/
|
|
816
843
|
'profilePicUrlRegular'?: string | null;
|
|
817
844
|
/**
|
|
818
845
|
*
|
|
819
846
|
* @type {string}
|
|
820
|
-
* @memberof
|
|
847
|
+
* @memberof ContactsCreate
|
|
821
848
|
*/
|
|
822
849
|
'profilePicUrlLarge'?: string | null;
|
|
823
850
|
/**
|
|
824
851
|
*
|
|
825
852
|
* @type {string}
|
|
826
|
-
* @memberof
|
|
853
|
+
* @memberof ContactsCreate
|
|
827
854
|
*/
|
|
828
855
|
'profilePicUrlThumbnail'?: string | null;
|
|
829
856
|
/**
|
|
830
857
|
*
|
|
831
858
|
* @type {boolean}
|
|
832
|
-
* @memberof
|
|
859
|
+
* @memberof ContactsCreate
|
|
833
860
|
*/
|
|
834
861
|
'smsMarketingIsSubscribed'?: boolean;
|
|
835
862
|
/**
|
|
836
863
|
*
|
|
837
864
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
865
|
+
* @memberof ContactsCreate
|
|
839
866
|
*/
|
|
840
867
|
'smsMarketingConsentType'?: string | null;
|
|
841
868
|
/**
|
|
842
869
|
*
|
|
843
870
|
* @type {string}
|
|
844
|
-
* @memberof
|
|
871
|
+
* @memberof ContactsCreate
|
|
845
872
|
*/
|
|
846
873
|
'smsMarketingUpdatedAt'?: string | null;
|
|
847
874
|
/**
|
|
848
875
|
*
|
|
849
876
|
* @type {boolean}
|
|
850
|
-
* @memberof
|
|
877
|
+
* @memberof ContactsCreate
|
|
851
878
|
*/
|
|
852
879
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
853
880
|
/**
|
|
854
881
|
*
|
|
855
882
|
* @type {string}
|
|
856
|
-
* @memberof
|
|
883
|
+
* @memberof ContactsCreate
|
|
857
884
|
*/
|
|
858
885
|
'smsTransactionalConsentType'?: string | null;
|
|
859
886
|
/**
|
|
860
887
|
*
|
|
861
888
|
* @type {string}
|
|
862
|
-
* @memberof
|
|
889
|
+
* @memberof ContactsCreate
|
|
863
890
|
*/
|
|
864
891
|
'primaryEmail'?: string | null;
|
|
865
892
|
/**
|
|
866
893
|
*
|
|
867
|
-
* @type {Array<
|
|
868
|
-
* @memberof
|
|
894
|
+
* @type {Array<EmailApi>}
|
|
895
|
+
* @memberof ContactsCreate
|
|
869
896
|
*/
|
|
870
|
-
'emails'?: Array<
|
|
897
|
+
'emails'?: Array<EmailApi>;
|
|
871
898
|
/**
|
|
872
899
|
*
|
|
873
900
|
* @type {string}
|
|
874
|
-
* @memberof
|
|
901
|
+
* @memberof ContactsCreate
|
|
875
902
|
*/
|
|
876
903
|
'primaryPhone'?: string | null;
|
|
877
904
|
/**
|
|
878
905
|
*
|
|
879
|
-
* @type {Array<
|
|
880
|
-
* @memberof
|
|
906
|
+
* @type {Array<PhoneApi>}
|
|
907
|
+
* @memberof ContactsCreate
|
|
881
908
|
*/
|
|
882
|
-
'phones'?: Array<
|
|
909
|
+
'phones'?: Array<PhoneApi>;
|
|
883
910
|
/**
|
|
884
911
|
*
|
|
885
912
|
* @type {Array<string>}
|
|
886
|
-
* @memberof
|
|
913
|
+
* @memberof ContactsCreate
|
|
887
914
|
*/
|
|
888
915
|
'tags'?: Array<string>;
|
|
889
916
|
/**
|
|
890
917
|
*
|
|
891
|
-
* @type {
|
|
892
|
-
* @memberof
|
|
918
|
+
* @type {AddressApi}
|
|
919
|
+
* @memberof ContactsCreate
|
|
893
920
|
*/
|
|
894
|
-
'address'?:
|
|
921
|
+
'address'?: AddressApi | null;
|
|
895
922
|
/**
|
|
896
923
|
*
|
|
897
|
-
* @type {Array<
|
|
898
|
-
* @memberof
|
|
924
|
+
* @type {Array<AddressItemApi>}
|
|
925
|
+
* @memberof ContactsCreate
|
|
899
926
|
*/
|
|
900
|
-
'addresses'?: Array<
|
|
927
|
+
'addresses'?: Array<AddressItemApi>;
|
|
901
928
|
/**
|
|
902
929
|
*
|
|
903
|
-
* @type {
|
|
904
|
-
* @memberof
|
|
930
|
+
* @type {ContactTypeDataApi}
|
|
931
|
+
* @memberof ContactsCreate
|
|
905
932
|
*/
|
|
906
|
-
'contactTypeData'?:
|
|
933
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
907
934
|
}
|
|
908
935
|
/**
|
|
909
936
|
*
|
|
910
937
|
* @export
|
|
911
|
-
* @interface
|
|
938
|
+
* @interface ContactsGet
|
|
912
939
|
*/
|
|
913
|
-
interface
|
|
940
|
+
interface ContactsGet {
|
|
914
941
|
/**
|
|
915
942
|
*
|
|
916
943
|
* @type {string}
|
|
917
|
-
* @memberof
|
|
944
|
+
* @memberof ContactsGet
|
|
918
945
|
*/
|
|
919
946
|
'contactId': string;
|
|
920
947
|
/**
|
|
921
948
|
*
|
|
922
949
|
* @type {string}
|
|
923
|
-
* @memberof
|
|
950
|
+
* @memberof ContactsGet
|
|
924
951
|
*/
|
|
925
952
|
'company'?: string | null;
|
|
926
953
|
/**
|
|
927
954
|
*
|
|
928
955
|
* @type {string}
|
|
929
|
-
* @memberof
|
|
956
|
+
* @memberof ContactsGet
|
|
930
957
|
*/
|
|
931
958
|
'firstName': string | null;
|
|
932
959
|
/**
|
|
933
960
|
*
|
|
934
961
|
* @type {string}
|
|
935
|
-
* @memberof
|
|
962
|
+
* @memberof ContactsGet
|
|
936
963
|
*/
|
|
937
964
|
'lastName': string | null;
|
|
938
965
|
/**
|
|
939
966
|
*
|
|
940
967
|
* @type {string}
|
|
941
|
-
* @memberof
|
|
968
|
+
* @memberof ContactsGet
|
|
942
969
|
*/
|
|
943
970
|
'fullName'?: string | null;
|
|
944
971
|
/**
|
|
945
972
|
*
|
|
946
973
|
* @type {string}
|
|
947
|
-
* @memberof
|
|
974
|
+
* @memberof ContactsGet
|
|
948
975
|
*/
|
|
949
976
|
'title'?: string | null;
|
|
950
977
|
/**
|
|
951
978
|
*
|
|
952
979
|
* @type {string}
|
|
953
|
-
* @memberof
|
|
980
|
+
* @memberof ContactsGet
|
|
954
981
|
*/
|
|
955
982
|
'local'?: string;
|
|
956
983
|
/**
|
|
957
984
|
*
|
|
958
985
|
* @type {string}
|
|
959
|
-
* @memberof
|
|
986
|
+
* @memberof ContactsGet
|
|
960
987
|
*/
|
|
961
988
|
'updatedAt'?: string;
|
|
962
989
|
/**
|
|
963
990
|
*
|
|
964
991
|
* @type {string}
|
|
965
|
-
* @memberof
|
|
992
|
+
* @memberof ContactsGet
|
|
966
993
|
*/
|
|
967
994
|
'createdAt': string;
|
|
968
995
|
/**
|
|
969
996
|
*
|
|
970
997
|
* @type {string}
|
|
971
|
-
* @memberof
|
|
998
|
+
* @memberof ContactsGet
|
|
972
999
|
*/
|
|
973
1000
|
'deletedAt'?: string | null;
|
|
974
1001
|
/**
|
|
975
1002
|
*
|
|
976
1003
|
* @type {string}
|
|
977
|
-
* @memberof
|
|
1004
|
+
* @memberof ContactsGet
|
|
978
1005
|
*/
|
|
979
1006
|
'createdBy': string;
|
|
980
1007
|
/**
|
|
981
1008
|
*
|
|
982
1009
|
* @type {string}
|
|
983
|
-
* @memberof
|
|
1010
|
+
* @memberof ContactsGet
|
|
984
1011
|
*/
|
|
985
1012
|
'updatedBy': string;
|
|
986
1013
|
/**
|
|
987
1014
|
*
|
|
988
1015
|
* @type {string}
|
|
989
|
-
* @memberof
|
|
1016
|
+
* @memberof ContactsGet
|
|
990
1017
|
*/
|
|
991
1018
|
'profilePicUrlRegular'?: string | null;
|
|
992
1019
|
/**
|
|
993
1020
|
*
|
|
994
1021
|
* @type {string}
|
|
995
|
-
* @memberof
|
|
1022
|
+
* @memberof ContactsGet
|
|
996
1023
|
*/
|
|
997
1024
|
'profilePicUrlLarge'?: string | null;
|
|
998
1025
|
/**
|
|
999
1026
|
*
|
|
1000
1027
|
* @type {string}
|
|
1001
|
-
* @memberof
|
|
1028
|
+
* @memberof ContactsGet
|
|
1002
1029
|
*/
|
|
1003
1030
|
'profilePicUrlThumbnail'?: string | null;
|
|
1004
1031
|
/**
|
|
1005
1032
|
*
|
|
1006
1033
|
* @type {boolean}
|
|
1007
|
-
* @memberof
|
|
1034
|
+
* @memberof ContactsGet
|
|
1008
1035
|
*/
|
|
1009
1036
|
'smsMarketingIsSubscribed'?: boolean;
|
|
1010
1037
|
/**
|
|
1011
1038
|
*
|
|
1012
1039
|
* @type {string}
|
|
1013
|
-
* @memberof
|
|
1040
|
+
* @memberof ContactsGet
|
|
1014
1041
|
*/
|
|
1015
1042
|
'smsMarketingConsentType'?: string | null;
|
|
1016
1043
|
/**
|
|
1017
1044
|
*
|
|
1018
1045
|
* @type {string}
|
|
1019
|
-
* @memberof
|
|
1046
|
+
* @memberof ContactsGet
|
|
1020
1047
|
*/
|
|
1021
1048
|
'smsMarketingUpdatedAt'?: string | null;
|
|
1022
1049
|
/**
|
|
1023
1050
|
*
|
|
1024
1051
|
* @type {boolean}
|
|
1025
|
-
* @memberof
|
|
1052
|
+
* @memberof ContactsGet
|
|
1026
1053
|
*/
|
|
1027
1054
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
1028
1055
|
/**
|
|
1029
1056
|
*
|
|
1030
1057
|
* @type {string}
|
|
1031
|
-
* @memberof
|
|
1058
|
+
* @memberof ContactsGet
|
|
1032
1059
|
*/
|
|
1033
1060
|
'smsTransactionalConsentType'?: string | null;
|
|
1034
1061
|
/**
|
|
1035
1062
|
*
|
|
1036
1063
|
* @type {string}
|
|
1037
|
-
* @memberof
|
|
1064
|
+
* @memberof ContactsGet
|
|
1038
1065
|
*/
|
|
1039
1066
|
'primaryEmail'?: string | null;
|
|
1040
1067
|
/**
|
|
1041
1068
|
*
|
|
1042
|
-
* @type {Array<
|
|
1043
|
-
* @memberof
|
|
1069
|
+
* @type {Array<EmailApi>}
|
|
1070
|
+
* @memberof ContactsGet
|
|
1044
1071
|
*/
|
|
1045
|
-
'emails'?: Array<
|
|
1072
|
+
'emails'?: Array<EmailApi>;
|
|
1046
1073
|
/**
|
|
1047
1074
|
*
|
|
1048
1075
|
* @type {string}
|
|
1049
|
-
* @memberof
|
|
1076
|
+
* @memberof ContactsGet
|
|
1050
1077
|
*/
|
|
1051
1078
|
'primaryPhone'?: string | null;
|
|
1052
1079
|
/**
|
|
1053
1080
|
*
|
|
1054
|
-
* @type {Array<
|
|
1055
|
-
* @memberof
|
|
1081
|
+
* @type {Array<PhoneApi>}
|
|
1082
|
+
* @memberof ContactsGet
|
|
1056
1083
|
*/
|
|
1057
|
-
'phones'?: Array<
|
|
1084
|
+
'phones'?: Array<PhoneApi>;
|
|
1058
1085
|
/**
|
|
1059
1086
|
*
|
|
1060
1087
|
* @type {Array<string>}
|
|
1061
|
-
* @memberof
|
|
1088
|
+
* @memberof ContactsGet
|
|
1062
1089
|
*/
|
|
1063
1090
|
'tags'?: Array<string>;
|
|
1064
1091
|
/**
|
|
1065
1092
|
*
|
|
1066
|
-
* @type {
|
|
1067
|
-
* @memberof
|
|
1093
|
+
* @type {AddressApi}
|
|
1094
|
+
* @memberof ContactsGet
|
|
1068
1095
|
*/
|
|
1069
|
-
'address'?:
|
|
1096
|
+
'address'?: AddressApi | null;
|
|
1070
1097
|
/**
|
|
1071
1098
|
*
|
|
1072
|
-
* @type {Array<
|
|
1073
|
-
* @memberof
|
|
1099
|
+
* @type {Array<AddressItemApi>}
|
|
1100
|
+
* @memberof ContactsGet
|
|
1074
1101
|
*/
|
|
1075
|
-
'addresses'?: Array<
|
|
1102
|
+
'addresses'?: Array<AddressItemApi>;
|
|
1076
1103
|
/**
|
|
1077
1104
|
*
|
|
1078
|
-
* @type {
|
|
1079
|
-
* @memberof
|
|
1105
|
+
* @type {ContactTypeDataApi}
|
|
1106
|
+
* @memberof ContactsGet
|
|
1080
1107
|
*/
|
|
1081
|
-
'contactTypeData'?:
|
|
1108
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
1082
1109
|
}
|
|
1083
1110
|
/**
|
|
1084
1111
|
*
|
|
1085
1112
|
* @export
|
|
1086
|
-
* @interface
|
|
1113
|
+
* @interface ContactsUpdate
|
|
1087
1114
|
*/
|
|
1088
|
-
interface
|
|
1115
|
+
interface ContactsUpdate {
|
|
1089
1116
|
/**
|
|
1090
1117
|
*
|
|
1091
1118
|
* @type {string}
|
|
1092
|
-
* @memberof
|
|
1119
|
+
* @memberof ContactsUpdate
|
|
1093
1120
|
*/
|
|
1094
1121
|
'contactId': string;
|
|
1095
1122
|
/**
|
|
1096
1123
|
*
|
|
1097
1124
|
* @type {string}
|
|
1098
|
-
* @memberof
|
|
1125
|
+
* @memberof ContactsUpdate
|
|
1099
1126
|
*/
|
|
1100
1127
|
'company'?: string | null;
|
|
1101
1128
|
/**
|
|
1102
1129
|
*
|
|
1103
1130
|
* @type {string}
|
|
1104
|
-
* @memberof
|
|
1131
|
+
* @memberof ContactsUpdate
|
|
1105
1132
|
*/
|
|
1106
1133
|
'firstName': string | null;
|
|
1107
1134
|
/**
|
|
1108
1135
|
*
|
|
1109
1136
|
* @type {string}
|
|
1110
|
-
* @memberof
|
|
1137
|
+
* @memberof ContactsUpdate
|
|
1111
1138
|
*/
|
|
1112
1139
|
'lastName': string | null;
|
|
1113
1140
|
/**
|
|
1114
1141
|
*
|
|
1115
1142
|
* @type {string}
|
|
1116
|
-
* @memberof
|
|
1143
|
+
* @memberof ContactsUpdate
|
|
1117
1144
|
*/
|
|
1118
1145
|
'fullName'?: string | null;
|
|
1119
1146
|
/**
|
|
1120
1147
|
*
|
|
1121
1148
|
* @type {string}
|
|
1122
|
-
* @memberof
|
|
1149
|
+
* @memberof ContactsUpdate
|
|
1123
1150
|
*/
|
|
1124
1151
|
'title'?: string | null;
|
|
1125
1152
|
/**
|
|
1126
1153
|
*
|
|
1127
1154
|
* @type {string}
|
|
1128
|
-
* @memberof
|
|
1155
|
+
* @memberof ContactsUpdate
|
|
1129
1156
|
*/
|
|
1130
1157
|
'local'?: string;
|
|
1131
1158
|
/**
|
|
1132
1159
|
*
|
|
1133
1160
|
* @type {string}
|
|
1134
|
-
* @memberof
|
|
1161
|
+
* @memberof ContactsUpdate
|
|
1135
1162
|
*/
|
|
1136
1163
|
'updatedAt'?: string;
|
|
1137
1164
|
/**
|
|
1138
1165
|
*
|
|
1139
1166
|
* @type {string}
|
|
1140
|
-
* @memberof
|
|
1167
|
+
* @memberof ContactsUpdate
|
|
1141
1168
|
*/
|
|
1142
1169
|
'createdAt': string;
|
|
1143
1170
|
/**
|
|
1144
1171
|
*
|
|
1145
1172
|
* @type {string}
|
|
1146
|
-
* @memberof
|
|
1173
|
+
* @memberof ContactsUpdate
|
|
1147
1174
|
*/
|
|
1148
1175
|
'deletedAt'?: string | null;
|
|
1149
1176
|
/**
|
|
1150
1177
|
*
|
|
1151
1178
|
* @type {string}
|
|
1152
|
-
* @memberof
|
|
1179
|
+
* @memberof ContactsUpdate
|
|
1153
1180
|
*/
|
|
1154
1181
|
'createdBy': string;
|
|
1155
1182
|
/**
|
|
1156
1183
|
*
|
|
1157
1184
|
* @type {string}
|
|
1158
|
-
* @memberof
|
|
1185
|
+
* @memberof ContactsUpdate
|
|
1159
1186
|
*/
|
|
1160
1187
|
'updatedBy': string;
|
|
1161
1188
|
/**
|
|
1162
1189
|
*
|
|
1163
1190
|
* @type {string}
|
|
1164
|
-
* @memberof
|
|
1191
|
+
* @memberof ContactsUpdate
|
|
1165
1192
|
*/
|
|
1166
1193
|
'profilePicUrlRegular'?: string | null;
|
|
1167
1194
|
/**
|
|
1168
1195
|
*
|
|
1169
1196
|
* @type {string}
|
|
1170
|
-
* @memberof
|
|
1197
|
+
* @memberof ContactsUpdate
|
|
1171
1198
|
*/
|
|
1172
1199
|
'profilePicUrlLarge'?: string | null;
|
|
1173
1200
|
/**
|
|
1174
1201
|
*
|
|
1175
1202
|
* @type {string}
|
|
1176
|
-
* @memberof
|
|
1203
|
+
* @memberof ContactsUpdate
|
|
1177
1204
|
*/
|
|
1178
1205
|
'profilePicUrlThumbnail'?: string | null;
|
|
1179
1206
|
/**
|
|
1180
1207
|
*
|
|
1181
1208
|
* @type {boolean}
|
|
1182
|
-
* @memberof
|
|
1209
|
+
* @memberof ContactsUpdate
|
|
1183
1210
|
*/
|
|
1184
1211
|
'smsMarketingIsSubscribed'?: boolean;
|
|
1185
1212
|
/**
|
|
1186
1213
|
*
|
|
1187
1214
|
* @type {string}
|
|
1188
|
-
* @memberof
|
|
1215
|
+
* @memberof ContactsUpdate
|
|
1189
1216
|
*/
|
|
1190
1217
|
'smsMarketingConsentType'?: string | null;
|
|
1191
1218
|
/**
|
|
1192
1219
|
*
|
|
1193
1220
|
* @type {string}
|
|
1194
|
-
* @memberof
|
|
1221
|
+
* @memberof ContactsUpdate
|
|
1195
1222
|
*/
|
|
1196
1223
|
'smsMarketingUpdatedAt'?: string | null;
|
|
1197
1224
|
/**
|
|
1198
1225
|
*
|
|
1199
1226
|
* @type {boolean}
|
|
1200
|
-
* @memberof
|
|
1227
|
+
* @memberof ContactsUpdate
|
|
1201
1228
|
*/
|
|
1202
1229
|
'smsTransactionalIsSubscribed'?: boolean;
|
|
1203
1230
|
/**
|
|
1204
1231
|
*
|
|
1205
1232
|
* @type {string}
|
|
1206
|
-
* @memberof
|
|
1233
|
+
* @memberof ContactsUpdate
|
|
1207
1234
|
*/
|
|
1208
1235
|
'smsTransactionalConsentType'?: string | null;
|
|
1209
1236
|
/**
|
|
1210
1237
|
*
|
|
1211
1238
|
* @type {string}
|
|
1212
|
-
* @memberof
|
|
1239
|
+
* @memberof ContactsUpdate
|
|
1213
1240
|
*/
|
|
1214
1241
|
'primaryEmail'?: string | null;
|
|
1215
1242
|
/**
|
|
1216
1243
|
*
|
|
1217
|
-
* @type {Array<
|
|
1218
|
-
* @memberof
|
|
1244
|
+
* @type {Array<EmailApi>}
|
|
1245
|
+
* @memberof ContactsUpdate
|
|
1219
1246
|
*/
|
|
1220
|
-
'emails'?: Array<
|
|
1247
|
+
'emails'?: Array<EmailApi>;
|
|
1221
1248
|
/**
|
|
1222
1249
|
*
|
|
1223
1250
|
* @type {string}
|
|
1224
|
-
* @memberof
|
|
1251
|
+
* @memberof ContactsUpdate
|
|
1225
1252
|
*/
|
|
1226
1253
|
'primaryPhone'?: string | null;
|
|
1227
1254
|
/**
|
|
1228
1255
|
*
|
|
1229
|
-
* @type {Array<
|
|
1230
|
-
* @memberof
|
|
1256
|
+
* @type {Array<PhoneApi>}
|
|
1257
|
+
* @memberof ContactsUpdate
|
|
1231
1258
|
*/
|
|
1232
|
-
'phones'?: Array<
|
|
1259
|
+
'phones'?: Array<PhoneApi>;
|
|
1233
1260
|
/**
|
|
1234
1261
|
*
|
|
1235
1262
|
* @type {Array<string>}
|
|
1236
|
-
* @memberof
|
|
1263
|
+
* @memberof ContactsUpdate
|
|
1237
1264
|
*/
|
|
1238
1265
|
'tags'?: Array<string>;
|
|
1239
1266
|
/**
|
|
1240
1267
|
*
|
|
1241
|
-
* @type {
|
|
1242
|
-
* @memberof
|
|
1268
|
+
* @type {AddressApi}
|
|
1269
|
+
* @memberof ContactsUpdate
|
|
1243
1270
|
*/
|
|
1244
|
-
'address'?:
|
|
1271
|
+
'address'?: AddressApi | null;
|
|
1245
1272
|
/**
|
|
1246
1273
|
*
|
|
1247
|
-
* @type {Array<
|
|
1248
|
-
* @memberof
|
|
1274
|
+
* @type {Array<AddressItemApi>}
|
|
1275
|
+
* @memberof ContactsUpdate
|
|
1249
1276
|
*/
|
|
1250
|
-
'addresses'?: Array<
|
|
1277
|
+
'addresses'?: Array<AddressItemApi>;
|
|
1251
1278
|
/**
|
|
1252
1279
|
*
|
|
1253
|
-
* @type {
|
|
1254
|
-
* @memberof
|
|
1280
|
+
* @type {ContactTypeDataApi}
|
|
1281
|
+
* @memberof ContactsUpdate
|
|
1255
1282
|
*/
|
|
1256
|
-
'contactTypeData'?:
|
|
1283
|
+
'contactTypeData'?: ContactTypeDataApi;
|
|
1257
1284
|
}
|
|
1258
1285
|
/**
|
|
1259
1286
|
*
|
|
1260
1287
|
* @export
|
|
1261
|
-
* @
|
|
1288
|
+
* @interface CreateContactListing
|
|
1262
1289
|
*/
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1290
|
+
interface CreateContactListing {
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {ContactListingType}
|
|
1294
|
+
* @memberof CreateContactListing
|
|
1295
|
+
*/
|
|
1296
|
+
'type': ContactListingType;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof CreateContactListing
|
|
1301
|
+
*/
|
|
1302
|
+
'startDate': string;
|
|
1303
|
+
/**
|
|
1304
|
+
*
|
|
1305
|
+
* @type {string}
|
|
1306
|
+
* @memberof CreateContactListing
|
|
1307
|
+
*/
|
|
1308
|
+
'endDate'?: string | null;
|
|
1309
|
+
}
|
|
1269
1310
|
/**
|
|
1270
1311
|
*
|
|
1271
1312
|
* @export
|
|
1272
|
-
* @interface
|
|
1313
|
+
* @interface DeleteContactListing
|
|
1273
1314
|
*/
|
|
1274
|
-
interface
|
|
1315
|
+
interface DeleteContactListing {
|
|
1316
|
+
/**
|
|
1317
|
+
*
|
|
1318
|
+
* @type {ContactListingType}
|
|
1319
|
+
* @memberof DeleteContactListing
|
|
1320
|
+
*/
|
|
1321
|
+
'type': ContactListingType;
|
|
1322
|
+
}
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @export
|
|
1326
|
+
* @interface EmailApi
|
|
1327
|
+
*/
|
|
1328
|
+
interface EmailApi {
|
|
1275
1329
|
/**
|
|
1276
1330
|
*
|
|
1277
1331
|
* @type {string}
|
|
1278
|
-
* @memberof
|
|
1332
|
+
* @memberof EmailApi
|
|
1279
1333
|
*/
|
|
1280
1334
|
'emailId': string;
|
|
1281
1335
|
/**
|
|
1282
1336
|
*
|
|
1283
1337
|
* @type {string}
|
|
1284
|
-
* @memberof
|
|
1338
|
+
* @memberof EmailApi
|
|
1285
1339
|
*/
|
|
1286
1340
|
'email': string;
|
|
1287
1341
|
/**
|
|
1288
1342
|
*
|
|
1289
1343
|
* @type {boolean}
|
|
1290
|
-
* @memberof
|
|
1344
|
+
* @memberof EmailApi
|
|
1291
1345
|
*/
|
|
1292
1346
|
'isPrimary': boolean;
|
|
1293
1347
|
/**
|
|
1294
1348
|
*
|
|
1295
|
-
* @type {
|
|
1296
|
-
* @memberof
|
|
1349
|
+
* @type {string}
|
|
1350
|
+
* @memberof EmailApi
|
|
1297
1351
|
*/
|
|
1298
|
-
'
|
|
1352
|
+
'providerId': string;
|
|
1299
1353
|
/**
|
|
1300
1354
|
*
|
|
1301
1355
|
* @type {string}
|
|
1302
|
-
* @memberof
|
|
1356
|
+
* @memberof EmailApi
|
|
1303
1357
|
*/
|
|
1304
1358
|
'deletedAt'?: string | null;
|
|
1305
1359
|
}
|
|
@@ -1325,76 +1379,76 @@ interface EmailCreate {
|
|
|
1325
1379
|
/**
|
|
1326
1380
|
*
|
|
1327
1381
|
* @export
|
|
1328
|
-
* @interface
|
|
1382
|
+
* @interface EmailsCreate
|
|
1329
1383
|
*/
|
|
1330
|
-
interface
|
|
1384
|
+
interface EmailsCreate {
|
|
1331
1385
|
/**
|
|
1332
1386
|
*
|
|
1333
1387
|
* @type {string}
|
|
1334
|
-
* @memberof
|
|
1388
|
+
* @memberof EmailsCreate
|
|
1335
1389
|
*/
|
|
1336
1390
|
'emailId': string;
|
|
1337
1391
|
/**
|
|
1338
1392
|
*
|
|
1339
1393
|
* @type {string}
|
|
1340
|
-
* @memberof
|
|
1394
|
+
* @memberof EmailsCreate
|
|
1341
1395
|
*/
|
|
1342
1396
|
'email': string;
|
|
1343
1397
|
/**
|
|
1344
1398
|
*
|
|
1345
1399
|
* @type {boolean}
|
|
1346
|
-
* @memberof
|
|
1400
|
+
* @memberof EmailsCreate
|
|
1347
1401
|
*/
|
|
1348
1402
|
'isPrimary': boolean;
|
|
1349
1403
|
/**
|
|
1350
1404
|
*
|
|
1351
|
-
* @type {
|
|
1352
|
-
* @memberof
|
|
1405
|
+
* @type {string}
|
|
1406
|
+
* @memberof EmailsCreate
|
|
1353
1407
|
*/
|
|
1354
|
-
'
|
|
1408
|
+
'providerId': string;
|
|
1355
1409
|
/**
|
|
1356
1410
|
*
|
|
1357
1411
|
* @type {string}
|
|
1358
|
-
* @memberof
|
|
1412
|
+
* @memberof EmailsCreate
|
|
1359
1413
|
*/
|
|
1360
1414
|
'deletedAt'?: string | null;
|
|
1361
1415
|
}
|
|
1362
1416
|
/**
|
|
1363
1417
|
*
|
|
1364
1418
|
* @export
|
|
1365
|
-
* @interface
|
|
1419
|
+
* @interface GuestDataApi
|
|
1366
1420
|
*/
|
|
1367
|
-
interface
|
|
1421
|
+
interface GuestDataApi {
|
|
1368
1422
|
/**
|
|
1369
1423
|
*
|
|
1370
1424
|
* @type {string}
|
|
1371
|
-
* @memberof
|
|
1425
|
+
* @memberof GuestDataApi
|
|
1372
1426
|
*/
|
|
1373
1427
|
'firstBookedAt': string;
|
|
1374
1428
|
/**
|
|
1375
1429
|
*
|
|
1376
1430
|
* @type {string}
|
|
1377
|
-
* @memberof
|
|
1431
|
+
* @memberof GuestDataApi
|
|
1378
1432
|
*/
|
|
1379
1433
|
'firstStayAt': string;
|
|
1380
1434
|
/**
|
|
1381
1435
|
*
|
|
1382
1436
|
* @type {number}
|
|
1383
|
-
* @memberof
|
|
1437
|
+
* @memberof GuestDataApi
|
|
1384
1438
|
*/
|
|
1385
1439
|
'totalNightsStayed'?: number;
|
|
1386
1440
|
/**
|
|
1387
1441
|
*
|
|
1388
1442
|
* @type {number}
|
|
1389
|
-
* @memberof
|
|
1443
|
+
* @memberof GuestDataApi
|
|
1390
1444
|
*/
|
|
1391
1445
|
'totalAmountSpent'?: number;
|
|
1392
1446
|
/**
|
|
1393
1447
|
*
|
|
1394
1448
|
* @type {Array<string>}
|
|
1395
|
-
* @memberof
|
|
1449
|
+
* @memberof GuestDataApi
|
|
1396
1450
|
*/
|
|
1397
|
-
'listingIds'
|
|
1451
|
+
'listingIds': Array<string>;
|
|
1398
1452
|
}
|
|
1399
1453
|
/**
|
|
1400
1454
|
*
|
|
@@ -1445,157 +1499,188 @@ interface HostawayWebhook {
|
|
|
1445
1499
|
/**
|
|
1446
1500
|
*
|
|
1447
1501
|
* @export
|
|
1448
|
-
* @interface
|
|
1502
|
+
* @interface LeadDataApi
|
|
1449
1503
|
*/
|
|
1450
|
-
interface
|
|
1504
|
+
interface LeadDataApi {
|
|
1451
1505
|
/**
|
|
1452
1506
|
*
|
|
1453
1507
|
* @type {Array<string>}
|
|
1454
|
-
* @memberof
|
|
1508
|
+
* @memberof LeadDataApi
|
|
1455
1509
|
*/
|
|
1456
|
-
'listingIds'
|
|
1510
|
+
'listingIds': Array<string>;
|
|
1457
1511
|
}
|
|
1458
1512
|
/**
|
|
1459
1513
|
*
|
|
1460
1514
|
* @export
|
|
1461
|
-
* @interface
|
|
1515
|
+
* @interface ListResponseInquiriesList
|
|
1462
1516
|
*/
|
|
1463
|
-
interface
|
|
1517
|
+
interface ListResponseInquiriesList {
|
|
1464
1518
|
/**
|
|
1465
1519
|
*
|
|
1466
|
-
* @type {Array<
|
|
1467
|
-
* @memberof
|
|
1520
|
+
* @type {Array<object>}
|
|
1521
|
+
* @memberof ListResponseInquiriesList
|
|
1468
1522
|
*/
|
|
1469
|
-
'data': Array<
|
|
1523
|
+
'data': Array<object>;
|
|
1470
1524
|
}
|
|
1471
1525
|
/**
|
|
1472
1526
|
*
|
|
1473
1527
|
* @export
|
|
1474
|
-
* @interface
|
|
1528
|
+
* @interface ListResponseListingsList
|
|
1475
1529
|
*/
|
|
1476
|
-
interface
|
|
1530
|
+
interface ListResponseListingsList {
|
|
1477
1531
|
/**
|
|
1478
1532
|
*
|
|
1479
|
-
* @type {Array<
|
|
1480
|
-
* @memberof
|
|
1533
|
+
* @type {Array<ListingsList>}
|
|
1534
|
+
* @memberof ListResponseListingsList
|
|
1481
1535
|
*/
|
|
1482
|
-
'data': Array<
|
|
1536
|
+
'data': Array<ListingsList>;
|
|
1483
1537
|
}
|
|
1484
1538
|
/**
|
|
1485
1539
|
*
|
|
1486
1540
|
* @export
|
|
1487
|
-
* @interface
|
|
1541
|
+
* @interface ListResponseReservationsList
|
|
1488
1542
|
*/
|
|
1489
|
-
interface
|
|
1543
|
+
interface ListResponseReservationsList {
|
|
1490
1544
|
/**
|
|
1491
1545
|
*
|
|
1492
|
-
* @type {Array<
|
|
1493
|
-
* @memberof
|
|
1546
|
+
* @type {Array<ReservationsList>}
|
|
1547
|
+
* @memberof ListResponseReservationsList
|
|
1494
1548
|
*/
|
|
1495
|
-
'data': Array<
|
|
1549
|
+
'data': Array<ReservationsList>;
|
|
1496
1550
|
}
|
|
1497
1551
|
/**
|
|
1498
1552
|
*
|
|
1499
1553
|
* @export
|
|
1500
|
-
* @interface
|
|
1554
|
+
* @interface ListingsList
|
|
1501
1555
|
*/
|
|
1502
|
-
interface
|
|
1556
|
+
interface ListingsList {
|
|
1503
1557
|
/**
|
|
1504
1558
|
*
|
|
1505
1559
|
* @type {string}
|
|
1506
|
-
* @memberof
|
|
1560
|
+
* @memberof ListingsList
|
|
1507
1561
|
*/
|
|
1508
1562
|
'listingId'?: string | null;
|
|
1509
1563
|
/**
|
|
1510
1564
|
*
|
|
1511
1565
|
* @type {string}
|
|
1512
|
-
* @memberof
|
|
1566
|
+
* @memberof ListingsList
|
|
1513
1567
|
*/
|
|
1514
|
-
'
|
|
1568
|
+
'providerId': string;
|
|
1515
1569
|
/**
|
|
1516
1570
|
*
|
|
1517
1571
|
* @type {string}
|
|
1518
|
-
* @memberof
|
|
1572
|
+
* @memberof ListingsList
|
|
1519
1573
|
*/
|
|
1520
1574
|
'providerListingId': string;
|
|
1521
1575
|
/**
|
|
1522
1576
|
*
|
|
1523
1577
|
* @type {string}
|
|
1524
|
-
* @memberof
|
|
1578
|
+
* @memberof ListingsList
|
|
1525
1579
|
*/
|
|
1526
1580
|
'title': string;
|
|
1527
1581
|
/**
|
|
1528
1582
|
*
|
|
1529
1583
|
* @type {string}
|
|
1530
|
-
* @memberof
|
|
1584
|
+
* @memberof ListingsList
|
|
1531
1585
|
*/
|
|
1532
1586
|
'description'?: string | null;
|
|
1533
1587
|
}
|
|
1534
1588
|
/**
|
|
1535
1589
|
*
|
|
1536
1590
|
* @export
|
|
1537
|
-
* @interface
|
|
1591
|
+
* @interface OwnerDataApi
|
|
1538
1592
|
*/
|
|
1539
|
-
interface
|
|
1593
|
+
interface OwnerDataApi {
|
|
1540
1594
|
/**
|
|
1541
1595
|
*
|
|
1542
1596
|
* @type {string}
|
|
1543
|
-
* @memberof
|
|
1597
|
+
* @memberof OwnerDataApi
|
|
1544
1598
|
*/
|
|
1545
1599
|
'firstBookedAt'?: string;
|
|
1546
1600
|
/**
|
|
1547
1601
|
*
|
|
1548
1602
|
* @type {string}
|
|
1549
|
-
* @memberof
|
|
1603
|
+
* @memberof OwnerDataApi
|
|
1550
1604
|
*/
|
|
1551
1605
|
'firstStayAt'?: string;
|
|
1552
1606
|
/**
|
|
1553
1607
|
*
|
|
1554
1608
|
* @type {number}
|
|
1555
|
-
* @memberof
|
|
1609
|
+
* @memberof OwnerDataApi
|
|
1556
1610
|
*/
|
|
1557
1611
|
'totalNightsStayed'?: number;
|
|
1558
1612
|
/**
|
|
1559
1613
|
*
|
|
1560
1614
|
* @type {Array<string>}
|
|
1561
|
-
* @memberof
|
|
1615
|
+
* @memberof OwnerDataApi
|
|
1562
1616
|
*/
|
|
1563
|
-
'listingIds'
|
|
1617
|
+
'listingIds': Array<string>;
|
|
1564
1618
|
}
|
|
1565
1619
|
/**
|
|
1566
1620
|
*
|
|
1567
1621
|
* @export
|
|
1568
|
-
* @interface
|
|
1622
|
+
* @interface PaginatedResponseContacts
|
|
1569
1623
|
*/
|
|
1570
|
-
interface
|
|
1624
|
+
interface PaginatedResponseContacts {
|
|
1625
|
+
/**
|
|
1626
|
+
*
|
|
1627
|
+
* @type {Array<Contacts>}
|
|
1628
|
+
* @memberof PaginatedResponseContacts
|
|
1629
|
+
*/
|
|
1630
|
+
'data': Array<Contacts>;
|
|
1571
1631
|
/**
|
|
1572
1632
|
*
|
|
1573
1633
|
* @type {string}
|
|
1574
|
-
* @memberof
|
|
1634
|
+
* @memberof PaginatedResponseContacts
|
|
1635
|
+
*/
|
|
1636
|
+
'prev_page_cursor'?: string | null;
|
|
1637
|
+
/**
|
|
1638
|
+
*
|
|
1639
|
+
* @type {string}
|
|
1640
|
+
* @memberof PaginatedResponseContacts
|
|
1641
|
+
*/
|
|
1642
|
+
'next_page_cursor'?: string | null;
|
|
1643
|
+
/**
|
|
1644
|
+
*
|
|
1645
|
+
* @type {number}
|
|
1646
|
+
* @memberof PaginatedResponseContacts
|
|
1647
|
+
*/
|
|
1648
|
+
'total'?: number;
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
*
|
|
1652
|
+
* @export
|
|
1653
|
+
* @interface PhoneApi
|
|
1654
|
+
*/
|
|
1655
|
+
interface PhoneApi {
|
|
1656
|
+
/**
|
|
1657
|
+
*
|
|
1658
|
+
* @type {string}
|
|
1659
|
+
* @memberof PhoneApi
|
|
1575
1660
|
*/
|
|
1576
1661
|
'phoneId': string;
|
|
1577
1662
|
/**
|
|
1578
1663
|
*
|
|
1579
1664
|
* @type {string}
|
|
1580
|
-
* @memberof
|
|
1665
|
+
* @memberof PhoneApi
|
|
1581
1666
|
*/
|
|
1582
|
-
'phone': string
|
|
1667
|
+
'phone': string;
|
|
1583
1668
|
/**
|
|
1584
1669
|
*
|
|
1585
|
-
* @type {
|
|
1586
|
-
* @memberof
|
|
1670
|
+
* @type {string}
|
|
1671
|
+
* @memberof PhoneApi
|
|
1587
1672
|
*/
|
|
1588
|
-
'
|
|
1673
|
+
'providerId': string;
|
|
1589
1674
|
/**
|
|
1590
1675
|
*
|
|
1591
1676
|
* @type {string}
|
|
1592
|
-
* @memberof
|
|
1677
|
+
* @memberof PhoneApi
|
|
1593
1678
|
*/
|
|
1594
1679
|
'deletedAt'?: string | null;
|
|
1595
1680
|
/**
|
|
1596
1681
|
*
|
|
1597
1682
|
* @type {boolean}
|
|
1598
|
-
* @memberof
|
|
1683
|
+
* @memberof PhoneApi
|
|
1599
1684
|
*/
|
|
1600
1685
|
'isPrimary': boolean;
|
|
1601
1686
|
}
|
|
@@ -1610,7 +1695,7 @@ interface PhoneCreate {
|
|
|
1610
1695
|
* @type {string}
|
|
1611
1696
|
* @memberof PhoneCreate
|
|
1612
1697
|
*/
|
|
1613
|
-
'phone': string
|
|
1698
|
+
'phone': string;
|
|
1614
1699
|
/**
|
|
1615
1700
|
*
|
|
1616
1701
|
* @type {boolean}
|
|
@@ -1621,89 +1706,114 @@ interface PhoneCreate {
|
|
|
1621
1706
|
/**
|
|
1622
1707
|
*
|
|
1623
1708
|
* @export
|
|
1624
|
-
* @interface
|
|
1709
|
+
* @interface PhonesCreate
|
|
1625
1710
|
*/
|
|
1626
|
-
interface
|
|
1711
|
+
interface PhonesCreate {
|
|
1627
1712
|
/**
|
|
1628
1713
|
*
|
|
1629
1714
|
* @type {string}
|
|
1630
|
-
* @memberof
|
|
1715
|
+
* @memberof PhonesCreate
|
|
1631
1716
|
*/
|
|
1632
1717
|
'phoneId': string;
|
|
1633
1718
|
/**
|
|
1634
1719
|
*
|
|
1635
1720
|
* @type {string}
|
|
1636
|
-
* @memberof
|
|
1721
|
+
* @memberof PhonesCreate
|
|
1637
1722
|
*/
|
|
1638
|
-
'phone': string
|
|
1723
|
+
'phone': string;
|
|
1639
1724
|
/**
|
|
1640
1725
|
*
|
|
1641
|
-
* @type {
|
|
1642
|
-
* @memberof
|
|
1726
|
+
* @type {string}
|
|
1727
|
+
* @memberof PhonesCreate
|
|
1643
1728
|
*/
|
|
1644
|
-
'
|
|
1729
|
+
'providerId': string;
|
|
1645
1730
|
/**
|
|
1646
1731
|
*
|
|
1647
1732
|
* @type {string}
|
|
1648
|
-
* @memberof
|
|
1733
|
+
* @memberof PhonesCreate
|
|
1649
1734
|
*/
|
|
1650
1735
|
'deletedAt'?: string | null;
|
|
1651
1736
|
/**
|
|
1652
1737
|
*
|
|
1653
1738
|
* @type {boolean}
|
|
1654
|
-
* @memberof
|
|
1739
|
+
* @memberof PhonesCreate
|
|
1655
1740
|
*/
|
|
1656
1741
|
'isPrimary': boolean;
|
|
1657
1742
|
}
|
|
1658
1743
|
/**
|
|
1659
1744
|
*
|
|
1660
1745
|
* @export
|
|
1661
|
-
* @interface
|
|
1746
|
+
* @interface ReservationsList
|
|
1662
1747
|
*/
|
|
1663
|
-
interface
|
|
1748
|
+
interface ReservationsList {
|
|
1664
1749
|
/**
|
|
1665
1750
|
*
|
|
1666
1751
|
* @type {string}
|
|
1667
|
-
* @memberof
|
|
1752
|
+
* @memberof ReservationsList
|
|
1668
1753
|
*/
|
|
1669
1754
|
'providerReservationId': string;
|
|
1670
1755
|
/**
|
|
1671
1756
|
*
|
|
1672
1757
|
* @type {string}
|
|
1673
|
-
* @memberof
|
|
1758
|
+
* @memberof ReservationsList
|
|
1674
1759
|
*/
|
|
1675
1760
|
'providerListingId': string;
|
|
1676
1761
|
/**
|
|
1677
1762
|
*
|
|
1678
1763
|
* @type {string}
|
|
1679
|
-
* @memberof
|
|
1764
|
+
* @memberof ReservationsList
|
|
1680
1765
|
*/
|
|
1681
1766
|
'reservationStatus': string;
|
|
1682
1767
|
/**
|
|
1683
1768
|
*
|
|
1684
1769
|
* @type {string}
|
|
1685
|
-
* @memberof
|
|
1770
|
+
* @memberof ReservationsList
|
|
1686
1771
|
*/
|
|
1687
1772
|
'arrivalAtPropertyTz': string;
|
|
1688
1773
|
/**
|
|
1689
1774
|
*
|
|
1690
1775
|
* @type {string}
|
|
1691
|
-
* @memberof
|
|
1776
|
+
* @memberof ReservationsList
|
|
1692
1777
|
*/
|
|
1693
1778
|
'departureAtPropertyTz': string;
|
|
1694
1779
|
/**
|
|
1695
1780
|
*
|
|
1696
1781
|
* @type {number}
|
|
1697
|
-
* @memberof
|
|
1782
|
+
* @memberof ReservationsList
|
|
1698
1783
|
*/
|
|
1699
1784
|
'nights': number;
|
|
1700
1785
|
/**
|
|
1701
1786
|
*
|
|
1702
1787
|
* @type {number}
|
|
1703
|
-
* @memberof
|
|
1788
|
+
* @memberof ReservationsList
|
|
1704
1789
|
*/
|
|
1705
1790
|
'totalPrice': number;
|
|
1706
1791
|
}
|
|
1792
|
+
/**
|
|
1793
|
+
*
|
|
1794
|
+
* @export
|
|
1795
|
+
* @interface UpdateContactListing
|
|
1796
|
+
*/
|
|
1797
|
+
interface UpdateContactListing {
|
|
1798
|
+
/**
|
|
1799
|
+
*
|
|
1800
|
+
* @type {ContactListingType}
|
|
1801
|
+
* @memberof UpdateContactListing
|
|
1802
|
+
*/
|
|
1803
|
+
'type': ContactListingType;
|
|
1804
|
+
/**
|
|
1805
|
+
*
|
|
1806
|
+
* @type {string}
|
|
1807
|
+
* @memberof UpdateContactListing
|
|
1808
|
+
*/
|
|
1809
|
+
'startDate'?: string | null;
|
|
1810
|
+
/**
|
|
1811
|
+
*
|
|
1812
|
+
* @type {string}
|
|
1813
|
+
* @memberof UpdateContactListing
|
|
1814
|
+
*/
|
|
1815
|
+
'endDate'?: string | null;
|
|
1816
|
+
}
|
|
1707
1817
|
/**
|
|
1708
1818
|
* AddressesApi - axios parameter creator
|
|
1709
1819
|
* @export
|
|
@@ -1749,7 +1859,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1749
1859
|
* @param {*} [options] Override http request option.
|
|
1750
1860
|
* @throws {RequiredError}
|
|
1751
1861
|
*/
|
|
1752
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1862
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
1753
1863
|
/**
|
|
1754
1864
|
*
|
|
1755
1865
|
* @summary Addresses Delete
|
|
@@ -1766,7 +1876,7 @@ declare const AddressesApiFp: (configuration?: Configuration) => {
|
|
|
1766
1876
|
* @param {*} [options] Override http request option.
|
|
1767
1877
|
* @throws {RequiredError}
|
|
1768
1878
|
*/
|
|
1769
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1879
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
1770
1880
|
};
|
|
1771
1881
|
/**
|
|
1772
1882
|
* AddressesApi - factory interface
|
|
@@ -1781,7 +1891,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1781
1891
|
* @param {*} [options] Override http request option.
|
|
1782
1892
|
* @throws {RequiredError}
|
|
1783
1893
|
*/
|
|
1784
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1894
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
1785
1895
|
/**
|
|
1786
1896
|
*
|
|
1787
1897
|
* @summary Addresses Delete
|
|
@@ -1798,7 +1908,7 @@ declare const AddressesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
1798
1908
|
* @param {*} [options] Override http request option.
|
|
1799
1909
|
* @throws {RequiredError}
|
|
1800
1910
|
*/
|
|
1801
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1911
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
1802
1912
|
};
|
|
1803
1913
|
/**
|
|
1804
1914
|
* AddressesApi - object-oriented interface
|
|
@@ -1816,7 +1926,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1816
1926
|
* @throws {RequiredError}
|
|
1817
1927
|
* @memberof AddressesApi
|
|
1818
1928
|
*/
|
|
1819
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1929
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
1820
1930
|
/**
|
|
1821
1931
|
*
|
|
1822
1932
|
* @summary Addresses Delete
|
|
@@ -1835,7 +1945,7 @@ declare class AddressesApi extends BaseAPI {
|
|
|
1835
1945
|
* @throws {RequiredError}
|
|
1836
1946
|
* @memberof AddressesApi
|
|
1837
1947
|
*/
|
|
1838
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
1948
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
1839
1949
|
}
|
|
1840
1950
|
/**
|
|
1841
1951
|
* ContactsApi - axios parameter creator
|
|
@@ -1868,6 +1978,16 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1868
1978
|
* @throws {RequiredError}
|
|
1869
1979
|
*/
|
|
1870
1980
|
addressesUpdate: (addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1981
|
+
/**
|
|
1982
|
+
* Associates a contact with a listing with the OWNER type.
|
|
1983
|
+
* @summary Create Contact Listing
|
|
1984
|
+
* @param {string} contactId
|
|
1985
|
+
* @param {string} listingId
|
|
1986
|
+
* @param {CreateContactListing} createContactListing
|
|
1987
|
+
* @param {*} [options] Override http request option.
|
|
1988
|
+
* @throws {RequiredError}
|
|
1989
|
+
*/
|
|
1990
|
+
contactsAddListing: (contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1871
1991
|
/**
|
|
1872
1992
|
*
|
|
1873
1993
|
* @summary Contacts Create
|
|
@@ -1895,12 +2015,23 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1895
2015
|
/**
|
|
1896
2016
|
*
|
|
1897
2017
|
* @summary Contacts List
|
|
1898
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
1899
2018
|
* @param {string} [searchString]
|
|
2019
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
2020
|
+
* @param {number} [limit]
|
|
2021
|
+
* @param {*} [options] Override http request option.
|
|
2022
|
+
* @throws {RequiredError}
|
|
2023
|
+
*/
|
|
2024
|
+
contactsList: (searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2025
|
+
/**
|
|
2026
|
+
* Removes an association between a contact and a listing.
|
|
2027
|
+
* @summary Delete Contact Listing
|
|
2028
|
+
* @param {string} contactId
|
|
2029
|
+
* @param {string} listingId
|
|
2030
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
1900
2031
|
* @param {*} [options] Override http request option.
|
|
1901
2032
|
* @throws {RequiredError}
|
|
1902
2033
|
*/
|
|
1903
|
-
|
|
2034
|
+
contactsRemoveListing: (contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1904
2035
|
/**
|
|
1905
2036
|
*
|
|
1906
2037
|
* @summary Contacts Update
|
|
@@ -1910,6 +2041,16 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1910
2041
|
* @throws {RequiredError}
|
|
1911
2042
|
*/
|
|
1912
2043
|
contactsUpdate: (contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2044
|
+
/**
|
|
2045
|
+
* Updates an association between a contact and a listing.
|
|
2046
|
+
* @summary Update Contact Listing
|
|
2047
|
+
* @param {string} contactId
|
|
2048
|
+
* @param {string} listingId
|
|
2049
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2050
|
+
* @param {*} [options] Override http request option.
|
|
2051
|
+
* @throws {RequiredError}
|
|
2052
|
+
*/
|
|
2053
|
+
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1913
2054
|
/**
|
|
1914
2055
|
*
|
|
1915
2056
|
* @summary Emails Create
|
|
@@ -1958,7 +2099,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1958
2099
|
* @param {*} [options] Override http request option.
|
|
1959
2100
|
* @throws {RequiredError}
|
|
1960
2101
|
*/
|
|
1961
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2102
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
1962
2103
|
/**
|
|
1963
2104
|
*
|
|
1964
2105
|
* @summary Addresses Delete
|
|
@@ -1975,7 +2116,17 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1975
2116
|
* @param {*} [options] Override http request option.
|
|
1976
2117
|
* @throws {RequiredError}
|
|
1977
2118
|
*/
|
|
1978
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2119
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
2120
|
+
/**
|
|
2121
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2122
|
+
* @summary Create Contact Listing
|
|
2123
|
+
* @param {string} contactId
|
|
2124
|
+
* @param {string} listingId
|
|
2125
|
+
* @param {CreateContactListing} createContactListing
|
|
2126
|
+
* @param {*} [options] Override http request option.
|
|
2127
|
+
* @throws {RequiredError}
|
|
2128
|
+
*/
|
|
2129
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1979
2130
|
/**
|
|
1980
2131
|
*
|
|
1981
2132
|
* @summary Contacts Create
|
|
@@ -1983,7 +2134,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1983
2134
|
* @param {*} [options] Override http request option.
|
|
1984
2135
|
* @throws {RequiredError}
|
|
1985
2136
|
*/
|
|
1986
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2137
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
1987
2138
|
/**
|
|
1988
2139
|
*
|
|
1989
2140
|
* @summary Contacts Delete
|
|
@@ -1999,16 +2150,27 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1999
2150
|
* @param {*} [options] Override http request option.
|
|
2000
2151
|
* @throws {RequiredError}
|
|
2001
2152
|
*/
|
|
2002
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2153
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2003
2154
|
/**
|
|
2004
2155
|
*
|
|
2005
2156
|
* @summary Contacts List
|
|
2006
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2007
2157
|
* @param {string} [searchString]
|
|
2158
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
2159
|
+
* @param {number} [limit]
|
|
2008
2160
|
* @param {*} [options] Override http request option.
|
|
2009
2161
|
* @throws {RequiredError}
|
|
2010
2162
|
*/
|
|
2011
|
-
contactsList(
|
|
2163
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2164
|
+
/**
|
|
2165
|
+
* Removes an association between a contact and a listing.
|
|
2166
|
+
* @summary Delete Contact Listing
|
|
2167
|
+
* @param {string} contactId
|
|
2168
|
+
* @param {string} listingId
|
|
2169
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2170
|
+
* @param {*} [options] Override http request option.
|
|
2171
|
+
* @throws {RequiredError}
|
|
2172
|
+
*/
|
|
2173
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2012
2174
|
/**
|
|
2013
2175
|
*
|
|
2014
2176
|
* @summary Contacts Update
|
|
@@ -2017,7 +2179,17 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2017
2179
|
* @param {*} [options] Override http request option.
|
|
2018
2180
|
* @throws {RequiredError}
|
|
2019
2181
|
*/
|
|
2020
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2182
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsUpdate>>;
|
|
2183
|
+
/**
|
|
2184
|
+
* Updates an association between a contact and a listing.
|
|
2185
|
+
* @summary Update Contact Listing
|
|
2186
|
+
* @param {string} contactId
|
|
2187
|
+
* @param {string} listingId
|
|
2188
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2189
|
+
* @param {*} [options] Override http request option.
|
|
2190
|
+
* @throws {RequiredError}
|
|
2191
|
+
*/
|
|
2192
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2021
2193
|
/**
|
|
2022
2194
|
*
|
|
2023
2195
|
* @summary Emails Create
|
|
@@ -2026,7 +2198,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2026
2198
|
* @param {*} [options] Override http request option.
|
|
2027
2199
|
* @throws {RequiredError}
|
|
2028
2200
|
*/
|
|
2029
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2201
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2030
2202
|
/**
|
|
2031
2203
|
*
|
|
2032
2204
|
* @summary Emails Delete
|
|
@@ -2043,7 +2215,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2043
2215
|
* @param {*} [options] Override http request option.
|
|
2044
2216
|
* @throws {RequiredError}
|
|
2045
2217
|
*/
|
|
2046
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2218
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2047
2219
|
/**
|
|
2048
2220
|
*
|
|
2049
2221
|
* @summary Phones Delete
|
|
@@ -2066,7 +2238,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2066
2238
|
* @param {*} [options] Override http request option.
|
|
2067
2239
|
* @throws {RequiredError}
|
|
2068
2240
|
*/
|
|
2069
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2241
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2070
2242
|
/**
|
|
2071
2243
|
*
|
|
2072
2244
|
* @summary Addresses Delete
|
|
@@ -2083,7 +2255,17 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2083
2255
|
* @param {*} [options] Override http request option.
|
|
2084
2256
|
* @throws {RequiredError}
|
|
2085
2257
|
*/
|
|
2086
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2258
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
2259
|
+
/**
|
|
2260
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2261
|
+
* @summary Create Contact Listing
|
|
2262
|
+
* @param {string} contactId
|
|
2263
|
+
* @param {string} listingId
|
|
2264
|
+
* @param {CreateContactListing} createContactListing
|
|
2265
|
+
* @param {*} [options] Override http request option.
|
|
2266
|
+
* @throws {RequiredError}
|
|
2267
|
+
*/
|
|
2268
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2087
2269
|
/**
|
|
2088
2270
|
*
|
|
2089
2271
|
* @summary Contacts Create
|
|
@@ -2091,7 +2273,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2091
2273
|
* @param {*} [options] Override http request option.
|
|
2092
2274
|
* @throws {RequiredError}
|
|
2093
2275
|
*/
|
|
2094
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2276
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2095
2277
|
/**
|
|
2096
2278
|
*
|
|
2097
2279
|
* @summary Contacts Delete
|
|
@@ -2107,16 +2289,27 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2107
2289
|
* @param {*} [options] Override http request option.
|
|
2108
2290
|
* @throws {RequiredError}
|
|
2109
2291
|
*/
|
|
2110
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2292
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2111
2293
|
/**
|
|
2112
2294
|
*
|
|
2113
2295
|
* @summary Contacts List
|
|
2114
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2115
2296
|
* @param {string} [searchString]
|
|
2297
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
2298
|
+
* @param {number} [limit]
|
|
2116
2299
|
* @param {*} [options] Override http request option.
|
|
2117
2300
|
* @throws {RequiredError}
|
|
2118
2301
|
*/
|
|
2119
|
-
contactsList(
|
|
2302
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2303
|
+
/**
|
|
2304
|
+
* Removes an association between a contact and a listing.
|
|
2305
|
+
* @summary Delete Contact Listing
|
|
2306
|
+
* @param {string} contactId
|
|
2307
|
+
* @param {string} listingId
|
|
2308
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2309
|
+
* @param {*} [options] Override http request option.
|
|
2310
|
+
* @throws {RequiredError}
|
|
2311
|
+
*/
|
|
2312
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2120
2313
|
/**
|
|
2121
2314
|
*
|
|
2122
2315
|
* @summary Contacts Update
|
|
@@ -2125,7 +2318,17 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2125
2318
|
* @param {*} [options] Override http request option.
|
|
2126
2319
|
* @throws {RequiredError}
|
|
2127
2320
|
*/
|
|
2128
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2321
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
2322
|
+
/**
|
|
2323
|
+
* Updates an association between a contact and a listing.
|
|
2324
|
+
* @summary Update Contact Listing
|
|
2325
|
+
* @param {string} contactId
|
|
2326
|
+
* @param {string} listingId
|
|
2327
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2328
|
+
* @param {*} [options] Override http request option.
|
|
2329
|
+
* @throws {RequiredError}
|
|
2330
|
+
*/
|
|
2331
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2129
2332
|
/**
|
|
2130
2333
|
*
|
|
2131
2334
|
* @summary Emails Create
|
|
@@ -2134,7 +2337,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2134
2337
|
* @param {*} [options] Override http request option.
|
|
2135
2338
|
* @throws {RequiredError}
|
|
2136
2339
|
*/
|
|
2137
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2340
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2138
2341
|
/**
|
|
2139
2342
|
*
|
|
2140
2343
|
* @summary Emails Delete
|
|
@@ -2151,7 +2354,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2151
2354
|
* @param {*} [options] Override http request option.
|
|
2152
2355
|
* @throws {RequiredError}
|
|
2153
2356
|
*/
|
|
2154
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2357
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2155
2358
|
/**
|
|
2156
2359
|
*
|
|
2157
2360
|
* @summary Phones Delete
|
|
@@ -2177,7 +2380,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2177
2380
|
* @throws {RequiredError}
|
|
2178
2381
|
* @memberof ContactsApi
|
|
2179
2382
|
*/
|
|
2180
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2383
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
2181
2384
|
/**
|
|
2182
2385
|
*
|
|
2183
2386
|
* @summary Addresses Delete
|
|
@@ -2196,7 +2399,18 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2196
2399
|
* @throws {RequiredError}
|
|
2197
2400
|
* @memberof ContactsApi
|
|
2198
2401
|
*/
|
|
2199
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2402
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
2403
|
+
/**
|
|
2404
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2405
|
+
* @summary Create Contact Listing
|
|
2406
|
+
* @param {string} contactId
|
|
2407
|
+
* @param {string} listingId
|
|
2408
|
+
* @param {CreateContactListing} createContactListing
|
|
2409
|
+
* @param {*} [options] Override http request option.
|
|
2410
|
+
* @throws {RequiredError}
|
|
2411
|
+
* @memberof ContactsApi
|
|
2412
|
+
*/
|
|
2413
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2200
2414
|
/**
|
|
2201
2415
|
*
|
|
2202
2416
|
* @summary Contacts Create
|
|
@@ -2205,7 +2419,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2205
2419
|
* @throws {RequiredError}
|
|
2206
2420
|
* @memberof ContactsApi
|
|
2207
2421
|
*/
|
|
2208
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2422
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
2209
2423
|
/**
|
|
2210
2424
|
*
|
|
2211
2425
|
* @summary Contacts Delete
|
|
@@ -2223,17 +2437,29 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2223
2437
|
* @throws {RequiredError}
|
|
2224
2438
|
* @memberof ContactsApi
|
|
2225
2439
|
*/
|
|
2226
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2440
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
2227
2441
|
/**
|
|
2228
2442
|
*
|
|
2229
2443
|
* @summary Contacts List
|
|
2230
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2231
2444
|
* @param {string} [searchString]
|
|
2445
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
2446
|
+
* @param {number} [limit]
|
|
2447
|
+
* @param {*} [options] Override http request option.
|
|
2448
|
+
* @throws {RequiredError}
|
|
2449
|
+
* @memberof ContactsApi
|
|
2450
|
+
*/
|
|
2451
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
2452
|
+
/**
|
|
2453
|
+
* Removes an association between a contact and a listing.
|
|
2454
|
+
* @summary Delete Contact Listing
|
|
2455
|
+
* @param {string} contactId
|
|
2456
|
+
* @param {string} listingId
|
|
2457
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2232
2458
|
* @param {*} [options] Override http request option.
|
|
2233
2459
|
* @throws {RequiredError}
|
|
2234
2460
|
* @memberof ContactsApi
|
|
2235
2461
|
*/
|
|
2236
|
-
|
|
2462
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2237
2463
|
/**
|
|
2238
2464
|
*
|
|
2239
2465
|
* @summary Contacts Update
|
|
@@ -2243,7 +2469,18 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2243
2469
|
* @throws {RequiredError}
|
|
2244
2470
|
* @memberof ContactsApi
|
|
2245
2471
|
*/
|
|
2246
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2472
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
2473
|
+
/**
|
|
2474
|
+
* Updates an association between a contact and a listing.
|
|
2475
|
+
* @summary Update Contact Listing
|
|
2476
|
+
* @param {string} contactId
|
|
2477
|
+
* @param {string} listingId
|
|
2478
|
+
* @param {UpdateContactListing} updateContactListing
|
|
2479
|
+
* @param {*} [options] Override http request option.
|
|
2480
|
+
* @throws {RequiredError}
|
|
2481
|
+
* @memberof ContactsApi
|
|
2482
|
+
*/
|
|
2483
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
2247
2484
|
/**
|
|
2248
2485
|
*
|
|
2249
2486
|
* @summary Emails Create
|
|
@@ -2253,7 +2490,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2253
2490
|
* @throws {RequiredError}
|
|
2254
2491
|
* @memberof ContactsApi
|
|
2255
2492
|
*/
|
|
2256
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2493
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2257
2494
|
/**
|
|
2258
2495
|
*
|
|
2259
2496
|
* @summary Emails Delete
|
|
@@ -2272,7 +2509,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2272
2509
|
* @throws {RequiredError}
|
|
2273
2510
|
* @memberof ContactsApi
|
|
2274
2511
|
*/
|
|
2275
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2512
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2276
2513
|
/**
|
|
2277
2514
|
*
|
|
2278
2515
|
* @summary Phones Delete
|
|
@@ -2319,7 +2556,7 @@ declare const EmailsApiFp: (configuration?: Configuration) => {
|
|
|
2319
2556
|
* @param {*} [options] Override http request option.
|
|
2320
2557
|
* @throws {RequiredError}
|
|
2321
2558
|
*/
|
|
2322
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2559
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2323
2560
|
/**
|
|
2324
2561
|
*
|
|
2325
2562
|
* @summary Emails Delete
|
|
@@ -2342,7 +2579,7 @@ declare const EmailsApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2342
2579
|
* @param {*} [options] Override http request option.
|
|
2343
2580
|
* @throws {RequiredError}
|
|
2344
2581
|
*/
|
|
2345
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2582
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
2346
2583
|
/**
|
|
2347
2584
|
*
|
|
2348
2585
|
* @summary Emails Delete
|
|
@@ -2368,7 +2605,7 @@ declare class EmailsApi extends BaseAPI {
|
|
|
2368
2605
|
* @throws {RequiredError}
|
|
2369
2606
|
* @memberof EmailsApi
|
|
2370
2607
|
*/
|
|
2371
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2608
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
2372
2609
|
/**
|
|
2373
2610
|
*
|
|
2374
2611
|
* @summary Emails Delete
|
|
@@ -2438,6 +2675,65 @@ declare class HostawayApi extends BaseAPI {
|
|
|
2438
2675
|
*/
|
|
2439
2676
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2440
2677
|
}
|
|
2678
|
+
/**
|
|
2679
|
+
* InquiriesApi - axios parameter creator
|
|
2680
|
+
* @export
|
|
2681
|
+
*/
|
|
2682
|
+
declare const InquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2683
|
+
/**
|
|
2684
|
+
* List all listings
|
|
2685
|
+
* @summary Inquiries List
|
|
2686
|
+
* @param {string} [contactId]
|
|
2687
|
+
* @param {*} [options] Override http request option.
|
|
2688
|
+
* @throws {RequiredError}
|
|
2689
|
+
*/
|
|
2690
|
+
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2691
|
+
};
|
|
2692
|
+
/**
|
|
2693
|
+
* InquiriesApi - functional programming interface
|
|
2694
|
+
* @export
|
|
2695
|
+
*/
|
|
2696
|
+
declare const InquiriesApiFp: (configuration?: Configuration) => {
|
|
2697
|
+
/**
|
|
2698
|
+
* List all listings
|
|
2699
|
+
* @summary Inquiries List
|
|
2700
|
+
* @param {string} [contactId]
|
|
2701
|
+
* @param {*} [options] Override http request option.
|
|
2702
|
+
* @throws {RequiredError}
|
|
2703
|
+
*/
|
|
2704
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
2705
|
+
};
|
|
2706
|
+
/**
|
|
2707
|
+
* InquiriesApi - factory interface
|
|
2708
|
+
* @export
|
|
2709
|
+
*/
|
|
2710
|
+
declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2711
|
+
/**
|
|
2712
|
+
* List all listings
|
|
2713
|
+
* @summary Inquiries List
|
|
2714
|
+
* @param {string} [contactId]
|
|
2715
|
+
* @param {*} [options] Override http request option.
|
|
2716
|
+
* @throws {RequiredError}
|
|
2717
|
+
*/
|
|
2718
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
2719
|
+
};
|
|
2720
|
+
/**
|
|
2721
|
+
* InquiriesApi - object-oriented interface
|
|
2722
|
+
* @export
|
|
2723
|
+
* @class InquiriesApi
|
|
2724
|
+
* @extends {BaseAPI}
|
|
2725
|
+
*/
|
|
2726
|
+
declare class InquiriesApi extends BaseAPI {
|
|
2727
|
+
/**
|
|
2728
|
+
* List all listings
|
|
2729
|
+
* @summary Inquiries List
|
|
2730
|
+
* @param {string} [contactId]
|
|
2731
|
+
* @param {*} [options] Override http request option.
|
|
2732
|
+
* @throws {RequiredError}
|
|
2733
|
+
* @memberof InquiriesApi
|
|
2734
|
+
*/
|
|
2735
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
2736
|
+
}
|
|
2441
2737
|
/**
|
|
2442
2738
|
* ListingsApi - axios parameter creator
|
|
2443
2739
|
* @export
|
|
@@ -2446,11 +2742,10 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2446
2742
|
/**
|
|
2447
2743
|
* List all listings
|
|
2448
2744
|
* @summary Listings List
|
|
2449
|
-
* @param {string} [contactId]
|
|
2450
2745
|
* @param {*} [options] Override http request option.
|
|
2451
2746
|
* @throws {RequiredError}
|
|
2452
2747
|
*/
|
|
2453
|
-
listingsList: (
|
|
2748
|
+
listingsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2454
2749
|
};
|
|
2455
2750
|
/**
|
|
2456
2751
|
* ListingsApi - functional programming interface
|
|
@@ -2460,11 +2755,10 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
2460
2755
|
/**
|
|
2461
2756
|
* List all listings
|
|
2462
2757
|
* @summary Listings List
|
|
2463
|
-
* @param {string} [contactId]
|
|
2464
2758
|
* @param {*} [options] Override http request option.
|
|
2465
2759
|
* @throws {RequiredError}
|
|
2466
2760
|
*/
|
|
2467
|
-
listingsList(
|
|
2761
|
+
listingsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2468
2762
|
};
|
|
2469
2763
|
/**
|
|
2470
2764
|
* ListingsApi - factory interface
|
|
@@ -2474,11 +2768,10 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2474
2768
|
/**
|
|
2475
2769
|
* List all listings
|
|
2476
2770
|
* @summary Listings List
|
|
2477
|
-
* @param {string} [contactId]
|
|
2478
2771
|
* @param {*} [options] Override http request option.
|
|
2479
2772
|
* @throws {RequiredError}
|
|
2480
2773
|
*/
|
|
2481
|
-
listingsList(
|
|
2774
|
+
listingsList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
2482
2775
|
};
|
|
2483
2776
|
/**
|
|
2484
2777
|
* ListingsApi - object-oriented interface
|
|
@@ -2490,12 +2783,11 @@ declare class ListingsApi extends BaseAPI {
|
|
|
2490
2783
|
/**
|
|
2491
2784
|
* List all listings
|
|
2492
2785
|
* @summary Listings List
|
|
2493
|
-
* @param {string} [contactId]
|
|
2494
2786
|
* @param {*} [options] Override http request option.
|
|
2495
2787
|
* @throws {RequiredError}
|
|
2496
2788
|
* @memberof ListingsApi
|
|
2497
2789
|
*/
|
|
2498
|
-
listingsList(
|
|
2790
|
+
listingsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
2499
2791
|
}
|
|
2500
2792
|
/**
|
|
2501
2793
|
* PhonesApi - axios parameter creator
|
|
@@ -2533,7 +2825,7 @@ declare const PhonesApiFp: (configuration?: Configuration) => {
|
|
|
2533
2825
|
* @param {*} [options] Override http request option.
|
|
2534
2826
|
* @throws {RequiredError}
|
|
2535
2827
|
*/
|
|
2536
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2828
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2537
2829
|
/**
|
|
2538
2830
|
*
|
|
2539
2831
|
* @summary Phones Delete
|
|
@@ -2556,7 +2848,7 @@ declare const PhonesApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
2556
2848
|
* @param {*} [options] Override http request option.
|
|
2557
2849
|
* @throws {RequiredError}
|
|
2558
2850
|
*/
|
|
2559
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2851
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
2560
2852
|
/**
|
|
2561
2853
|
*
|
|
2562
2854
|
* @summary Phones Delete
|
|
@@ -2582,7 +2874,7 @@ declare class PhonesApi extends BaseAPI {
|
|
|
2582
2874
|
* @throws {RequiredError}
|
|
2583
2875
|
* @memberof PhonesApi
|
|
2584
2876
|
*/
|
|
2585
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2877
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
2586
2878
|
/**
|
|
2587
2879
|
*
|
|
2588
2880
|
* @summary Phones Delete
|
|
@@ -2619,7 +2911,7 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
|
|
|
2619
2911
|
* @param {*} [options] Override http request option.
|
|
2620
2912
|
* @throws {RequiredError}
|
|
2621
2913
|
*/
|
|
2622
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2914
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2623
2915
|
};
|
|
2624
2916
|
/**
|
|
2625
2917
|
* ReservationsApi - factory interface
|
|
@@ -2633,7 +2925,7 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2633
2925
|
* @param {*} [options] Override http request option.
|
|
2634
2926
|
* @throws {RequiredError}
|
|
2635
2927
|
*/
|
|
2636
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2928
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
2637
2929
|
};
|
|
2638
2930
|
/**
|
|
2639
2931
|
* ReservationsApi - object-oriented interface
|
|
@@ -2650,7 +2942,7 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
2650
2942
|
* @throws {RequiredError}
|
|
2651
2943
|
* @memberof ReservationsApi
|
|
2652
2944
|
*/
|
|
2653
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
2945
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
2654
2946
|
}
|
|
2655
2947
|
/**
|
|
2656
2948
|
* UnboundApi - axios parameter creator
|
|
@@ -2683,6 +2975,16 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2683
2975
|
* @throws {RequiredError}
|
|
2684
2976
|
*/
|
|
2685
2977
|
addressesUpdate: (addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2978
|
+
/**
|
|
2979
|
+
* Associates a contact with a listing with the OWNER type.
|
|
2980
|
+
* @summary Create Contact Listing
|
|
2981
|
+
* @param {string} contactId
|
|
2982
|
+
* @param {string} listingId
|
|
2983
|
+
* @param {CreateContactListing} createContactListing
|
|
2984
|
+
* @param {*} [options] Override http request option.
|
|
2985
|
+
* @throws {RequiredError}
|
|
2986
|
+
*/
|
|
2987
|
+
contactsAddListing: (contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2686
2988
|
/**
|
|
2687
2989
|
*
|
|
2688
2990
|
* @summary Contacts Create
|
|
@@ -2710,12 +3012,23 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2710
3012
|
/**
|
|
2711
3013
|
*
|
|
2712
3014
|
* @summary Contacts List
|
|
2713
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2714
3015
|
* @param {string} [searchString]
|
|
3016
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
3017
|
+
* @param {number} [limit]
|
|
2715
3018
|
* @param {*} [options] Override http request option.
|
|
2716
3019
|
* @throws {RequiredError}
|
|
2717
3020
|
*/
|
|
2718
|
-
contactsList: (
|
|
3021
|
+
contactsList: (searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3022
|
+
/**
|
|
3023
|
+
* Removes an association between a contact and a listing.
|
|
3024
|
+
* @summary Delete Contact Listing
|
|
3025
|
+
* @param {string} contactId
|
|
3026
|
+
* @param {string} listingId
|
|
3027
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
3028
|
+
* @param {*} [options] Override http request option.
|
|
3029
|
+
* @throws {RequiredError}
|
|
3030
|
+
*/
|
|
3031
|
+
contactsRemoveListing: (contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2719
3032
|
/**
|
|
2720
3033
|
*
|
|
2721
3034
|
* @summary Contacts Update
|
|
@@ -2725,6 +3038,16 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2725
3038
|
* @throws {RequiredError}
|
|
2726
3039
|
*/
|
|
2727
3040
|
contactsUpdate: (contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3041
|
+
/**
|
|
3042
|
+
* Updates an association between a contact and a listing.
|
|
3043
|
+
* @summary Update Contact Listing
|
|
3044
|
+
* @param {string} contactId
|
|
3045
|
+
* @param {string} listingId
|
|
3046
|
+
* @param {UpdateContactListing} updateContactListing
|
|
3047
|
+
* @param {*} [options] Override http request option.
|
|
3048
|
+
* @throws {RequiredError}
|
|
3049
|
+
*/
|
|
3050
|
+
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2728
3051
|
/**
|
|
2729
3052
|
*
|
|
2730
3053
|
* @summary Emails Create
|
|
@@ -2744,12 +3067,19 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2744
3067
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2745
3068
|
/**
|
|
2746
3069
|
* List all listings
|
|
2747
|
-
* @summary
|
|
3070
|
+
* @summary Inquiries List
|
|
2748
3071
|
* @param {string} [contactId]
|
|
2749
3072
|
* @param {*} [options] Override http request option.
|
|
2750
3073
|
* @throws {RequiredError}
|
|
2751
3074
|
*/
|
|
2752
|
-
|
|
3075
|
+
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3076
|
+
/**
|
|
3077
|
+
* List all listings
|
|
3078
|
+
* @summary Listings List
|
|
3079
|
+
* @param {*} [options] Override http request option.
|
|
3080
|
+
* @throws {RequiredError}
|
|
3081
|
+
*/
|
|
3082
|
+
listingsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2753
3083
|
/**
|
|
2754
3084
|
*
|
|
2755
3085
|
* @summary Phones Create
|
|
@@ -2797,7 +3127,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2797
3127
|
* @param {*} [options] Override http request option.
|
|
2798
3128
|
* @throws {RequiredError}
|
|
2799
3129
|
*/
|
|
2800
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3130
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesCreate>>;
|
|
2801
3131
|
/**
|
|
2802
3132
|
*
|
|
2803
3133
|
* @summary Addresses Delete
|
|
@@ -2814,7 +3144,17 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2814
3144
|
* @param {*} [options] Override http request option.
|
|
2815
3145
|
* @throws {RequiredError}
|
|
2816
3146
|
*/
|
|
2817
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3147
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressesUpdate>>;
|
|
3148
|
+
/**
|
|
3149
|
+
* Associates a contact with a listing with the OWNER type.
|
|
3150
|
+
* @summary Create Contact Listing
|
|
3151
|
+
* @param {string} contactId
|
|
3152
|
+
* @param {string} listingId
|
|
3153
|
+
* @param {CreateContactListing} createContactListing
|
|
3154
|
+
* @param {*} [options] Override http request option.
|
|
3155
|
+
* @throws {RequiredError}
|
|
3156
|
+
*/
|
|
3157
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2818
3158
|
/**
|
|
2819
3159
|
*
|
|
2820
3160
|
* @summary Contacts Create
|
|
@@ -2822,7 +3162,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2822
3162
|
* @param {*} [options] Override http request option.
|
|
2823
3163
|
* @throws {RequiredError}
|
|
2824
3164
|
*/
|
|
2825
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3165
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreate>>;
|
|
2826
3166
|
/**
|
|
2827
3167
|
*
|
|
2828
3168
|
* @summary Contacts Delete
|
|
@@ -2838,16 +3178,27 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2838
3178
|
* @param {*} [options] Override http request option.
|
|
2839
3179
|
* @throws {RequiredError}
|
|
2840
3180
|
*/
|
|
2841
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3181
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGet>>;
|
|
2842
3182
|
/**
|
|
2843
3183
|
*
|
|
2844
3184
|
* @summary Contacts List
|
|
2845
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2846
3185
|
* @param {string} [searchString]
|
|
3186
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
3187
|
+
* @param {number} [limit]
|
|
2847
3188
|
* @param {*} [options] Override http request option.
|
|
2848
3189
|
* @throws {RequiredError}
|
|
2849
3190
|
*/
|
|
2850
|
-
contactsList(
|
|
3191
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
3192
|
+
/**
|
|
3193
|
+
* Removes an association between a contact and a listing.
|
|
3194
|
+
* @summary Delete Contact Listing
|
|
3195
|
+
* @param {string} contactId
|
|
3196
|
+
* @param {string} listingId
|
|
3197
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
3198
|
+
* @param {*} [options] Override http request option.
|
|
3199
|
+
* @throws {RequiredError}
|
|
3200
|
+
*/
|
|
3201
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2851
3202
|
/**
|
|
2852
3203
|
*
|
|
2853
3204
|
* @summary Contacts Update
|
|
@@ -2856,7 +3207,17 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2856
3207
|
* @param {*} [options] Override http request option.
|
|
2857
3208
|
* @throws {RequiredError}
|
|
2858
3209
|
*/
|
|
2859
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3210
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsUpdate>>;
|
|
3211
|
+
/**
|
|
3212
|
+
* Updates an association between a contact and a listing.
|
|
3213
|
+
* @summary Update Contact Listing
|
|
3214
|
+
* @param {string} contactId
|
|
3215
|
+
* @param {string} listingId
|
|
3216
|
+
* @param {UpdateContactListing} updateContactListing
|
|
3217
|
+
* @param {*} [options] Override http request option.
|
|
3218
|
+
* @throws {RequiredError}
|
|
3219
|
+
*/
|
|
3220
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2860
3221
|
/**
|
|
2861
3222
|
*
|
|
2862
3223
|
* @summary Emails Create
|
|
@@ -2865,7 +3226,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2865
3226
|
* @param {*} [options] Override http request option.
|
|
2866
3227
|
* @throws {RequiredError}
|
|
2867
3228
|
*/
|
|
2868
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3229
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailsCreate>>;
|
|
2869
3230
|
/**
|
|
2870
3231
|
*
|
|
2871
3232
|
* @summary Emails Delete
|
|
@@ -2876,12 +3237,19 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2876
3237
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2877
3238
|
/**
|
|
2878
3239
|
* List all listings
|
|
2879
|
-
* @summary
|
|
3240
|
+
* @summary Inquiries List
|
|
2880
3241
|
* @param {string} [contactId]
|
|
2881
3242
|
* @param {*} [options] Override http request option.
|
|
2882
3243
|
* @throws {RequiredError}
|
|
2883
3244
|
*/
|
|
2884
|
-
|
|
3245
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseInquiriesList>>;
|
|
3246
|
+
/**
|
|
3247
|
+
* List all listings
|
|
3248
|
+
* @summary Listings List
|
|
3249
|
+
* @param {*} [options] Override http request option.
|
|
3250
|
+
* @throws {RequiredError}
|
|
3251
|
+
*/
|
|
3252
|
+
listingsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsList>>;
|
|
2885
3253
|
/**
|
|
2886
3254
|
*
|
|
2887
3255
|
* @summary Phones Create
|
|
@@ -2890,7 +3258,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2890
3258
|
* @param {*} [options] Override http request option.
|
|
2891
3259
|
* @throws {RequiredError}
|
|
2892
3260
|
*/
|
|
2893
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3261
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PhonesCreate>>;
|
|
2894
3262
|
/**
|
|
2895
3263
|
*
|
|
2896
3264
|
* @summary Phones Delete
|
|
@@ -2906,7 +3274,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2906
3274
|
* @param {*} [options] Override http request option.
|
|
2907
3275
|
* @throws {RequiredError}
|
|
2908
3276
|
*/
|
|
2909
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3277
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseReservationsList>>;
|
|
2910
3278
|
/**
|
|
2911
3279
|
*
|
|
2912
3280
|
* @summary Unifiedwebhook
|
|
@@ -2929,7 +3297,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2929
3297
|
* @param {*} [options] Override http request option.
|
|
2930
3298
|
* @throws {RequiredError}
|
|
2931
3299
|
*/
|
|
2932
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3300
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesCreate>;
|
|
2933
3301
|
/**
|
|
2934
3302
|
*
|
|
2935
3303
|
* @summary Addresses Delete
|
|
@@ -2946,7 +3314,17 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2946
3314
|
* @param {*} [options] Override http request option.
|
|
2947
3315
|
* @throws {RequiredError}
|
|
2948
3316
|
*/
|
|
2949
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3317
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AddressesUpdate>;
|
|
3318
|
+
/**
|
|
3319
|
+
* Associates a contact with a listing with the OWNER type.
|
|
3320
|
+
* @summary Create Contact Listing
|
|
3321
|
+
* @param {string} contactId
|
|
3322
|
+
* @param {string} listingId
|
|
3323
|
+
* @param {CreateContactListing} createContactListing
|
|
3324
|
+
* @param {*} [options] Override http request option.
|
|
3325
|
+
* @throws {RequiredError}
|
|
3326
|
+
*/
|
|
3327
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2950
3328
|
/**
|
|
2951
3329
|
*
|
|
2952
3330
|
* @summary Contacts Create
|
|
@@ -2954,7 +3332,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2954
3332
|
* @param {*} [options] Override http request option.
|
|
2955
3333
|
* @throws {RequiredError}
|
|
2956
3334
|
*/
|
|
2957
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3335
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreate>;
|
|
2958
3336
|
/**
|
|
2959
3337
|
*
|
|
2960
3338
|
* @summary Contacts Delete
|
|
@@ -2970,16 +3348,27 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2970
3348
|
* @param {*} [options] Override http request option.
|
|
2971
3349
|
* @throws {RequiredError}
|
|
2972
3350
|
*/
|
|
2973
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3351
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGet>;
|
|
2974
3352
|
/**
|
|
2975
3353
|
*
|
|
2976
3354
|
* @summary Contacts List
|
|
2977
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
2978
3355
|
* @param {string} [searchString]
|
|
3356
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
3357
|
+
* @param {number} [limit]
|
|
3358
|
+
* @param {*} [options] Override http request option.
|
|
3359
|
+
* @throws {RequiredError}
|
|
3360
|
+
*/
|
|
3361
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
3362
|
+
/**
|
|
3363
|
+
* Removes an association between a contact and a listing.
|
|
3364
|
+
* @summary Delete Contact Listing
|
|
3365
|
+
* @param {string} contactId
|
|
3366
|
+
* @param {string} listingId
|
|
3367
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
2979
3368
|
* @param {*} [options] Override http request option.
|
|
2980
3369
|
* @throws {RequiredError}
|
|
2981
3370
|
*/
|
|
2982
|
-
|
|
3371
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2983
3372
|
/**
|
|
2984
3373
|
*
|
|
2985
3374
|
* @summary Contacts Update
|
|
@@ -2988,7 +3377,17 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2988
3377
|
* @param {*} [options] Override http request option.
|
|
2989
3378
|
* @throws {RequiredError}
|
|
2990
3379
|
*/
|
|
2991
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3380
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsUpdate>;
|
|
3381
|
+
/**
|
|
3382
|
+
* Updates an association between a contact and a listing.
|
|
3383
|
+
* @summary Update Contact Listing
|
|
3384
|
+
* @param {string} contactId
|
|
3385
|
+
* @param {string} listingId
|
|
3386
|
+
* @param {UpdateContactListing} updateContactListing
|
|
3387
|
+
* @param {*} [options] Override http request option.
|
|
3388
|
+
* @throws {RequiredError}
|
|
3389
|
+
*/
|
|
3390
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2992
3391
|
/**
|
|
2993
3392
|
*
|
|
2994
3393
|
* @summary Emails Create
|
|
@@ -2997,7 +3396,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2997
3396
|
* @param {*} [options] Override http request option.
|
|
2998
3397
|
* @throws {RequiredError}
|
|
2999
3398
|
*/
|
|
3000
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3399
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): AxiosPromise<EmailsCreate>;
|
|
3001
3400
|
/**
|
|
3002
3401
|
*
|
|
3003
3402
|
* @summary Emails Delete
|
|
@@ -3008,12 +3407,19 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3008
3407
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3009
3408
|
/**
|
|
3010
3409
|
* List all listings
|
|
3011
|
-
* @summary
|
|
3410
|
+
* @summary Inquiries List
|
|
3012
3411
|
* @param {string} [contactId]
|
|
3013
3412
|
* @param {*} [options] Override http request option.
|
|
3014
3413
|
* @throws {RequiredError}
|
|
3015
3414
|
*/
|
|
3016
|
-
|
|
3415
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseInquiriesList>;
|
|
3416
|
+
/**
|
|
3417
|
+
* List all listings
|
|
3418
|
+
* @summary Listings List
|
|
3419
|
+
* @param {*} [options] Override http request option.
|
|
3420
|
+
* @throws {RequiredError}
|
|
3421
|
+
*/
|
|
3422
|
+
listingsList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsList>;
|
|
3017
3423
|
/**
|
|
3018
3424
|
*
|
|
3019
3425
|
* @summary Phones Create
|
|
@@ -3022,7 +3428,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3022
3428
|
* @param {*} [options] Override http request option.
|
|
3023
3429
|
* @throws {RequiredError}
|
|
3024
3430
|
*/
|
|
3025
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3431
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): AxiosPromise<PhonesCreate>;
|
|
3026
3432
|
/**
|
|
3027
3433
|
*
|
|
3028
3434
|
* @summary Phones Delete
|
|
@@ -3038,7 +3444,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3038
3444
|
* @param {*} [options] Override http request option.
|
|
3039
3445
|
* @throws {RequiredError}
|
|
3040
3446
|
*/
|
|
3041
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3447
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseReservationsList>;
|
|
3042
3448
|
/**
|
|
3043
3449
|
*
|
|
3044
3450
|
* @summary Unifiedwebhook
|
|
@@ -3064,7 +3470,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3064
3470
|
* @throws {RequiredError}
|
|
3065
3471
|
* @memberof UnboundApi
|
|
3066
3472
|
*/
|
|
3067
|
-
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3473
|
+
addressesCreate(contactId: string, addressCreate: AddressCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesCreate, any>>;
|
|
3068
3474
|
/**
|
|
3069
3475
|
*
|
|
3070
3476
|
* @summary Addresses Delete
|
|
@@ -3083,7 +3489,18 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3083
3489
|
* @throws {RequiredError}
|
|
3084
3490
|
* @memberof UnboundApi
|
|
3085
3491
|
*/
|
|
3086
|
-
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3492
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AddressesUpdate, any>>;
|
|
3493
|
+
/**
|
|
3494
|
+
* Associates a contact with a listing with the OWNER type.
|
|
3495
|
+
* @summary Create Contact Listing
|
|
3496
|
+
* @param {string} contactId
|
|
3497
|
+
* @param {string} listingId
|
|
3498
|
+
* @param {CreateContactListing} createContactListing
|
|
3499
|
+
* @param {*} [options] Override http request option.
|
|
3500
|
+
* @throws {RequiredError}
|
|
3501
|
+
* @memberof UnboundApi
|
|
3502
|
+
*/
|
|
3503
|
+
contactsAddListing(contactId: string, listingId: string, createContactListing: CreateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3087
3504
|
/**
|
|
3088
3505
|
*
|
|
3089
3506
|
* @summary Contacts Create
|
|
@@ -3092,7 +3509,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3092
3509
|
* @throws {RequiredError}
|
|
3093
3510
|
* @memberof UnboundApi
|
|
3094
3511
|
*/
|
|
3095
|
-
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3512
|
+
contactsCreate(contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreate, any>>;
|
|
3096
3513
|
/**
|
|
3097
3514
|
*
|
|
3098
3515
|
* @summary Contacts Delete
|
|
@@ -3110,17 +3527,29 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3110
3527
|
* @throws {RequiredError}
|
|
3111
3528
|
* @memberof UnboundApi
|
|
3112
3529
|
*/
|
|
3113
|
-
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3530
|
+
contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGet, any>>;
|
|
3114
3531
|
/**
|
|
3115
3532
|
*
|
|
3116
3533
|
* @summary Contacts List
|
|
3117
|
-
* @param {Array<ContactTypeFilter>} [contactTypes]
|
|
3118
3534
|
* @param {string} [searchString]
|
|
3535
|
+
* @param {string | null} [after] Cursor for keyset paging
|
|
3536
|
+
* @param {number} [limit]
|
|
3537
|
+
* @param {*} [options] Override http request option.
|
|
3538
|
+
* @throws {RequiredError}
|
|
3539
|
+
* @memberof UnboundApi
|
|
3540
|
+
*/
|
|
3541
|
+
contactsList(searchString?: string, after?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3542
|
+
/**
|
|
3543
|
+
* Removes an association between a contact and a listing.
|
|
3544
|
+
* @summary Delete Contact Listing
|
|
3545
|
+
* @param {string} contactId
|
|
3546
|
+
* @param {string} listingId
|
|
3547
|
+
* @param {DeleteContactListing} deleteContactListing
|
|
3119
3548
|
* @param {*} [options] Override http request option.
|
|
3120
3549
|
* @throws {RequiredError}
|
|
3121
3550
|
* @memberof UnboundApi
|
|
3122
3551
|
*/
|
|
3123
|
-
|
|
3552
|
+
contactsRemoveListing(contactId: string, listingId: string, deleteContactListing: DeleteContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3124
3553
|
/**
|
|
3125
3554
|
*
|
|
3126
3555
|
* @summary Contacts Update
|
|
@@ -3130,7 +3559,18 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3130
3559
|
* @throws {RequiredError}
|
|
3131
3560
|
* @memberof UnboundApi
|
|
3132
3561
|
*/
|
|
3133
|
-
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3562
|
+
contactsUpdate(contactId: string, contactUpdate: ContactUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsUpdate, any>>;
|
|
3563
|
+
/**
|
|
3564
|
+
* Updates an association between a contact and a listing.
|
|
3565
|
+
* @summary Update Contact Listing
|
|
3566
|
+
* @param {string} contactId
|
|
3567
|
+
* @param {string} listingId
|
|
3568
|
+
* @param {UpdateContactListing} updateContactListing
|
|
3569
|
+
* @param {*} [options] Override http request option.
|
|
3570
|
+
* @throws {RequiredError}
|
|
3571
|
+
* @memberof UnboundApi
|
|
3572
|
+
*/
|
|
3573
|
+
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3134
3574
|
/**
|
|
3135
3575
|
*
|
|
3136
3576
|
* @summary Emails Create
|
|
@@ -3140,7 +3580,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3140
3580
|
* @throws {RequiredError}
|
|
3141
3581
|
* @memberof UnboundApi
|
|
3142
3582
|
*/
|
|
3143
|
-
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3583
|
+
emailsCreate(contactId: string, emailCreate: EmailCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<EmailsCreate, any>>;
|
|
3144
3584
|
/**
|
|
3145
3585
|
*
|
|
3146
3586
|
* @summary Emails Delete
|
|
@@ -3152,13 +3592,21 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3152
3592
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3153
3593
|
/**
|
|
3154
3594
|
* List all listings
|
|
3155
|
-
* @summary
|
|
3595
|
+
* @summary Inquiries List
|
|
3156
3596
|
* @param {string} [contactId]
|
|
3157
3597
|
* @param {*} [options] Override http request option.
|
|
3158
3598
|
* @throws {RequiredError}
|
|
3159
3599
|
* @memberof UnboundApi
|
|
3160
3600
|
*/
|
|
3161
|
-
|
|
3601
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseInquiriesList, any>>;
|
|
3602
|
+
/**
|
|
3603
|
+
* List all listings
|
|
3604
|
+
* @summary Listings List
|
|
3605
|
+
* @param {*} [options] Override http request option.
|
|
3606
|
+
* @throws {RequiredError}
|
|
3607
|
+
* @memberof UnboundApi
|
|
3608
|
+
*/
|
|
3609
|
+
listingsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsList, any>>;
|
|
3162
3610
|
/**
|
|
3163
3611
|
*
|
|
3164
3612
|
* @summary Phones Create
|
|
@@ -3168,7 +3616,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3168
3616
|
* @throws {RequiredError}
|
|
3169
3617
|
* @memberof UnboundApi
|
|
3170
3618
|
*/
|
|
3171
|
-
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3619
|
+
phonesCreate(contactId: string, phoneCreate: PhoneCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PhonesCreate, any>>;
|
|
3172
3620
|
/**
|
|
3173
3621
|
*
|
|
3174
3622
|
* @summary Phones Delete
|
|
@@ -3186,7 +3634,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3186
3634
|
* @throws {RequiredError}
|
|
3187
3635
|
* @memberof UnboundApi
|
|
3188
3636
|
*/
|
|
3189
|
-
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
3637
|
+
reservationsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseReservationsList, any>>;
|
|
3190
3638
|
/**
|
|
3191
3639
|
*
|
|
3192
3640
|
* @summary Unifiedwebhook
|
|
@@ -3198,4 +3646,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3198
3646
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3199
3647
|
}
|
|
3200
3648
|
|
|
3201
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type
|
|
3649
|
+
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, ContactListingType, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type CreateContactListing, type DeleteContactListing, 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, type UpdateContactListing };
|