@ember-home/unbound-ts-client 0.0.4 → 0.0.6

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.ts CHANGED
@@ -156,6 +156,79 @@ interface APIValidationError {
156
156
  * @export
157
157
  */
158
158
  type APIValidationErrorLocInner = number | string;
159
+ /**
160
+ *
161
+ * @export
162
+ * @interface Address
163
+ */
164
+ interface Address {
165
+ /**
166
+ *
167
+ * @type {string}
168
+ * @memberof Address
169
+ */
170
+ 'address1': string;
171
+ /**
172
+ *
173
+ * @type {string}
174
+ * @memberof Address
175
+ */
176
+ 'address2'?: string | null;
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof Address
181
+ */
182
+ 'locality': string;
183
+ /**
184
+ *
185
+ * @type {string}
186
+ * @memberof Address
187
+ */
188
+ 'country': string;
189
+ /**
190
+ *
191
+ * @type {string}
192
+ * @memberof Address
193
+ */
194
+ 'region': string;
195
+ /**
196
+ *
197
+ * @type {string}
198
+ * @memberof Address
199
+ */
200
+ 'postalCode': string;
201
+ }
202
+ /**
203
+ *
204
+ * @export
205
+ * @interface AddressItem
206
+ */
207
+ interface AddressItem {
208
+ /**
209
+ *
210
+ * @type {string}
211
+ * @memberof AddressItem
212
+ */
213
+ 'addressId': string;
214
+ /**
215
+ *
216
+ * @type {string}
217
+ * @memberof AddressItem
218
+ */
219
+ 'source': AddressItemSourceEnum;
220
+ /**
221
+ *
222
+ * @type {Address}
223
+ * @memberof AddressItem
224
+ */
225
+ 'address': Address;
226
+ }
227
+ declare const AddressItemSourceEnum: {
228
+ readonly ThirdParty: "THIRD_PARTY";
229
+ readonly Manual: "MANUAL";
230
+ };
231
+ type AddressItemSourceEnum = typeof AddressItemSourceEnum[keyof typeof AddressItemSourceEnum];
159
232
  /**
160
233
  *
161
234
  * @export
@@ -167,56 +240,63 @@ interface ContactCreate {
167
240
  * @type {string}
168
241
  * @memberof ContactCreate
169
242
  */
170
- 'customerName': string;
243
+ 'firstName': string;
171
244
  /**
172
245
  *
173
246
  * @type {string}
174
247
  * @memberof ContactCreate
175
248
  */
176
- 'email': string;
249
+ 'lastName': string;
177
250
  }
178
251
  /**
179
252
  *
180
253
  * @export
181
- * @interface ContactUpdate
254
+ * @interface ContactTag
182
255
  */
