@ember-home/unbound-ts-client 0.0.86 → 0.0.87
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 +73 -13
- package/dist/index.d.ts +73 -13
- package/dist/index.js +125 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +120 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1473,6 +1473,12 @@ interface APIReservation {
|
|
|
1473
1473
|
* @interface APIUserDevice
|
|
1474
1474
|
*/
|
|
1475
1475
|
interface APIUserDevice {
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @type {string}
|
|
1479
|
+
* @memberof APIUserDevice
|
|
1480
|
+
*/
|
|
1481
|
+
'userDeviceId': string;
|
|
1476
1482
|
/**
|
|
1477
1483
|
*
|
|
1478
1484
|
* @type {string}
|
|
@@ -1509,24 +1515,12 @@ interface APIUserDevice {
|
|
|
1509
1515
|
* @memberof APIUserDevice
|
|
1510
1516
|
*/
|
|
1511
1517
|
'installedAppVersion': string;
|
|
1512
|
-
/**
|
|
1513
|
-
*
|
|
1514
|
-
* @type {string}
|
|
1515
|
-
* @memberof APIUserDevice
|
|
1516
|
-
*/
|
|
1517
|
-
'deviceIdentifier'?: string | null;
|
|
1518
1518
|
/**
|
|
1519
1519
|
*
|
|
1520
1520
|
* @type {boolean}
|
|
1521
1521
|
* @memberof APIUserDevice
|
|
1522
1522
|
*/
|
|
1523
1523
|
'archived'?: boolean;
|
|
1524
|
-
/**
|
|
1525
|
-
*
|
|
1526
|
-
* @type {string}
|
|
1527
|
-
* @memberof APIUserDevice
|
|
1528
|
-
*/
|
|
1529
|
-
'userDeviceId': string;
|
|
1530
1524
|
/**
|
|
1531
1525
|
*
|
|
1532
1526
|
* @type {string}
|
|
@@ -1551,7 +1545,7 @@ interface APIUserDeviceCreate {
|
|
|
1551
1545
|
* @type {string}
|
|
1552
1546
|
* @memberof APIUserDeviceCreate
|
|
1553
1547
|
*/
|
|
1554
|
-
'
|
|
1548
|
+
'userDeviceId': string;
|
|
1555
1549
|
/**
|
|
1556
1550
|
*
|
|
1557
1551
|
* @type {string}
|
|
@@ -5611,6 +5605,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5611
5605
|
* @throws {RequiredError}
|
|
5612
5606
|
*/
|
|
5613
5607
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
/**
|
|
5609
|
+
* UserDevices Delete
|
|
5610
|
+
* @summary UserDevices Delete
|
|
5611
|
+
* @param {string} userDeviceId
|
|
5612
|
+
* @param {*} [options] Override http request option.
|
|
5613
|
+
* @throws {RequiredError}
|
|
5614
|
+
*/
|
|
5615
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5614
5616
|
/**
|
|
5615
5617
|
*
|
|
5616
5618
|
* @summary Unifiedwebhook
|
|
@@ -5990,6 +5992,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5990
5992
|
* @throws {RequiredError}
|
|
5991
5993
|
*/
|
|
5992
5994
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Delete
|
|
5997
|
+
* @summary UserDevices Delete
|
|
5998
|
+
* @param {string} userDeviceId
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5993
6003
|
/**
|
|
5994
6004
|
*
|
|
5995
6005
|
* @summary Unifiedwebhook
|
|
@@ -6369,6 +6379,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6369
6379
|
* @throws {RequiredError}
|
|
6370
6380
|
*/
|
|
6371
6381
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6382
|
+
/**
|
|
6383
|
+
* UserDevices Delete
|
|
6384
|
+
* @summary UserDevices Delete
|
|
6385
|
+
* @param {string} userDeviceId
|
|
6386
|
+
* @param {*} [options] Override http request option.
|
|
6387
|
+
* @throws {RequiredError}
|
|
6388
|
+
*/
|
|
6389
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6372
6390
|
/**
|
|
6373
6391
|
*
|
|
6374
6392
|
* @summary Unifiedwebhook
|
|
@@ -6790,6 +6808,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6790
6808
|
* @memberof UnboundApi
|
|
6791
6809
|
*/
|
|
6792
6810
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6811
|
+
/**
|
|
6812
|
+
* UserDevices Delete
|
|
6813
|
+
* @summary UserDevices Delete
|
|
6814
|
+
* @param {string} userDeviceId
|
|
6815
|
+
* @param {*} [options] Override http request option.
|
|
6816
|
+
* @throws {RequiredError}
|
|
6817
|
+
* @memberof UnboundApi
|
|
6818
|
+
*/
|
|
6819
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6793
6820
|
/**
|
|
6794
6821
|
*
|
|
6795
6822
|
* @summary Unifiedwebhook
|
|
@@ -6813,6 +6840,14 @@ declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
6813
6840
|
* @throws {RequiredError}
|
|
6814
6841
|
*/
|
|
6815
6842
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6843
|
+
/**
|
|
6844
|
+
* UserDevices Delete
|
|
6845
|
+
* @summary UserDevices Delete
|
|
6846
|
+
* @param {string} userDeviceId
|
|
6847
|
+
* @param {*} [options] Override http request option.
|
|
6848
|
+
* @throws {RequiredError}
|
|
6849
|
+
*/
|
|
6850
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6816
6851
|
};
|
|
6817
6852
|
/**
|
|
6818
6853
|
* UserDevicesApi - functional programming interface
|
|
@@ -6827,6 +6862,14 @@ declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
|
6827
6862
|
* @throws {RequiredError}
|
|
6828
6863
|
*/
|
|
6829
6864
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6865
|
+
/**
|
|
6866
|
+
* UserDevices Delete
|
|
6867
|
+
* @summary UserDevices Delete
|
|
6868
|
+
* @param {string} userDeviceId
|
|
6869
|
+
* @param {*} [options] Override http request option.
|
|
6870
|
+
* @throws {RequiredError}
|
|
6871
|
+
*/
|
|
6872
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6830
6873
|
};
|
|
6831
6874
|
/**
|
|
6832
6875
|
* UserDevicesApi - factory interface
|
|
@@ -6841,6 +6884,14 @@ declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6841
6884
|
* @throws {RequiredError}
|
|
6842
6885
|
*/
|
|
6843
6886
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6887
|
+
/**
|
|
6888
|
+
* UserDevices Delete
|
|
6889
|
+
* @summary UserDevices Delete
|
|
6890
|
+
* @param {string} userDeviceId
|
|
6891
|
+
* @param {*} [options] Override http request option.
|
|
6892
|
+
* @throws {RequiredError}
|
|
6893
|
+
*/
|
|
6894
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6844
6895
|
};
|
|
6845
6896
|
/**
|
|
6846
6897
|
* UserDevicesApi - object-oriented interface
|
|
@@ -6858,6 +6909,15 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6858
6909
|
* @memberof UserDevicesApi
|
|
6859
6910
|
*/
|
|
6860
6911
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6912
|
+
/**
|
|
6913
|
+
* UserDevices Delete
|
|
6914
|
+
* @summary UserDevices Delete
|
|
6915
|
+
* @param {string} userDeviceId
|
|
6916
|
+
* @param {*} [options] Override http request option.
|
|
6917
|
+
* @throws {RequiredError}
|
|
6918
|
+
* @memberof UserDevicesApi
|
|
6919
|
+
*/
|
|
6920
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6861
6921
|
}
|
|
6862
6922
|
|
|
6863
6923
|
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.d.ts
CHANGED
|
@@ -1473,6 +1473,12 @@ interface APIReservation {
|
|
|
1473
1473
|
* @interface APIUserDevice
|
|
1474
1474
|
*/
|
|
1475
1475
|
interface APIUserDevice {
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @type {string}
|
|
1479
|
+
* @memberof APIUserDevice
|
|
1480
|
+
*/
|
|
1481
|
+
'userDeviceId': string;
|
|
1476
1482
|
/**
|
|
1477
1483
|
*
|
|
1478
1484
|
* @type {string}
|
|
@@ -1509,24 +1515,12 @@ interface APIUserDevice {
|
|
|
1509
1515
|
* @memberof APIUserDevice
|
|
1510
1516
|
*/
|
|
1511
1517
|
'installedAppVersion': string;
|
|
1512
|
-
/**
|
|
1513
|
-
*
|
|
1514
|
-
* @type {string}
|
|
1515
|
-
* @memberof APIUserDevice
|
|
1516
|
-
*/
|
|
1517
|
-
'deviceIdentifier'?: string | null;
|
|
1518
1518
|
/**
|
|
1519
1519
|
*
|
|
1520
1520
|
* @type {boolean}
|
|
1521
1521
|
* @memberof APIUserDevice
|
|
1522
1522
|
*/
|
|
1523
1523
|
'archived'?: boolean;
|
|
1524
|
-
/**
|
|
1525
|
-
*
|
|
1526
|
-
* @type {string}
|
|
1527
|
-
* @memberof APIUserDevice
|
|
1528
|
-
*/
|
|
1529
|
-
'userDeviceId': string;
|
|
1530
1524
|
/**
|
|
1531
1525
|
*
|
|
1532
1526
|
* @type {string}
|
|
@@ -1551,7 +1545,7 @@ interface APIUserDeviceCreate {
|
|
|
1551
1545
|
* @type {string}
|
|
1552
1546
|
* @memberof APIUserDeviceCreate
|
|
1553
1547
|
*/
|
|
1554
|
-
'
|
|
1548
|
+
'userDeviceId': string;
|
|
1555
1549
|
/**
|
|
1556
1550
|
*
|
|
1557
1551
|
* @type {string}
|
|
@@ -5611,6 +5605,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5611
5605
|
* @throws {RequiredError}
|
|
5612
5606
|
*/
|
|
5613
5607
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5608
|
+
/**
|
|
5609
|
+
* UserDevices Delete
|
|
5610
|
+
* @summary UserDevices Delete
|
|
5611
|
+
* @param {string} userDeviceId
|
|
5612
|
+
* @param {*} [options] Override http request option.
|
|
5613
|
+
* @throws {RequiredError}
|
|
5614
|
+
*/
|
|
5615
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5614
5616
|
/**
|
|
5615
5617
|
*
|
|
5616
5618
|
* @summary Unifiedwebhook
|
|
@@ -5990,6 +5992,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5990
5992
|
* @throws {RequiredError}
|
|
5991
5993
|
*/
|
|
5992
5994
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Delete
|
|
5997
|
+
* @summary UserDevices Delete
|
|
5998
|
+
* @param {string} userDeviceId
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5993
6003
|
/**
|
|
5994
6004
|
*
|
|
5995
6005
|
* @summary Unifiedwebhook
|
|
@@ -6369,6 +6379,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6369
6379
|
* @throws {RequiredError}
|
|
6370
6380
|
*/
|
|
6371
6381
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6382
|
+
/**
|
|
6383
|
+
* UserDevices Delete
|
|
6384
|
+
* @summary UserDevices Delete
|
|
6385
|
+
* @param {string} userDeviceId
|
|
6386
|
+
* @param {*} [options] Override http request option.
|
|
6387
|
+
* @throws {RequiredError}
|
|
6388
|
+
*/
|
|
6389
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6372
6390
|
/**
|
|
6373
6391
|
*
|
|
6374
6392
|
* @summary Unifiedwebhook
|
|
@@ -6790,6 +6808,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6790
6808
|
* @memberof UnboundApi
|
|
6791
6809
|
*/
|
|
6792
6810
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6811
|
+
/**
|
|
6812
|
+
* UserDevices Delete
|
|
6813
|
+
* @summary UserDevices Delete
|
|
6814
|
+
* @param {string} userDeviceId
|
|
6815
|
+
* @param {*} [options] Override http request option.
|
|
6816
|
+
* @throws {RequiredError}
|
|
6817
|
+
* @memberof UnboundApi
|
|
6818
|
+
*/
|
|
6819
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6793
6820
|
/**
|
|
6794
6821
|
*
|
|
6795
6822
|
* @summary Unifiedwebhook
|
|
@@ -6813,6 +6840,14 @@ declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
6813
6840
|
* @throws {RequiredError}
|
|
6814
6841
|
*/
|
|
6815
6842
|
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6843
|
+
/**
|
|
6844
|
+
* UserDevices Delete
|
|
6845
|
+
* @summary UserDevices Delete
|
|
6846
|
+
* @param {string} userDeviceId
|
|
6847
|
+
* @param {*} [options] Override http request option.
|
|
6848
|
+
* @throws {RequiredError}
|
|
6849
|
+
*/
|
|
6850
|
+
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6816
6851
|
};
|
|
6817
6852
|
/**
|
|
6818
6853
|
* UserDevicesApi - functional programming interface
|
|
@@ -6827,6 +6862,14 @@ declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
|
6827
6862
|
* @throws {RequiredError}
|
|
6828
6863
|
*/
|
|
6829
6864
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6865
|
+
/**
|
|
6866
|
+
* UserDevices Delete
|
|
6867
|
+
* @summary UserDevices Delete
|
|
6868
|
+
* @param {string} userDeviceId
|
|
6869
|
+
* @param {*} [options] Override http request option.
|
|
6870
|
+
* @throws {RequiredError}
|
|
6871
|
+
*/
|
|
6872
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6830
6873
|
};
|
|
6831
6874
|
/**
|
|
6832
6875
|
* UserDevicesApi - factory interface
|
|
@@ -6841,6 +6884,14 @@ declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6841
6884
|
* @throws {RequiredError}
|
|
6842
6885
|
*/
|
|
6843
6886
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6887
|
+
/**
|
|
6888
|
+
* UserDevices Delete
|
|
6889
|
+
* @summary UserDevices Delete
|
|
6890
|
+
* @param {string} userDeviceId
|
|
6891
|
+
* @param {*} [options] Override http request option.
|
|
6892
|
+
* @throws {RequiredError}
|
|
6893
|
+
*/
|
|
6894
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6844
6895
|
};
|
|
6845
6896
|
/**
|
|
6846
6897
|
* UserDevicesApi - object-oriented interface
|
|
@@ -6858,6 +6909,15 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6858
6909
|
* @memberof UserDevicesApi
|
|
6859
6910
|
*/
|
|
6860
6911
|
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6912
|
+
/**
|
|
6913
|
+
* UserDevices Delete
|
|
6914
|
+
* @summary UserDevices Delete
|
|
6915
|
+
* @param {string} userDeviceId
|
|
6916
|
+
* @param {*} [options] Override http request option.
|
|
6917
|
+
* @throws {RequiredError}
|
|
6918
|
+
* @memberof UserDevicesApi
|
|
6919
|
+
*/
|
|
6920
|
+
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6861
6921
|
}
|
|
6862
6922
|
|
|
6863
6923
|
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.js
CHANGED
|
@@ -4394,6 +4394,32 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
4394
4394
|
options: localVarRequestOptions
|
|
4395
4395
|
};
|
|
4396
4396
|
},
|
|
4397
|
+
/**
|
|
4398
|
+
* UserDevices Delete
|
|
4399
|
+
* @summary UserDevices Delete
|
|
4400
|
+
* @param {string} userDeviceId
|
|
4401
|
+
* @param {*} [options] Override http request option.
|
|
4402
|
+
* @throws {RequiredError}
|
|
4403
|
+
*/
|
|
4404
|
+
userDevicesDelete: async (userDeviceId, options = {}) => {
|
|
4405
|
+
assertParamExists("userDevicesDelete", "userDeviceId", userDeviceId);
|
|
4406
|
+
const localVarPath = `/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
|
|
4407
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4408
|
+
let baseOptions;
|
|
4409
|
+
if (configuration) {
|
|
4410
|
+
baseOptions = configuration.baseOptions;
|
|
4411
|
+
}
|
|
4412
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
4413
|
+
const localVarHeaderParameter = {};
|
|
4414
|
+
const localVarQueryParameter = {};
|
|
4415
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4416
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4417
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
4418
|
+
return {
|
|
4419
|
+
url: toPathString(localVarUrlObj),
|
|
4420
|
+
options: localVarRequestOptions
|
|
4421
|
+
};
|
|
4422
|
+
},
|
|
4397
4423
|
/**
|
|
4398
4424
|
*
|
|
4399
4425
|
* @summary Unifiedwebhook
|
|
@@ -4993,6 +5019,19 @@ var UnboundApiFp = function(configuration) {
|
|
|
4993
5019
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _319 => _319["UnboundApi.userDevicesCreate"], 'optionalAccess', _320 => _320[localVarOperationServerIndex], 'optionalAccess', _321 => _321.url]);
|
|
4994
5020
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4995
5021
|
},
|
|
5022
|
+
/**
|
|
5023
|
+
* UserDevices Delete
|
|
5024
|
+
* @summary UserDevices Delete
|
|
5025
|
+
* @param {string} userDeviceId
|
|
5026
|
+
* @param {*} [options] Override http request option.
|
|
5027
|
+
* @throws {RequiredError}
|
|
5028
|
+
*/
|
|
5029
|
+
async userDevicesDelete(userDeviceId, options) {
|
|
5030
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesDelete(userDeviceId, options);
|
|
5031
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _322 => _322.serverIndex]), () => ( 0));
|
|
5032
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _323 => _323["UnboundApi.userDevicesDelete"], 'optionalAccess', _324 => _324[localVarOperationServerIndex], 'optionalAccess', _325 => _325.url]);
|
|
5033
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5034
|
+
},
|
|
4996
5035
|
/**
|
|
4997
5036
|
*
|
|
4998
5037
|
* @summary Unifiedwebhook
|
|
@@ -5002,8 +5041,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
5002
5041
|
*/
|
|
5003
5042
|
async webhook(body, options) {
|
|
5004
5043
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
5005
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
5006
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
5044
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _326 => _326.serverIndex]), () => ( 0));
|
|
5045
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _327 => _327["UnboundApi.webhook"], 'optionalAccess', _328 => _328[localVarOperationServerIndex], 'optionalAccess', _329 => _329.url]);
|
|
5007
5046
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5008
5047
|
}
|
|
5009
5048
|
};
|
|
@@ -5456,6 +5495,16 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
5456
5495
|
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5457
5496
|
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
5458
5497
|
},
|
|
5498
|
+
/**
|
|
5499
|
+
* UserDevices Delete
|
|
5500
|
+
* @summary UserDevices Delete
|
|
5501
|
+
* @param {string} userDeviceId
|
|
5502
|
+
* @param {*} [options] Override http request option.
|
|
5503
|
+
* @throws {RequiredError}
|
|
5504
|
+
*/
|
|
5505
|
+
userDevicesDelete(userDeviceId, options) {
|
|
5506
|
+
return localVarFp.userDevicesDelete(userDeviceId, options).then((request) => request(axios, basePath));
|
|
5507
|
+
},
|
|
5459
5508
|
/**
|
|
5460
5509
|
*
|
|
5461
5510
|
* @summary Unifiedwebhook
|
|
@@ -5954,6 +6003,17 @@ var UnboundApi = class extends BaseAPI {
|
|
|
5954
6003
|
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
5955
6004
|
return UnboundApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
5956
6005
|
}
|
|
6006
|
+
/**
|
|
6007
|
+
* UserDevices Delete
|
|
6008
|
+
* @summary UserDevices Delete
|
|
6009
|
+
* @param {string} userDeviceId
|
|
6010
|
+
* @param {*} [options] Override http request option.
|
|
6011
|
+
* @throws {RequiredError}
|
|
6012
|
+
* @memberof UnboundApi
|
|
6013
|
+
*/
|
|
6014
|
+
userDevicesDelete(userDeviceId, options) {
|
|
6015
|
+
return UnboundApiFp(this.configuration).userDevicesDelete(userDeviceId, options).then((request) => request(this.axios, this.basePath));
|
|
6016
|
+
}
|
|
5957
6017
|
/**
|
|
5958
6018
|
*
|
|
5959
6019
|
* @summary Unifiedwebhook
|
|
@@ -5995,6 +6055,32 @@ var UserDevicesApiAxiosParamCreator = function(configuration) {
|
|
|
5995
6055
|
url: toPathString(localVarUrlObj),
|
|
5996
6056
|
options: localVarRequestOptions
|
|
5997
6057
|
};
|
|
6058
|
+
},
|
|
6059
|
+
/**
|
|
6060
|
+
* UserDevices Delete
|
|
6061
|
+
* @summary UserDevices Delete
|
|
6062
|
+
* @param {string} userDeviceId
|
|
6063
|
+
* @param {*} [options] Override http request option.
|
|
6064
|
+
* @throws {RequiredError}
|
|
6065
|
+
*/
|
|
6066
|
+
userDevicesDelete: async (userDeviceId, options = {}) => {
|
|
6067
|
+
assertParamExists("userDevicesDelete", "userDeviceId", userDeviceId);
|
|
6068
|
+
const localVarPath = `/userDevices/{userDeviceId}`.replace(`{${"userDeviceId"}}`, encodeURIComponent(String(userDeviceId)));
|
|
6069
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6070
|
+
let baseOptions;
|
|
6071
|
+
if (configuration) {
|
|
6072
|
+
baseOptions = configuration.baseOptions;
|
|
6073
|
+
}
|
|
6074
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
6075
|
+
const localVarHeaderParameter = {};
|
|
6076
|
+
const localVarQueryParameter = {};
|
|
6077
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6078
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6079
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
6080
|
+
return {
|
|
6081
|
+
url: toPathString(localVarUrlObj),
|
|
6082
|
+
options: localVarRequestOptions
|
|
6083
|
+
};
|
|
5998
6084
|
}
|
|
5999
6085
|
};
|
|
6000
6086
|
};
|
|
@@ -6010,8 +6096,21 @@ var UserDevicesApiFp = function(configuration) {
|
|
|
6010
6096
|
*/
|
|
6011
6097
|
async userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6012
6098
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(aPIUserDeviceCreate, options);
|
|
6013
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
6014
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
6099
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _330 => _330.serverIndex]), () => ( 0));
|
|
6100
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _331 => _331["UserDevicesApi.userDevicesCreate"], 'optionalAccess', _332 => _332[localVarOperationServerIndex], 'optionalAccess', _333 => _333.url]);
|
|
6101
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6102
|
+
},
|
|
6103
|
+
/**
|
|
6104
|
+
* UserDevices Delete
|
|
6105
|
+
* @summary UserDevices Delete
|
|
6106
|
+
* @param {string} userDeviceId
|
|
6107
|
+
* @param {*} [options] Override http request option.
|
|
6108
|
+
* @throws {RequiredError}
|
|
6109
|
+
*/
|
|
6110
|
+
async userDevicesDelete(userDeviceId, options) {
|
|
6111
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesDelete(userDeviceId, options);
|
|
6112
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _334 => _334.serverIndex]), () => ( 0));
|
|
6113
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _335 => _335["UserDevicesApi.userDevicesDelete"], 'optionalAccess', _336 => _336[localVarOperationServerIndex], 'optionalAccess', _337 => _337.url]);
|
|
6015
6114
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6016
6115
|
}
|
|
6017
6116
|
};
|
|
@@ -6028,6 +6127,16 @@ var UserDevicesApiFactory = function(configuration, basePath, axios) {
|
|
|
6028
6127
|
*/
|
|
6029
6128
|
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6030
6129
|
return localVarFp.userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(axios, basePath));
|
|
6130
|
+
},
|
|
6131
|
+
/**
|
|
6132
|
+
* UserDevices Delete
|
|
6133
|
+
* @summary UserDevices Delete
|
|
6134
|
+
* @param {string} userDeviceId
|
|
6135
|
+
* @param {*} [options] Override http request option.
|
|
6136
|
+
* @throws {RequiredError}
|
|
6137
|
+
*/
|
|
6138
|
+
userDevicesDelete(userDeviceId, options) {
|
|
6139
|
+
return localVarFp.userDevicesDelete(userDeviceId, options).then((request) => request(axios, basePath));
|
|
6031
6140
|
}
|
|
6032
6141
|
};
|
|
6033
6142
|
};
|
|
@@ -6043,6 +6152,17 @@ var UserDevicesApi = class extends BaseAPI {
|
|
|
6043
6152
|
userDevicesCreate(aPIUserDeviceCreate, options) {
|
|
6044
6153
|
return UserDevicesApiFp(this.configuration).userDevicesCreate(aPIUserDeviceCreate, options).then((request) => request(this.axios, this.basePath));
|
|
6045
6154
|
}
|
|
6155
|
+
/**
|
|
6156
|
+
* UserDevices Delete
|
|
6157
|
+
* @summary UserDevices Delete
|
|
6158
|
+
* @param {string} userDeviceId
|
|
6159
|
+
* @param {*} [options] Override http request option.
|
|
6160
|
+
* @throws {RequiredError}
|
|
6161
|
+
* @memberof UserDevicesApi
|
|
6162
|
+
*/
|
|
6163
|
+
userDevicesDelete(userDeviceId, options) {
|
|
6164
|
+
return UserDevicesApiFp(this.configuration).userDevicesDelete(userDeviceId, options).then((request) => request(this.axios, this.basePath));
|
|
6165
|
+
}
|
|
6046
6166
|
};
|
|
6047
6167
|
|
|
6048
6168
|
// src/configuration.ts
|
|
@@ -6113,7 +6233,7 @@ var Configuration = class {
|
|
|
6113
6233
|
this.baseOptions = {
|
|
6114
6234
|
...param.baseOptions,
|
|
6115
6235
|
headers: {
|
|
6116
|
-
..._optionalChain([param, 'access',
|
|
6236
|
+
..._optionalChain([param, 'access', _338 => _338.baseOptions, 'optionalAccess', _339 => _339.headers])
|
|
6117
6237
|
}
|
|
6118
6238
|
};
|
|
6119
6239
|
this.formDataCtor = param.formDataCtor;
|