@ember-home/unbound-ts-client 0.0.124 → 0.0.126
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 +279 -247
- package/dist/index.d.ts +279 -247
- package/dist/index.js +76 -72
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +80 -76
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -139,31 +139,6 @@ interface AIResponse {
|
|
|
139
139
|
*/
|
|
140
140
|
'response': string;
|
|
141
141
|
}
|
|
142
|
-
/**
|
|
143
|
-
*
|
|
144
|
-
* @export
|
|
145
|
-
* @interface AIResponseCreate
|
|
146
|
-
*/
|
|
147
|
-
interface AIResponseCreate {
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @type {string}
|
|
151
|
-
* @memberof AIResponseCreate
|
|
152
|
-
*/
|
|
153
|
-
'query': string;
|
|
154
|
-
/**
|
|
155
|
-
*
|
|
156
|
-
* @type {string}
|
|
157
|
-
* @memberof AIResponseCreate
|
|
158
|
-
*/
|
|
159
|
-
'listingId': string;
|
|
160
|
-
/**
|
|
161
|
-
*
|
|
162
|
-
* @type {string}
|
|
163
|
-
* @memberof AIResponseCreate
|
|
164
|
-
*/
|
|
165
|
-
'reservationId'?: string | null;
|
|
166
|
-
}
|
|
167
142
|
/**
|
|
168
143
|
*
|
|
169
144
|
* @export
|
|
@@ -580,6 +555,19 @@ declare const BotParticipantTypeEnum: {
|
|
|
580
555
|
readonly Bot: "BOT";
|
|
581
556
|
};
|
|
582
557
|
type BotParticipantTypeEnum = typeof BotParticipantTypeEnum[keyof typeof BotParticipantTypeEnum];
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @export
|
|
561
|
+
* @interface ChannelInfo
|
|
562
|
+
*/
|
|
563
|
+
interface ChannelInfo {
|
|
564
|
+
/**
|
|
565
|
+
*
|
|
566
|
+
* @type {ReservationChannelTypes}
|
|
567
|
+
* @memberof ChannelInfo
|
|
568
|
+
*/
|
|
569
|
+
'channelName': ReservationChannelTypes;
|
|
570
|
+
}
|
|
583
571
|
/**
|
|
584
572
|
*
|
|
585
573
|
* @export
|
|
@@ -1341,16 +1329,47 @@ interface ContentItemFullResponse {
|
|
|
1341
1329
|
'contentItemId': string;
|
|
1342
1330
|
/**
|
|
1343
1331
|
*
|
|
1344
|
-
* @type {
|
|
1332
|
+
* @type {Relationtypedata}
|
|
1345
1333
|
* @memberof ContentItemFullResponse
|
|
1346
1334
|
*/
|
|
1347
|
-
'
|
|
1335
|
+
'relationTypeData': Relationtypedata;
|
|
1336
|
+
}
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @export
|
|
1340
|
+
* @interface ContentItemUpdate
|
|
1341
|
+
*/
|
|
1342
|
+
interface ContentItemUpdate {
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof ContentItemUpdate
|
|
1347
|
+
*/
|
|
1348
|
+
'title'?: string | null;
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* @type {string}
|
|
1352
|
+
* @memberof ContentItemUpdate
|
|
1353
|
+
*/
|
|
1354
|
+
'description'?: string | null;
|
|
1355
|
+
/**
|
|
1356
|
+
*
|
|
1357
|
+
* @type {ContentItemUpdateContentTypeData}
|
|
1358
|
+
* @memberof ContentItemUpdate
|
|
1359
|
+
*/
|
|
1360
|
+
'contentTypeData'?: ContentItemUpdateContentTypeData | null;
|
|
1348
1361
|
}
|
|
1349
1362
|
/**
|
|
1350
|
-
* @type
|
|
1363
|
+
* @type ContentItemUpdateContentTypeData
|
|
1351
1364
|
* @export
|
|
1352
1365
|
*/
|
|
1353
|
-
type
|
|
1366
|
+
type ContentItemUpdateContentTypeData = {
|
|
1367
|
+
contentType: 'FILE';
|
|
1368
|
+
} & FileContent | {
|
|
1369
|
+
contentType: 'PLAIN_TEXT';
|
|
1370
|
+
} & PlainTextContent | {
|
|
1371
|
+
contentType: 'URL';
|
|
1372
|
+
} & URLContent;
|
|
1354
1373
|
/**
|
|
1355
1374
|
*
|
|
1356
1375
|
* @export
|
|
@@ -1418,6 +1437,107 @@ interface ContentItemVersion {
|
|
|
1418
1437
|
*/
|
|
1419
1438
|
'version': number;
|
|
1420
1439
|
}
|
|
1440
|
+
/**
|
|
1441
|
+
*
|
|
1442
|
+
* @export
|
|
1443
|
+
* @interface ContentRelatedAllResourcesTypeData
|
|
1444
|
+
*/
|
|
1445
|
+
interface ContentRelatedAllResourcesTypeData {
|
|
1446
|
+
/**
|
|
1447
|
+
*
|
|
1448
|
+
* @type {string}
|
|
1449
|
+
* @memberof ContentRelatedAllResourcesTypeData
|
|
1450
|
+
*/
|
|
1451
|
+
'relationType': ContentRelatedAllResourcesTypeDataRelationTypeEnum;
|
|
1452
|
+
/**
|
|
1453
|
+
*
|
|
1454
|
+
* @type {string}
|
|
1455
|
+
* @memberof ContentRelatedAllResourcesTypeData
|
|
1456
|
+
*/
|
|
1457
|
+
'resourceType': ContentRelatedAllResourcesTypeDataResourceTypeEnum;
|
|
1458
|
+
}
|
|
1459
|
+
declare const ContentRelatedAllResourcesTypeDataRelationTypeEnum: {
|
|
1460
|
+
readonly AllResources: "ALL_RESOURCES";
|
|
1461
|
+
};
|
|
1462
|
+
type ContentRelatedAllResourcesTypeDataRelationTypeEnum = typeof ContentRelatedAllResourcesTypeDataRelationTypeEnum[keyof typeof ContentRelatedAllResourcesTypeDataRelationTypeEnum];
|
|
1463
|
+
declare const ContentRelatedAllResourcesTypeDataResourceTypeEnum: {
|
|
1464
|
+
readonly Listing: "LISTING";
|
|
1465
|
+
};
|
|
1466
|
+
type ContentRelatedAllResourcesTypeDataResourceTypeEnum = typeof ContentRelatedAllResourcesTypeDataResourceTypeEnum[keyof typeof ContentRelatedAllResourcesTypeDataResourceTypeEnum];
|
|
1467
|
+
/**
|
|
1468
|
+
* Individual resources relation with expanded resource objects.
|
|
1469
|
+
* @export
|
|
1470
|
+
* @interface ContentRelatedIndividualResourcesFullTypeData
|
|
1471
|
+
*/
|
|
1472
|
+
interface ContentRelatedIndividualResourcesFullTypeData {
|
|
1473
|
+
/**
|
|
1474
|
+
*
|
|
1475
|
+
* @type {string}
|
|
1476
|
+
* @memberof ContentRelatedIndividualResourcesFullTypeData
|
|
1477
|
+
*/
|
|
1478
|
+
'relationType': ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum;
|
|
1479
|
+
/**
|
|
1480
|
+
*
|
|
1481
|
+
* @type {Array<ContentRelatedIndividualResourcesFullTypeDataResourcesInner>}
|
|
1482
|
+
* @memberof ContentRelatedIndividualResourcesFullTypeData
|
|
1483
|
+
*/
|
|
1484
|
+
'resources': Array<ContentRelatedIndividualResourcesFullTypeDataResourcesInner>;
|
|
1485
|
+
}
|
|
1486
|
+
declare const ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum: {
|
|
1487
|
+
readonly IndividualResources: "INDIVIDUAL_RESOURCES";
|
|
1488
|
+
};
|
|
1489
|
+
type ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum = typeof ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum[keyof typeof ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum];
|
|
1490
|
+
/**
|
|
1491
|
+
* @type ContentRelatedIndividualResourcesFullTypeDataResourcesInner
|
|
1492
|
+
* @export
|
|
1493
|
+
*/
|
|
1494
|
+
type ContentRelatedIndividualResourcesFullTypeDataResourcesInner = Community | Listing;
|
|
1495
|
+
/**
|
|
1496
|
+
*
|
|
1497
|
+
* @export
|
|
1498
|
+
* @interface ContentRelatedIndividualResourcesTypeDataInput
|
|
1499
|
+
*/
|
|
1500
|
+
interface ContentRelatedIndividualResourcesTypeDataInput {
|
|
1501
|
+
/**
|
|
1502
|
+
*
|
|
1503
|
+
* @type {string}
|
|
1504
|
+
* @memberof ContentRelatedIndividualResourcesTypeDataInput
|
|
1505
|
+
*/
|
|
1506
|
+
'relationType': ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum;
|
|
1507
|
+
/**
|
|
1508
|
+
*
|
|
1509
|
+
* @type {Array<ContentRelatedResource>}
|
|
1510
|
+
* @memberof ContentRelatedIndividualResourcesTypeDataInput
|
|
1511
|
+
*/
|
|
1512
|
+
'resources': Array<ContentRelatedResource>;
|
|
1513
|
+
}
|
|
1514
|
+
declare const ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum: {
|
|
1515
|
+
readonly IndividualResources: "INDIVIDUAL_RESOURCES";
|
|
1516
|
+
};
|
|
1517
|
+
type ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum = typeof ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum[keyof typeof ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum];
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @export
|
|
1521
|
+
* @interface ContentRelatedIndividualResourcesTypeDataOutput
|
|
1522
|
+
*/
|
|
1523
|
+
interface ContentRelatedIndividualResourcesTypeDataOutput {
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {string}
|
|
1527
|
+
* @memberof ContentRelatedIndividualResourcesTypeDataOutput
|
|
1528
|
+
*/
|
|
1529
|
+
'relationType': ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum;
|
|
1530
|
+
/**
|
|
1531
|
+
*
|
|
1532
|
+
* @type {Array<ContentRelatedResource>}
|
|
1533
|
+
* @memberof ContentRelatedIndividualResourcesTypeDataOutput
|
|
1534
|
+
*/
|
|
1535
|
+
'resources': Array<ContentRelatedResource>;
|
|
1536
|
+
}
|
|
1537
|
+
declare const ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum: {
|
|
1538
|
+
readonly IndividualResources: "INDIVIDUAL_RESOURCES";
|
|
1539
|
+
};
|
|
1540
|
+
type ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum = typeof ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum[keyof typeof ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum];
|
|
1421
1541
|
/**
|
|
1422
1542
|
* A resource related to a content item.
|
|
1423
1543
|
* @export
|
|
@@ -1442,11 +1562,11 @@ interface ContentRelatedResource {
|
|
|
1442
1562
|
* @export
|
|
1443
1563
|
*/
|
|
1444
1564
|
type Contenttypedata = {
|
|
1445
|
-
contentType: '
|
|
1565
|
+
contentType: 'FILE';
|
|
1446
1566
|
} & FileContent | {
|
|
1447
|
-
contentType: '
|
|
1567
|
+
contentType: 'PLAIN_TEXT';
|
|
1448
1568
|
} & PlainTextContent | {
|
|
1449
|
-
contentType: '
|
|
1569
|
+
contentType: 'URL';
|
|
1450
1570
|
} & URLContent;
|
|
1451
1571
|
/**
|
|
1452
1572
|
*
|
|
@@ -1605,6 +1725,31 @@ type Conversationtypedata = {
|
|
|
1605
1725
|
} & ProviderConversationData | {
|
|
1606
1726
|
conversationType: 'TEXT';
|
|
1607
1727
|
} & SMSConversationData;
|
|
1728
|
+
/**
|
|
1729
|
+
*
|
|
1730
|
+
* @export
|
|
1731
|
+
* @interface Create
|
|
1732
|
+
*/
|
|
1733
|
+
interface Create {
|
|
1734
|
+
/**
|
|
1735
|
+
*
|
|
1736
|
+
* @type {string}
|
|
1737
|
+
* @memberof Create
|
|
1738
|
+
*/
|
|
1739
|
+
'query': string;
|
|
1740
|
+
/**
|
|
1741
|
+
*
|
|
1742
|
+
* @type {Array<string>}
|
|
1743
|
+
* @memberof Create
|
|
1744
|
+
*/
|
|
1745
|
+
'listingIds'?: Array<string>;
|
|
1746
|
+
/**
|
|
1747
|
+
*
|
|
1748
|
+
* @type {Array<string>}
|
|
1749
|
+
* @memberof Create
|
|
1750
|
+
*/
|
|
1751
|
+
'reservationIds'?: Array<string>;
|
|
1752
|
+
}
|
|
1608
1753
|
/**
|
|
1609
1754
|
*
|
|
1610
1755
|
* @export
|
|
@@ -1613,10 +1758,10 @@ type Conversationtypedata = {
|
|
|
1613
1758
|
interface CreateContactListing {
|
|
1614
1759
|
/**
|
|
1615
1760
|
*
|
|
1616
|
-
* @type {
|
|
1761
|
+
* @type {Relationtypedata1}
|
|
1617
1762
|
* @memberof CreateContactListing
|
|
1618
1763
|
*/
|
|
1619
|
-
'relationTypeData':
|
|
1764
|
+
'relationTypeData': Relationtypedata1;
|
|
1620
1765
|
}
|
|
1621
1766
|
/**
|
|
1622
1767
|
* Request model for generating signed download URLs.
|
|
@@ -1746,25 +1891,6 @@ declare const EmailInboxInboxTypeEnum: {
|
|
|
1746
1891
|
readonly Email: "EMAIL";
|
|
1747
1892
|
};
|
|
1748
1893
|
type EmailInboxInboxTypeEnum = typeof EmailInboxInboxTypeEnum[keyof typeof EmailInboxInboxTypeEnum];
|
|
1749
|
-
/**
|
|
1750
|
-
*
|
|
1751
|
-
* @export
|
|
1752
|
-
* @interface EmailProviderEmailsProviderAttribution
|
|
1753
|
-
*/
|
|
1754
|
-
interface EmailProviderEmailsProviderAttribution {
|
|
1755
|
-
/**
|
|
1756
|
-
*
|
|
1757
|
-
* @type {string}
|
|
1758
|
-
* @memberof EmailProviderEmailsProviderAttribution
|
|
1759
|
-
*/
|
|
1760
|
-
'providerId': string;
|
|
1761
|
-
/**
|
|
1762
|
-
*
|
|
1763
|
-
* @type {Array<ReservationChannelTypes>}
|
|
1764
|
-
* @memberof EmailProviderEmailsProviderAttribution
|
|
1765
|
-
*/
|
|
1766
|
-
'channels': Array<ReservationChannelTypes>;
|
|
1767
|
-
}
|
|
1768
1894
|
/**
|
|
1769
1895
|
*
|
|
1770
1896
|
* @export
|
|
@@ -1927,7 +2053,7 @@ interface FileContent {
|
|
|
1927
2053
|
'downloadUrlExpiresAt'?: string | null;
|
|
1928
2054
|
}
|
|
1929
2055
|
declare const FileContentContentTypeEnum: {
|
|
1930
|
-
readonly File: "
|
|
2056
|
+
readonly File: "FILE";
|
|
1931
2057
|
};
|
|
1932
2058
|
type FileContentContentTypeEnum = typeof FileContentContentTypeEnum[keyof typeof FileContentContentTypeEnum];
|
|
1933
2059
|
/**
|
|
@@ -2147,29 +2273,6 @@ declare const InquiryTypeCreateRelationTypeEnum: {
|
|
|
2147
2273
|
readonly Inquiry: "INQUIRY";
|
|
2148
2274
|
};
|
|
2149
2275
|
type InquiryTypeCreateRelationTypeEnum = typeof InquiryTypeCreateRelationTypeEnum[keyof typeof InquiryTypeCreateRelationTypeEnum];
|
|
2150
|
-
/**
|
|
2151
|
-
*
|
|
2152
|
-
* @export
|
|
2153
|
-
* @interface InquiryTypeUpdate
|
|
2154
|
-
*/
|
|
2155
|
-
interface InquiryTypeUpdate {
|
|
2156
|
-
/**
|
|
2157
|
-
*
|
|
2158
|
-
* @type {string}
|
|
2159
|
-
* @memberof InquiryTypeUpdate
|
|
2160
|
-
*/
|
|
2161
|
-
'relationType': InquiryTypeUpdateRelationTypeEnum;
|
|
2162
|
-
/**
|
|
2163
|
-
*
|
|
2164
|
-
* @type {string}
|
|
2165
|
-
* @memberof InquiryTypeUpdate
|
|
2166
|
-
*/
|
|
2167
|
-
'inquiryDate'?: string;
|
|
2168
|
-
}
|
|
2169
|
-
declare const InquiryTypeUpdateRelationTypeEnum: {
|
|
2170
|
-
readonly Inquiry: "INQUIRY";
|
|
2171
|
-
};
|
|
2172
|
-
type InquiryTypeUpdateRelationTypeEnum = typeof InquiryTypeUpdateRelationTypeEnum[keyof typeof InquiryTypeUpdateRelationTypeEnum];
|
|
2173
2276
|
/**
|
|
2174
2277
|
*
|
|
2175
2278
|
* @export
|
|
@@ -3415,6 +3518,25 @@ declare const PhoneLifecycle: {
|
|
|
3415
3518
|
readonly Released: "RELEASED";
|
|
3416
3519
|
};
|
|
3417
3520
|
type PhoneLifecycle = typeof PhoneLifecycle[keyof typeof PhoneLifecycle];
|
|
3521
|
+
/**
|
|
3522
|
+
*
|
|
3523
|
+
* @export
|
|
3524
|
+
* @interface PhoneProviderPhonesProviderAttribution
|
|
3525
|
+
*/
|
|
3526
|
+
interface PhoneProviderPhonesProviderAttribution {
|
|
3527
|
+
/**
|
|
3528
|
+
*
|
|
3529
|
+
* @type {string}
|
|
3530
|
+
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3531
|
+
*/
|
|
3532
|
+
'providerId': string;
|
|
3533
|
+
/**
|
|
3534
|
+
*
|
|
3535
|
+
* @type {Array<ReservationChannelTypes>}
|
|
3536
|
+
* @memberof PhoneProviderPhonesProviderAttribution
|
|
3537
|
+
*/
|
|
3538
|
+
'channels': Array<ReservationChannelTypes>;
|
|
3539
|
+
}
|
|
3418
3540
|
/**
|
|
3419
3541
|
*
|
|
3420
3542
|
* @export
|
|
@@ -3442,7 +3564,7 @@ interface PlainTextContent {
|
|
|
3442
3564
|
'contentType': PlainTextContentContentTypeEnum;
|
|
3443
3565
|
}
|
|
3444
3566
|
declare const PlainTextContentContentTypeEnum: {
|
|
3445
|
-
readonly PlainText: "
|
|
3567
|
+
readonly PlainText: "PLAIN_TEXT";
|
|
3446
3568
|
};
|
|
3447
3569
|
type PlainTextContentContentTypeEnum = typeof PlainTextContentContentTypeEnum[keyof typeof PlainTextContentContentTypeEnum];
|
|
3448
3570
|
/**
|
|
@@ -3736,10 +3858,10 @@ interface ProviderEmails {
|
|
|
3736
3858
|
'email': string;
|
|
3737
3859
|
/**
|
|
3738
3860
|
* A list of providers with IDs
|
|
3739
|
-
* @type {Array<
|
|
3861
|
+
* @type {Array<ProviderAttribution>}
|
|
3740
3862
|
* @memberof ProviderEmails
|
|
3741
3863
|
*/
|
|
3742
|
-
'providers': Array<
|
|
3864
|
+
'providers': Array<ProviderAttribution>;
|
|
3743
3865
|
}
|
|
3744
3866
|
/**
|
|
3745
3867
|
*
|
|
@@ -3786,10 +3908,10 @@ interface ProviderPhones {
|
|
|
3786
3908
|
'phone': string;
|
|
3787
3909
|
/**
|
|
3788
3910
|
* A list of providers with IDs
|
|
3789
|
-
* @type {Array<
|
|
3911
|
+
* @type {Array<PhoneProviderPhonesProviderAttribution>}
|
|
3790
3912
|
* @memberof ProviderPhones
|
|
3791
3913
|
*/
|
|
3792
|
-
'providers': Array<
|
|
3914
|
+
'providers': Array<PhoneProviderPhonesProviderAttribution>;
|
|
3793
3915
|
}
|
|
3794
3916
|
/**
|
|
3795
3917
|
*
|
|
@@ -3888,8 +4010,8 @@ interface RelatedListing {
|
|
|
3888
4010
|
* @enum {string}
|
|
3889
4011
|
*/
|
|
3890
4012
|
declare const RelatedResourceType: {
|
|
3891
|
-
readonly Listing: "
|
|
3892
|
-
readonly Community: "
|
|
4013
|
+
readonly Listing: "LISTING";
|
|
4014
|
+
readonly Community: "COMMUNITY";
|
|
3893
4015
|
};
|
|
3894
4016
|
type RelatedResourceType = typeof RelatedResourceType[keyof typeof RelatedResourceType];
|
|
3895
4017
|
/**
|
|
@@ -3897,37 +4019,46 @@ type RelatedResourceType = typeof RelatedResourceType[keyof typeof RelatedResour
|
|
|
3897
4019
|
* @export
|
|
3898
4020
|
*/
|
|
3899
4021
|
type Relationtypedata = {
|
|
3900
|
-
relationType: '
|
|
3901
|
-
} &
|
|
3902
|
-
relationType: '
|
|
3903
|
-
} &
|
|
4022
|
+
relationType: 'ALL_RESOURCES';
|
|
4023
|
+
} & ContentRelatedAllResourcesTypeData | {
|
|
4024
|
+
relationType: 'INDIVIDUAL_RESOURCES';
|
|
4025
|
+
} & ContentRelatedIndividualResourcesFullTypeData;
|
|
3904
4026
|
/**
|
|
3905
4027
|
* @type Relationtypedata1
|
|
3906
4028
|
* @export
|
|
3907
4029
|
*/
|
|
3908
4030
|
type Relationtypedata1 = {
|
|
3909
4031
|
relationType: 'INQUIRY';
|
|
3910
|
-
} &
|
|
4032
|
+
} & InquiryTypeCreate | {
|
|
3911
4033
|
relationType: 'OWNER';
|
|
3912
|
-
} &
|
|
4034
|
+
} & OwnerTypeCreate;
|
|
3913
4035
|
/**
|
|
3914
4036
|
* @type Relationtypedata2
|
|
3915
4037
|
* @export
|
|
3916
4038
|
*/
|
|
3917
4039
|
type Relationtypedata2 = {
|
|
3918
|
-
relationType: '
|
|
3919
|
-
} &
|
|
3920
|
-
relationType: '
|
|
3921
|
-
} &
|
|
4040
|
+
relationType: 'INQUIRY';
|
|
4041
|
+
} & Update | {
|
|
4042
|
+
relationType: 'OWNER';
|
|
4043
|
+
} & OwnerTypeUpdate;
|
|
3922
4044
|
/**
|
|
3923
4045
|
* @type Relationtypedata3
|
|
3924
4046
|
* @export
|
|
3925
4047
|
*/
|
|
3926
4048
|
type Relationtypedata3 = {
|
|
3927
|
-
relationType: '
|
|
3928
|
-
} &
|
|
3929
|
-
relationType: '
|
|
3930
|
-
} &
|
|
4049
|
+
relationType: 'ALL_RESOURCES';
|
|
4050
|
+
} & ContentRelatedAllResourcesTypeData | {
|
|
4051
|
+
relationType: 'INDIVIDUAL_RESOURCES';
|
|
4052
|
+
} & ContentRelatedIndividualResourcesTypeDataInput;
|
|
4053
|
+
/**
|
|
4054
|
+
* @type Relationtypedata4
|
|
4055
|
+
* @export
|
|
4056
|
+
*/
|
|
4057
|
+
type Relationtypedata4 = {
|
|
4058
|
+
relationType: 'ALL_RESOURCES';
|
|
4059
|
+
} & ContentRelatedAllResourcesTypeData | {
|
|
4060
|
+
relationType: 'INDIVIDUAL_RESOURCES';
|
|
4061
|
+
} & ContentRelatedIndividualResourcesTypeDataOutput;
|
|
3931
4062
|
/**
|
|
3932
4063
|
*
|
|
3933
4064
|
* @export
|
|
@@ -4042,10 +4173,10 @@ interface Reservation {
|
|
|
4042
4173
|
'totalPrice': number;
|
|
4043
4174
|
/**
|
|
4044
4175
|
*
|
|
4045
|
-
* @type {
|
|
4176
|
+
* @type {ChannelInfo}
|
|
4046
4177
|
* @memberof Reservation
|
|
4047
4178
|
*/
|
|
4048
|
-
'channelInfo':
|
|
4179
|
+
'channelInfo': ChannelInfo;
|
|
4049
4180
|
/**
|
|
4050
4181
|
*
|
|
4051
4182
|
* @type {number}
|
|
@@ -4071,19 +4202,6 @@ interface Reservation {
|
|
|
4071
4202
|
*/
|
|
4072
4203
|
'providerInfo': ProviderInfo;
|
|
4073
4204
|
}
|
|
4074
|
-
/**
|
|
4075
|
-
*
|
|
4076
|
-
* @export
|
|
4077
|
-
* @interface ReservationBaseModelChannelInfo
|
|
4078
|
-
*/
|
|
4079
|
-
interface ReservationBaseModelChannelInfo {
|
|
4080
|
-
/**
|
|
4081
|
-
*
|
|
4082
|
-
* @type {ReservationChannelTypes}
|
|
4083
|
-
* @memberof ReservationBaseModelChannelInfo
|
|
4084
|
-
*/
|
|
4085
|
-
'channelName': ReservationChannelTypes;
|
|
4086
|
-
}
|
|
4087
4205
|
/**
|
|
4088
4206
|
*
|
|
4089
4207
|
* @export
|
|
@@ -4167,10 +4285,10 @@ interface ReservationVersion {
|
|
|
4167
4285
|
'totalPrice': number;
|
|
4168
4286
|
/**
|
|
4169
4287
|
*
|
|
4170
|
-
* @type {
|
|
4288
|
+
* @type {ChannelInfo}
|
|
4171
4289
|
* @memberof ReservationVersion
|
|
4172
4290
|
*/
|
|
4173
|
-
'channelInfo':
|
|
4291
|
+
'channelInfo': ChannelInfo;
|
|
4174
4292
|
/**
|
|
4175
4293
|
*
|
|
4176
4294
|
* @type {number}
|
|
@@ -4717,7 +4835,7 @@ interface URLContent {
|
|
|
4717
4835
|
'url': string;
|
|
4718
4836
|
}
|
|
4719
4837
|
declare const URLContentContentTypeEnum: {
|
|
4720
|
-
readonly Url: "
|
|
4838
|
+
readonly Url: "URL";
|
|
4721
4839
|
};
|
|
4722
4840
|
type URLContentContentTypeEnum = typeof URLContentContentTypeEnum[keyof typeof URLContentContentTypeEnum];
|
|
4723
4841
|
/**
|
|
@@ -4731,20 +4849,18 @@ interface Update {
|
|
|
4731
4849
|
* @type {string}
|
|
4732
4850
|
* @memberof Update
|
|
4733
4851
|
*/
|
|
4734
|
-
'
|
|
4852
|
+
'relationType': UpdateRelationTypeEnum;
|
|
4735
4853
|
/**
|
|
4736
4854
|
*
|
|
4737
4855
|
* @type {string}
|
|
4738
4856
|
* @memberof Update
|
|
4739
4857
|
*/
|
|
4740
|
-
'
|
|
4741
|
-
/**
|
|
4742
|
-
*
|
|
4743
|
-
* @type {UpdateContentTypeData}
|
|
4744
|
-
* @memberof Update
|
|
4745
|
-
*/
|
|
4746
|
-
'contentTypeData'?: UpdateContentTypeData | null;
|
|
4858
|
+
'inquiryDate'?: string;
|
|
4747
4859
|
}
|
|
4860
|
+
declare const UpdateRelationTypeEnum: {
|
|
4861
|
+
readonly Inquiry: "INQUIRY";
|
|
4862
|
+
};
|
|
4863
|
+
type UpdateRelationTypeEnum = typeof UpdateRelationTypeEnum[keyof typeof UpdateRelationTypeEnum];
|
|
4748
4864
|
/**
|
|
4749
4865
|
*
|
|
4750
4866
|
* @export
|
|
@@ -4759,84 +4875,11 @@ interface UpdateContactListing {
|
|
|
4759
4875
|
'contactListingId'?: string | null;
|
|
4760
4876
|
/**
|
|
4761
4877
|
*
|
|
4762
|
-
* @type {
|
|
4878
|
+
* @type {Relationtypedata2}
|
|
4763
4879
|
* @memberof UpdateContactListing
|
|
4764
4880
|
*/
|
|
4765
|
-
'relationTypeData':
|
|
4766
|
-
}
|
|
4767
|
-
/**
|
|
4768
|
-
*
|
|
4769
|
-
* @export
|
|
4770
|
-
* @interface UpdateContentRelatedAllResourcesTypeData
|
|
4771
|
-
*/
|
|
4772
|
-
interface UpdateContentRelatedAllResourcesTypeData {
|
|
4773
|
-
/**
|
|
4774
|
-
*
|
|
4775
|
-
* @type {string}
|
|
4776
|
-
* @memberof UpdateContentRelatedAllResourcesTypeData
|
|
4777
|
-
*/
|
|
4778
|
-
'relationType': UpdateContentRelatedAllResourcesTypeDataRelationTypeEnum;
|
|
4779
|
-
/**
|
|
4780
|
-
*
|
|
4781
|
-
* @type {string}
|
|
4782
|
-
* @memberof UpdateContentRelatedAllResourcesTypeData
|
|
4783
|
-
*/
|
|
4784
|
-
'resourceType': UpdateContentRelatedAllResourcesTypeDataResourceTypeEnum;
|
|
4785
|
-
}
|
|
4786
|
-
declare const UpdateContentRelatedAllResourcesTypeDataRelationTypeEnum: {
|
|
4787
|
-
readonly AllResources: "all_resources";
|
|
4788
|
-
};
|
|
4789
|
-
type UpdateContentRelatedAllResourcesTypeDataRelationTypeEnum = typeof UpdateContentRelatedAllResourcesTypeDataRelationTypeEnum[keyof typeof UpdateContentRelatedAllResourcesTypeDataRelationTypeEnum];
|
|
4790
|
-
declare const UpdateContentRelatedAllResourcesTypeDataResourceTypeEnum: {
|
|
4791
|
-
readonly Listing: "listing";
|
|
4792
|
-
};
|
|
4793
|
-
type UpdateContentRelatedAllResourcesTypeDataResourceTypeEnum = typeof UpdateContentRelatedAllResourcesTypeDataResourceTypeEnum[keyof typeof UpdateContentRelatedAllResourcesTypeDataResourceTypeEnum];
|
|
4794
|
-
/**
|
|
4795
|
-
*
|
|
4796
|
-
* @export
|
|
4797
|
-
* @interface UpdateContentRelatedIndividualResourcesTypeDataInput
|
|
4798
|
-
*/
|
|
4799
|
-
interface UpdateContentRelatedIndividualResourcesTypeDataInput {
|
|
4800
|
-
/**
|
|
4801
|
-
*
|
|
4802
|
-
* @type {string}
|
|
4803
|
-
* @memberof UpdateContentRelatedIndividualResourcesTypeDataInput
|
|
4804
|
-
*/
|
|
4805
|
-
'relationType': UpdateContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum;
|
|
4806
|
-
/**
|
|
4807
|
-
*
|
|
4808
|
-
* @type {Array<ContentRelatedResource>}
|
|
4809
|
-
* @memberof UpdateContentRelatedIndividualResourcesTypeDataInput
|
|
4810
|
-
*/
|
|
4811
|
-
'resources': Array<ContentRelatedResource>;
|
|
4812
|
-
}
|
|
4813
|
-
declare const UpdateContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum: {
|
|
4814
|
-
readonly IndividualResources: "individual_resources";
|
|
4815
|
-
};
|
|
4816
|
-
type UpdateContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum = typeof UpdateContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum[keyof typeof UpdateContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum];
|
|
4817
|
-
/**
|
|
4818
|
-
*
|
|
4819
|
-
* @export
|
|
4820
|
-
* @interface UpdateContentRelatedIndividualResourcesTypeDataOutput
|
|
4821
|
-
*/
|
|
4822
|
-
interface UpdateContentRelatedIndividualResourcesTypeDataOutput {
|
|
4823
|
-
/**
|
|
4824
|
-
*
|
|
4825
|
-
* @type {string}
|
|
4826
|
-
* @memberof UpdateContentRelatedIndividualResourcesTypeDataOutput
|
|
4827
|
-
*/
|
|
4828
|
-
'relationType': UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum;
|
|
4829
|
-
/**
|
|
4830
|
-
*
|
|
4831
|
-
* @type {Array<ContentRelatedResource>}
|
|
4832
|
-
* @memberof UpdateContentRelatedIndividualResourcesTypeDataOutput
|
|
4833
|
-
*/
|
|
4834
|
-
'resources': Array<ContentRelatedResource>;
|
|
4881
|
+
'relationTypeData': Relationtypedata2;
|
|
4835
4882
|
}
|
|
4836
|
-
declare const UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum: {
|
|
4837
|
-
readonly IndividualResources: "individual_resources";
|
|
4838
|
-
};
|
|
4839
|
-
type UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum = typeof UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum[keyof typeof UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum];
|
|
4840
4883
|
/**
|
|
4841
4884
|
* Request to update all related resource associations for a content item.
|
|
4842
4885
|
* @export
|
|
@@ -4845,10 +4888,10 @@ type UpdateContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum = typ
|
|
|
4845
4888
|
interface UpdateContentRelatedResourcesRequest {
|
|
4846
4889
|
/**
|
|
4847
4890
|
*
|
|
4848
|
-
* @type {
|
|
4891
|
+
* @type {Relationtypedata3}
|
|
4849
4892
|
* @memberof UpdateContentRelatedResourcesRequest
|
|
4850
4893
|
*/
|
|
4851
|
-
'relationTypeData':
|
|
4894
|
+
'relationTypeData': Relationtypedata3;
|
|
4852
4895
|
}
|
|
4853
4896
|
/**
|
|
4854
4897
|
* Response with updated content item related resource associations.
|
|
@@ -4864,22 +4907,11 @@ interface UpdateContentRelatedResourcesResponse {
|
|
|
4864
4907
|
'contentItemId': string;
|
|
4865
4908
|
/**
|
|
4866
4909
|
*
|
|
4867
|
-
* @type {
|
|
4910
|
+
* @type {Relationtypedata4}
|
|
4868
4911
|
* @memberof UpdateContentRelatedResourcesResponse
|
|
4869
4912
|
*/
|
|
4870
|
-
'relationTypeData':
|
|
4913
|
+
'relationTypeData': Relationtypedata4;
|
|
4871
4914
|
}
|
|
4872
|
-
/**
|
|
4873
|
-
* @type UpdateContentTypeData
|
|
4874
|
-
* @export
|
|
4875
|
-
*/
|
|
4876
|
-
type UpdateContentTypeData = {
|
|
4877
|
-
contentType: 'file';
|
|
4878
|
-
} & FileContent | {
|
|
4879
|
-
contentType: 'plain_text';
|
|
4880
|
-
} & PlainTextContent | {
|
|
4881
|
-
contentType: 'url';
|
|
4882
|
-
} & URLContent;
|
|
4883
4915
|
/**
|
|
4884
4916
|
* Request model for generating signed upload URLs.
|
|
4885
4917
|
* @export
|
|
@@ -5166,11 +5198,11 @@ declare const AIResponsesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5166
5198
|
/**
|
|
5167
5199
|
*
|
|
5168
5200
|
* @summary Ai Responses Create
|
|
5169
|
-
* @param {
|
|
5201
|
+
* @param {Create} create
|
|
5170
5202
|
* @param {*} [options] Override http request option.
|
|
5171
5203
|
* @throws {RequiredError}
|
|
5172
5204
|
*/
|
|
5173
|
-
aiResponsesCreate: (
|
|
5205
|
+
aiResponsesCreate: (create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5174
5206
|
};
|
|
5175
5207
|
/**
|
|
5176
5208
|
* AIResponsesApi - functional programming interface
|
|
@@ -5180,11 +5212,11 @@ declare const AIResponsesApiFp: (configuration?: Configuration) => {
|
|
|
5180
5212
|
/**
|
|
5181
5213
|
*
|
|
5182
5214
|
* @summary Ai Responses Create
|
|
5183
|
-
* @param {
|
|
5215
|
+
* @param {Create} create
|
|
5184
5216
|
* @param {*} [options] Override http request option.
|
|
5185
5217
|
* @throws {RequiredError}
|
|
5186
5218
|
*/
|
|
5187
|
-
aiResponsesCreate(
|
|
5219
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AIResponse>>;
|
|
5188
5220
|
};
|
|
5189
5221
|
/**
|
|
5190
5222
|
* AIResponsesApi - factory interface
|
|
@@ -5194,11 +5226,11 @@ declare const AIResponsesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5194
5226
|
/**
|
|
5195
5227
|
*
|
|
5196
5228
|
* @summary Ai Responses Create
|
|
5197
|
-
* @param {
|
|
5229
|
+
* @param {Create} create
|
|
5198
5230
|
* @param {*} [options] Override http request option.
|
|
5199
5231
|
* @throws {RequiredError}
|
|
5200
5232
|
*/
|
|
5201
|
-
aiResponsesCreate(
|
|
5233
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): AxiosPromise<AIResponse>;
|
|
5202
5234
|
};
|
|
5203
5235
|
/**
|
|
5204
5236
|
* AIResponsesApi - object-oriented interface
|
|
@@ -5210,12 +5242,12 @@ declare class AIResponsesApi extends BaseAPI {
|
|
|
5210
5242
|
/**
|
|
5211
5243
|
*
|
|
5212
5244
|
* @summary Ai Responses Create
|
|
5213
|
-
* @param {
|
|
5245
|
+
* @param {Create} create
|
|
5214
5246
|
* @param {*} [options] Override http request option.
|
|
5215
5247
|
* @throws {RequiredError}
|
|
5216
5248
|
* @memberof AIResponsesApi
|
|
5217
5249
|
*/
|
|
5218
|
-
aiResponsesCreate(
|
|
5250
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AIResponse, any>>;
|
|
5219
5251
|
}
|
|
5220
5252
|
/**
|
|
5221
5253
|
* AccountsApi - axios parameter creator
|
|
@@ -6512,11 +6544,11 @@ declare const ContentItemsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
6512
6544
|
*
|
|
6513
6545
|
* @summary Content Item Update
|
|
6514
6546
|
* @param {string} contentItemId
|
|
6515
|
-
* @param {
|
|
6547
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
6516
6548
|
* @param {*} [options] Override http request option.
|
|
6517
6549
|
* @throws {RequiredError}
|
|
6518
6550
|
*/
|
|
6519
|
-
contentItemsUpdate: (contentItemId: string,
|
|
6551
|
+
contentItemsUpdate: (contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6520
6552
|
};
|
|
6521
6553
|
/**
|
|
6522
6554
|
* ContentItemsApi - functional programming interface
|
|
@@ -6595,11 +6627,11 @@ declare const ContentItemsApiFp: (configuration?: Configuration) => {
|
|
|
6595
6627
|
*
|
|
6596
6628
|
* @summary Content Item Update
|
|
6597
6629
|
* @param {string} contentItemId
|
|
6598
|
-
* @param {
|
|
6630
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
6599
6631
|
* @param {*} [options] Override http request option.
|
|
6600
6632
|
* @throws {RequiredError}
|
|
6601
6633
|
*/
|
|
6602
|
-
contentItemsUpdate(contentItemId: string,
|
|
6634
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
6603
6635
|
};
|
|
6604
6636
|
/**
|
|
6605
6637
|
* ContentItemsApi - factory interface
|
|
@@ -6678,11 +6710,11 @@ declare const ContentItemsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6678
6710
|
*
|
|
6679
6711
|
* @summary Content Item Update
|
|
6680
6712
|
* @param {string} contentItemId
|
|
6681
|
-
* @param {
|
|
6713
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
6682
6714
|
* @param {*} [options] Override http request option.
|
|
6683
6715
|
* @throws {RequiredError}
|
|
6684
6716
|
*/
|
|
6685
|
-
contentItemsUpdate(contentItemId: string,
|
|
6717
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
6686
6718
|
};
|
|
6687
6719
|
/**
|
|
6688
6720
|
* ContentItemsApi - object-oriented interface
|
|
@@ -6770,12 +6802,12 @@ declare class ContentItemsApi extends BaseAPI {
|
|
|
6770
6802
|
*
|
|
6771
6803
|
* @summary Content Item Update
|
|
6772
6804
|
* @param {string} contentItemId
|
|
6773
|
-
* @param {
|
|
6805
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
6774
6806
|
* @param {*} [options] Override http request option.
|
|
6775
6807
|
* @throws {RequiredError}
|
|
6776
6808
|
* @memberof ContentItemsApi
|
|
6777
6809
|
*/
|
|
6778
|
-
contentItemsUpdate(contentItemId: string,
|
|
6810
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
6779
6811
|
}
|
|
6780
6812
|
/**
|
|
6781
6813
|
* ConversationsApi - axios parameter creator
|
|
@@ -8503,11 +8535,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8503
8535
|
/**
|
|
8504
8536
|
*
|
|
8505
8537
|
* @summary Ai Responses Create
|
|
8506
|
-
* @param {
|
|
8538
|
+
* @param {Create} create
|
|
8507
8539
|
* @param {*} [options] Override http request option.
|
|
8508
8540
|
* @throws {RequiredError}
|
|
8509
8541
|
*/
|
|
8510
|
-
aiResponsesCreate: (
|
|
8542
|
+
aiResponsesCreate: (create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8511
8543
|
/**
|
|
8512
8544
|
*
|
|
8513
8545
|
* @summary Communities Create
|
|
@@ -8722,11 +8754,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8722
8754
|
*
|
|
8723
8755
|
* @summary Content Item Update
|
|
8724
8756
|
* @param {string} contentItemId
|
|
8725
|
-
* @param {
|
|
8757
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
8726
8758
|
* @param {*} [options] Override http request option.
|
|
8727
8759
|
* @throws {RequiredError}
|
|
8728
8760
|
*/
|
|
8729
|
-
contentItemsUpdate: (contentItemId: string,
|
|
8761
|
+
contentItemsUpdate: (contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8730
8762
|
/**
|
|
8731
8763
|
*
|
|
8732
8764
|
* @summary Conversations Create
|
|
@@ -9184,11 +9216,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9184
9216
|
/**
|
|
9185
9217
|
*
|
|
9186
9218
|
* @summary Ai Responses Create
|
|
9187
|
-
* @param {
|
|
9219
|
+
* @param {Create} create
|
|
9188
9220
|
* @param {*} [options] Override http request option.
|
|
9189
9221
|
* @throws {RequiredError}
|
|
9190
9222
|
*/
|
|
9191
|
-
aiResponsesCreate(
|
|
9223
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AIResponse>>;
|
|
9192
9224
|
/**
|
|
9193
9225
|
*
|
|
9194
9226
|
* @summary Communities Create
|
|
@@ -9403,11 +9435,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9403
9435
|
*
|
|
9404
9436
|
* @summary Content Item Update
|
|
9405
9437
|
* @param {string} contentItemId
|
|
9406
|
-
* @param {
|
|
9438
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
9407
9439
|
* @param {*} [options] Override http request option.
|
|
9408
9440
|
* @throws {RequiredError}
|
|
9409
9441
|
*/
|
|
9410
|
-
contentItemsUpdate(contentItemId: string,
|
|
9442
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
9411
9443
|
/**
|
|
9412
9444
|
*
|
|
9413
9445
|
* @summary Conversations Create
|
|
@@ -9865,11 +9897,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9865
9897
|
/**
|
|
9866
9898
|
*
|
|
9867
9899
|
* @summary Ai Responses Create
|
|
9868
|
-
* @param {
|
|
9900
|
+
* @param {Create} create
|
|
9869
9901
|
* @param {*} [options] Override http request option.
|
|
9870
9902
|
* @throws {RequiredError}
|
|
9871
9903
|
*/
|
|
9872
|
-
aiResponsesCreate(
|
|
9904
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): AxiosPromise<AIResponse>;
|
|
9873
9905
|
/**
|
|
9874
9906
|
*
|
|
9875
9907
|
* @summary Communities Create
|
|
@@ -10084,11 +10116,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10084
10116
|
*
|
|
10085
10117
|
* @summary Content Item Update
|
|
10086
10118
|
* @param {string} contentItemId
|
|
10087
|
-
* @param {
|
|
10119
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
10088
10120
|
* @param {*} [options] Override http request option.
|
|
10089
10121
|
* @throws {RequiredError}
|
|
10090
10122
|
*/
|
|
10091
|
-
contentItemsUpdate(contentItemId: string,
|
|
10123
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
10092
10124
|
/**
|
|
10093
10125
|
*
|
|
10094
10126
|
* @summary Conversations Create
|
|
@@ -10553,12 +10585,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10553
10585
|
/**
|
|
10554
10586
|
*
|
|
10555
10587
|
* @summary Ai Responses Create
|
|
10556
|
-
* @param {
|
|
10588
|
+
* @param {Create} create
|
|
10557
10589
|
* @param {*} [options] Override http request option.
|
|
10558
10590
|
* @throws {RequiredError}
|
|
10559
10591
|
* @memberof UnboundApi
|
|
10560
10592
|
*/
|
|
10561
|
-
aiResponsesCreate(
|
|
10593
|
+
aiResponsesCreate(create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AIResponse, any>>;
|
|
10562
10594
|
/**
|
|
10563
10595
|
*
|
|
10564
10596
|
* @summary Communities Create
|
|
@@ -10796,12 +10828,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10796
10828
|
*
|
|
10797
10829
|
* @summary Content Item Update
|
|
10798
10830
|
* @param {string} contentItemId
|
|
10799
|
-
* @param {
|
|
10831
|
+
* @param {ContentItemUpdate} contentItemUpdate
|
|
10800
10832
|
* @param {*} [options] Override http request option.
|
|
10801
10833
|
* @throws {RequiredError}
|
|
10802
10834
|
* @memberof UnboundApi
|
|
10803
10835
|
*/
|
|
10804
|
-
contentItemsUpdate(contentItemId: string,
|
|
10836
|
+
contentItemsUpdate(contentItemId: string, contentItemUpdate: ContentItemUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
10805
10837
|
/**
|
|
10806
10838
|
*
|
|
10807
10839
|
* @summary Conversations Create
|
|
@@ -11348,4 +11380,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
11348
11380
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11349
11381
|
}
|
|
11350
11382
|
|
|
11351
|
-
export { type AIResponse,
|
|
11383
|
+
export { type AIResponse, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type ExternalStaff, ExternalStaffStaffTypeEnum, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InternalStaff, InternalStaffStaffTypeEnum, type LeadData, type ListResponseAccount, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, MessageDirection, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, type ProviderAddresses, type ProviderAttribution, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderEmails, type ProviderInfo, type ProviderPhones, type ProviderStaff, ProviderStaffStaffTypeEnum, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, ReservationChannelTypes, ReservationStatus, type ReservationVersion, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortBy, SortOrder, type Staff, StaffParticipantTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, type URLContent, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type Update, type UpdateContactListing, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, UpdateRelationTypeEnum, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestion };
|