183
- interface ContactUpdate {
256
+ interface ContactTag {
184
257
  /**
185
258
  *
186
259
  * @type {string}
187
- * @memberof ContactUpdate
260
+ * @memberof ContactTag
188
261
  */
189
- 'customerName'?: string | null;
262
+ 'tagId': string;
190
263
  /**
191
264
  *
192
265
  * @type {string}
193
- * @memberof ContactUpdate
266
+ * @memberof ContactTag
194
267
  */
195
- 'email'?: string | null;
268
+ 'groupId'?: string | null;
196
269
  /**
197
270
  *
198
271
  * @type {string}
199
- * @memberof ContactUpdate
272
+ * @memberof ContactTag
200
273
  */
201
- 'phoneNumber'?: string | null;
274
+ 'groupName'?: string | null;
275
+ }
276
+ /**
277
+ *
278
+ * @export
279
+ * @interface ContactUpdate
280
+ */
281
+ interface ContactUpdate {
202
282
  /**
203
283
  *
204
- * @type {number}
284
+ * @type {string}
205
285
  * @memberof ContactUpdate
206
286
  */
207
- 'stays'?: number | null;
287
+ 'email'?: string;
208
288
  /**
209
289
  *
210
- * @type {number}
290
+ * @type {string}
211
291
  * @memberof ContactUpdate
212
292
  */
213
- 'stayLength'?: number | null;
293
+ 'firstName'?: string;
214
294
  /**
215
295
  *
216
- * @type {number}
296
+ * @type {string}
217
297
  * @memberof ContactUpdate
218
298
  */
219
- 'amountSpent'?: number | null;
299
+ 'lastName'?: string;
220
300
  }
221
301
  /**
222
302
  *
@@ -229,25 +309,109 @@ interface ContactsCreateResponse {
229
309
  * @type {string}
230
310
  * @memberof ContactsCreateResponse
231
311
  */
232
- 'id': string;
312
+ 'contactId': string;
313
+ /**
314
+ *
315
+ * @type {Contacttypedata}
316
+ * @memberof ContactsCreateResponse
317
+ */
318
+ 'contactTypeData': Contacttypedata;
233
319
  /**
234
320
  *
235
321
  * @type {string}
236
322
  * @memberof ContactsCreateResponse
237
323
  */
238
- 'customerName': string;
324
+ 'primaryEmail'?: string | null;
325
+ /**
326
+ *
327
+ * @type {Array<Email>}
328
+ * @memberof ContactsCreateResponse
329
+ */
330
+ 'emails'?: Array<Email> | null;
239
331
  /**
240
332
  *
241
333
  * @type {string}
242
334
  * @memberof ContactsCreateResponse
243
335
  */
244
- 'email': string;
336
+ 'primaryPhone'?: string | null;
337
+ /**
338
+ *
339
+ * @type {Array<Phone>}
340
+ * @memberof ContactsCreateResponse
341
+ */
342
+ 'phones'?: Array<Phone> | null;
343
+ /**
344
+ *
345
+ * @type {string}
346
+ * @memberof ContactsCreateResponse
347
+ */
348
+ 'firstName': string;
349
+ /**
350
+ *
351
+ * @type {string}
352
+ * @memberof ContactsCreateResponse
353
+ */
354
+ 'lastName': string;
355
+ /**
356
+ *
357
+ * @type {string}
358
+ * @memberof ContactsCreateResponse
359
+ */
360
+ 'fullName'?: string | null;
361
+ /**
362
+ *
363
+ * @type {string}
364
+ * @memberof ContactsCreateResponse
365
+ */
366
+ 'title'?: string | null;
367
+ /**
368
+ *
369
+ * @type {string}
370
+ * @memberof ContactsCreateResponse
371
+ */
372
+ 'local'?: string;
373
+ /**
374
+ *
375
+ * @type {string}
376
+ * @memberof ContactsCreateResponse
377
+ */
378
+ 'archivedAt'?: string | null;
379
+ /**
380
+ *
381
+ * @type {string}
382
+ * @memberof ContactsCreateResponse
383
+ */
384
+ 'updatedAt'?: string | null;
245
385
  /**
246
386
  *
247
387
  * @type {string}
248
388
  * @memberof ContactsCreateResponse
249
389
  */
250
- 'phoneNumber': string;
390
+ 'createdAt': string;
391
+ /**
392
+ *
393
+ * @type {string}
394
+ * @memberof ContactsCreateResponse
395
+ */
396
+ 'profilePicUrl'?: string | null;
397
+ /**
398
+ *
399
+ * @type {Array<ContactTag>}
400
+ * @memberof ContactsCreateResponse
401
+ */
402
+ 'tags'?: Array<ContactTag> | null;
403
+ /**
404
+ *
405
+ * @type {Address}
406
+ * @memberof ContactsCreateResponse
407
+ */
408
+ 'address'?: Address | null;
409
+ /**
410
+ *
411
+ * @type {Array<AddressItem>}
412
+ * @memberof ContactsCreateResponse
413
+ */
414
+ 'addresses'?: Array<AddressItem> | null;
251
415
  }
252
416
  /**
253
417
  *
@@ -260,25 +424,109 @@ interface ContactsGetResponse {
260
424
  * @type {string}
261
425
  * @memberof ContactsGetResponse
262
426
  */
263
- 'id': string;
427
+ 'contactId': string;
428
+ /**
429
+ *
430
+ * @type {Contacttypedata}
431
+ * @memberof ContactsGetResponse
432
+ */
433
+ 'contactTypeData': Contacttypedata;
434
+ /**
435
+ *
436
+ * @type {string}
437
+ * @memberof ContactsGetResponse
438
+ */
439
+ 'primaryEmail'?: string | null;
440
+ /**
441
+ *
442
+ * @type {Array<Email>}
443
+ * @memberof ContactsGetResponse
444
+ */
445
+ 'emails'?: Array<Email> | null;
264
446
  /**
265
447
  *
266
448
  * @type {string}
267
449
  * @memberof ContactsGetResponse
268
450
  */
269
- 'customerName': string;
451
+ 'primaryPhone'?: string | null;
452
+ /**
453
+ *
454
+ * @type {Array<Phone>}
455
+ * @memberof ContactsGetResponse
456
+ */
457
+ 'phones'?: Array<Phone> | null;
270
458
  /**
271
459
  *
272
460
  * @type {string}
273
461
  * @memberof ContactsGetResponse
274
462
  */
