@ember-home/unbound-ts-client 0.0.84 → 0.0.85
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 +246 -48
- package/dist/index.d.ts +246 -48
- package/dist/index.js +185 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +182 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1467,6 +1467,122 @@ interface APIReservation {
|
|
|
1467
1467
|
*/
|
|
1468
1468
|
'providerInfo': ProviderInfoApi;
|
|
1469
1469
|
}
|
|
1470
|
+
/**
|
|
1471
|
+
*
|
|
1472
|
+
* @export
|
|
1473
|
+
* @interface APIUserDevice
|
|
1474
|
+
*/
|
|
1475
|
+
interface APIUserDevice {
|
|
1476
|
+
/**
|
|
1477
|
+
*
|
|
1478
|
+
* @type {string}
|
|
1479
|
+
* @memberof APIUserDevice
|
|
1480
|
+
*/
|
|
1481
|
+
'userId': string;
|
|
1482
|
+
/**
|
|
1483
|
+
*
|
|
1484
|
+
* @type {string}
|
|
1485
|
+
* @memberof APIUserDevice
|
|
1486
|
+
*/
|
|
1487
|
+
'pushToken': string;
|
|
1488
|
+
/**
|
|
1489
|
+
*
|
|
1490
|
+
* @type {UserDeviceType}
|
|
1491
|
+
* @memberof APIUserDevice
|
|
1492
|
+
*/
|
|
1493
|
+
'deviceType': UserDeviceType;
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @type {UserDeviceOs}
|
|
1497
|
+
* @memberof APIUserDevice
|
|
1498
|
+
*/
|
|
1499
|
+
'deviceOs': UserDeviceOs;
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @type {string}
|
|
1503
|
+
* @memberof APIUserDevice
|
|
1504
|
+
*/
|
|
1505
|
+
'deviceModel': string;
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @type {string}
|
|
1509
|
+
* @memberof APIUserDevice
|
|
1510
|
+
*/
|
|
1511
|
+
'installedAppVersion': string;
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof APIUserDevice
|
|
1516
|
+
*/
|
|
1517
|
+
'deviceIdentifier'?: string | null;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {boolean}
|
|
1521
|
+
* @memberof APIUserDevice
|
|
1522
|
+
*/
|
|
1523
|
+
'archived'?: boolean;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {string}
|
|
1527
|
+
* @memberof APIUserDevice
|
|
1528
|
+
*/
|
|
1529
|
+
'userDeviceId': string;
|
|
1530
|
+
/**
|
|
1531
|
+
*
|
|
1532
|
+
* @type {string}
|
|
1533
|
+
* @memberof APIUserDevice
|
|
1534
|
+
*/
|
|
1535
|
+
'createdAt': string;
|
|
1536
|
+
/**
|
|
1537
|
+
*
|
|
1538
|
+
* @type {string}
|
|
1539
|
+
* @memberof APIUserDevice
|
|
1540
|
+
*/
|
|
1541
|
+
'updatedAt': string;
|
|
1542
|
+
}
|
|
1543
|
+
/**
|
|
1544
|
+
*
|
|
1545
|
+
* @export
|
|
1546
|
+
* @interface APIUserDeviceCreate
|
|
1547
|
+
*/
|
|
1548
|
+
interface APIUserDeviceCreate {
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* @type {string}
|
|
1552
|
+
* @memberof APIUserDeviceCreate
|
|
1553
|
+
*/
|
|
1554
|
+
'deviceIdentifier': string;
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof APIUserDeviceCreate
|
|
1559
|
+
*/
|
|
1560
|
+
'pushToken': string;
|
|
1561
|
+
/**
|
|
1562
|
+
*
|
|
1563
|
+
* @type {UserDeviceType}
|
|
1564
|
+
* @memberof APIUserDeviceCreate
|
|
1565
|
+
*/
|
|
1566
|
+
'deviceType': UserDeviceType;
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {UserDeviceOs}
|
|
1570
|
+
* @memberof APIUserDeviceCreate
|
|
1571
|
+
*/
|
|
1572
|
+
'deviceOs': UserDeviceOs;
|
|
1573
|
+
/**
|
|
1574
|
+
*
|
|
1575
|
+
* @type {string}
|
|
1576
|
+
* @memberof APIUserDeviceCreate
|
|
1577
|
+
*/
|
|
1578
|
+
'deviceModel': string;
|
|
1579
|
+
/**
|
|
1580
|
+
*
|
|
1581
|
+
* @type {string}
|
|
1582
|
+
* @memberof APIUserDeviceCreate
|
|
1583
|
+
*/
|
|
1584
|
+
'installedAppVersion': string;
|
|
1585
|
+
}
|
|
1470
1586
|
/**
|
|
1471
1587
|
*
|
|
1472
1588
|
* @export
|
|
@@ -2036,37 +2152,6 @@ interface HTTPValidationError {
|
|
|
2036
2152
|
*/
|
|
2037
2153
|
'detail'?: Array<APIValidationError>;
|
|
2038
2154
|
}
|
|
2039
|
-
/**
|
|
2040
|
-
*
|
|
2041
|
-
* @export
|
|
2042
|
-
* @interface HostawayWebhook
|
|
2043
|
-
*/
|
|
2044
|
-
interface HostawayWebhook {
|
|
2045
|
-
/**
|
|
2046
|
-
*
|
|
2047
|
-
* @type {string}
|
|
2048
|
-
* @memberof HostawayWebhook
|
|
2049
|
-
*/
|
|
2050
|
-
'object': string;
|
|
2051
|
-
/**
|
|
2052
|
-
*
|
|
2053
|
-
* @type {string}
|
|
2054
|
-
* @memberof HostawayWebhook
|
|
2055
|
-
*/
|
|
2056
|
-
'event': string;
|
|
2057
|
-
/**
|
|
2058
|
-
*
|
|
2059
|
-
* @type {number}
|
|
2060
|
-
* @memberof HostawayWebhook
|
|
2061
|
-
*/
|
|
2062
|
-
'accountId': number;
|
|
2063
|
-
/**
|
|
2064
|
-
*
|
|
2065
|
-
* @type {object}
|
|
2066
|
-
* @memberof HostawayWebhook
|
|
2067
|
-
*/
|
|
2068
|
-
'data': object;
|
|
2069
|
-
}
|
|
2070
2155
|
/**
|
|
2071
2156
|
* @type Inboxtypedata
|
|
2072
2157
|
* @export
|
|
@@ -3359,6 +3444,27 @@ interface UserApi {
|
|
|
3359
3444
|
*/
|
|
3360
3445
|
'email': string;
|
|
3361
3446
|
}
|
|
3447
|
+
/**
|
|
3448
|
+
*
|
|
3449
|
+
* @export
|
|
3450
|
+
* @enum {string}
|
|
3451
|
+
*/
|
|
3452
|
+
declare const UserDeviceOs: {
|
|
3453
|
+
readonly Android: "ANDROID";
|
|
3454
|
+
readonly Ios: "IOS";
|
|
3455
|
+
};
|
|
3456
|
+
type UserDeviceOs = typeof UserDeviceOs[keyof typeof UserDeviceOs];
|
|
3457
|
+
/**
|
|
3458
|
+
*
|
|
3459
|
+
* @export
|
|
3460
|
+
* @enum {string}
|
|
3461
|
+
*/
|
|
3462
|
+
declare const UserDeviceType: {
|
|
3463
|
+
readonly Mobile: "MOBILE";
|
|
3464
|
+
readonly Tablet: "TABLET";
|
|
3465
|
+
readonly Desktop: "DESKTOP";
|
|
3466
|
+
};
|
|
3467
|
+
type UserDeviceType = typeof UserDeviceType[keyof typeof UserDeviceType];
|
|
3362
3468
|
/**
|
|
3363
3469
|
* AccountsApi - axios parameter creator
|
|
3364
3470
|
* @export
|
|
@@ -4535,11 +4641,11 @@ declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4535
4641
|
/**
|
|
4536
4642
|
*
|
|
4537
4643
|
* @summary Unifiedwebhook
|
|
4538
|
-
* @param {
|
|
4644
|
+
* @param {object} body
|
|
4539
4645
|
* @param {*} [options] Override http request option.
|
|
4540
4646
|
* @throws {RequiredError}
|
|
4541
4647
|
*/
|
|
4542
|
-
webhook: (
|
|
4648
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4543
4649
|
};
|
|
4544
4650
|
/**
|
|
4545
4651
|
* HostawayApi - functional programming interface
|
|
@@ -4549,11 +4655,11 @@ declare const HostawayApiFp: (configuration?: Configuration) => {
|
|
|
4549
4655
|
/**
|
|
4550
4656
|
*
|
|
4551
4657
|
* @summary Unifiedwebhook
|
|
4552
|
-
* @param {
|
|
4658
|
+
* @param {object} body
|
|
4553
4659
|
* @param {*} [options] Override http request option.
|
|
4554
4660
|
* @throws {RequiredError}
|
|
4555
4661
|
*/
|
|
4556
|
-
webhook(
|
|
4662
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
4557
4663
|
};
|
|
4558
4664
|
/**
|
|
4559
4665
|
* HostawayApi - factory interface
|
|
@@ -4563,11 +4669,11 @@ declare const HostawayApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
4563
4669
|
/**
|
|
4564
4670
|
*
|
|
4565
4671
|
* @summary Unifiedwebhook
|
|
4566
|
-
* @param {
|
|
4672
|
+
* @param {object} body
|
|
4567
4673
|
* @param {*} [options] Override http request option.
|
|
4568
4674
|
* @throws {RequiredError}
|
|
4569
4675
|
*/
|
|
4570
|
-
webhook(
|
|
4676
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
4571
4677
|
};
|
|
4572
4678
|
/**
|
|
4573
4679
|
* HostawayApi - object-oriented interface
|
|
@@ -4579,12 +4685,12 @@ declare class HostawayApi extends BaseAPI {
|
|
|
4579
4685
|
/**
|
|
4580
4686
|
*
|
|
4581
4687
|
* @summary Unifiedwebhook
|
|
4582
|
-
* @param {
|
|
4688
|
+
* @param {object} body
|
|
4583
4689
|
* @param {*} [options] Override http request option.
|
|
4584
4690
|
* @throws {RequiredError}
|
|
4585
4691
|
* @memberof HostawayApi
|
|
4586
4692
|
*/
|
|
4587
|
-
webhook(
|
|
4693
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
4588
4694
|
}
|
|
4589
4695
|
/**
|
|
4590
4696
|
* InboxesApi - axios parameter creator
|
|
@@ -5507,14 +5613,22 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5507
5613
|
* @throws {RequiredError}
|
|
5508
5614
|
*/
|
|
5509
5615
|
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5616
|
+
/**
|
|
5617
|
+
* UserDevices Create
|
|
5618
|
+
* @summary UserDevices Create
|
|
5619
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5620
|
+
* @param {*} [options] Override http request option.
|
|
5621
|
+
* @throws {RequiredError}
|
|
5622
|
+
*/
|
|
5623
|
+
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5510
5624
|
/**
|
|
5511
5625
|
*
|
|
5512
5626
|
* @summary Unifiedwebhook
|
|
5513
|
-
* @param {
|
|
5627
|
+
* @param {object} body
|
|
5514
5628
|
* @param {*} [options] Override http request option.
|
|
5515
5629
|
* @throws {RequiredError}
|
|
5516
5630
|
*/
|
|
5517
|
-
webhook: (
|
|
5631
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5518
5632
|
};
|
|
5519
5633
|
/**
|
|
5520
5634
|
* UnboundApi - functional programming interface
|
|
@@ -5878,14 +5992,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5878
5992
|
* @throws {RequiredError}
|
|
5879
5993
|
*/
|
|
5880
5994
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIReservation>>;
|
|
5995
|
+
/**
|
|
5996
|
+
* UserDevices Create
|
|
5997
|
+
* @summary UserDevices Create
|
|
5998
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
5999
|
+
* @param {*} [options] Override http request option.
|
|
6000
|
+
* @throws {RequiredError}
|
|
6001
|
+
*/
|
|
6002
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
5881
6003
|
/**
|
|
5882
6004
|
*
|
|
5883
6005
|
* @summary Unifiedwebhook
|
|
5884
|
-
* @param {
|
|
6006
|
+
* @param {object} body
|
|
5885
6007
|
* @param {*} [options] Override http request option.
|
|
5886
6008
|
* @throws {RequiredError}
|
|
5887
6009
|
*/
|
|
5888
|
-
webhook(
|
|
6010
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
5889
6011
|
};
|
|
5890
6012
|
/**
|
|
5891
6013
|
* UnboundApi - factory interface
|
|
@@ -6249,14 +6371,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6249
6371
|
* @throws {RequiredError}
|
|
6250
6372
|
*/
|
|
6251
6373
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
|
|
6374
|
+
/**
|
|
6375
|
+
* UserDevices Create
|
|
6376
|
+
* @summary UserDevices Create
|
|
6377
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6378
|
+
* @param {*} [options] Override http request option.
|
|
6379
|
+
* @throws {RequiredError}
|
|
6380
|
+
*/
|
|
6381
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6252
6382
|
/**
|
|
6253
6383
|
*
|
|
6254
6384
|
* @summary Unifiedwebhook
|
|
6255
|
-
* @param {
|
|
6385
|
+
* @param {object} body
|
|
6256
6386
|
* @param {*} [options] Override http request option.
|
|
6257
6387
|
* @throws {RequiredError}
|
|
6258
6388
|
*/
|
|
6259
|
-
webhook(
|
|
6389
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
6260
6390
|
};
|
|
6261
6391
|
/**
|
|
6262
6392
|
* UnboundApi - object-oriented interface
|
|
@@ -6661,15 +6791,83 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6661
6791
|
* @memberof UnboundApi
|
|
6662
6792
|
*/
|
|
6663
6793
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
6794
|
+
/**
|
|
6795
|
+
* UserDevices Create
|
|
6796
|
+
* @summary UserDevices Create
|
|
6797
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6798
|
+
* @param {*} [options] Override http request option.
|
|
6799
|
+
* @throws {RequiredError}
|
|
6800
|
+
* @memberof UnboundApi
|
|
6801
|
+
*/
|
|
6802
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6664
6803
|
/**
|
|
6665
6804
|
*
|
|
6666
6805
|
* @summary Unifiedwebhook
|
|
6667
|
-
* @param {
|
|
6806
|
+
* @param {object} body
|
|
6668
6807
|
* @param {*} [options] Override http request option.
|
|
6669
6808
|
* @throws {RequiredError}
|
|
6670
6809
|
* @memberof UnboundApi
|
|
6671
6810
|
*/
|
|
6672
|
-
webhook(
|
|
6811
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6812
|
+
}
|
|
6813
|
+
/**
|
|
6814
|
+
* UserDevicesApi - axios parameter creator
|
|
6815
|
+
* @export
|
|
6816
|
+
*/
|
|
6817
|
+
declare const UserDevicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6818
|
+
/**
|
|
6819
|
+
* UserDevices Create
|
|
6820
|
+
* @summary UserDevices Create
|
|
6821
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6822
|
+
* @param {*} [options] Override http request option.
|
|
6823
|
+
* @throws {RequiredError}
|
|
6824
|
+
*/
|
|
6825
|
+
userDevicesCreate: (aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6826
|
+
};
|
|
6827
|
+
/**
|
|
6828
|
+
* UserDevicesApi - functional programming interface
|
|
6829
|
+
* @export
|
|
6830
|
+
*/
|
|
6831
|
+
declare const UserDevicesApiFp: (configuration?: Configuration) => {
|
|
6832
|
+
/**
|
|
6833
|
+
* UserDevices Create
|
|
6834
|
+
* @summary UserDevices Create
|
|
6835
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6836
|
+
* @param {*} [options] Override http request option.
|
|
6837
|
+
* @throws {RequiredError}
|
|
6838
|
+
*/
|
|
6839
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIUserDevice>>;
|
|
6840
|
+
};
|
|
6841
|
+
/**
|
|
6842
|
+
* UserDevicesApi - factory interface
|
|
6843
|
+
* @export
|
|
6844
|
+
*/
|
|
6845
|
+
declare const UserDevicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6846
|
+
/**
|
|
6847
|
+
* UserDevices Create
|
|
6848
|
+
* @summary UserDevices Create
|
|
6849
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6850
|
+
* @param {*} [options] Override http request option.
|
|
6851
|
+
* @throws {RequiredError}
|
|
6852
|
+
*/
|
|
6853
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIUserDevice>;
|
|
6854
|
+
};
|
|
6855
|
+
/**
|
|
6856
|
+
* UserDevicesApi - object-oriented interface
|
|
6857
|
+
* @export
|
|
6858
|
+
* @class UserDevicesApi
|
|
6859
|
+
* @extends {BaseAPI}
|
|
6860
|
+
*/
|
|
6861
|
+
declare class UserDevicesApi extends BaseAPI {
|
|
6862
|
+
/**
|
|
6863
|
+
* UserDevices Create
|
|
6864
|
+
* @summary UserDevices Create
|
|
6865
|
+
* @param {APIUserDeviceCreate} aPIUserDeviceCreate
|
|
6866
|
+
* @param {*} [options] Override http request option.
|
|
6867
|
+
* @throws {RequiredError}
|
|
6868
|
+
* @memberof UserDevicesApi
|
|
6869
|
+
*/
|
|
6870
|
+
userDevicesCreate(aPIUserDeviceCreate: APIUserDeviceCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIUserDevice, any>>;
|
|
6673
6871
|
}
|
|
6674
6872
|
|
|
6675
|
-
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 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,
|
|
6873
|
+
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, UserDeviceType, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|