@ember-home/unbound-ts-client 0.0.29 → 0.0.30
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 +53 -53
- package/dist/index.d.ts +53 -53
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -26
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -526,17 +526,6 @@ declare const ContactListingType: {
|
|
|
526
526
|
readonly Owner: "OWNER";
|
|
527
527
|
};
|
|
528
528
|
type ContactListingType = typeof ContactListingType[keyof typeof ContactListingType];
|
|
529
|
-
/**
|
|
530
|
-
*
|
|
531
|
-
* @export
|
|
532
|
-
* @enum {string}
|
|
533
|
-
*/
|
|
534
|
-
declare const ContactSortBy: {
|
|
535
|
-
readonly LastFirstCompany: "last_first_company";
|
|
536
|
-
readonly FirstLastCompany: "first_last_company";
|
|
537
|
-
readonly CompanyLastFirst: "company_last_first";
|
|
538
|
-
};
|
|
539
|
-
type ContactSortBy = typeof ContactSortBy[keyof typeof ContactSortBy];
|
|
540
529
|
/**
|
|
541
530
|
*
|
|
542
531
|
* @export
|
|
@@ -2002,15 +1991,6 @@ interface ListResponseProvidersList {
|
|
|
2002
1991
|
*/
|
|
2003
1992
|
'data': Array<object>;
|
|
2004
1993
|
}
|
|
2005
|
-
/**
|
|
2006
|
-
*
|
|
2007
|
-
* @export
|
|
2008
|
-
* @enum {string}
|
|
2009
|
-
*/
|
|
2010
|
-
declare const ListingSortBy: {
|
|
2011
|
-
readonly Title: "title";
|
|
2012
|
-
};
|
|
2013
|
-
type ListingSortBy = typeof ListingSortBy[keyof typeof ListingSortBy];
|
|
2014
1994
|
/**
|
|
2015
1995
|
*
|
|
2016
1996
|
* @export
|
|
@@ -3339,6 +3319,17 @@ declare const SortOrder: {
|
|
|
3339
3319
|
readonly Desc: "desc";
|
|
3340
3320
|
};
|
|
3341
3321
|
type SortOrder = typeof SortOrder[keyof typeof SortOrder];
|
|
3322
|
+
/**
|
|
3323
|
+
*
|
|
3324
|
+
* @export
|
|
3325
|
+
* @enum {string}
|
|
3326
|
+
*/
|
|
3327
|
+
declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
3328
|
+
readonly LastFirstCompany: "last_first_company";
|
|
3329
|
+
readonly FirstLastCompany: "first_last_company";
|
|
3330
|
+
readonly CompanyLastFirst: "company_last_first";
|
|
3331
|
+
};
|
|
3332
|
+
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
3342
3333
|
/**
|
|
3343
3334
|
*
|
|
3344
3335
|
* @export
|
|
@@ -3597,6 +3588,15 @@ declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2Conversation
|
|
|
3597
3588
|
readonly Email: "EMAIL";
|
|
3598
3589
|
};
|
|
3599
3590
|
type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum];
|
|
3591
|
+
/**
|
|
3592
|
+
*
|
|
3593
|
+
* @export
|
|
3594
|
+
* @enum {string}
|
|
3595
|
+
*/
|
|
3596
|
+
declare const SrcResourceModelsListingsModelListingBaseSortBy: {
|
|
3597
|
+
readonly Title: "title";
|
|
3598
|
+
};
|
|
3599
|
+
type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
|
|
3600
3600
|
/**
|
|
3601
3601
|
*
|
|
3602
3602
|
* @export
|
|
@@ -3848,12 +3848,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3848
3848
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3849
3849
|
* @param {number} [limit]
|
|
3850
3850
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3851
|
-
* @param {
|
|
3851
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
3852
3852
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3853
3853
|
* @param {*} [options] Override http request option.
|
|
3854
3854
|
* @throws {RequiredError}
|
|
3855
3855
|
*/
|
|
3856
|
-
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
3856
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3857
3857
|
/**
|
|
3858
3858
|
* Removes an association between a contact and a listing.
|
|
3859
3859
|
* @summary Delete Contact Listing
|
|
@@ -4008,12 +4008,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
4008
4008
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4009
4009
|
* @param {number} [limit]
|
|
4010
4010
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4011
|
-
* @param {
|
|
4011
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4012
4012
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4013
4013
|
* @param {*} [options] Override http request option.
|
|
4014
4014
|
* @throws {RequiredError}
|
|
4015
4015
|
*/
|
|
4016
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4016
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4017
4017
|
/**
|
|
4018
4018
|
* Removes an association between a contact and a listing.
|
|
4019
4019
|
* @summary Delete Contact Listing
|
|
@@ -4168,12 +4168,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
4168
4168
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4169
4169
|
* @param {number} [limit]
|
|
4170
4170
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4171
|
-
* @param {
|
|
4171
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4172
4172
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4173
4173
|
* @param {*} [options] Override http request option.
|
|
4174
4174
|
* @throws {RequiredError}
|
|
4175
4175
|
*/
|
|
4176
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4176
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4177
4177
|
/**
|
|
4178
4178
|
* Removes an association between a contact and a listing.
|
|
4179
4179
|
* @summary Delete Contact Listing
|
|
@@ -4337,13 +4337,13 @@ declare class ContactsApi extends BaseAPI {
|
|
|
4337
4337
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4338
4338
|
* @param {number} [limit]
|
|
4339
4339
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4340
|
-
* @param {
|
|
4340
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4341
4341
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4342
4342
|
* @param {*} [options] Override http request option.
|
|
4343
4343
|
* @throws {RequiredError}
|
|
4344
4344
|
* @memberof ContactsApi
|
|
4345
4345
|
*/
|
|
4346
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4346
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4347
4347
|
/**
|
|
4348
4348
|
* Removes an association between a contact and a listing.
|
|
4349
4349
|
* @summary Delete Contact Listing
|
|
@@ -4891,12 +4891,12 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4891
4891
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4892
4892
|
* @param {number} [limit]
|
|
4893
4893
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4894
|
-
* @param {
|
|
4894
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4895
4895
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4896
4896
|
* @param {*} [options] Override http request option.
|
|
4897
4897
|
* @throws {RequiredError}
|
|
4898
4898
|
*/
|
|
4899
|
-
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4899
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4900
4900
|
};
|
|
4901
4901
|
/**
|
|
4902
4902
|
* ListingsApi - functional programming interface
|
|
@@ -4919,12 +4919,12 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
4919
4919
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4920
4920
|
* @param {number} [limit]
|
|
4921
4921
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4922
|
-
* @param {
|
|
4922
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4923
4923
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4924
4924
|
* @param {*} [options] Override http request option.
|
|
4925
4925
|
* @throws {RequiredError}
|
|
4926
4926
|
*/
|
|
4927
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4927
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListings>>;
|
|
4928
4928
|
};
|
|
4929
4929
|
/**
|
|
4930
4930
|
* ListingsApi - factory interface
|
|
@@ -4947,12 +4947,12 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
4947
4947
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4948
4948
|
* @param {number} [limit]
|
|
4949
4949
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4950
|
-
* @param {
|
|
4950
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4951
4951
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4952
4952
|
* @param {*} [options] Override http request option.
|
|
4953
4953
|
* @throws {RequiredError}
|
|
4954
4954
|
*/
|
|
4955
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4955
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListings>;
|
|
4956
4956
|
};
|
|
4957
4957
|
/**
|
|
4958
4958
|
* ListingsApi - object-oriented interface
|
|
@@ -4978,13 +4978,13 @@ declare class ListingsApi extends BaseAPI {
|
|
|
4978
4978
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4979
4979
|
* @param {number} [limit]
|
|
4980
4980
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4981
|
-
* @param {
|
|
4981
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4982
4982
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4983
4983
|
* @param {*} [options] Override http request option.
|
|
4984
4984
|
* @throws {RequiredError}
|
|
4985
4985
|
* @memberof ListingsApi
|
|
4986
4986
|
*/
|
|
4987
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
4987
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListings, any>>;
|
|
4988
4988
|
}
|
|
4989
4989
|
/**
|
|
4990
4990
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
@@ -5394,12 +5394,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5394
5394
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5395
5395
|
* @param {number} [limit]
|
|
5396
5396
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5397
|
-
* @param {
|
|
5397
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
5398
5398
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5399
5399
|
* @param {*} [options] Override http request option.
|
|
5400
5400
|
* @throws {RequiredError}
|
|
5401
5401
|
*/
|
|
5402
|
-
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
5402
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5403
5403
|
/**
|
|
5404
5404
|
* Removes an association between a contact and a listing.
|
|
5405
5405
|
* @summary Delete Contact Listing
|
|
@@ -5518,12 +5518,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5518
5518
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5519
5519
|
* @param {number} [limit]
|
|
5520
5520
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5521
|
-
* @param {
|
|
5521
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
5522
5522
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5523
5523
|
* @param {*} [options] Override http request option.
|
|
5524
5524
|
* @throws {RequiredError}
|
|
5525
5525
|
*/
|
|
5526
|
-
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
5526
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5527
5527
|
/**
|
|
5528
5528
|
*
|
|
5529
5529
|
* @summary Managed_phone_numbers List
|
|
@@ -5731,12 +5731,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5731
5731
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5732
5732
|
* @param {number} [limit]
|
|
5733
5733
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5734
|
-
* @param {
|
|
5734
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
5735
5735
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5736
5736
|
* @param {*} [options] Override http request option.
|
|
5737
5737
|
* @throws {RequiredError}
|
|
5738
5738
|
*/
|
|
5739
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
5739
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
5740
5740
|
/**
|
|
5741
5741
|
* Removes an association between a contact and a listing.
|
|
5742
5742
|
* @summary Delete Contact Listing
|
|
@@ -5855,12 +5855,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5855
5855
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5856
5856
|
* @param {number} [limit]
|
|
5857
5857
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5858
|
-
* @param {
|
|
5858
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
5859
5859
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5860
5860
|
* @param {*} [options] Override http request option.
|
|
5861
5861
|
* @throws {RequiredError}
|
|
5862
5862
|
*/
|
|
5863
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
5863
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListings>>;
|
|
5864
5864
|
/**
|
|
5865
5865
|
*
|
|
5866
5866
|
* @summary Managed_phone_numbers List
|
|
@@ -6068,12 +6068,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6068
6068
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6069
6069
|
* @param {number} [limit]
|
|
6070
6070
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6071
|
-
* @param {
|
|
6071
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
6072
6072
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6073
6073
|
* @param {*} [options] Override http request option.
|
|
6074
6074
|
* @throws {RequiredError}
|
|
6075
6075
|
*/
|
|
6076
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
6076
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
6077
6077
|
/**
|
|
6078
6078
|
* Removes an association between a contact and a listing.
|
|
6079
6079
|
* @summary Delete Contact Listing
|
|
@@ -6192,12 +6192,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6192
6192
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6193
6193
|
* @param {number} [limit]
|
|
6194
6194
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6195
|
-
* @param {
|
|
6195
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
6196
6196
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6197
6197
|
* @param {*} [options] Override http request option.
|
|
6198
6198
|
* @throws {RequiredError}
|
|
6199
6199
|
*/
|
|
6200
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
6200
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListings>;
|
|
6201
6201
|
/**
|
|
6202
6202
|
*
|
|
6203
6203
|
* @summary Managed_phone_numbers List
|
|
@@ -6415,13 +6415,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6415
6415
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6416
6416
|
* @param {number} [limit]
|
|
6417
6417
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6418
|
-
* @param {
|
|
6418
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
6419
6419
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6420
6420
|
* @param {*} [options] Override http request option.
|
|
6421
6421
|
* @throws {RequiredError}
|
|
6422
6422
|
* @memberof UnboundApi
|
|
6423
6423
|
*/
|
|
6424
|
-
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
6424
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsContactsModelContactsModelContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
6425
6425
|
/**
|
|
6426
6426
|
* Removes an association between a contact and a listing.
|
|
6427
6427
|
* @summary Delete Contact Listing
|
|
@@ -6552,13 +6552,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6552
6552
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6553
6553
|
* @param {number} [limit]
|
|
6554
6554
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6555
|
-
* @param {
|
|
6555
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
6556
6556
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6557
6557
|
* @param {*} [options] Override http request option.
|
|
6558
6558
|
* @throws {RequiredError}
|
|
6559
6559
|
* @memberof UnboundApi
|
|
6560
6560
|
*/
|
|
6561
|
-
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?:
|
|
6561
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsListingsModelListingBaseSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListings, any>>;
|
|
6562
6562
|
/**
|
|
6563
6563
|
*
|
|
6564
6564
|
* @summary Managed_phone_numbers List
|
|
@@ -6702,4 +6702,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6702
6702
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6703
6703
|
}
|
|
6704
6704
|
|
|
6705
|
-
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressUpdate, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType,
|
|
6705
|
+
export { type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AccountsList, type AddressApi, type AddressCreate, type AddressUpdate, type AddressesCreate, type AddressesUpdate, Configuration, type ConfigurationParameters, type ContactCreate, ContactListingType, type ContactTypeDataApi, type ContactUpdate, type Contacts, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreate, type ContactsGet, type ContactsUpdate, type ConversationCreate, ConversationStatus, type ConversationUpdate, type Conversations, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type ConversationsCreate, type ConversationsGet, type ConversationsUpdate, type Conversationtypedata, type Conversationtypedata1, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailCreate, type EmailUpdate, type EmailsCreate, type EmailsUpdate, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAccountsList, type ListResponseInquiriesList, type ListResponseManagedPhoneNumbersList, type ListResponseProvidersList, type Listings, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsGet, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type ManagedPhoneNumbersList, type MessageCreate, MessageDirection, MessageStatus, type Messages, type MessagesCreate, type MessagesGet, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseContacts, type PaginatedResponseConversations, type PaginatedResponseListings, type PaginatedResponseMessages, type PaginatedResponseReservations, PaginationDirection, type PhoneApi, type PhoneNumberCreate, type PhoneNumberUpdate, type PhoneNumbersCreate, type PhoneNumbersUpdate, type ProviderCreate, type ProviderMessageApi, ProviderMessageApiConversationTypeEnum, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReservationChannelTypes, type Reservations, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsGet, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5, SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi6, SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi7, SrcResourceModelsHelperModelsCustomBaseModelCreateApi7ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2, SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioMessageApi, TwilioMessageApiConversationTypeEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
package/dist/index.js
CHANGED
|
@@ -78,18 +78,10 @@ var createRequestFunction = function(axiosArgs, globalAxios3, BASE_PATH2, config
|
|
|
78
78
|
var ContactListingType = {
|
|
79
79
|
Owner: "OWNER"
|
|
80
80
|
};
|
|
81
|
-
var ContactSortBy = {
|
|
82
|
-
LastFirstCompany: "last_first_company",
|
|
83
|
-
FirstLastCompany: "first_last_company",
|
|
84
|
-
CompanyLastFirst: "company_last_first"
|
|
85
|
-
};
|
|
86
81
|
var ConversationStatus = {
|
|
87
82
|
Open: "OPEN",
|
|
88
83
|
Closed: "CLOSED"
|
|
89
84
|
};
|
|
90
|
-
var ListingSortBy = {
|
|
91
|
-
Title: "title"
|
|
92
|
-
};
|
|
93
85
|
var MessageDirection = {
|
|
94
86
|
Inbound: "INBOUND",
|
|
95
87
|
Outbound: "OUTBOUND"
|
|
@@ -131,6 +123,11 @@ var SortOrder = {
|
|
|
131
123
|
Asc: "asc",
|
|
132
124
|
Desc: "desc"
|
|
133
125
|
};
|
|
126
|
+
var SrcResourceModelsContactsModelContactsModelContactSortBy = {
|
|
127
|
+
LastFirstCompany: "last_first_company",
|
|
128
|
+
FirstLastCompany: "first_last_company",
|
|
129
|
+
CompanyLastFirst: "company_last_first"
|
|
130
|
+
};
|
|
134
131
|
var SrcResourceModelsConversationsModelConversationsModelConversationSortBy = {
|
|
135
132
|
UpdatedAt: "updated_at"
|
|
136
133
|
};
|
|
@@ -152,6 +149,9 @@ var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum =
|
|
|
152
149
|
var SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = {
|
|
153
150
|
Email: "EMAIL"
|
|
154
151
|
};
|
|
152
|
+
var SrcResourceModelsListingsModelListingBaseSortBy = {
|
|
153
|
+
Title: "title"
|
|
154
|
+
};
|
|
155
155
|
var SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy = {
|
|
156
156
|
CreatedAt: "created_at"
|
|
157
157
|
};
|
|
@@ -445,7 +445,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
445
445
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
446
446
|
* @param {number} [limit]
|
|
447
447
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
448
|
-
* @param {
|
|
448
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
449
449
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
450
450
|
* @param {*} [options] Override http request option.
|
|
451
451
|
* @throws {RequiredError}
|
|
@@ -859,7 +859,7 @@ var ContactsApiFp = function(configuration) {
|
|
|
859
859
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
860
860
|
* @param {number} [limit]
|
|
861
861
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
862
|
-
* @param {
|
|
862
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
863
863
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
864
864
|
* @param {*} [options] Override http request option.
|
|
865
865
|
* @throws {RequiredError}
|
|
@@ -1082,7 +1082,7 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1082
1082
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1083
1083
|
* @param {number} [limit]
|
|
1084
1084
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1085
|
-
* @param {
|
|
1085
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
1086
1086
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1087
1087
|
* @param {*} [options] Override http request option.
|
|
1088
1088
|
* @throws {RequiredError}
|
|
@@ -1280,7 +1280,7 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1280
1280
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1281
1281
|
* @param {number} [limit]
|
|
1282
1282
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
1283
|
-
* @param {
|
|
1283
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
1284
1284
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
1285
1285
|
* @param {*} [options] Override http request option.
|
|
1286
1286
|
* @throws {RequiredError}
|
|
@@ -2138,7 +2138,7 @@ var ListingsApiAxiosParamCreator = function(configuration) {
|
|
|
2138
2138
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2139
2139
|
* @param {number} [limit]
|
|
2140
2140
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2141
|
-
* @param {
|
|
2141
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
2142
2142
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2143
2143
|
* @param {*} [options] Override http request option.
|
|
2144
2144
|
* @throws {RequiredError}
|
|
@@ -2208,7 +2208,7 @@ var ListingsApiFp = function(configuration) {
|
|
|
2208
2208
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2209
2209
|
* @param {number} [limit]
|
|
2210
2210
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2211
|
-
* @param {
|
|
2211
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
2212
2212
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2213
2213
|
* @param {*} [options] Override http request option.
|
|
2214
2214
|
* @throws {RequiredError}
|
|
@@ -2242,7 +2242,7 @@ var ListingsApiFactory = function(configuration, basePath, axios) {
|
|
|
2242
2242
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2243
2243
|
* @param {number} [limit]
|
|
2244
2244
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2245
|
-
* @param {
|
|
2245
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
2246
2246
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2247
2247
|
* @param {*} [options] Override http request option.
|
|
2248
2248
|
* @throws {RequiredError}
|
|
@@ -2272,7 +2272,7 @@ var ListingsApi = class extends BaseAPI {
|
|
|
2272
2272
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2273
2273
|
* @param {number} [limit]
|
|
2274
2274
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
2275
|
-
* @param {
|
|
2275
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
2276
2276
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
2277
2277
|
* @param {*} [options] Override http request option.
|
|
2278
2278
|
* @throws {RequiredError}
|
|
@@ -3024,7 +3024,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3024
3024
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3025
3025
|
* @param {number} [limit]
|
|
3026
3026
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3027
|
-
* @param {
|
|
3027
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
3028
3028
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3029
3029
|
* @param {*} [options] Override http request option.
|
|
3030
3030
|
* @throws {RequiredError}
|
|
@@ -3443,7 +3443,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
3443
3443
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3444
3444
|
* @param {number} [limit]
|
|
3445
3445
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3446
|
-
* @param {
|
|
3446
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
3447
3447
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3448
3448
|
* @param {*} [options] Override http request option.
|
|
3449
3449
|
* @throws {RequiredError}
|
|
@@ -4043,7 +4043,7 @@ var UnboundApiFp = function(configuration) {
|
|
|
4043
4043
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4044
4044
|
* @param {number} [limit]
|
|
4045
4045
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4046
|
-
* @param {
|
|
4046
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4047
4047
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4048
4048
|
* @param {*} [options] Override http request option.
|
|
4049
4049
|
* @throws {RequiredError}
|
|
@@ -4232,7 +4232,7 @@ var UnboundApiFp = function(configuration) {
|
|
|
4232
4232
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4233
4233
|
* @param {number} [limit]
|
|
4234
4234
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4235
|
-
* @param {
|
|
4235
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4236
4236
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4237
4237
|
* @param {*} [options] Override http request option.
|
|
4238
4238
|
* @throws {RequiredError}
|
|
@@ -4535,7 +4535,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4535
4535
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4536
4536
|
* @param {number} [limit]
|
|
4537
4537
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4538
|
-
* @param {
|
|
4538
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4539
4539
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4540
4540
|
* @param {*} [options] Override http request option.
|
|
4541
4541
|
* @throws {RequiredError}
|
|
@@ -4685,7 +4685,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
4685
4685
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4686
4686
|
* @param {number} [limit]
|
|
4687
4687
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4688
|
-
* @param {
|
|
4688
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
4689
4689
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4690
4690
|
* @param {*} [options] Override http request option.
|
|
4691
4691
|
* @throws {RequiredError}
|
|
@@ -4949,7 +4949,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
4949
4949
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4950
4950
|
* @param {number} [limit]
|
|
4951
4951
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4952
|
-
* @param {
|
|
4952
|
+
* @param {SrcResourceModelsContactsModelContactsModelContactSortBy} [sortBy] Sort key
|
|
4953
4953
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4954
4954
|
* @param {*} [options] Override http request option.
|
|
4955
4955
|
* @throws {RequiredError}
|
|
@@ -5112,7 +5112,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5112
5112
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5113
5113
|
* @param {number} [limit]
|
|
5114
5114
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5115
|
-
* @param {
|
|
5115
|
+
* @param {SrcResourceModelsListingsModelListingBaseSortBy} [sortBy] Sort key
|
|
5116
5116
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5117
5117
|
* @param {*} [options] Override http request option.
|
|
5118
5118
|
* @throws {RequiredError}
|
|
@@ -5444,5 +5444,5 @@ var Configuration = class {
|
|
|
5444
5444
|
|
|
5445
5445
|
|
|
5446
5446
|
|
|
5447
|
-
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.
|
|
5447
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.ProviderMessageApiConversationTypeEnum = ProviderMessageApiConversationTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsConversationsModelConversationsModelConversationSortBy = SrcResourceModelsConversationsModelConversationsModelConversationSortBy; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi4ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi5ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi6ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi7ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi7ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy = SrcResourceModelsMessagesModelMessagesModelMessageBaseSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioMessageApiConversationTypeEnum = TwilioMessageApiConversationTypeEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
5448
5448
|
//# sourceMappingURL=index.js.map
|