275
- 'email': string;
463
+ 'firstName': string;
464
+ /**
465
+ *
466
+ * @type {string}
467
+ * @memberof ContactsGetResponse
468
+ */
469
+ 'lastName': string;
470
+ /**
471
+ *
472
+ * @type {string}
473
+ * @memberof ContactsGetResponse
474
+ */
475
+ 'fullName'?: string | null;
476
+ /**
477
+ *
478
+ * @type {string}
479
+ * @memberof ContactsGetResponse
480
+ */
481
+ 'title'?: string | null;
482
+ /**
483
+ *
484
+ * @type {string}
485
+ * @memberof ContactsGetResponse
486
+ */
487
+ 'local'?: string;
488
+ /**
489
+ *
490
+ * @type {string}
491
+ * @memberof ContactsGetResponse
492
+ */
493
+ 'archivedAt'?: string | null;
494
+ /**
495
+ *
496
+ * @type {string}
497
+ * @memberof ContactsGetResponse
498
+ */
499
+ 'updatedAt'?: string | null;
500
+ /**
501
+ *
502
+ * @type {string}
503
+ * @memberof ContactsGetResponse
504
+ */
505
+ 'createdAt': string;
276
506
  /**
277
507
  *
278
508
  * @type {string}
279
509
  * @memberof ContactsGetResponse
280
510
  */
281
- 'phoneNumber': string;
511
+ 'profilePicUrl'?: string | null;
512
+ /**
513
+ *
514
+ * @type {Array<ContactTag>}
515
+ * @memberof ContactsGetResponse
516
+ */
517
+ 'tags'?: Array<ContactTag> | null;
518
+ /**
519
+ *
520
+ * @type {Address}
521
+ * @memberof ContactsGetResponse
522
+ */
523
+ 'address'?: Address | null;
524
+ /**
525
+ *
526
+ * @type {Array<AddressItem>}
527
+ * @memberof ContactsGetResponse
528
+ */
529
+ 'addresses'?: Array<AddressItem> | null;
282
530
  }
283
531
  /**
284
532
  *
@@ -291,25 +539,109 @@ interface ContactsListResponse {
291
539
  * @type {string}
292
540
  * @memberof ContactsListResponse
293
541
  */
294
- 'id': string;
542
+ 'contactId': string;
543
+ /**
544
+ *
545
+ * @type {Contacttypedata}
546
+ * @memberof ContactsListResponse
547
+ */
548
+ 'contactTypeData': Contacttypedata;
295
549
  /**
296
550
  *
297
551
  * @type {string}
298
552
  * @memberof ContactsListResponse
299
553
  */
300
- 'customerName': string;
554
+ 'primaryEmail'?: string | null;
555
+ /**
556
+ *
557
+ * @type {Array<Email>}
558
+ * @memberof ContactsListResponse
559
+ */
560
+ 'emails'?: Array<Email> | null;
301
561
  /**
302
562
  *
303
563
  * @type {string}
304
564
  * @memberof ContactsListResponse
305
565
  */
306
- 'email': string;
566
+ 'primaryPhone'?: string | null;
567
+ /**
568
+ *
569
+ * @type {Array<Phone>}
570
+ * @memberof ContactsListResponse
571
+ */
572
+ 'phones'?: Array<Phone> | null;
573
+ /**
574
+ *
575
+ * @type {string}
576
+ * @memberof ContactsListResponse
577
+ */
578
+ 'firstName': string;
579
+ /**
580
+ *
581
+ * @type {string}
582
+ * @memberof ContactsListResponse
583
+ */
584
+ 'lastName': string;
585
+ /**
586
+ *
587
+ * @type {string}
588
+ * @memberof ContactsListResponse
589
+ */
590
+ 'fullName'?: string | null;
591
+ /**
592
+ *
593
+ * @type {string}
594
+ * @memberof ContactsListResponse
595
+ */
596
+ 'title'?: string | null;
597
+ /**
598
+ *
599
+ * @type {string}
600
+ * @memberof ContactsListResponse
601
+ */
602
+ 'local'?: string;
307
603
  /**
308
604
  *
309
605
  * @type {string}
310
606
  * @memberof ContactsListResponse
311
607
  */
312
- 'phoneNumber': string;
608
+ 'archivedAt'?: string | null;
609
+ /**
610
+ *
611
+ * @type {string}
612
+ * @memberof ContactsListResponse
613
+ */
614
+ 'updatedAt'?: string | null;
615
+ /**
616
+ *
617
+ * @type {string}
618
+ * @memberof ContactsListResponse
619
+ */
620
+ 'createdAt': string;
621
+ /**
622
+ *
623
+ * @type {string}
624
+ * @memberof ContactsListResponse
625
+ */
626
+ 'profilePicUrl'?: string | null;
627
+ /**
628
+ *
629
+ * @type {Array<ContactTag>}
630
+ * @memberof ContactsListResponse
631
+ */
632
+ 'tags'?: Array<ContactTag> | null;
633
+ /**
634
+ *
635
+ * @type {Address}
636
+ * @memberof ContactsListResponse
637
+ */
638
+ 'address'?: Address | null;
639
+ /**
640
+ *
641
+ * @type {Array<AddressItem>}
642
+ * @memberof ContactsListResponse
643
+ */
644
+ 'addresses'?: Array<AddressItem> | null;
313
645
  }
