@ember-home/unbound-ts-client 0.0.129 → 0.0.130
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 +346 -123
- package/dist/index.d.ts +346 -123
- package/dist/index.js +31 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -32
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -604,55 +604,55 @@ interface Community {
|
|
|
604
604
|
* @type {string}
|
|
605
605
|
* @memberof Community
|
|
606
606
|
*/
|
|
607
|
-
'
|
|
607
|
+
'street1'?: string | null;
|
|
608
608
|
/**
|
|
609
609
|
*
|
|
610
610
|
* @type {string}
|
|
611
611
|
* @memberof Community
|
|
612
612
|
*/
|
|
613
|
-
'
|
|
613
|
+
'street2'?: string | null;
|
|
614
614
|
/**
|
|
615
615
|
*
|
|
616
|
-
* @type {
|
|
616
|
+
* @type {string}
|
|
617
617
|
* @memberof Community
|
|
618
618
|
*/
|
|
619
|
-
'
|
|
619
|
+
'locality'?: string | null;
|
|
620
620
|
/**
|
|
621
621
|
*
|
|
622
622
|
* @type {string}
|
|
623
623
|
* @memberof Community
|
|
624
624
|
*/
|
|
625
|
-
'
|
|
625
|
+
'region'?: string | null;
|
|
626
626
|
/**
|
|
627
627
|
*
|
|
628
628
|
* @type {string}
|
|
629
629
|
* @memberof Community
|
|
630
630
|
*/
|
|
631
|
-
'
|
|
631
|
+
'country'?: string | null;
|
|
632
632
|
/**
|
|
633
633
|
*
|
|
634
634
|
* @type {string}
|
|
635
635
|
* @memberof Community
|
|
636
636
|
*/
|
|
637
|
-
'
|
|
637
|
+
'postalCode'?: string | null;
|
|
638
638
|
/**
|
|
639
639
|
*
|
|
640
640
|
* @type {string}
|
|
641
641
|
* @memberof Community
|
|
642
642
|
*/
|
|
643
|
-
'
|
|
643
|
+
'name': string;
|
|
644
644
|
/**
|
|
645
645
|
*
|
|
646
|
-
* @type {
|
|
646
|
+
* @type {CommunityType}
|
|
647
647
|
* @memberof Community
|
|
648
648
|
*/
|
|
649
|
-
'
|
|
649
|
+
'communityType': CommunityType;
|
|
650
650
|
/**
|
|
651
651
|
*
|
|
652
652
|
* @type {string}
|
|
653
653
|
* @memberof Community
|
|
654
654
|
*/
|
|
655
|
-
'
|
|
655
|
+
'communityId': string;
|
|
656
656
|
/**
|
|
657
657
|
*
|
|
658
658
|
* @type {Array<string>}
|
|
@@ -678,12 +678,6 @@ interface Community {
|
|
|
678
678
|
* @interface CommunityCreate
|
|
679
679
|
*/
|
|
680
680
|
interface CommunityCreate {
|
|
681
|
-
/**
|
|
682
|
-
*
|
|
683
|
-
* @type {string}
|
|
684
|
-
* @memberof CommunityCreate
|
|
685
|
-
*/
|
|
686
|
-
'communityTypeId': string;
|
|
687
681
|
/**
|
|
688
682
|
*
|
|
689
683
|
* @type {string}
|
|
@@ -720,6 +714,12 @@ interface CommunityCreate {
|
|
|
720
714
|
* @memberof CommunityCreate
|
|
721
715
|
*/
|
|
722
716
|
'postalCode'?: string | null;
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof CommunityCreate
|
|
721
|
+
*/
|
|
722
|
+
'communityTypeId': string;
|
|
723
723
|
/**
|
|
724
724
|
*
|
|
725
725
|
* @type {Array<string>}
|
|
@@ -818,55 +818,55 @@ interface CommunityUpdate {
|
|
|
818
818
|
* @type {string}
|
|
819
819
|
* @memberof CommunityUpdate
|
|
820
820
|
*/
|
|
821
|
-
'
|
|
821
|
+
'street1'?: string | null;
|
|
822
822
|
/**
|
|
823
823
|
*
|
|
824
824
|
* @type {string}
|
|
825
825
|
* @memberof CommunityUpdate
|
|
826
826
|
*/
|
|
827
|
-
'
|
|
827
|
+
'street2'?: string | null;
|
|
828
828
|
/**
|
|
829
829
|
*
|
|
830
830
|
* @type {string}
|
|
831
831
|
* @memberof CommunityUpdate
|
|
832
832
|
*/
|
|
833
|
-
'
|
|
833
|
+
'locality'?: string | null;
|
|
834
834
|
/**
|
|
835
835
|
*
|
|
836
836
|
* @type {string}
|
|
837
837
|
* @memberof CommunityUpdate
|
|
838
838
|
*/
|
|
839
|
-
'
|
|
839
|
+
'region'?: string | null;
|
|
840
840
|
/**
|
|
841
841
|
*
|
|
842
842
|
* @type {string}
|
|
843
843
|
* @memberof CommunityUpdate
|
|
844
844
|
*/
|
|
845
|
-
'
|
|
845
|
+
'country'?: string | null;
|
|
846
846
|
/**
|
|
847
847
|
*
|
|
848
848
|
* @type {string}
|
|
849
849
|
* @memberof CommunityUpdate
|
|
850
850
|
*/
|
|
851
|
-
'
|
|
851
|
+
'postalCode'?: string | null;
|
|
852
852
|
/**
|
|
853
853
|
*
|
|
854
854
|
* @type {string}
|
|
855
855
|
* @memberof CommunityUpdate
|
|
856
856
|
*/
|
|
857
|
-
'
|
|
857
|
+
'name'?: string | null;
|
|
858
858
|
/**
|
|
859
859
|
*
|
|
860
|
-
* @type {string}
|
|
860
|
+
* @type {Array<string>}
|
|
861
861
|
* @memberof CommunityUpdate
|
|
862
862
|
*/
|
|
863
|
-
'
|
|
863
|
+
'listingIds'?: Array<string> | null;
|
|
864
864
|
/**
|
|
865
865
|
*
|
|
866
|
-
* @type {
|
|
866
|
+
* @type {string}
|
|
867
867
|
* @memberof CommunityUpdate
|
|
868
868
|
*/
|
|
869
|
-
'
|
|
869
|
+
'communityTypeId'?: string | null;
|
|
870
870
|
}
|
|
871
871
|
/**
|
|
872
872
|
*
|
|
@@ -1564,13 +1564,13 @@ interface ContentItemVersion {
|
|
|
1564
1564
|
* @type {string}
|
|
1565
1565
|
* @memberof ContentItemVersion
|
|
1566
1566
|
*/
|
|
1567
|
-
'
|
|
1567
|
+
'contentItemId': string;
|
|
1568
1568
|
/**
|
|
1569
1569
|
*
|
|
1570
1570
|
* @type {string}
|
|
1571
1571
|
* @memberof ContentItemVersion
|
|
1572
1572
|
*/
|
|
1573
|
-
'
|
|
1573
|
+
'contentItemVersionId': string;
|
|
1574
1574
|
/**
|
|
1575
1575
|
*
|
|
1576
1576
|
* @type {number}
|
|
@@ -1802,10 +1802,10 @@ interface Conversation {
|
|
|
1802
1802
|
interface ConversationCreate {
|
|
1803
1803
|
/**
|
|
1804
1804
|
*
|
|
1805
|
-
* @type {
|
|
1805
|
+
* @type {SMSConversationDataCreate}
|
|
1806
1806
|
* @memberof ConversationCreate
|
|
1807
1807
|
*/
|
|
1808
|
-
'conversationTypeData':
|
|
1808
|
+
'conversationTypeData': SMSConversationDataCreate;
|
|
1809
1809
|
}
|
|
1810
1810
|
/**
|
|
1811
1811
|
*
|
|
@@ -1867,7 +1867,7 @@ type Conversationtypedata = {
|
|
|
1867
1867
|
conversationType: 'TEXT';
|
|
1868
1868
|
} & SMSConversationData;
|
|
1869
1869
|
/**
|
|
1870
|
-
*
|
|
1870
|
+
* Fields for POST requests to create a new role.
|
|
1871
1871
|
* @export
|
|
1872
1872
|
* @interface Create
|
|
1873
1873
|
*/
|
|
@@ -1877,30 +1877,14 @@ interface Create {
|
|
|
1877
1877
|
* @type {string}
|
|
1878
1878
|
* @memberof Create
|
|
1879
1879
|
*/
|
|
1880
|
-
'
|
|
1881
|
-
/**
|
|
1882
|
-
*
|
|
1883
|
-
* @type {Array<ToPhone>}
|
|
1884
|
-
* @memberof Create
|
|
1885
|
-
*/
|
|
1886
|
-
'toPhones': Array<ToPhone>;
|
|
1887
|
-
/**
|
|
1888
|
-
*
|
|
1889
|
-
* @type {string}
|
|
1890
|
-
* @memberof Create
|
|
1891
|
-
*/
|
|
1892
|
-
'managedPhoneId'?: string | null;
|
|
1880
|
+
'description': string;
|
|
1893
1881
|
/**
|
|
1894
1882
|
*
|
|
1895
1883
|
* @type {string}
|
|
1896
1884
|
* @memberof Create
|
|
1897
1885
|
*/
|
|
1898
|
-
'
|
|
1886
|
+
'roleId': string;
|
|
1899
1887
|
}
|
|
1900
|
-
declare const CreateConversationTypeEnum: {
|
|
1901
|
-
readonly Text: "TEXT";
|
|
1902
|
-
};
|
|
1903
|
-
type CreateConversationTypeEnum = typeof CreateConversationTypeEnum[keyof typeof CreateConversationTypeEnum];
|
|
1904
1888
|
/**
|
|
1905
1889
|
*
|
|
1906
1890
|
* @export
|
|
@@ -2042,6 +2026,25 @@ declare const EmailInboxInboxTypeEnum: {
|
|
|
2042
2026
|
readonly Email: "EMAIL";
|
|
2043
2027
|
};
|
|
2044
2028
|
type EmailInboxInboxTypeEnum = typeof EmailInboxInboxTypeEnum[keyof typeof EmailInboxInboxTypeEnum];
|
|
2029
|
+
/**
|
|
2030
|
+
*
|
|
2031
|
+
* @export
|
|
2032
|
+
* @interface EmailProviderEmailsProviderAttribution
|
|
2033
|
+
*/
|
|
2034
|
+
interface EmailProviderEmailsProviderAttribution {
|
|
2035
|
+
/**
|
|
2036
|
+
*
|
|
2037
|
+
* @type {string}
|
|
2038
|
+
* @memberof EmailProviderEmailsProviderAttribution
|
|
2039
|
+
*/
|
|
2040
|
+
'providerId': string;
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @type {Array<ReservationChannelTypes>}
|
|
2044
|
+
* @memberof EmailProviderEmailsProviderAttribution
|
|
2045
|
+
*/
|
|
2046
|
+
'channels': Array<ReservationChannelTypes>;
|
|
2047
|
+
}
|
|
2045
2048
|
/**
|
|
2046
2049
|
*
|
|
2047
2050
|
* @export
|
|
@@ -2604,12 +2607,48 @@ interface Listing {
|
|
|
2604
2607
|
* @memberof Listing
|
|
2605
2608
|
*/
|
|
2606
2609
|
'description'?: string | null;
|
|
2610
|
+
/**
|
|
2611
|
+
*
|
|
2612
|
+
* @type {PropertyTypes}
|
|
2613
|
+
* @memberof Listing
|
|
2614
|
+
*/
|
|
2615
|
+
'propertyType'?: PropertyTypes | null;
|
|
2607
2616
|
/**
|
|
2608
2617
|
*
|
|
2609
2618
|
* @type {number}
|
|
2610
2619
|
* @memberof Listing
|
|
2611
2620
|
*/
|
|
2612
2621
|
'accommodates'?: number | null;
|
|
2622
|
+
/**
|
|
2623
|
+
*
|
|
2624
|
+
* @type {string}
|
|
2625
|
+
* @memberof Listing
|
|
2626
|
+
*/
|
|
2627
|
+
'cancellationPolicy'?: string | null;
|
|
2628
|
+
/**
|
|
2629
|
+
*
|
|
2630
|
+
* @type {string}
|
|
2631
|
+
* @memberof Listing
|
|
2632
|
+
*/
|
|
2633
|
+
'currencyCode'?: string | null;
|
|
2634
|
+
/**
|
|
2635
|
+
*
|
|
2636
|
+
* @type {number}
|
|
2637
|
+
* @memberof Listing
|
|
2638
|
+
*/
|
|
2639
|
+
'cleaningFee'?: number | null;
|
|
2640
|
+
/**
|
|
2641
|
+
*
|
|
2642
|
+
* @type {number}
|
|
2643
|
+
* @memberof Listing
|
|
2644
|
+
*/
|
|
2645
|
+
'extraPersonFee'?: number | null;
|
|
2646
|
+
/**
|
|
2647
|
+
*
|
|
2648
|
+
* @type {string}
|
|
2649
|
+
* @memberof Listing
|
|
2650
|
+
*/
|
|
2651
|
+
'specialInstructions'?: string | null;
|
|
2613
2652
|
/**
|
|
2614
2653
|
*
|
|
2615
2654
|
* @type {Address}
|
|
@@ -2622,6 +2661,12 @@ interface Listing {
|
|
|
2622
2661
|
* @memberof Listing
|
|
2623
2662
|
*/
|
|
2624
2663
|
'amenities'?: Array<string> | null;
|
|
2664
|
+
/**
|
|
2665
|
+
*
|
|
2666
|
+
* @type {boolean}
|
|
2667
|
+
* @memberof Listing
|
|
2668
|
+
*/
|
|
2669
|
+
'petsAllowed'?: boolean | null;
|
|
2625
2670
|
/**
|
|
2626
2671
|
*
|
|
2627
2672
|
* @type {number}
|
|
@@ -2652,12 +2697,82 @@ interface Listing {
|
|
|
2652
2697
|
* @memberof Listing
|
|
2653
2698
|
*/
|
|
2654
2699
|
'numHalfBathrooms'?: number | null;
|
|
2700
|
+
/**
|
|
2701
|
+
*
|
|
2702
|
+
* @type {{ [key: string]: { [key: string]: number; }; }}
|
|
2703
|
+
* @memberof Listing
|
|
2704
|
+
*/
|
|
2705
|
+
'bedroomDetails'?: {
|
|
2706
|
+
[key: string]: {
|
|
2707
|
+
[key: string]: number;
|
|
2708
|
+
};
|
|
2709
|
+
};
|
|
2710
|
+
/**
|
|
2711
|
+
*
|
|
2712
|
+
* @type {string}
|
|
2713
|
+
* @memberof Listing
|
|
2714
|
+
*/
|
|
2715
|
+
'defaultCheckInTime'?: string | null;
|
|
2716
|
+
/**
|
|
2717
|
+
*
|
|
2718
|
+
* @type {string}
|
|
2719
|
+
* @memberof Listing
|
|
2720
|
+
*/
|
|
2721
|
+
'defaultCheckOutTime'?: string | null;
|
|
2655
2722
|
/**
|
|
2656
2723
|
*
|
|
2657
2724
|
* @type {string}
|
|
2658
2725
|
* @memberof Listing
|
|
2659
2726
|
*/
|
|
2660
2727
|
'listingPicUrl'?: string | null;
|
|
2728
|
+
/**
|
|
2729
|
+
*
|
|
2730
|
+
* @type {string}
|
|
2731
|
+
* @memberof Listing
|
|
2732
|
+
*/
|
|
2733
|
+
'houseManual'?: string | null;
|
|
2734
|
+
/**
|
|
2735
|
+
*
|
|
2736
|
+
* @type {string}
|
|
2737
|
+
* @memberof Listing
|
|
2738
|
+
*/
|
|
2739
|
+
'parkingInstructions'?: string | null;
|
|
2740
|
+
/**
|
|
2741
|
+
*
|
|
2742
|
+
* @type {string}
|
|
2743
|
+
* @memberof Listing
|
|
2744
|
+
*/
|
|
2745
|
+
'trashCollectedOn'?: string | null;
|
|
2746
|
+
/**
|
|
2747
|
+
*
|
|
2748
|
+
* @type {string}
|
|
2749
|
+
* @memberof Listing
|
|
2750
|
+
*/
|
|
2751
|
+
'wifiName'?: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {string}
|
|
2755
|
+
* @memberof Listing
|
|
2756
|
+
*/
|
|
2757
|
+
'wifiPassword'?: string | null;
|
|
2758
|
+
/**
|
|
2759
|
+
*
|
|
2760
|
+
* @type {string}
|
|
2761
|
+
* @memberof Listing
|
|
2762
|
+
*/
|
|
2763
|
+
'accessInstructions'?: string | null;
|
|
2764
|
+
/**
|
|
2765
|
+
*
|
|
2766
|
+
* @type {number}
|
|
2767
|
+
* @memberof Listing
|
|
2768
|
+
*/
|
|
2769
|
+
'minNights'?: number | null;
|
|
2770
|
+
/**
|
|
2771
|
+
*
|
|
2772
|
+
* @type {number}
|
|
2773
|
+
* @memberof Listing
|
|
2774
|
+
*/
|
|
2775
|
+
'maxNights'?: number | null;
|
|
2661
2776
|
/**
|
|
2662
2777
|
*
|
|
2663
2778
|
* @type {string}
|
|
@@ -2678,7 +2793,7 @@ interface Listing {
|
|
|
2678
2793
|
'providerAccountId': string;
|
|
2679
2794
|
}
|
|
2680
2795
|
/**
|
|
2681
|
-
*
|
|
2796
|
+
*
|
|
2682
2797
|
* @export
|
|
2683
2798
|
* @interface ListingVersion
|
|
2684
2799
|
*/
|
|
@@ -2707,12 +2822,48 @@ interface ListingVersion {
|
|
|
2707
2822
|
* @memberof ListingVersion
|
|
2708
2823
|
*/
|
|
2709
2824
|
'description'?: string | null;
|
|
2825
|
+
/**
|
|
2826
|
+
*
|
|
2827
|
+
* @type {PropertyTypes}
|
|
2828
|
+
* @memberof ListingVersion
|
|
2829
|
+
*/
|
|
2830
|
+
'propertyType'?: PropertyTypes | null;
|
|
2710
2831
|
/**
|
|
2711
2832
|
*
|
|
2712
2833
|
* @type {number}
|
|
2713
2834
|
* @memberof ListingVersion
|
|
2714
2835
|
*/
|
|
2715
2836
|
'accommodates'?: number | null;
|
|
2837
|
+
/**
|
|
2838
|
+
*
|
|
2839
|
+
* @type {string}
|
|
2840
|
+
* @memberof ListingVersion
|
|
2841
|
+
*/
|
|
2842
|
+
'cancellationPolicy'?: string | null;
|
|
2843
|
+
/**
|
|
2844
|
+
*
|
|
2845
|
+
* @type {string}
|
|
2846
|
+
* @memberof ListingVersion
|
|
2847
|
+
*/
|
|
2848
|
+
'currencyCode'?: string | null;
|
|
2849
|
+
/**
|
|
2850
|
+
*
|
|
2851
|
+
* @type {number}
|
|
2852
|
+
* @memberof ListingVersion
|
|
2853
|
+
*/
|
|
2854
|
+
'cleaningFee'?: number | null;
|
|
2855
|
+
/**
|
|
2856
|
+
*
|
|
2857
|
+
* @type {number}
|
|
2858
|
+
* @memberof ListingVersion
|
|
2859
|
+
*/
|
|
2860
|
+
'extraPersonFee'?: number | null;
|
|
2861
|
+
/**
|
|
2862
|
+
*
|
|
2863
|
+
* @type {string}
|
|
2864
|
+
* @memberof ListingVersion
|
|
2865
|
+
*/
|
|
2866
|
+
'specialInstructions'?: string | null;
|
|
2716
2867
|
/**
|
|
2717
2868
|
*
|
|
2718
2869
|
* @type {Address}
|
|
@@ -2725,6 +2876,12 @@ interface ListingVersion {
|
|
|
2725
2876
|
* @memberof ListingVersion
|
|
2726
2877
|
*/
|
|
2727
2878
|
'amenities'?: Array<string> | null;
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
* @type {boolean}
|
|
2882
|
+
* @memberof ListingVersion
|
|
2883
|
+
*/
|
|
2884
|
+
'petsAllowed'?: boolean | null;
|
|
2728
2885
|
/**
|
|
2729
2886
|
*
|
|
2730
2887
|
* @type {number}
|
|
@@ -2755,12 +2912,82 @@ interface ListingVersion {
|
|
|
2755
2912
|
* @memberof ListingVersion
|
|
2756
2913
|
*/
|
|
2757
2914
|
'numHalfBathrooms'?: number | null;
|
|
2915
|
+
/**
|
|
2916
|
+
*
|
|
2917
|
+
* @type {{ [key: string]: { [key: string]: number; }; }}
|
|
2918
|
+
* @memberof ListingVersion
|
|
2919
|
+
*/
|
|
2920
|
+
'bedroomDetails'?: {
|
|
2921
|
+
[key: string]: {
|
|
2922
|
+
[key: string]: number;
|
|
2923
|
+
};
|
|
2924
|
+
};
|
|
2925
|
+
/**
|
|
2926
|
+
*
|
|
2927
|
+
* @type {string}
|
|
2928
|
+
* @memberof ListingVersion
|
|
2929
|
+
*/
|
|
2930
|
+
'defaultCheckInTime'?: string | null;
|
|
2931
|
+
/**
|
|
2932
|
+
*
|
|
2933
|
+
* @type {string}
|
|
2934
|
+
* @memberof ListingVersion
|
|
2935
|
+
*/
|
|
2936
|
+
'defaultCheckOutTime'?: string | null;
|
|
2758
2937
|
/**
|
|
2759
2938
|
*
|
|
2760
2939
|
* @type {string}
|
|
2761
2940
|
* @memberof ListingVersion
|
|
2762
2941
|
*/
|
|
2763
2942
|
'listingPicUrl'?: string | null;
|
|
2943
|
+
/**
|
|
2944
|
+
*
|
|
2945
|
+
* @type {string}
|
|
2946
|
+
* @memberof ListingVersion
|
|
2947
|
+
*/
|
|
2948
|
+
'houseManual'?: string | null;
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
* @type {string}
|
|
2952
|
+
* @memberof ListingVersion
|
|
2953
|
+
*/
|
|
2954
|
+
'parkingInstructions'?: string | null;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @type {string}
|
|
2958
|
+
* @memberof ListingVersion
|
|
2959
|
+
*/
|
|
2960
|
+
'trashCollectedOn'?: string | null;
|
|
2961
|
+
/**
|
|
2962
|
+
*
|
|
2963
|
+
* @type {string}
|
|
2964
|
+
* @memberof ListingVersion
|
|
2965
|
+
*/
|
|
2966
|
+
'wifiName'?: string | null;
|
|
2967
|
+
/**
|
|
2968
|
+
*
|
|
2969
|
+
* @type {string}
|
|
2970
|
+
* @memberof ListingVersion
|
|
2971
|
+
*/
|
|
2972
|
+
'wifiPassword'?: string | null;
|
|
2973
|
+
/**
|
|
2974
|
+
*
|
|
2975
|
+
* @type {string}
|
|
2976
|
+
* @memberof ListingVersion
|
|
2977
|
+
*/
|
|
2978
|
+
'accessInstructions'?: string | null;
|
|
2979
|
+
/**
|
|
2980
|
+
*
|
|
2981
|
+
* @type {number}
|
|
2982
|
+
* @memberof ListingVersion
|
|
2983
|
+
*/
|
|
2984
|
+
'minNights'?: number | null;
|
|
2985
|
+
/**
|
|
2986
|
+
*
|
|
2987
|
+
* @type {number}
|
|
2988
|
+
* @memberof ListingVersion
|
|
2989
|
+
*/
|
|
2990
|
+
'maxNights'?: number | null;
|
|
2764
2991
|
/**
|
|
2765
2992
|
*
|
|
2766
2993
|
* @type {string}
|
|
@@ -3637,25 +3864,6 @@ declare const PhoneLifecycle: {
|
|
|
3637
3864
|
readonly Released: "RELEASED";
|
|
3638
3865
|
};
|
|
3639
3866
|
type PhoneLifecycle = typeof PhoneLifecycle[keyof typeof PhoneLifecycle];
|
|
3640
|
-
/**
|
|
3641
|
-
*
|
|
3642
|
-
* @export
|
|
3643
|
-
* @interface PhoneProviderPhonesProviderAttribution
|
|
3644
|
-
*/
|
|
3645
|
-
interface PhoneProviderPhonesProviderAttribution {
|
|
3646
|
-
/**
|
|
3647
|
-
*
|
|
3648
|
-
* @type {string}
|
|
3649
|
-
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3650
|
-
*/
|
|
3651
|
-
'providerId': string;
|
|
3652
|
-
/**
|
|
3653
|
-
*
|
|
3654
|
-
* @type {Array<ReservationChannelTypes>}
|
|
3655
|
-
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3656
|
-
*/
|
|
3657
|
-
'channels': Array<ReservationChannelTypes>;
|
|
3658
|
-
}
|
|
3659
3867
|
/**
|
|
3660
3868
|
*
|
|
3661
3869
|
* @export
|
|
@@ -3977,10 +4185,10 @@ interface ProviderEmails {
|
|
|
3977
4185
|
'email': string;
|
|
3978
4186
|
/**
|
|
3979
4187
|
* A list of providers with IDs
|
|
3980
|
-
* @type {Array<
|
|
4188
|
+
* @type {Array<EmailProviderEmailsProviderAttribution>}
|
|
3981
4189
|
* @memberof ProviderEmails
|
|
3982
4190
|
*/
|
|
3983
|
-
'providers': Array<
|
|
4191
|
+
'providers': Array<EmailProviderEmailsProviderAttribution>;
|
|
3984
4192
|
}
|
|
3985
4193
|
/**
|
|
3986
4194
|
*
|
|
@@ -4027,10 +4235,10 @@ interface ProviderPhones {
|
|
|
4027
4235
|
'phone': string;
|
|
4028
4236
|
/**
|
|
4029
4237
|
* A list of providers with IDs
|
|
4030
|
-
* @type {Array<
|
|
4238
|
+
* @type {Array<ProviderAttribution>}
|
|
4031
4239
|
* @memberof ProviderPhones
|
|
4032
4240
|
*/
|
|
4033
|
-
'providers': Array<
|
|
4241
|
+
'providers': Array<ProviderAttribution>;
|
|
4034
4242
|
}
|
|
4035
4243
|
/**
|
|
4036
4244
|
*
|
|
@@ -4211,12 +4419,6 @@ type RentalProviderTypes = typeof RentalProviderTypes[keyof typeof RentalProvide
|
|
|
4211
4419
|
* @interface Reservation
|
|
4212
4420
|
*/
|
|
4213
4421
|
interface Reservation {
|
|
4214
|
-
/**
|
|
4215
|
-
*
|
|
4216
|
-
* @type {string}
|
|
4217
|
-
* @memberof Reservation
|
|
4218
|
-
*/
|
|
4219
|
-
'reservationId': string;
|
|
4220
4422
|
/**
|
|
4221
4423
|
*
|
|
4222
4424
|
* @type {ReservationStatus}
|
|
@@ -4259,6 +4461,12 @@ interface Reservation {
|
|
|
4259
4461
|
* @memberof Reservation
|
|
4260
4462
|
*/
|
|
4261
4463
|
'numberGuests'?: number | null;
|
|
4464
|
+
/**
|
|
4465
|
+
*
|
|
4466
|
+
* @type {string}
|
|
4467
|
+
* @memberof Reservation
|
|
4468
|
+
*/
|
|
4469
|
+
'reservationId': string;
|
|
4262
4470
|
/**
|
|
4263
4471
|
*
|
|
4264
4472
|
* @type {string}
|
|
@@ -4323,12 +4531,6 @@ type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus
|
|
|
4323
4531
|
* @interface ReservationVersion
|
|
4324
4532
|
*/
|
|
4325
4533
|
interface ReservationVersion {
|
|
4326
|
-
/**
|
|
4327
|
-
*
|
|
4328
|
-
* @type {string}
|
|
4329
|
-
* @memberof ReservationVersion
|
|
4330
|
-
*/
|
|
4331
|
-
'reservationId': string;
|
|
4332
4534
|
/**
|
|
4333
4535
|
*
|
|
4334
4536
|
* @type {ReservationStatus}
|
|
@@ -4371,6 +4573,12 @@ interface ReservationVersion {
|
|
|
4371
4573
|
* @memberof ReservationVersion
|
|
4372
4574
|
*/
|
|
4373
4575
|
'numberGuests'?: number | null;
|
|
4576
|
+
/**
|
|
4577
|
+
*
|
|
4578
|
+
* @type {string}
|
|
4579
|
+
* @memberof ReservationVersion
|
|
4580
|
+
*/
|
|
4581
|
+
'reservationId': string;
|
|
4374
4582
|
/**
|
|
4375
4583
|
*
|
|
4376
4584
|
* @type {string}
|
|
@@ -4422,41 +4630,57 @@ interface Role {
|
|
|
4422
4630
|
'roleId': string;
|
|
4423
4631
|
}
|
|
4424
4632
|
/**
|
|
4425
|
-
*
|
|
4633
|
+
*
|
|
4426
4634
|
* @export
|
|
4427
|
-
* @interface
|
|
4635
|
+
* @interface SMSConversationData
|
|
4428
4636
|
*/
|
|
4429
|
-
interface
|
|
4430
|
-
/**
|
|
4431
|
-
*
|
|
4432
|
-
* @type {string}
|
|
4433
|
-
* @memberof RoleCreate
|
|
4434
|
-
*/
|
|
4435
|
-
'description': string;
|
|
4637
|
+
interface SMSConversationData {
|
|
4436
4638
|
/**
|
|
4437
4639
|
*
|
|
4438
4640
|
* @type {string}
|
|
4439
|
-
* @memberof
|
|
4641
|
+
* @memberof SMSConversationData
|
|
4440
4642
|
*/
|
|
4441
|
-
'
|
|
4643
|
+
'conversationType': SMSConversationDataConversationTypeEnum;
|
|
4442
4644
|
}
|
|
4645
|
+
declare const SMSConversationDataConversationTypeEnum: {
|
|
4646
|
+
readonly Text: "TEXT";
|
|
4647
|
+
};
|
|
4648
|
+
type SMSConversationDataConversationTypeEnum = typeof SMSConversationDataConversationTypeEnum[keyof typeof SMSConversationDataConversationTypeEnum];
|
|
4443
4649
|
/**
|
|
4444
4650
|
*
|
|
4445
4651
|
* @export
|
|
4446
|
-
* @interface
|
|
4652
|
+
* @interface SMSConversationDataCreate
|
|
4447
4653
|
*/
|
|
4448
|
-
interface
|
|
4654
|
+
interface SMSConversationDataCreate {
|
|
4449
4655
|
/**
|
|
4450
4656
|
*
|
|
4451
4657
|
* @type {string}
|
|
4452
|
-
* @memberof
|
|
4658
|
+
* @memberof SMSConversationDataCreate
|
|
4453
4659
|
*/
|
|
4454
|
-
'conversationType':
|
|
4660
|
+
'conversationType': SMSConversationDataCreateConversationTypeEnum;
|
|
4661
|
+
/**
|
|
4662
|
+
*
|
|
4663
|
+
* @type {Array<ToPhone>}
|
|
4664
|
+
* @memberof SMSConversationDataCreate
|
|
4665
|
+
*/
|
|
4666
|
+
'toPhones': Array<ToPhone>;
|
|
4667
|
+
/**
|
|
4668
|
+
*
|
|
4669
|
+
* @type {string}
|
|
4670
|
+
* @memberof SMSConversationDataCreate
|
|
4671
|
+
*/
|
|
4672
|
+
'managedPhoneId'?: string | null;
|
|
4673
|
+
/**
|
|
4674
|
+
*
|
|
4675
|
+
* @type {string}
|
|
4676
|
+
* @memberof SMSConversationDataCreate
|
|
4677
|
+
*/
|
|
4678
|
+
'providerGroupId'?: string | null;
|
|
4455
4679
|
}
|
|
4456
|
-
declare const
|
|
4680
|
+
declare const SMSConversationDataCreateConversationTypeEnum: {
|
|
4457
4681
|
readonly Text: "TEXT";
|
|
4458
4682
|
};
|
|
4459
|
-
type
|
|
4683
|
+
type SMSConversationDataCreateConversationTypeEnum = typeof SMSConversationDataCreateConversationTypeEnum[keyof typeof SMSConversationDataCreateConversationTypeEnum];
|
|
4460
4684
|
/**
|
|
4461
4685
|
*
|
|
4462
4686
|
* @export
|
|
@@ -4619,8 +4843,7 @@ type Sendertypedata = {
|
|
|
4619
4843
|
* @enum {string}
|
|
4620
4844
|
*/
|
|
4621
4845
|
declare const SortBy: {
|
|
4622
|
-
readonly
|
|
4623
|
-
readonly CreatedAt: "created_at";
|
|
4846
|
+
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
4624
4847
|
};
|
|
4625
4848
|
type SortBy = typeof SortBy[keyof typeof SortBy];
|
|
4626
4849
|
/**
|
|
@@ -8269,11 +8492,11 @@ declare const RolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8269
8492
|
/**
|
|
8270
8493
|
*
|
|
8271
8494
|
* @summary Roles Create
|
|
8272
|
-
* @param {
|
|
8495
|
+
* @param {Create} create
|
|
8273
8496
|
* @param {*} [options] Override http request option.
|
|
8274
8497
|
* @throws {RequiredError}
|
|
8275
8498
|
*/
|
|
8276
|
-
rolesCreate: (
|
|
8499
|
+
rolesCreate: (create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8277
8500
|
/**
|
|
8278
8501
|
*
|
|
8279
8502
|
* @summary Roles Get
|
|
@@ -8324,11 +8547,11 @@ declare const RolesApiFp: (configuration?: Configuration) => {
|
|
|
8324
8547
|
/**
|
|
8325
8548
|
*
|
|
8326
8549
|
* @summary Roles Create
|
|
8327
|
-
* @param {
|
|
8550
|
+
* @param {Create} create
|
|
8328
8551
|
* @param {*} [options] Override http request option.
|
|
8329
8552
|
* @throws {RequiredError}
|
|
8330
8553
|
*/
|
|
8331
|
-
rolesCreate(
|
|
8554
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
8332
8555
|
/**
|
|
8333
8556
|
*
|
|
8334
8557
|
* @summary Roles Get
|
|
@@ -8379,11 +8602,11 @@ declare const RolesApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
8379
8602
|
/**
|
|
8380
8603
|
*
|
|
8381
8604
|
* @summary Roles Create
|
|
8382
|
-
* @param {
|
|
8605
|
+
* @param {Create} create
|
|
8383
8606
|
* @param {*} [options] Override http request option.
|
|
8384
8607
|
* @throws {RequiredError}
|
|
8385
8608
|
*/
|
|
8386
|
-
rolesCreate(
|
|
8609
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
8387
8610
|
/**
|
|
8388
8611
|
*
|
|
8389
8612
|
* @summary Roles Get
|
|
@@ -8437,12 +8660,12 @@ declare class RolesApi extends BaseAPI {
|
|
|
8437
8660
|
/**
|
|
8438
8661
|
*
|
|
8439
8662
|
* @summary Roles Create
|
|
8440
|
-
* @param {
|
|
8663
|
+
* @param {Create} create
|
|
8441
8664
|
* @param {*} [options] Override http request option.
|
|
8442
8665
|
* @throws {RequiredError}
|
|
8443
8666
|
* @memberof RolesApi
|
|
8444
8667
|
*/
|
|
8445
|
-
rolesCreate(
|
|
8668
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
|
|
8446
8669
|
/**
|
|
8447
8670
|
*
|
|
8448
8671
|
* @summary Roles Get
|
|
@@ -9166,11 +9389,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9166
9389
|
/**
|
|
9167
9390
|
*
|
|
9168
9391
|
* @summary Roles Create
|
|
9169
|
-
* @param {
|
|
9392
|
+
* @param {Create} create
|
|
9170
9393
|
* @param {*} [options] Override http request option.
|
|
9171
9394
|
* @throws {RequiredError}
|
|
9172
9395
|
*/
|
|
9173
|
-
rolesCreate: (
|
|
9396
|
+
rolesCreate: (create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9174
9397
|
/**
|
|
9175
9398
|
*
|
|
9176
9399
|
* @summary Roles Get
|
|
@@ -9847,11 +10070,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9847
10070
|
/**
|
|
9848
10071
|
*
|
|
9849
10072
|
* @summary Roles Create
|
|
9850
|
-
* @param {
|
|
10073
|
+
* @param {Create} create
|
|
9851
10074
|
* @param {*} [options] Override http request option.
|
|
9852
10075
|
* @throws {RequiredError}
|
|
9853
10076
|
*/
|
|
9854
|
-
rolesCreate(
|
|
10077
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Role>>;
|
|
9855
10078
|
/**
|
|
9856
10079
|
*
|
|
9857
10080
|
* @summary Roles Get
|
|
@@ -10528,11 +10751,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10528
10751
|
/**
|
|
10529
10752
|
*
|
|
10530
10753
|
* @summary Roles Create
|
|
10531
|
-
* @param {
|
|
10754
|
+
* @param {Create} create
|
|
10532
10755
|
* @param {*} [options] Override http request option.
|
|
10533
10756
|
* @throws {RequiredError}
|
|
10534
10757
|
*/
|
|
10535
|
-
rolesCreate(
|
|
10758
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Role>;
|
|
10536
10759
|
/**
|
|
10537
10760
|
*
|
|
10538
10761
|
* @summary Roles Get
|
|
@@ -11278,12 +11501,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
11278
11501
|
/**
|
|
11279
11502
|
*
|
|
11280
11503
|
* @summary Roles Create
|
|
11281
|
-
* @param {
|
|
11504
|
+
* @param {Create} create
|
|
11282
11505
|
* @param {*} [options] Override http request option.
|
|
11283
11506
|
* @throws {RequiredError}
|
|
11284
11507
|
* @memberof UnboundApi
|
|
11285
11508
|
*/
|
|
11286
|
-
rolesCreate(
|
|
11509
|
+
rolesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Role, any>>;
|
|
11287
11510
|
/**
|
|
11288
11511
|
*
|
|
11289
11512
|
* @summary Roles Get
|
|
@@ -11441,4 +11664,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
11441
11664
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11442
11665
|
}
|
|
11443
11666
|
|
|
11444
|
-
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing,
|
|
11667
|
+
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type ExternalStaff, ExternalStaffStaffTypeEnum, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaff, InternalStaffStaffTypeEnum, type LeadData, type ListResponseAccount, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, MessageDirection, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, type ProviderAddresses, type ProviderAttribution, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderEmails, type ProviderInfo, type ProviderPhones, type ProviderStaff, ProviderStaffStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, ReservationChannelTypes, ReservationStatus, type ReservationVersion, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortBy, SortOrder, type Staff, StaffParticipantTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, type URLContent, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type Update, type UpdateContactListing, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestion };
|