@ember-home/unbound-ts-client 1.0.92 → 1.0.93
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 +62 -62
- package/dist/index.d.ts +62 -62
- package/dist/index.js +30 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -30
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ import { RawAxiosRequestConfig, AxiosInstance, AxiosPromise } from 'axios';
|
|
|
5
5
|
* FastAPI
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.
|
|
8
|
+
* The version of the OpenAPI document: 1.0.93
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -97,7 +97,7 @@ declare class Configuration {
|
|
|
97
97
|
* FastAPI
|
|
98
98
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
99
99
|
*
|
|
100
|
-
* The version of the OpenAPI document: 1.0.
|
|
100
|
+
* The version of the OpenAPI document: 1.0.93
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1823,6 +1823,16 @@ interface ContentItemVersion {
|
|
|
1823
1823
|
*/
|
|
1824
1824
|
'version': number;
|
|
1825
1825
|
}
|
|
1826
|
+
/**
|
|
1827
|
+
*
|
|
1828
|
+
* @export
|
|
1829
|
+
* @enum {string}
|
|
1830
|
+
*/
|
|
1831
|
+
declare const ContentItemVersionSortBy: {
|
|
1832
|
+
readonly Version: "version";
|
|
1833
|
+
readonly CreatedAt: "created_at";
|
|
1834
|
+
};
|
|
1835
|
+
type ContentItemVersionSortBy = typeof ContentItemVersionSortBy[keyof typeof ContentItemVersionSortBy];
|
|
1826
1836
|
/**
|
|
1827
1837
|
*
|
|
1828
1838
|
* @export
|
|
@@ -3496,15 +3506,6 @@ interface ListingBaseChannelInfoChannelDetails {
|
|
|
3496
3506
|
*/
|
|
3497
3507
|
'channelPropertyDescription'?: string;
|
|
3498
3508
|
}
|
|
3499
|
-
/**
|
|
3500
|
-
*
|
|
3501
|
-
* @export
|
|
3502
|
-
* @enum {string}
|
|
3503
|
-
*/
|
|
3504
|
-
declare const ListingSortBy: {
|
|
3505
|
-
readonly Title: "title";
|
|
3506
|
-
};
|
|
3507
|
-
type ListingSortBy = typeof ListingSortBy[keyof typeof ListingSortBy];
|
|
3508
3509
|
/**
|
|
3509
3510
|
*
|
|
3510
3511
|
* @export
|
|
@@ -6618,8 +6619,7 @@ type SortByAuthGateway = typeof SortByAuthGateway[keyof typeof SortByAuthGateway
|
|
|
6618
6619
|
* @enum {string}
|
|
6619
6620
|
*/
|
|
6620
6621
|
declare const SortByUbFastApi: {
|
|
6621
|
-
readonly
|
|
6622
|
-
readonly CreatedAt: "created_at";
|
|
6622
|
+
readonly Title: "title";
|
|
6623
6623
|
};
|
|
6624
6624
|
type SortByUbFastApi = typeof SortByUbFastApi[keyof typeof SortByUbFastApi];
|
|
6625
6625
|
/**
|
|
@@ -8789,12 +8789,12 @@ declare const ContentItemsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8789
8789
|
* @param {string} [cursor] Cursor for keyset paging
|
|
8790
8790
|
* @param {number} [limit]
|
|
8791
8791
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
8792
|
-
* @param {
|
|
8792
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
8793
8793
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
8794
8794
|
* @param {*} [options] Override http request option.
|
|
8795
8795
|
* @throws {RequiredError}
|
|
8796
8796
|
*/
|
|
8797
|
-
contentItemVersionsList: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
8797
|
+
contentItemVersionsList: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8798
8798
|
/**
|
|
8799
8799
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
8800
8800
|
* @summary Content Item Batch Resources Update
|
|
@@ -8884,12 +8884,12 @@ declare const ContentItemsApiFp: (configuration?: Configuration) => {
|
|
|
8884
8884
|
* @param {string} [cursor] Cursor for keyset paging
|
|
8885
8885
|
* @param {number} [limit]
|
|
8886
8886
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
8887
|
-
* @param {
|
|
8887
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
8888
8888
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
8889
8889
|
* @param {*} [options] Override http request option.
|
|
8890
8890
|
* @throws {RequiredError}
|
|
8891
8891
|
*/
|
|
8892
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
8892
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContentItemVersion>>;
|
|
8893
8893
|
/**
|
|
8894
8894
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
8895
8895
|
* @summary Content Item Batch Resources Update
|
|
@@ -8979,12 +8979,12 @@ declare const ContentItemsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
8979
8979
|
* @param {string} [cursor] Cursor for keyset paging
|
|
8980
8980
|
* @param {number} [limit]
|
|
8981
8981
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
8982
|
-
* @param {
|
|
8982
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
8983
8983
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
8984
8984
|
* @param {*} [options] Override http request option.
|
|
8985
8985
|
* @throws {RequiredError}
|
|
8986
8986
|
*/
|
|
8987
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
8987
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContentItemVersion>;
|
|
8988
8988
|
/**
|
|
8989
8989
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
8990
8990
|
* @summary Content Item Batch Resources Update
|
|
@@ -9078,13 +9078,13 @@ declare class ContentItemsApi extends BaseAPI {
|
|
|
9078
9078
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9079
9079
|
* @param {number} [limit]
|
|
9080
9080
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9081
|
-
* @param {
|
|
9081
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
9082
9082
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9083
9083
|
* @param {*} [options] Override http request option.
|
|
9084
9084
|
* @throws {RequiredError}
|
|
9085
9085
|
* @memberof ContentItemsApi
|
|
9086
9086
|
*/
|
|
9087
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9087
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContentItemVersion, any>>;
|
|
9088
9088
|
/**
|
|
9089
9089
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
9090
9090
|
* @summary Content Item Batch Resources Update
|
|
@@ -9654,12 +9654,12 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
9654
9654
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9655
9655
|
* @param {number} [limit]
|
|
9656
9656
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9657
|
-
* @param {
|
|
9657
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
9658
9658
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9659
9659
|
* @param {*} [options] Override http request option.
|
|
9660
9660
|
* @throws {RequiredError}
|
|
9661
9661
|
*/
|
|
9662
|
-
listingsList: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9662
|
+
listingsList: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9663
9663
|
};
|
|
9664
9664
|
/**
|
|
9665
9665
|
* ListingsApi - functional programming interface
|
|
@@ -9705,12 +9705,12 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
9705
9705
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9706
9706
|
* @param {number} [limit]
|
|
9707
9707
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9708
|
-
* @param {
|
|
9708
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
9709
9709
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9710
9710
|
* @param {*} [options] Override http request option.
|
|
9711
9711
|
* @throws {RequiredError}
|
|
9712
9712
|
*/
|
|
9713
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9713
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListing>>;
|
|
9714
9714
|
};
|
|
9715
9715
|
/**
|
|
9716
9716
|
* ListingsApi - factory interface
|
|
@@ -9756,12 +9756,12 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
9756
9756
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9757
9757
|
* @param {number} [limit]
|
|
9758
9758
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9759
|
-
* @param {
|
|
9759
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
9760
9760
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9761
9761
|
* @param {*} [options] Override http request option.
|
|
9762
9762
|
* @throws {RequiredError}
|
|
9763
9763
|
*/
|
|
9764
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9764
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListing>;
|
|
9765
9765
|
};
|
|
9766
9766
|
/**
|
|
9767
9767
|
* ListingsApi - object-oriented interface
|
|
@@ -9812,13 +9812,13 @@ declare class ListingsApi extends BaseAPI {
|
|
|
9812
9812
|
* @param {string} [cursor] Cursor for keyset paging
|
|
9813
9813
|
* @param {number} [limit]
|
|
9814
9814
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
9815
|
-
* @param {
|
|
9815
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
9816
9816
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
9817
9817
|
* @param {*} [options] Override http request option.
|
|
9818
9818
|
* @throws {RequiredError}
|
|
9819
9819
|
* @memberof ListingsApi
|
|
9820
9820
|
*/
|
|
9821
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
9821
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListing, any>>;
|
|
9822
9822
|
}
|
|
9823
9823
|
/**
|
|
9824
9824
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
@@ -11385,12 +11385,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11385
11385
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11386
11386
|
* @param {number} [limit]
|
|
11387
11387
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11388
|
-
* @param {
|
|
11388
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
11389
11389
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11390
11390
|
* @param {*} [options] Override http request option.
|
|
11391
11391
|
* @throws {RequiredError}
|
|
11392
11392
|
*/
|
|
11393
|
-
contentItemVersionsList: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11393
|
+
contentItemVersionsList: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11394
11394
|
/**
|
|
11395
11395
|
*
|
|
11396
11396
|
* @summary Content Item Versions List
|
|
@@ -11398,12 +11398,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11398
11398
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11399
11399
|
* @param {number} [limit]
|
|
11400
11400
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11401
|
-
* @param {
|
|
11401
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
11402
11402
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11403
11403
|
* @param {*} [options] Override http request option.
|
|
11404
11404
|
* @throws {RequiredError}
|
|
11405
11405
|
*/
|
|
11406
|
-
contentItemVersionsList_24: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11406
|
+
contentItemVersionsList_24: (contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11407
11407
|
/**
|
|
11408
11408
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
11409
11409
|
* @summary Content Item Batch Resources Update
|
|
@@ -11851,12 +11851,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11851
11851
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11852
11852
|
* @param {number} [limit]
|
|
11853
11853
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11854
|
-
* @param {
|
|
11854
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
11855
11855
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11856
11856
|
* @param {*} [options] Override http request option.
|
|
11857
11857
|
* @throws {RequiredError}
|
|
11858
11858
|
*/
|
|
11859
|
-
listingsList: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11859
|
+
listingsList: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11860
11860
|
/**
|
|
11861
11861
|
*
|
|
11862
11862
|
* @summary Listings List
|
|
@@ -11866,12 +11866,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
11866
11866
|
* @param {string} [cursor] Cursor for keyset paging
|
|
11867
11867
|
* @param {number} [limit]
|
|
11868
11868
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
11869
|
-
* @param {
|
|
11869
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
11870
11870
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
11871
11871
|
* @param {*} [options] Override http request option.
|
|
11872
11872
|
* @throws {RequiredError}
|
|
11873
11873
|
*/
|
|
11874
|
-
listingsList_48: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
11874
|
+
listingsList_48: (searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11875
11875
|
/**
|
|
11876
11876
|
*
|
|
11877
11877
|
* @summary Managed Phone Numbers List
|
|
@@ -12727,12 +12727,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12727
12727
|
* @param {string} [cursor] Cursor for keyset paging
|
|
12728
12728
|
* @param {number} [limit]
|
|
12729
12729
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12730
|
-
* @param {
|
|
12730
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
12731
12731
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12732
12732
|
* @param {*} [options] Override http request option.
|
|
12733
12733
|
* @throws {RequiredError}
|
|
12734
12734
|
*/
|
|
12735
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
12735
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContentItemVersion>>;
|
|
12736
12736
|
/**
|
|
12737
12737
|
*
|
|
12738
12738
|
* @summary Content Item Versions List
|
|
@@ -12740,12 +12740,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
12740
12740
|
* @param {string} [cursor] Cursor for keyset paging
|
|
12741
12741
|
* @param {number} [limit]
|
|
12742
12742
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
12743
|
-
* @param {
|
|
12743
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
12744
12744
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
12745
12745
|
* @param {*} [options] Override http request option.
|
|
12746
12746
|
* @throws {RequiredError}
|
|
12747
12747
|
*/
|
|
12748
|
-
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
12748
|
+
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContentItemVersion>>;
|
|
12749
12749
|
/**
|
|
12750
12750
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
12751
12751
|
* @summary Content Item Batch Resources Update
|
|
@@ -13193,12 +13193,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13193
13193
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13194
13194
|
* @param {number} [limit]
|
|
13195
13195
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13196
|
-
* @param {
|
|
13196
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
13197
13197
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13198
13198
|
* @param {*} [options] Override http request option.
|
|
13199
13199
|
* @throws {RequiredError}
|
|
13200
13200
|
*/
|
|
13201
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13201
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListing>>;
|
|
13202
13202
|
/**
|
|
13203
13203
|
*
|
|
13204
13204
|
* @summary Listings List
|
|
@@ -13208,12 +13208,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13208
13208
|
* @param {string} [cursor] Cursor for keyset paging
|
|
13209
13209
|
* @param {number} [limit]
|
|
13210
13210
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
13211
|
-
* @param {
|
|
13211
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
13212
13212
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
13213
13213
|
* @param {*} [options] Override http request option.
|
|
13214
13214
|
* @throws {RequiredError}
|
|
13215
13215
|
*/
|
|
13216
|
-
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
13216
|
+
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListing>>;
|
|
13217
13217
|
/**
|
|
13218
13218
|
*
|
|
13219
13219
|
* @summary Managed Phone Numbers List
|
|
@@ -14069,12 +14069,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14069
14069
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14070
14070
|
* @param {number} [limit]
|
|
14071
14071
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14072
|
-
* @param {
|
|
14072
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
14073
14073
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14074
14074
|
* @param {*} [options] Override http request option.
|
|
14075
14075
|
* @throws {RequiredError}
|
|
14076
14076
|
*/
|
|
14077
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14077
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContentItemVersion>;
|
|
14078
14078
|
/**
|
|
14079
14079
|
*
|
|
14080
14080
|
* @summary Content Item Versions List
|
|
@@ -14082,12 +14082,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14082
14082
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14083
14083
|
* @param {number} [limit]
|
|
14084
14084
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14085
|
-
* @param {
|
|
14085
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
14086
14086
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14087
14087
|
* @param {*} [options] Override http request option.
|
|
14088
14088
|
* @throws {RequiredError}
|
|
14089
14089
|
*/
|
|
14090
|
-
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14090
|
+
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContentItemVersion>;
|
|
14091
14091
|
/**
|
|
14092
14092
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
14093
14093
|
* @summary Content Item Batch Resources Update
|
|
@@ -14535,12 +14535,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14535
14535
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14536
14536
|
* @param {number} [limit]
|
|
14537
14537
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14538
|
-
* @param {
|
|
14538
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
14539
14539
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14540
14540
|
* @param {*} [options] Override http request option.
|
|
14541
14541
|
* @throws {RequiredError}
|
|
14542
14542
|
*/
|
|
14543
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14543
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListing>;
|
|
14544
14544
|
/**
|
|
14545
14545
|
*
|
|
14546
14546
|
* @summary Listings List
|
|
@@ -14550,12 +14550,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14550
14550
|
* @param {string} [cursor] Cursor for keyset paging
|
|
14551
14551
|
* @param {number} [limit]
|
|
14552
14552
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
14553
|
-
* @param {
|
|
14553
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
14554
14554
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
14555
14555
|
* @param {*} [options] Override http request option.
|
|
14556
14556
|
* @throws {RequiredError}
|
|
14557
14557
|
*/
|
|
14558
|
-
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
14558
|
+
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListing>;
|
|
14559
14559
|
/**
|
|
14560
14560
|
*
|
|
14561
14561
|
* @summary Managed Phone Numbers List
|
|
@@ -15461,13 +15461,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15461
15461
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15462
15462
|
* @param {number} [limit]
|
|
15463
15463
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15464
|
-
* @param {
|
|
15464
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
15465
15465
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15466
15466
|
* @param {*} [options] Override http request option.
|
|
15467
15467
|
* @throws {RequiredError}
|
|
15468
15468
|
* @memberof UnboundApi
|
|
15469
15469
|
*/
|
|
15470
|
-
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15470
|
+
contentItemVersionsList(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContentItemVersion, any>>;
|
|
15471
15471
|
/**
|
|
15472
15472
|
*
|
|
15473
15473
|
* @summary Content Item Versions List
|
|
@@ -15475,13 +15475,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15475
15475
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15476
15476
|
* @param {number} [limit]
|
|
15477
15477
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15478
|
-
* @param {
|
|
15478
|
+
* @param {ContentItemVersionSortBy} [sortBy] Sort key
|
|
15479
15479
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15480
15480
|
* @param {*} [options] Override http request option.
|
|
15481
15481
|
* @throws {RequiredError}
|
|
15482
15482
|
* @memberof UnboundApi
|
|
15483
15483
|
*/
|
|
15484
|
-
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15484
|
+
contentItemVersionsList_24(contentItemId: string, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: ContentItemVersionSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContentItemVersion, any>>;
|
|
15485
15485
|
/**
|
|
15486
15486
|
* Update all related resource associations for a content item. Replaces existing associations with new ones (full replacement). - Empty array removes all associations - Validates all resources exist before updating - Atomic operation (all or nothing)
|
|
15487
15487
|
* @summary Content Item Batch Resources Update
|
|
@@ -15978,13 +15978,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15978
15978
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15979
15979
|
* @param {number} [limit]
|
|
15980
15980
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15981
|
-
* @param {
|
|
15981
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
15982
15982
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15983
15983
|
* @param {*} [options] Override http request option.
|
|
15984
15984
|
* @throws {RequiredError}
|
|
15985
15985
|
* @memberof UnboundApi
|
|
15986
15986
|
*/
|
|
15987
|
-
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
15987
|
+
listingsList(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListing, any>>;
|
|
15988
15988
|
/**
|
|
15989
15989
|
*
|
|
15990
15990
|
* @summary Listings List
|
|
@@ -15994,13 +15994,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
15994
15994
|
* @param {string} [cursor] Cursor for keyset paging
|
|
15995
15995
|
* @param {number} [limit]
|
|
15996
15996
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
15997
|
-
* @param {
|
|
15997
|
+
* @param {SortByUbFastApi} [sortBy] Sort key
|
|
15998
15998
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
15999
15999
|
* @param {*} [options] Override http request option.
|
|
16000
16000
|
* @throws {RequiredError}
|
|
16001
16001
|
* @memberof UnboundApi
|
|
16002
16002
|
*/
|
|
16003
|
-
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
16003
|
+
listingsList_48(searchString?: string, contactId?: string, hasCommunity?: boolean, cursor?: string, limit?: number, pageDir?: PaginationDirection, sortBy?: SortByUbFastApi, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListing, any>>;
|
|
16004
16004
|
/**
|
|
16005
16005
|
*
|
|
16006
16006
|
* @summary Managed Phone Numbers List
|
|
@@ -16668,4 +16668,4 @@ declare class UsersApi extends BaseAPI {
|
|
|
16668
16668
|
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16669
16669
|
}
|
|
16670
16670
|
|
|
16671
|
-
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, 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, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationAIQuery, type ConversationAIQueryMessageSuggestion, type ConversationAIQueryResponse, type ConversationCreate, ConversationSortBy, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailNotification, type EmailNotificationCreate, EmailNotificationCreateNotificationTypeEnum, EmailNotificationNotificationTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GeneralAIQuery, type GeneralAIQueryResponse, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails,
|
|
16671
|
+
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, 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, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationAIQuery, type ConversationAIQueryMessageSuggestion, type ConversationAIQueryResponse, type ConversationCreate, ConversationSortBy, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailNotification, type EmailNotificationCreate, EmailNotificationCreateNotificationTypeEnum, EmailNotificationNotificationTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GeneralAIQuery, type GeneralAIQueryResponse, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, type ListingVersion, ListingVersionSortBy, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, MlApi, MlApiAxiosParamCreator, MlApiFactory, MlApiFp, type MobileDevicePushNotification, type Notification, type NotificationCreate, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type Notificationtypedata1, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, 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, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|