314
646
  /**
315
647
  *
@@ -322,26 +654,216 @@ interface ContactsUpdateResponse {
322
654
  * @type {string}
323
655
  * @memberof ContactsUpdateResponse
324
656
  */
325
- 'id': string;
657
+ 'contactId': string;
658
+ /**
659
+ *
660
+ * @type {Contacttypedata}
661
+ * @memberof ContactsUpdateResponse
662
+ */
663
+ 'contactTypeData': Contacttypedata;
326
664
  /**
327
665
  *
328
666
  * @type {string}
329
667
  * @memberof ContactsUpdateResponse
330
668
  */
331
- 'customerName': string;
669
+ 'primaryEmail'?: string | null;
670
+ /**
671
+ *
672
+ * @type {Array<Email>}
673
+ * @memberof ContactsUpdateResponse
674
+ */
675
+ 'emails'?: Array<Email> | null;
332
676
  /**
333
677
  *
334
678
  * @type {string}
335
679
  * @memberof ContactsUpdateResponse
336
680
  */
337
- 'email': string;
681
+ 'primaryPhone'?: string | null;
682
+ /**
683
+ *
684
+ * @type {Array<Phone>}
685
+ * @memberof ContactsUpdateResponse
686
+ */
687
+ 'phones'?: Array<Phone> | null;
688
+ /**
689
+ *
690
+ * @type {string}
691
+ * @memberof ContactsUpdateResponse
692
+ */
693
+ 'firstName': string;
694
+ /**
695
+ *
696
+ * @type {string}
697
+ * @memberof ContactsUpdateResponse
698
+ */
699
+ 'lastName': string;
700
+ /**
701
+ *
702
+ * @type {string}
703
+ * @memberof ContactsUpdateResponse
704
+ */
705
+ 'fullName'?: string | null;
706
+ /**
707
+ *
708
+ * @type {string}
709
+ * @memberof ContactsUpdateResponse
710
+ */
711
+ 'title'?: string | null;
712
+ /**
713
+ *
714
+ * @type {string}
715
+ * @memberof ContactsUpdateResponse
716
+ */
717
+ 'local'?: string;
718
+ /**
719
+ *
720
+ * @type {string}
721
+ * @memberof ContactsUpdateResponse
722
+ */
723
+ 'archivedAt'?: string | null;
724
+ /**
725
+ *
726
+ * @type {string}
727
+ * @memberof ContactsUpdateResponse
728
+ */
729
+ 'updatedAt'?: string | null;
338
730
  /**
339
731
  *
340
732
  * @type {string}
341
733
  * @memberof ContactsUpdateResponse
342
734
  */
343
- 'phoneNumber': string;
735
+ 'createdAt': string;
736
+ /**
737
+ *
738
+ * @type {string}
739
+ * @memberof ContactsUpdateResponse
740
+ */
741
+ 'profilePicUrl'?: string | null;
742
+ /**
743
+ *
744
+ * @type {Array<ContactTag>}
745
+ * @memberof ContactsUpdateResponse
746
+ */
747
+ 'tags'?: Array<ContactTag> | null;
748
+ /**
749
+ *
750
+ * @type {Address}
751
+ * @memberof ContactsUpdateResponse
752
+ */
753
+ 'address'?: Address | null;
754
+ /**
755
+ *
756
+ * @type {Array<AddressItem>}
757
+ * @memberof ContactsUpdateResponse
758
+ */
759
+ 'addresses'?: Array<AddressItem> | null;
760
+ }
761
+ /**
762
+ * @type Contacttypedata
763
+ * @export
764
+ */
765
+ type Contacttypedata = GuestData | OtherData | OwnerData;
766
+ /**
767
+ *
768
+ * @export
769
+ * @interface Email
770
+ */
771
+ interface Email {
772
+ /**
773
+ *
774
+ * @type {string}
775
+ * @memberof Email
776
+ */
777
+ 'emailId': string;
778
+ /**
779
+ *
780
+ * @type {string}
781
+ * @memberof Email
782
+ */
783
+ 'email': string;
784
+ /**
785
+ *
786
+ * @type {string}
787
+ * @memberof Email
788
+ */
789
+ 'source': EmailSourceEnum;
344
790
  }
791
+ declare const EmailSourceEnum: {
792
+ readonly ThirdParty: "THIRD_PARTY";
793
+ readonly Manual: "MANUAL";
794
+ };
795
+ type EmailSourceEnum = typeof EmailSourceEnum[keyof typeof EmailSourceEnum];
796
+ /**
797
+ *
798
+ * @export
799
+ * @interface GuestData
800
+ */
801
+ interface GuestData {
802
+ /**
803
+ *
804
+ * @type {string}
805
+ * @memberof GuestData
806
+ */
807
+ 'contactType'?: GuestDataContactTypeEnum;
808
+ /**
809
+ *
810
+ * @type {number}
811
+ * @memberof GuestData
812
+ */
813
+ 'numStays'?: number;
814
+ /**
815
+ *
816
+ * @type {number}
817
+ * @memberof GuestData
818
+ */
819
+ 'totalAmountSpent'?: number;
820
+ /**
821
+ *
822
+ * @type {number}
823
+ * @memberof GuestData
824
+ */
825
+ 'averageRating'?: number;
826
+ /**
827
+ *
828
+ * @type {boolean}
829
+ * @memberof GuestData
830
+ */
831
+ 'smsMarketingIsSubscribed'?: boolean;
832
+ /**
833
+ *
834
+ * @type {string}
835
+ * @memberof GuestData
836
+ */
837
+ 'smsMarketingConsentType'?: string | null;
838
+ /**
839
+ *
840
+ * @type {string}
841
+ * @memberof GuestData
842
+ */
843
+ 'smsMarketingConsentAt'?: string | null;
844
+ /**
845
+ *
846
+ * @type {boolean}
847
+ * @memberof GuestData
848
+ */
849
+ 'smsTransactionalIsSubscribed'?: boolean;
850
+ /**
851
+ *
852
+ * @type {string}
853
+ * @memberof GuestData
854
+ */
855
+ 'smsTransactionalConsentType'?: string | null;
856
+ /**
857
+ *
858
+ * @type {string}
859
+ * @memberof GuestData
860
+ */
861
+ 'smsTransactionalConsentAt'?: string | null;
862
+ }
863
+ declare const GuestDataContactTypeEnum: {
864
+ readonly Guest: "GUEST";
865
+ };
866
+ type GuestDataContactTypeEnum = typeof GuestDataContactTypeEnum[keyof typeof GuestDataContactTypeEnum];
345
867
  /**
346
868
  *
347
869
  * @export
@@ -381,6 +903,70 @@ interface ListResponseReservationsListResponse {
381
903
  */
382
904
  'data': Array<ReservationsListResponse>;
383
905
  }
906
+ /**
907
+ *
908
+ * @export
909
+ * @interface OtherData
910
+ */
911
+ interface OtherData {
912
+ /**
913
+ *
914
+ * @type {string}
915
+ * @memberof OtherData
916
+ */
917
+ 'contactType'?: OtherDataContactTypeEnum;
918
+ }
919
+ declare const OtherDataContactTypeEnum: {
920
+ readonly Other: "OTHER";
921
+ };
922
+ type OtherDataContactTypeEnum = typeof OtherDataContactTypeEnum[keyof typeof OtherDataContactTypeEnum];
923
+ /**
924
+ *
925
+ * @export
926
+ * @interface OwnerData
927
+ */
928
+ interface OwnerData {
929
+ /**
930
+ *
931
+ * @type {string}
932
+ * @memberof OwnerData
933
+ */
934
+ 'contactType'?: OwnerDataContactTypeEnum;
935
+ }
936
+ declare const OwnerDataContactTypeEnum: {
937
+ readonly Owner: "OWNER";
938
+ };
939
+ type OwnerDataContactTypeEnum = typeof OwnerDataContactTypeEnum[keyof typeof OwnerDataContactTypeEnum];
940
+ /**
941
+ *
942
+ * @export
943
+ * @interface Phone
944
+ */
945
+ interface Phone {
946
+ /**
947
+ *
948
+ * @type {string}
949
+ * @memberof Phone
950
+ */
951
+ 'phoneId': string;
952
+ /**
953
+ *
954
+ * @type {string}
955
+ * @memberof Phone
956
+ */
957
+ 'phone': string | null;
958
+ /**
959
+ *
960
+ * @type {string}
961
+ * @memberof Phone
962
+ */
963
+ 'source': PhoneSourceEnum;
964
+ }
965
+ declare const PhoneSourceEnum: {
966
+ readonly ThirdParty: "THIRD_PARTY";
967
+ readonly Manual: "MANUAL";
968
+ };
969
+ type PhoneSourceEnum = typeof PhoneSourceEnum[keyof typeof PhoneSourceEnum];
384
970
  /**
385
971
  *
386
972
  * @export
@@ -392,13 +978,13 @@ interface ReservationsListResponse {
392
978
  * @type {string}
393
979
  * @memberof ReservationsListResponse
394
980
  */
395
- 'reservationId'?: string | null;
981
+ 'providerReservationId': string;
396
982
  /**
397
983
  *
398
984
  * @type {string}
399
985
  * @memberof ReservationsListResponse
400
986
  */
401
- 'providerReservationId': string;
987
+ 'providerListingId': string;
402
988
  /**
403
989
  *
404
990
  * @type {string}
@@ -436,7 +1022,7 @@ interface ReservationsListResponse {
436
1022
  */
437
1023
  declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
438
1024
  /**
439
- * Create a new contact
1025
+ *
440
1026
  * @summary Contacts Create
441
1027
  * @param {string} customerId
442
1028
  * @param {ContactCreate} contactCreate
@@ -445,7 +1031,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
445
1031
  */
446
1032
  contactsCreate: (customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
447
1033
  /**
448
- * Delete a contact
1034
+ *
449
1035
  * @summary Contacts Delete
450
1036
  * @param {string} contactId
451
1037
  * @param {*} [options] Override http request option.
@@ -453,7 +1039,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
453
1039
  */
454
1040
  contactsDelete: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
455
1041
  /**
456
- * Get a contact by ID
1042
+ *
457
1043
  * @summary Contacts Get
458
1044
  * @param {string} contactId
459
1045
  * @param {*} [options] Override http request option.
@@ -461,7 +1047,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
461
1047
  */
462
1048
  contactsGet: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
463
1049
  /**
464
- * List all contacts
1050
+ *
465
1051
  * @summary Contacts List
466
1052
  * @param {string} [statusFilter]
467
1053
  * @param {*} [options] Override http request option.
@@ -469,7 +1055,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
469
1055
  */
470
1056
  contactsList: (statusFilter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
471
1057
  /**
472
- * Update a contact
1058
+ *
473
1059
  * @summary Contacts Update
474
1060
  * @param {string} contactId
475
1061
  * @param {ContactUpdate} contactUpdate
@@ -484,7 +1070,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
484
1070
  */
485
1071
  declare const ContactsApiFp: (configuration?: Configuration) => {
486
1072
  /**
487
- * Create a new contact
1073
+ *
488
1074
  * @summary Contacts Create
489
1075
  * @param {string} customerId
490
1076
  * @param {ContactCreate} contactCreate
@@ -493,7 +1079,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
493
1079
  */
494
1080
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreateResponse>>;
495
1081
  /**
496
- * Delete a contact
1082
+ *
497
1083
  * @summary Contacts Delete
498
1084
  * @param {string} contactId
499
1085
  * @param {*} [options] Override http request option.
@@ -501,7 +1087,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
501
1087
  */
502
1088
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
503
1089
  /**
504
- * Get a contact by ID
1090
+ *
505
1091
  * @summary Contacts Get
506
1092
  * @param {string} contactId
507
1093
  * @param {*} [options] Override http request option.
@@ -509,7 +1095,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
509
1095
  */
510
1096
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGetResponse>>;
511
1097
  /**
512
- * List all contacts
1098
+ *
513
1099
  * @summary Contacts List
514
1100
  * @param {string} [statusFilter]
515
1101
  * @param {*} [options] Override http request option.
@@ -517,7 +1103,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
517
1103
  */
518
1104
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
519
1105
  /**
520
- * Update a contact
1106
+ *
521
1107
  * @summary Contacts Update
522
1108
  * @param {string} contactId
523
1109
  * @param {ContactUpdate} contactUpdate
@@ -532,7 +1118,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
532
1118
  */
533
1119
  declare const ContactsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
534
1120
  /**
535
- * Create a new contact
1121
+ *
536
1122
  * @summary Contacts Create
537
1123
  * @param {string} customerId
538
1124
  * @param {ContactCreate} contactCreate
@@ -541,7 +1127,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
541
1127
  */
542
1128
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreateResponse>;
543
1129
  /**
544
- * Delete a contact
1130
+ *
545
1131
  * @summary Contacts Delete
546
1132
  * @param {string} contactId
547
1133
  * @param {*} [options] Override http request option.
@@ -549,7 +1135,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
549
1135
  */
550
1136
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
551
1137
  /**
552
- * Get a contact by ID
1138
+ *
553
1139
  * @summary Contacts Get
554
1140
  * @param {string} contactId
555
1141
  * @param {*} [options] Override http request option.
@@ -557,7 +1143,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
557
1143
  */
558
1144
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGetResponse>;
559
1145
  /**
560
- * List all contacts
1146
+ *
561
1147
  * @summary Contacts List
562
1148
  * @param {string} [statusFilter]
563
1149
  * @param {*} [options] Override http request option.
@@ -565,7 +1151,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
565
1151
  */
566
1152
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
567
1153
  /**
568
- * Update a contact
1154
+ *
569
1155
  * @summary Contacts Update
570
1156
  * @param {string} contactId
571
1157
  * @param {ContactUpdate} contactUpdate
@@ -582,7 +1168,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
582
1168
  */
583
1169
  declare class ContactsApi extends BaseAPI {
584
1170
  /**
585
- * Create a new contact
1171
+ *
586
1172
  * @summary Contacts Create
587
1173
  * @param {string} customerId
588
1174
  * @param {ContactCreate} contactCreate
@@ -592,7 +1178,7 @@ declare class ContactsApi extends BaseAPI {
592
1178
  */
593
1179
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreateResponse, any>>;
594
1180
  /**
595
- * Delete a contact
1181
+ *
596
1182
  * @summary Contacts Delete
597
1183
  * @param {string} contactId
598
1184
  * @param {*} [options] Override http request option.
@@ -601,7 +1187,7 @@ declare class ContactsApi extends BaseAPI {
601
1187
  */
602
1188
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
603
1189
  /**
604
- * Get a contact by ID
1190
+ *
605
1191
  * @summary Contacts Get
606
1192
  * @param {string} contactId
607
1193
  * @param {*} [options] Override http request option.
@@ -610,7 +1196,7 @@ declare class ContactsApi extends BaseAPI {
610
1196
  */
611
1197
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGetResponse, any>>;
612
1198
  /**
613
- * List all contacts
1199
+ *
614
1200
  * @summary Contacts List
615
1201
  * @param {string} [statusFilter]
616
1202
  * @param {*} [options] Override http request option.
@@ -619,7 +1205,7 @@ declare class ContactsApi extends BaseAPI {
619
1205
  */
620
1206
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
621
1207
  /**
622
- * Update a contact
1208
+ *
623
1209
  * @summary Contacts Update
624
1210
  * @param {string} contactId
625
1211
  * @param {ContactUpdate} contactUpdate
@@ -753,7 +1339,7 @@ declare class ReservationsApi extends BaseAPI {
753
1339
  */
754
1340
  declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
755
1341
  /**
756
- * Create a new contact
1342
+ *
757
1343
  * @summary Contacts Create
758
1344
  * @param {string} customerId
759
1345
  * @param {ContactCreate} contactCreate
@@ -762,7 +1348,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
762
1348
  */
763
1349
  contactsCreate: (customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
764
1350
  /**
765
- * Delete a contact
1351
+ *
766
1352
  * @summary Contacts Delete
767
1353
  * @param {string} contactId
768
1354
  * @param {*} [options] Override http request option.
@@ -770,7 +1356,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
770
1356
  */
771
1357
  contactsDelete: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
772
1358
  /**
773
- * Get a contact by ID
1359
+ *
774
1360
  * @summary Contacts Get
775
1361
  * @param {string} contactId
776
1362
  * @param {*} [options] Override http request option.
@@ -778,7 +1364,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
778
1364
  */
779
1365
  contactsGet: (contactId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
780
1366
  /**
781
- * List all contacts
1367
+ *
782
1368
  * @summary Contacts List
783
1369
  * @param {string} [statusFilter]
784
1370
  * @param {*} [options] Override http request option.
@@ -786,7 +1372,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
786
1372
  */
787
1373
  contactsList: (statusFilter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
788
1374
  /**
789
- * Update a contact
1375
+ *
790
1376
  * @summary Contacts Update
791
1377
  * @param {string} contactId
792
1378
  * @param {ContactUpdate} contactUpdate
@@ -817,7 +1403,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
817
1403
  */
818
1404
  declare const UnboundApiFp: (configuration?: Configuration) => {
819
1405
  /**
820
- * Create a new contact
1406
+ *
821
1407
  * @summary Contacts Create
822
1408
  * @param {string} customerId
823
1409
  * @param {ContactCreate} contactCreate
@@ -826,7 +1412,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
826
1412
  */
827
1413
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsCreateResponse>>;
828
1414
  /**
829
- * Delete a contact
1415
+ *
830
1416
  * @summary Contacts Delete
831
1417
  * @param {string} contactId
832
1418
  * @param {*} [options] Override http request option.
@@ -834,7 +1420,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
834
1420
  */
835
1421
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
836
1422
  /**
837
- * Get a contact by ID
1423
+ *
838
1424
  * @summary Contacts Get
839
1425
  * @param {string} contactId
840
1426
  * @param {*} [options] Override http request option.
@@ -842,7 +1428,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
842
1428
  */
843
1429
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsGetResponse>>;
844
1430
  /**
845
- * List all contacts
1431
+ *
846
1432
  * @summary Contacts List
847
1433
  * @param {string} [statusFilter]
848
1434
  * @param {*} [options] Override http request option.
@@ -850,7 +1436,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
850
1436
  */
851
1437
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
852
1438
  /**
853
- * Update a contact
1439
+ *
854
1440
  * @summary Contacts Update
855
1441
  * @param {string} contactId
856
1442
  * @param {ContactUpdate} contactUpdate
@@ -881,7 +1467,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
881
1467
  */
882
1468
  declare const UnboundApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
883
1469
  /**
884
- * Create a new contact
1470
+ *
885
1471
  * @summary Contacts Create
886
1472
  * @param {string} customerId
887
1473
  * @param {ContactCreate} contactCreate
@@ -890,7 +1476,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
890
1476
  */
891
1477
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContactsCreateResponse>;
892
1478
  /**
893
- * Delete a contact
1479
+ *
894
1480
  * @summary Contacts Delete
895
1481
  * @param {string} contactId
896
1482
  * @param {*} [options] Override http request option.
@@ -898,7 +1484,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
898
1484
  */
899
1485
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
900
1486
  /**
901
- * Get a contact by ID
1487
+ *
902
1488
  * @summary Contacts Get
903
1489
  * @param {string} contactId
904
1490
  * @param {*} [options] Override http request option.
@@ -906,7 +1492,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
906
1492
  */
907
1493
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsGetResponse>;
908
1494
  /**
909
- * List all contacts
1495
+ *
910
1496
  * @summary Contacts List
911
1497
  * @param {string} [statusFilter]
912
1498
  * @param {*} [options] Override http request option.
@@ -914,7 +1500,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
914
1500
  */
915
1501
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
916
1502
  /**
917
- * Update a contact
1503
+ *
918
1504
  * @summary Contacts Update
919
1505
  * @param {string} contactId
920
1506
  * @param {ContactUpdate} contactUpdate
@@ -947,7 +1533,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
947
1533
  */
948
1534
  declare class UnboundApi extends BaseAPI {
949
1535
  /**
950
- * Create a new contact
1536
+ *
951
1537
  * @summary Contacts Create
952
1538
  * @param {string} customerId
953
1539
  * @param {ContactCreate} contactCreate
@@ -957,7 +1543,7 @@ declare class UnboundApi extends BaseAPI {
957
1543
  */
958
1544
  contactsCreate(customerId: string, contactCreate: ContactCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsCreateResponse, any>>;
959
1545
  /**
960
- * Delete a contact
1546
+ *
961
1547
  * @summary Contacts Delete
962
1548
  * @param {string} contactId
963
1549
  * @param {*} [options] Override http request option.
@@ -966,7 +1552,7 @@ declare class UnboundApi extends BaseAPI {
966
1552
  */
967
1553
  contactsDelete(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
968
1554
  /**
969
- * Get a contact by ID
1555
+ *
970
1556
  * @summary Contacts Get
971
1557
  * @param {string} contactId
972
1558
  * @param {*} [options] Override http request option.
@@ -975,7 +1561,7 @@ declare class UnboundApi extends BaseAPI {
975
1561
  */
976
1562
  contactsGet(contactId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContactsGetResponse, any>>;
977
1563
  /**
978
- * List all contacts
1564
+ *
979
1565
  * @summary Contacts List
980
1566
  * @param {string} [statusFilter]
981
1567
  * @param {*} [options] Override http request option.
@@ -984,7 +1570,7 @@ declare class UnboundApi extends BaseAPI {
984
1570
  */
985
1571
  contactsList(statusFilter?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
986
1572
  /**
987
- * Update a contact
1573
+ *
988
1574
  * @summary Contacts Update
989
1575
  * @param {string} contactId
990
1576
  * @param {ContactUpdate} contactUpdate
@@ -1013,4 +1599,4 @@ declare class UnboundApi extends BaseAPI {
1013
1599
  webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
1014
1600
  }
1015
1601
 
1016
- export { type APIValidationError, type APIValidationErrorLocInner, Configuration, type ConfigurationParameters, type ContactCreate, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
1602
+ export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressItem, AddressItemSourceEnum, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTag, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, type Contacttypedata, type Email, EmailSourceEnum, type GuestData, GuestDataContactTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, type OtherData, OtherDataContactTypeEnum, type OwnerData, OwnerDataContactTypeEnum, type Phone, PhoneSourceEnum, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };