@ember-home/unbound-ts-client 0.0.96 → 0.0.97
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 +1462 -62
- package/dist/index.d.ts +1462 -62
- package/dist/index.js +1920 -270
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1841 -191
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -292,6 +292,44 @@ interface APIAddressUpdate {
|
|
|
292
292
|
*/
|
|
293
293
|
'region'?: string | null;
|
|
294
294
|
}
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @export
|
|
298
|
+
* @interface APIAiResponse
|
|
299
|
+
*/
|
|
300
|
+
interface APIAiResponse {
|
|
301
|
+
/**
|
|
302
|
+
*
|
|
303
|
+
* @type {string}
|
|
304
|
+
* @memberof APIAiResponse
|
|
305
|
+
*/
|
|
306
|
+
'response': string;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* @export
|
|
311
|
+
* @interface APIAiResponseCreate
|
|
312
|
+
*/
|
|
313
|
+
interface APIAiResponseCreate {
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof APIAiResponseCreate
|
|
318
|
+
*/
|
|
319
|
+
'query': string;
|
|
320
|
+
/**
|
|
321
|
+
*
|
|
322
|
+
* @type {string}
|
|
323
|
+
* @memberof APIAiResponseCreate
|
|
324
|
+
*/
|
|
325
|
+
'listingId': string;
|
|
326
|
+
/**
|
|
327
|
+
*
|
|
328
|
+
* @type {string}
|
|
329
|
+
* @memberof APIAiResponseCreate
|
|
330
|
+
*/
|
|
331
|
+
'reservationId'?: string | null;
|
|
332
|
+
}
|
|
295
333
|
/**
|
|
296
334
|
*
|
|
297
335
|
* @export
|
|
@@ -444,10 +482,10 @@ interface APIContact {
|
|
|
444
482
|
'primaryAddress'?: BaseAddressApi | null;
|
|
445
483
|
/**
|
|
446
484
|
*
|
|
447
|
-
* @type {Array<
|
|
485
|
+
* @type {Array<SrcResourceModelsHelperModelsCustomBaseModelAddressApi1>}
|
|
448
486
|
* @memberof APIContact
|
|
449
487
|
*/
|
|
450
|
-
'addresses'?: Array<
|
|
488
|
+
'addresses'?: Array<SrcResourceModelsHelperModelsCustomBaseModelAddressApi1>;
|
|
451
489
|
/**
|
|
452
490
|
*
|
|
453
491
|
* @type {Array<ProviderEmailsApi>}
|
|
@@ -987,7 +1025,55 @@ interface APIListing {
|
|
|
987
1025
|
* @type {string}
|
|
988
1026
|
* @memberof APIListing
|
|
989
1027
|
*/
|
|
990
|
-
'
|
|
1028
|
+
'description'?: string | null;
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @type {number}
|
|
1032
|
+
* @memberof APIListing
|
|
1033
|
+
*/
|
|
1034
|
+
'accommodates'?: number | null;
|
|
1035
|
+
/**
|
|
1036
|
+
*
|
|
1037
|
+
* @type {object}
|
|
1038
|
+
* @memberof APIListing
|
|
1039
|
+
*/
|
|
1040
|
+
'address'?: object;
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @type {number}
|
|
1044
|
+
* @memberof APIListing
|
|
1045
|
+
*/
|
|
1046
|
+
'numBedrooms'?: number | null;
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @type {number}
|
|
1050
|
+
* @memberof APIListing
|
|
1051
|
+
*/
|
|
1052
|
+
'numBeds'?: number | null;
|
|
1053
|
+
/**
|
|
1054
|
+
*
|
|
1055
|
+
* @type {number}
|
|
1056
|
+
* @memberof APIListing
|
|
1057
|
+
*/
|
|
1058
|
+
'numBathrooms'?: number | null;
|
|
1059
|
+
/**
|
|
1060
|
+
*
|
|
1061
|
+
* @type {number}
|
|
1062
|
+
* @memberof APIListing
|
|
1063
|
+
*/
|
|
1064
|
+
'numFullBathrooms'?: number | null;
|
|
1065
|
+
/**
|
|
1066
|
+
*
|
|
1067
|
+
* @type {number}
|
|
1068
|
+
* @memberof APIListing
|
|
1069
|
+
*/
|
|
1070
|
+
'numHalfBathrooms'?: number | null;
|
|
1071
|
+
/**
|
|
1072
|
+
*
|
|
1073
|
+
* @type {string}
|
|
1074
|
+
* @memberof APIListing
|
|
1075
|
+
*/
|
|
1076
|
+
'listingPicUrl'?: string | null;
|
|
991
1077
|
/**
|
|
992
1078
|
*
|
|
993
1079
|
* @type {string}
|
|
@@ -1007,6 +1093,159 @@ interface APIListing {
|
|
|
1007
1093
|
*/
|
|
1008
1094
|
'providerAccountId': string;
|
|
1009
1095
|
}
|
|
1096
|
+
/**
|
|
1097
|
+
*
|
|
1098
|
+
* @export
|
|
1099
|
+
* @interface APIListingContent
|
|
1100
|
+
*/
|
|
1101
|
+
interface APIListingContent {
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @type {string}
|
|
1105
|
+
* @memberof APIListingContent
|
|
1106
|
+
*/
|
|
1107
|
+
'listingContentId': string;
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @type {string}
|
|
1111
|
+
* @memberof APIListingContent
|
|
1112
|
+
*/
|
|
1113
|
+
'listingId': string;
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof APIListingContent
|
|
1118
|
+
*/
|
|
1119
|
+
'title': string;
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {string}
|
|
1123
|
+
* @memberof APIListingContent
|
|
1124
|
+
*/
|
|
1125
|
+
'status'?: APIListingContentStatusEnum;
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {ListingContentVersionApi}
|
|
1129
|
+
* @memberof APIListingContent
|
|
1130
|
+
*/
|
|
1131
|
+
'currentVersion': ListingContentVersionApi;
|
|
1132
|
+
/**
|
|
1133
|
+
*
|
|
1134
|
+
* @type {Listingcontenttypedata}
|
|
1135
|
+
* @memberof APIListingContent
|
|
1136
|
+
*/
|
|
1137
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1138
|
+
/**
|
|
1139
|
+
*
|
|
1140
|
+
* @type {string}
|
|
1141
|
+
* @memberof APIListingContent
|
|
1142
|
+
*/
|
|
1143
|
+
'createdAt': string;
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @type {string}
|
|
1147
|
+
* @memberof APIListingContent
|
|
1148
|
+
*/
|
|
1149
|
+
'updatedAt': string;
|
|
1150
|
+
}
|
|
1151
|
+
declare const APIListingContentStatusEnum: {
|
|
1152
|
+
readonly Active: "active";
|
|
1153
|
+
readonly Deleted: "deleted";
|
|
1154
|
+
};
|
|
1155
|
+
type APIListingContentStatusEnum = typeof APIListingContentStatusEnum[keyof typeof APIListingContentStatusEnum];
|
|
1156
|
+
/**
|
|
1157
|
+
*
|
|
1158
|
+
* @export
|
|
1159
|
+
* @interface APIListingContentCreate
|
|
1160
|
+
*/
|
|
1161
|
+
interface APIListingContentCreate {
|
|
1162
|
+
/**
|
|
1163
|
+
*
|
|
1164
|
+
* @type {string}
|
|
1165
|
+
* @memberof APIListingContentCreate
|
|
1166
|
+
*/
|
|
1167
|
+
'title': string;
|
|
1168
|
+
/**
|
|
1169
|
+
*
|
|
1170
|
+
* @type {Listingcontenttypedata}
|
|
1171
|
+
* @memberof APIListingContentCreate
|
|
1172
|
+
*/
|
|
1173
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1174
|
+
}
|
|
1175
|
+
/**
|
|
1176
|
+
*
|
|
1177
|
+
* @export
|
|
1178
|
+
* @interface APIListingContentUpdate
|
|
1179
|
+
*/
|
|
1180
|
+
interface APIListingContentUpdate {
|
|
1181
|
+
/**
|
|
1182
|
+
*
|
|
1183
|
+
* @type {string}
|
|
1184
|
+
* @memberof APIListingContentUpdate
|
|
1185
|
+
*/
|
|
1186
|
+
'title'?: string | null;
|
|
1187
|
+
/**
|
|
1188
|
+
*
|
|
1189
|
+
* @type {Listingcontenttypedata1}
|
|
1190
|
+
* @memberof APIListingContentUpdate
|
|
1191
|
+
*/
|
|
1192
|
+
'listingContentTypeData'?: Listingcontenttypedata1 | null;
|
|
1193
|
+
}
|
|
1194
|
+
/**
|
|
1195
|
+
*
|
|
1196
|
+
* @export
|
|
1197
|
+
* @interface APIListingContentVersion
|
|
1198
|
+
*/
|
|
1199
|
+
interface APIListingContentVersion {
|
|
1200
|
+
/**
|
|
1201
|
+
*
|
|
1202
|
+
* @type {string}
|
|
1203
|
+
* @memberof APIListingContentVersion
|
|
1204
|
+
*/
|
|
1205
|
+
'listingContentVersionId': string;
|
|
1206
|
+
/**
|
|
1207
|
+
*
|
|
1208
|
+
* @type {string}
|
|
1209
|
+
* @memberof APIListingContentVersion
|
|
1210
|
+
*/
|
|
1211
|
+
'listingContentId': string;
|
|
1212
|
+
/**
|
|
1213
|
+
*
|
|
1214
|
+
* @type {string}
|
|
1215
|
+
* @memberof APIListingContentVersion
|
|
1216
|
+
*/
|
|
1217
|
+
'listingId': string;
|
|
1218
|
+
/**
|
|
1219
|
+
*
|
|
1220
|
+
* @type {number}
|
|
1221
|
+
* @memberof APIListingContentVersion
|
|
1222
|
+
*/
|
|
1223
|
+
'version': number;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {Listingcontenttypedata}
|
|
1227
|
+
* @memberof APIListingContentVersion
|
|
1228
|
+
*/
|
|
1229
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1230
|
+
/**
|
|
1231
|
+
*
|
|
1232
|
+
* @type {string}
|
|
1233
|
+
* @memberof APIListingContentVersion
|
|
1234
|
+
*/
|
|
1235
|
+
'createdAt': string;
|
|
1236
|
+
/**
|
|
1237
|
+
*
|
|
1238
|
+
* @type {string}
|
|
1239
|
+
* @memberof APIListingContentVersion
|
|
1240
|
+
*/
|
|
1241
|
+
'createdBy': string;
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @type {boolean}
|
|
1245
|
+
* @memberof APIListingContentVersion
|
|
1246
|
+
*/
|
|
1247
|
+
'isCurrent'?: boolean;
|
|
1248
|
+
}
|
|
1010
1249
|
/**
|
|
1011
1250
|
*
|
|
1012
1251
|
* @export
|
|
@@ -1638,55 +1877,6 @@ interface APIValidationError {
|
|
|
1638
1877
|
* @export
|
|
1639
1878
|
*/
|
|
1640
1879
|
type APIValidationErrorLocInner = number | string;
|
|
1641
|
-
/**
|
|
1642
|
-
*
|
|
1643
|
-
* @export
|
|
1644
|
-
* @interface AddressApi
|
|
1645
|
-
*/
|
|
1646
|
-
interface AddressApi {
|
|
1647
|
-
/**
|
|
1648
|
-
*
|
|
1649
|
-
* @type {string}
|
|
1650
|
-
* @memberof AddressApi
|
|
1651
|
-
*/
|
|
1652
|
-
'street1'?: string | null;
|
|
1653
|
-
/**
|
|
1654
|
-
*
|
|
1655
|
-
* @type {string}
|
|
1656
|
-
* @memberof AddressApi
|
|
1657
|
-
*/
|
|
1658
|
-
'street2'?: string | null;
|
|
1659
|
-
/**
|
|
1660
|
-
*
|
|
1661
|
-
* @type {string}
|
|
1662
|
-
* @memberof AddressApi
|
|
1663
|
-
*/
|
|
1664
|
-
'country'?: string | null;
|
|
1665
|
-
/**
|
|
1666
|
-
*
|
|
1667
|
-
* @type {string}
|
|
1668
|
-
* @memberof AddressApi
|
|
1669
|
-
*/
|
|
1670
|
-
'locality'?: string | null;
|
|
1671
|
-
/**
|
|
1672
|
-
*
|
|
1673
|
-
* @type {string}
|
|
1674
|
-
* @memberof AddressApi
|
|
1675
|
-
*/
|
|
1676
|
-
'postalCode'?: string | null;
|
|
1677
|
-
/**
|
|
1678
|
-
*
|
|
1679
|
-
* @type {string}
|
|
1680
|
-
* @memberof AddressApi
|
|
1681
|
-
*/
|
|
1682
|
-
'region'?: string | null;
|
|
1683
|
-
/**
|
|
1684
|
-
*
|
|
1685
|
-
* @type {string}
|
|
1686
|
-
* @memberof AddressApi
|
|
1687
|
-
*/
|
|
1688
|
-
'addressId': string;
|
|
1689
|
-
}
|
|
1690
1880
|
/**
|
|
1691
1881
|
*
|
|
1692
1882
|
* @export
|
|
@@ -2098,6 +2288,47 @@ declare const ExternalStaffApiStaffTypeEnum: {
|
|
|
2098
2288
|
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
2099
2289
|
};
|
|
2100
2290
|
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
* @export
|
|
2294
|
+
* @interface FileListingContentApi
|
|
2295
|
+
*/
|
|
2296
|
+
interface FileListingContentApi {
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
* @type {string}
|
|
2300
|
+
* @memberof FileListingContentApi
|
|
2301
|
+
*/
|
|
2302
|
+
'listingContentType': FileListingContentApiListingContentTypeEnum;
|
|
2303
|
+
/**
|
|
2304
|
+
*
|
|
2305
|
+
* @type {string}
|
|
2306
|
+
* @memberof FileListingContentApi
|
|
2307
|
+
*/
|
|
2308
|
+
'fileUrl': string;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {string}
|
|
2312
|
+
* @memberof FileListingContentApi
|
|
2313
|
+
*/
|
|
2314
|
+
'fileName': string;
|
|
2315
|
+
/**
|
|
2316
|
+
*
|
|
2317
|
+
* @type {number}
|
|
2318
|
+
* @memberof FileListingContentApi
|
|
2319
|
+
*/
|
|
2320
|
+
'fileSize': number;
|
|
2321
|
+
/**
|
|
2322
|
+
*
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof FileListingContentApi
|
|
2325
|
+
*/
|
|
2326
|
+
'mimeType': string;
|
|
2327
|
+
}
|
|
2328
|
+
declare const FileListingContentApiListingContentTypeEnum: {
|
|
2329
|
+
readonly File: "file";
|
|
2330
|
+
};
|
|
2331
|
+
type FileListingContentApiListingContentTypeEnum = typeof FileListingContentApiListingContentTypeEnum[keyof typeof FileListingContentApiListingContentTypeEnum];
|
|
2101
2332
|
/**
|
|
2102
2333
|
*
|
|
2103
2334
|
* @export
|
|
@@ -2257,6 +2488,32 @@ interface ListResponseAPIInquiry {
|
|
|
2257
2488
|
*/
|
|
2258
2489
|
'data': Array<APIInquiry>;
|
|
2259
2490
|
}
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
* @export
|
|
2494
|
+
* @interface ListResponseAPIListingContent
|
|
2495
|
+
*/
|
|
2496
|
+
interface ListResponseAPIListingContent {
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @type {Array<APIListingContent>}
|
|
2500
|
+
* @memberof ListResponseAPIListingContent
|
|
2501
|
+
*/
|
|
2502
|
+
'data': Array<APIListingContent>;
|
|
2503
|
+
}
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
* @export
|
|
2507
|
+
* @interface ListResponseAPIListingContentVersion
|
|
2508
|
+
*/
|
|
2509
|
+
interface ListResponseAPIListingContentVersion {
|
|
2510
|
+
/**
|
|
2511
|
+
*
|
|
2512
|
+
* @type {Array<APIListingContentVersion>}
|
|
2513
|
+
* @memberof ListResponseAPIListingContentVersion
|
|
2514
|
+
*/
|
|
2515
|
+
'data': Array<APIListingContentVersion>;
|
|
2516
|
+
}
|
|
2260
2517
|
/**
|
|
2261
2518
|
*
|
|
2262
2519
|
* @export
|
|
@@ -2286,15 +2543,80 @@ interface ListResponseAPIProvider {
|
|
|
2286
2543
|
/**
|
|
2287
2544
|
*
|
|
2288
2545
|
* @export
|
|
2289
|
-
* @interface
|
|
2546
|
+
* @interface ListingContentVersionApi
|
|
2290
2547
|
*/
|
|
2291
|
-
interface
|
|
2548
|
+
interface ListingContentVersionApi {
|
|
2292
2549
|
/**
|
|
2293
2550
|
*
|
|
2294
2551
|
* @type {string}
|
|
2295
|
-
* @memberof
|
|
2552
|
+
* @memberof ListingContentVersionApi
|
|
2296
2553
|
*/
|
|
2297
|
-
'
|
|
2554
|
+
'listingContentVersionId': string;
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
* @type {string}
|
|
2558
|
+
* @memberof ListingContentVersionApi
|
|
2559
|
+
*/
|
|
2560
|
+
'listingContentId': string;
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @type {string}
|
|
2564
|
+
* @memberof ListingContentVersionApi
|
|
2565
|
+
*/
|
|
2566
|
+
'listingId': string;
|
|
2567
|
+
/**
|
|
2568
|
+
*
|
|
2569
|
+
* @type {number}
|
|
2570
|
+
* @memberof ListingContentVersionApi
|
|
2571
|
+
*/
|
|
2572
|
+
'version': number;
|
|
2573
|
+
/**
|
|
2574
|
+
*
|
|
2575
|
+
* @type {Listingcontenttypedata}
|
|
2576
|
+
* @memberof ListingContentVersionApi
|
|
2577
|
+
*/
|
|
2578
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
2579
|
+
/**
|
|
2580
|
+
*
|
|
2581
|
+
* @type {string}
|
|
2582
|
+
* @memberof ListingContentVersionApi
|
|
2583
|
+
*/
|
|
2584
|
+
'createdAt': string;
|
|
2585
|
+
/**
|
|
2586
|
+
*
|
|
2587
|
+
* @type {string}
|
|
2588
|
+
* @memberof ListingContentVersionApi
|
|
2589
|
+
*/
|
|
2590
|
+
'createdBy': string;
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
* @type {boolean}
|
|
2594
|
+
* @memberof ListingContentVersionApi
|
|
2595
|
+
*/
|
|
2596
|
+
'isCurrent'?: boolean;
|
|
2597
|
+
}
|
|
2598
|
+
/**
|
|
2599
|
+
* @type Listingcontenttypedata
|
|
2600
|
+
* @export
|
|
2601
|
+
*/
|
|
2602
|
+
type Listingcontenttypedata = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
|
|
2603
|
+
/**
|
|
2604
|
+
* @type Listingcontenttypedata1
|
|
2605
|
+
* @export
|
|
2606
|
+
*/
|
|
2607
|
+
type Listingcontenttypedata1 = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
|
|
2608
|
+
/**
|
|
2609
|
+
*
|
|
2610
|
+
* @export
|
|
2611
|
+
* @interface MessageAttachmentApi
|
|
2612
|
+
*/
|
|
2613
|
+
interface MessageAttachmentApi {
|
|
2614
|
+
/**
|
|
2615
|
+
*
|
|
2616
|
+
* @type {string}
|
|
2617
|
+
* @memberof MessageAttachmentApi
|
|
2618
|
+
*/
|
|
2619
|
+
'url': string;
|
|
2298
2620
|
/**
|
|
2299
2621
|
*
|
|
2300
2622
|
* @type {string}
|
|
@@ -2603,6 +2925,29 @@ declare const PhoneInboxApiInboxTypeEnum: {
|
|
|
2603
2925
|
readonly Text: "TEXT";
|
|
2604
2926
|
};
|
|
2605
2927
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2928
|
+
/**
|
|
2929
|
+
*
|
|
2930
|
+
* @export
|
|
2931
|
+
* @interface PlainTextListingContentApi
|
|
2932
|
+
*/
|
|
2933
|
+
interface PlainTextListingContentApi {
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @type {string}
|
|
2937
|
+
* @memberof PlainTextListingContentApi
|
|
2938
|
+
*/
|
|
2939
|
+
'listingContentType': PlainTextListingContentApiListingContentTypeEnum;
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @type {string}
|
|
2943
|
+
* @memberof PlainTextListingContentApi
|
|
2944
|
+
*/
|
|
2945
|
+
'body': string;
|
|
2946
|
+
}
|
|
2947
|
+
declare const PlainTextListingContentApiListingContentTypeEnum: {
|
|
2948
|
+
readonly PlainText: "plain_text";
|
|
2949
|
+
};
|
|
2950
|
+
type PlainTextListingContentApiListingContentTypeEnum = typeof PlainTextListingContentApiListingContentTypeEnum[keyof typeof PlainTextListingContentApiListingContentTypeEnum];
|
|
2606
2951
|
/**
|
|
2607
2952
|
*
|
|
2608
2953
|
* @export
|
|
@@ -3109,6 +3454,55 @@ declare const SrcResourceModelsConversationsModelConversationsHelperModelsProvid
|
|
|
3109
3454
|
readonly Whatsapp: "WHATSAPP";
|
|
3110
3455
|
};
|
|
3111
3456
|
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
3457
|
+
/**
|
|
3458
|
+
*
|
|
3459
|
+
* @export
|
|
3460
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3461
|
+
*/
|
|
3462
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi1 {
|
|
3463
|
+
/**
|
|
3464
|
+
*
|
|
3465
|
+
* @type {string}
|
|
3466
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3467
|
+
*/
|
|
3468
|
+
'street1'?: string | null;
|
|
3469
|
+
/**
|
|
3470
|
+
*
|
|
3471
|
+
* @type {string}
|
|
3472
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3473
|
+
*/
|
|
3474
|
+
'street2'?: string | null;
|
|
3475
|
+
/**
|
|
3476
|
+
*
|
|
3477
|
+
* @type {string}
|
|
3478
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3479
|
+
*/
|
|
3480
|
+
'country'?: string | null;
|
|
3481
|
+
/**
|
|
3482
|
+
*
|
|
3483
|
+
* @type {string}
|
|
3484
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3485
|
+
*/
|
|
3486
|
+
'locality'?: string | null;
|
|
3487
|
+
/**
|
|
3488
|
+
*
|
|
3489
|
+
* @type {string}
|
|
3490
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3491
|
+
*/
|
|
3492
|
+
'postalCode'?: string | null;
|
|
3493
|
+
/**
|
|
3494
|
+
*
|
|
3495
|
+
* @type {string}
|
|
3496
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3497
|
+
*/
|
|
3498
|
+
'region'?: string | null;
|
|
3499
|
+
/**
|
|
3500
|
+
*
|
|
3501
|
+
* @type {string}
|
|
3502
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3503
|
+
*/
|
|
3504
|
+
'addressId': string;
|
|
3505
|
+
}
|
|
3112
3506
|
/**
|
|
3113
3507
|
*
|
|
3114
3508
|
* @export
|
|
@@ -3476,6 +3870,29 @@ interface ToPhoneApi {
|
|
|
3476
3870
|
*/
|
|
3477
3871
|
'contactId'?: string | null;
|
|
3478
3872
|
}
|
|
3873
|
+
/**
|
|
3874
|
+
*
|
|
3875
|
+
* @export
|
|
3876
|
+
* @interface URLListingContentApi
|
|
3877
|
+
*/
|
|
3878
|
+
interface URLListingContentApi {
|
|
3879
|
+
/**
|
|
3880
|
+
*
|
|
3881
|
+
* @type {string}
|
|
3882
|
+
* @memberof URLListingContentApi
|
|
3883
|
+
*/
|
|
3884
|
+
'listingContentType': URLListingContentApiListingContentTypeEnum;
|
|
3885
|
+
/**
|
|
3886
|
+
*
|
|
3887
|
+
* @type {string}
|
|
3888
|
+
* @memberof URLListingContentApi
|
|
3889
|
+
*/
|
|
3890
|
+
'url': string;
|
|
3891
|
+
}
|
|
3892
|
+
declare const URLListingContentApiListingContentTypeEnum: {
|
|
3893
|
+
readonly Url: "url";
|
|
3894
|
+
};
|
|
3895
|
+
type URLListingContentApiListingContentTypeEnum = typeof URLListingContentApiListingContentTypeEnum[keyof typeof URLListingContentApiListingContentTypeEnum];
|
|
3479
3896
|
/**
|
|
3480
3897
|
*
|
|
3481
3898
|
* @export
|
|
@@ -3501,6 +3918,68 @@ interface UpdateContactListing {
|
|
|
3501
3918
|
*/
|
|
3502
3919
|
'endDate'?: string | null;
|
|
3503
3920
|
}
|
|
3921
|
+
/**
|
|
3922
|
+
* Request model for generating signed upload URLs.
|
|
3923
|
+
* @export
|
|
3924
|
+
* @interface UploadURLRequest
|
|
3925
|
+
*/
|
|
3926
|
+
interface UploadURLRequest {
|
|
3927
|
+
/**
|
|
3928
|
+
*
|
|
3929
|
+
* @type {string}
|
|
3930
|
+
* @memberof UploadURLRequest
|
|
3931
|
+
*/
|
|
3932
|
+
'file_name': string;
|
|
3933
|
+
/**
|
|
3934
|
+
*
|
|
3935
|
+
* @type {string}
|
|
3936
|
+
* @memberof UploadURLRequest
|
|
3937
|
+
*/
|
|
3938
|
+
'mime_type': string;
|
|
3939
|
+
/**
|
|
3940
|
+
*
|
|
3941
|
+
* @type {number}
|
|
3942
|
+
* @memberof UploadURLRequest
|
|
3943
|
+
*/
|
|
3944
|
+
'file_size': number;
|
|
3945
|
+
}
|
|
3946
|
+
/**
|
|
3947
|
+
* Response model for signed upload URL generation.
|
|
3948
|
+
* @export
|
|
3949
|
+
* @interface UploadURLResponse
|
|
3950
|
+
*/
|
|
3951
|
+
interface UploadURLResponse {
|
|
3952
|
+
/**
|
|
3953
|
+
*
|
|
3954
|
+
* @type {string}
|
|
3955
|
+
* @memberof UploadURLResponse
|
|
3956
|
+
*/
|
|
3957
|
+
'upload_url': string;
|
|
3958
|
+
/**
|
|
3959
|
+
*
|
|
3960
|
+
* @type {string}
|
|
3961
|
+
* @memberof UploadURLResponse
|
|
3962
|
+
*/
|
|
3963
|
+
'upload_method': string;
|
|
3964
|
+
/**
|
|
3965
|
+
*
|
|
3966
|
+
* @type {object}
|
|
3967
|
+
* @memberof UploadURLResponse
|
|
3968
|
+
*/
|
|
3969
|
+
'upload_headers': object;
|
|
3970
|
+
/**
|
|
3971
|
+
*
|
|
3972
|
+
* @type {string}
|
|
3973
|
+
* @memberof UploadURLResponse
|
|
3974
|
+
*/
|
|
3975
|
+
'file_url': string;
|
|
3976
|
+
/**
|
|
3977
|
+
*
|
|
3978
|
+
* @type {string}
|
|
3979
|
+
* @memberof UploadURLResponse
|
|
3980
|
+
*/
|
|
3981
|
+
'expires_at': string;
|
|
3982
|
+
}
|
|
3504
3983
|
/**
|
|
3505
3984
|
*
|
|
3506
3985
|
* @export
|
|
@@ -3647,6 +4126,65 @@ declare class AccountsApi extends BaseAPI {
|
|
|
3647
4126
|
*/
|
|
3648
4127
|
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
|
|
3649
4128
|
}
|
|
4129
|
+
/**
|
|
4130
|
+
* AiResponsesApi - axios parameter creator
|
|
4131
|
+
* @export
|
|
4132
|
+
*/
|
|
4133
|
+
declare const AiResponsesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4134
|
+
/**
|
|
4135
|
+
* AiResponses Create
|
|
4136
|
+
* @summary AiResponses Create
|
|
4137
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4138
|
+
* @param {*} [options] Override http request option.
|
|
4139
|
+
* @throws {RequiredError}
|
|
4140
|
+
*/
|
|
4141
|
+
aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4142
|
+
};
|
|
4143
|
+
/**
|
|
4144
|
+
* AiResponsesApi - functional programming interface
|
|
4145
|
+
* @export
|
|
4146
|
+
*/
|
|
4147
|
+
declare const AiResponsesApiFp: (configuration?: Configuration) => {
|
|
4148
|
+
/**
|
|
4149
|
+
* AiResponses Create
|
|
4150
|
+
* @summary AiResponses Create
|
|
4151
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4152
|
+
* @param {*} [options] Override http request option.
|
|
4153
|
+
* @throws {RequiredError}
|
|
4154
|
+
*/
|
|
4155
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAiResponse>>;
|
|
4156
|
+
};
|
|
4157
|
+
/**
|
|
4158
|
+
* AiResponsesApi - factory interface
|
|
4159
|
+
* @export
|
|
4160
|
+
*/
|
|
4161
|
+
declare const AiResponsesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4162
|
+
/**
|
|
4163
|
+
* AiResponses Create
|
|
4164
|
+
* @summary AiResponses Create
|
|
4165
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4166
|
+
* @param {*} [options] Override http request option.
|
|
4167
|
+
* @throws {RequiredError}
|
|
4168
|
+
*/
|
|
4169
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAiResponse>;
|
|
4170
|
+
};
|
|
4171
|
+
/**
|
|
4172
|
+
* AiResponsesApi - object-oriented interface
|
|
4173
|
+
* @export
|
|
4174
|
+
* @class AiResponsesApi
|
|
4175
|
+
* @extends {BaseAPI}
|
|
4176
|
+
*/
|
|
4177
|
+
declare class AiResponsesApi extends BaseAPI {
|
|
4178
|
+
/**
|
|
4179
|
+
* AiResponses Create
|
|
4180
|
+
* @summary AiResponses Create
|
|
4181
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4182
|
+
* @param {*} [options] Override http request option.
|
|
4183
|
+
* @throws {RequiredError}
|
|
4184
|
+
* @memberof AiResponsesApi
|
|
4185
|
+
*/
|
|
4186
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAiResponse, any>>;
|
|
4187
|
+
}
|
|
3650
4188
|
/**
|
|
3651
4189
|
* AuthApi - axios parameter creator
|
|
3652
4190
|
* @export
|
|
@@ -4961,20 +5499,435 @@ declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4961
5499
|
*/
|
|
4962
5500
|
declare class InquiriesApi extends BaseAPI {
|
|
4963
5501
|
/**
|
|
4964
|
-
* List all listings
|
|
4965
|
-
* @summary Inquiries List
|
|
4966
|
-
* @param {string} [contactId]
|
|
5502
|
+
* List all listings
|
|
5503
|
+
* @summary Inquiries List
|
|
5504
|
+
* @param {string} [contactId]
|
|
5505
|
+
* @param {*} [options] Override http request option.
|
|
5506
|
+
* @throws {RequiredError}
|
|
5507
|
+
* @memberof InquiriesApi
|
|
5508
|
+
*/
|
|
5509
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
5510
|
+
}
|
|
5511
|
+
/**
|
|
5512
|
+
* ListingContentApi - axios parameter creator
|
|
5513
|
+
* @export
|
|
5514
|
+
*/
|
|
5515
|
+
declare const ListingContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5516
|
+
/**
|
|
5517
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
5518
|
+
* @summary Generate Listing Content Upload Url
|
|
5519
|
+
* @param {string} listingId
|
|
5520
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5521
|
+
* @param {*} [options] Override http request option.
|
|
5522
|
+
* @throws {RequiredError}
|
|
5523
|
+
*/
|
|
5524
|
+
generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5525
|
+
/**
|
|
5526
|
+
* ListingContent Create
|
|
5527
|
+
* @summary ListingContent Create
|
|
5528
|
+
* @param {string} listingId
|
|
5529
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5530
|
+
* @param {*} [options] Override http request option.
|
|
5531
|
+
* @throws {RequiredError}
|
|
5532
|
+
*/
|
|
5533
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5534
|
+
/**
|
|
5535
|
+
* ListingContent Delete
|
|
5536
|
+
* @summary ListingContent Delete
|
|
5537
|
+
* @param {string} listingContentId
|
|
5538
|
+
* @param {*} [options] Override http request option.
|
|
5539
|
+
* @throws {RequiredError}
|
|
5540
|
+
*/
|
|
5541
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5542
|
+
/**
|
|
5543
|
+
* ListingContent Get
|
|
5544
|
+
* @summary ListingContent Get
|
|
5545
|
+
* @param {string} listingContentId
|
|
5546
|
+
* @param {*} [options] Override http request option.
|
|
5547
|
+
* @throws {RequiredError}
|
|
5548
|
+
*/
|
|
5549
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5550
|
+
/**
|
|
5551
|
+
* ListingContent List
|
|
5552
|
+
* @summary ListingContent List
|
|
5553
|
+
* @param {string} [listingId]
|
|
5554
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5555
|
+
* @param {*} [options] Override http request option.
|
|
5556
|
+
* @throws {RequiredError}
|
|
5557
|
+
*/
|
|
5558
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5559
|
+
/**
|
|
5560
|
+
* ListingContent Update
|
|
5561
|
+
* @summary ListingContent Update
|
|
5562
|
+
* @param {string} listingContentId
|
|
5563
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5564
|
+
* @param {*} [options] Override http request option.
|
|
5565
|
+
* @throws {RequiredError}
|
|
5566
|
+
*/
|
|
5567
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5568
|
+
/**
|
|
5569
|
+
* ListingContentVersions Get
|
|
5570
|
+
* @summary ListingContentVersions Get
|
|
5571
|
+
* @param {string} listingContentVersionId
|
|
5572
|
+
* @param {*} [options] Override http request option.
|
|
5573
|
+
* @throws {RequiredError}
|
|
5574
|
+
*/
|
|
5575
|
+
listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5576
|
+
/**
|
|
5577
|
+
* ListingContentVersions Get
|
|
5578
|
+
* @summary ListingContentVersions Get
|
|
5579
|
+
* @param {string} listingContentVersionId
|
|
5580
|
+
* @param {*} [options] Override http request option.
|
|
5581
|
+
* @throws {RequiredError}
|
|
5582
|
+
*/
|
|
5583
|
+
listingContentVersionsGet_1: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5584
|
+
/**
|
|
5585
|
+
* ListingContentVersions List
|
|
5586
|
+
* @summary ListingContentVersions List
|
|
5587
|
+
* @param {string} [listingContentId]
|
|
5588
|
+
* @param {*} [options] Override http request option.
|
|
5589
|
+
* @throws {RequiredError}
|
|
5590
|
+
*/
|
|
5591
|
+
listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5592
|
+
/**
|
|
5593
|
+
* ListingContentVersions List
|
|
5594
|
+
* @summary ListingContentVersions List
|
|
5595
|
+
* @param {string} [listingContentId]
|
|
5596
|
+
* @param {*} [options] Override http request option.
|
|
5597
|
+
* @throws {RequiredError}
|
|
5598
|
+
*/
|
|
5599
|
+
listingContentVersionsList_2: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5600
|
+
};
|
|
5601
|
+
/**
|
|
5602
|
+
* ListingContentApi - functional programming interface
|
|
5603
|
+
* @export
|
|
5604
|
+
*/
|
|
5605
|
+
declare const ListingContentApiFp: (configuration?: Configuration) => {
|
|
5606
|
+
/**
|
|
5607
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
5608
|
+
* @summary Generate Listing Content Upload Url
|
|
5609
|
+
* @param {string} listingId
|
|
5610
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5611
|
+
* @param {*} [options] Override http request option.
|
|
5612
|
+
* @throws {RequiredError}
|
|
5613
|
+
*/
|
|
5614
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
5615
|
+
/**
|
|
5616
|
+
* ListingContent Create
|
|
5617
|
+
* @summary ListingContent Create
|
|
5618
|
+
* @param {string} listingId
|
|
5619
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5620
|
+
* @param {*} [options] Override http request option.
|
|
5621
|
+
* @throws {RequiredError}
|
|
5622
|
+
*/
|
|
5623
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5624
|
+
/**
|
|
5625
|
+
* ListingContent Delete
|
|
5626
|
+
* @summary ListingContent Delete
|
|
5627
|
+
* @param {string} listingContentId
|
|
5628
|
+
* @param {*} [options] Override http request option.
|
|
5629
|
+
* @throws {RequiredError}
|
|
5630
|
+
*/
|
|
5631
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5632
|
+
/**
|
|
5633
|
+
* ListingContent Get
|
|
5634
|
+
* @summary ListingContent Get
|
|
5635
|
+
* @param {string} listingContentId
|
|
5636
|
+
* @param {*} [options] Override http request option.
|
|
5637
|
+
* @throws {RequiredError}
|
|
5638
|
+
*/
|
|
5639
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5640
|
+
/**
|
|
5641
|
+
* ListingContent List
|
|
5642
|
+
* @summary ListingContent List
|
|
5643
|
+
* @param {string} [listingId]
|
|
5644
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5645
|
+
* @param {*} [options] Override http request option.
|
|
5646
|
+
* @throws {RequiredError}
|
|
5647
|
+
*/
|
|
5648
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
5649
|
+
/**
|
|
5650
|
+
* ListingContent Update
|
|
5651
|
+
* @summary ListingContent Update
|
|
5652
|
+
* @param {string} listingContentId
|
|
5653
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5654
|
+
* @param {*} [options] Override http request option.
|
|
5655
|
+
* @throws {RequiredError}
|
|
5656
|
+
*/
|
|
5657
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5658
|
+
/**
|
|
5659
|
+
* ListingContentVersions Get
|
|
5660
|
+
* @summary ListingContentVersions Get
|
|
5661
|
+
* @param {string} listingContentVersionId
|
|
5662
|
+
* @param {*} [options] Override http request option.
|
|
5663
|
+
* @throws {RequiredError}
|
|
5664
|
+
*/
|
|
5665
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
5666
|
+
/**
|
|
5667
|
+
* ListingContentVersions Get
|
|
5668
|
+
* @summary ListingContentVersions Get
|
|
5669
|
+
* @param {string} listingContentVersionId
|
|
5670
|
+
* @param {*} [options] Override http request option.
|
|
5671
|
+
* @throws {RequiredError}
|
|
5672
|
+
*/
|
|
5673
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
5674
|
+
/**
|
|
5675
|
+
* ListingContentVersions List
|
|
5676
|
+
* @summary ListingContentVersions List
|
|
5677
|
+
* @param {string} [listingContentId]
|
|
5678
|
+
* @param {*} [options] Override http request option.
|
|
5679
|
+
* @throws {RequiredError}
|
|
5680
|
+
*/
|
|
5681
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
5682
|
+
/**
|
|
5683
|
+
* ListingContentVersions List
|
|
5684
|
+
* @summary ListingContentVersions List
|
|
5685
|
+
* @param {string} [listingContentId]
|
|
5686
|
+
* @param {*} [options] Override http request option.
|
|
5687
|
+
* @throws {RequiredError}
|
|
5688
|
+
*/
|
|
5689
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
5690
|
+
};
|
|
5691
|
+
/**
|
|
5692
|
+
* ListingContentApi - factory interface
|
|
5693
|
+
* @export
|
|
5694
|
+
*/
|
|
5695
|
+
declare const ListingContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5696
|
+
/**
|
|
5697
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
5698
|
+
* @summary Generate Listing Content Upload Url
|
|
5699
|
+
* @param {string} listingId
|
|
5700
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5701
|
+
* @param {*} [options] Override http request option.
|
|
5702
|
+
* @throws {RequiredError}
|
|
5703
|
+
*/
|
|
5704
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
5705
|
+
/**
|
|
5706
|
+
* ListingContent Create
|
|
5707
|
+
* @summary ListingContent Create
|
|
5708
|
+
* @param {string} listingId
|
|
5709
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5710
|
+
* @param {*} [options] Override http request option.
|
|
5711
|
+
* @throws {RequiredError}
|
|
5712
|
+
*/
|
|
5713
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5714
|
+
/**
|
|
5715
|
+
* ListingContent Delete
|
|
5716
|
+
* @summary ListingContent Delete
|
|
5717
|
+
* @param {string} listingContentId
|
|
5718
|
+
* @param {*} [options] Override http request option.
|
|
5719
|
+
* @throws {RequiredError}
|
|
5720
|
+
*/
|
|
5721
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5722
|
+
/**
|
|
5723
|
+
* ListingContent Get
|
|
5724
|
+
* @summary ListingContent Get
|
|
5725
|
+
* @param {string} listingContentId
|
|
5726
|
+
* @param {*} [options] Override http request option.
|
|
5727
|
+
* @throws {RequiredError}
|
|
5728
|
+
*/
|
|
5729
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5730
|
+
/**
|
|
5731
|
+
* ListingContent List
|
|
5732
|
+
* @summary ListingContent List
|
|
5733
|
+
* @param {string} [listingId]
|
|
5734
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5735
|
+
* @param {*} [options] Override http request option.
|
|
5736
|
+
* @throws {RequiredError}
|
|
5737
|
+
*/
|
|
5738
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
5739
|
+
/**
|
|
5740
|
+
* ListingContent Update
|
|
5741
|
+
* @summary ListingContent Update
|
|
5742
|
+
* @param {string} listingContentId
|
|
5743
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5744
|
+
* @param {*} [options] Override http request option.
|
|
5745
|
+
* @throws {RequiredError}
|
|
5746
|
+
*/
|
|
5747
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5748
|
+
/**
|
|
5749
|
+
* ListingContentVersions Get
|
|
5750
|
+
* @summary ListingContentVersions Get
|
|
5751
|
+
* @param {string} listingContentVersionId
|
|
5752
|
+
* @param {*} [options] Override http request option.
|
|
5753
|
+
* @throws {RequiredError}
|
|
5754
|
+
*/
|
|
5755
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
5756
|
+
/**
|
|
5757
|
+
* ListingContentVersions Get
|
|
5758
|
+
* @summary ListingContentVersions Get
|
|
5759
|
+
* @param {string} listingContentVersionId
|
|
5760
|
+
* @param {*} [options] Override http request option.
|
|
5761
|
+
* @throws {RequiredError}
|
|
5762
|
+
*/
|
|
5763
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
5764
|
+
/**
|
|
5765
|
+
* ListingContentVersions List
|
|
5766
|
+
* @summary ListingContentVersions List
|
|
5767
|
+
* @param {string} [listingContentId]
|
|
5768
|
+
* @param {*} [options] Override http request option.
|
|
5769
|
+
* @throws {RequiredError}
|
|
5770
|
+
*/
|
|
5771
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
5772
|
+
/**
|
|
5773
|
+
* ListingContentVersions List
|
|
5774
|
+
* @summary ListingContentVersions List
|
|
5775
|
+
* @param {string} [listingContentId]
|
|
5776
|
+
* @param {*} [options] Override http request option.
|
|
5777
|
+
* @throws {RequiredError}
|
|
5778
|
+
*/
|
|
5779
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
5780
|
+
};
|
|
5781
|
+
/**
|
|
5782
|
+
* ListingContentApi - object-oriented interface
|
|
5783
|
+
* @export
|
|
5784
|
+
* @class ListingContentApi
|
|
5785
|
+
* @extends {BaseAPI}
|
|
5786
|
+
*/
|
|
5787
|
+
declare class ListingContentApi extends BaseAPI {
|
|
5788
|
+
/**
|
|
5789
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
5790
|
+
* @summary Generate Listing Content Upload Url
|
|
5791
|
+
* @param {string} listingId
|
|
5792
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5793
|
+
* @param {*} [options] Override http request option.
|
|
5794
|
+
* @throws {RequiredError}
|
|
5795
|
+
* @memberof ListingContentApi
|
|
5796
|
+
*/
|
|
5797
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
5798
|
+
/**
|
|
5799
|
+
* ListingContent Create
|
|
5800
|
+
* @summary ListingContent Create
|
|
5801
|
+
* @param {string} listingId
|
|
5802
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5803
|
+
* @param {*} [options] Override http request option.
|
|
5804
|
+
* @throws {RequiredError}
|
|
5805
|
+
* @memberof ListingContentApi
|
|
5806
|
+
*/
|
|
5807
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5808
|
+
/**
|
|
5809
|
+
* ListingContent Delete
|
|
5810
|
+
* @summary ListingContent Delete
|
|
5811
|
+
* @param {string} listingContentId
|
|
5812
|
+
* @param {*} [options] Override http request option.
|
|
5813
|
+
* @throws {RequiredError}
|
|
5814
|
+
* @memberof ListingContentApi
|
|
5815
|
+
*/
|
|
5816
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5817
|
+
/**
|
|
5818
|
+
* ListingContent Get
|
|
5819
|
+
* @summary ListingContent Get
|
|
5820
|
+
* @param {string} listingContentId
|
|
5821
|
+
* @param {*} [options] Override http request option.
|
|
5822
|
+
* @throws {RequiredError}
|
|
5823
|
+
* @memberof ListingContentApi
|
|
5824
|
+
*/
|
|
5825
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5826
|
+
/**
|
|
5827
|
+
* ListingContent List
|
|
5828
|
+
* @summary ListingContent List
|
|
5829
|
+
* @param {string} [listingId]
|
|
5830
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5831
|
+
* @param {*} [options] Override http request option.
|
|
5832
|
+
* @throws {RequiredError}
|
|
5833
|
+
* @memberof ListingContentApi
|
|
5834
|
+
*/
|
|
5835
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
5836
|
+
/**
|
|
5837
|
+
* ListingContent Update
|
|
5838
|
+
* @summary ListingContent Update
|
|
5839
|
+
* @param {string} listingContentId
|
|
5840
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5841
|
+
* @param {*} [options] Override http request option.
|
|
5842
|
+
* @throws {RequiredError}
|
|
5843
|
+
* @memberof ListingContentApi
|
|
5844
|
+
*/
|
|
5845
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5846
|
+
/**
|
|
5847
|
+
* ListingContentVersions Get
|
|
5848
|
+
* @summary ListingContentVersions Get
|
|
5849
|
+
* @param {string} listingContentVersionId
|
|
5850
|
+
* @param {*} [options] Override http request option.
|
|
5851
|
+
* @throws {RequiredError}
|
|
5852
|
+
* @memberof ListingContentApi
|
|
5853
|
+
*/
|
|
5854
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
5855
|
+
/**
|
|
5856
|
+
* ListingContentVersions Get
|
|
5857
|
+
* @summary ListingContentVersions Get
|
|
5858
|
+
* @param {string} listingContentVersionId
|
|
5859
|
+
* @param {*} [options] Override http request option.
|
|
5860
|
+
* @throws {RequiredError}
|
|
5861
|
+
* @memberof ListingContentApi
|
|
5862
|
+
*/
|
|
5863
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
5864
|
+
/**
|
|
5865
|
+
* ListingContentVersions List
|
|
5866
|
+
* @summary ListingContentVersions List
|
|
5867
|
+
* @param {string} [listingContentId]
|
|
5868
|
+
* @param {*} [options] Override http request option.
|
|
5869
|
+
* @throws {RequiredError}
|
|
5870
|
+
* @memberof ListingContentApi
|
|
5871
|
+
*/
|
|
5872
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
5873
|
+
/**
|
|
5874
|
+
* ListingContentVersions List
|
|
5875
|
+
* @summary ListingContentVersions List
|
|
5876
|
+
* @param {string} [listingContentId]
|
|
4967
5877
|
* @param {*} [options] Override http request option.
|
|
4968
5878
|
* @throws {RequiredError}
|
|
4969
|
-
* @memberof
|
|
5879
|
+
* @memberof ListingContentApi
|
|
4970
5880
|
*/
|
|
4971
|
-
|
|
5881
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
4972
5882
|
}
|
|
4973
5883
|
/**
|
|
4974
5884
|
* ListingsApi - axios parameter creator
|
|
4975
5885
|
* @export
|
|
4976
5886
|
*/
|
|
4977
5887
|
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5888
|
+
/**
|
|
5889
|
+
* ListingContent Create
|
|
5890
|
+
* @summary ListingContent Create
|
|
5891
|
+
* @param {string} listingId
|
|
5892
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5893
|
+
* @param {*} [options] Override http request option.
|
|
5894
|
+
* @throws {RequiredError}
|
|
5895
|
+
*/
|
|
5896
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5897
|
+
/**
|
|
5898
|
+
* ListingContent Delete
|
|
5899
|
+
* @summary ListingContent Delete
|
|
5900
|
+
* @param {string} listingContentId
|
|
5901
|
+
* @param {*} [options] Override http request option.
|
|
5902
|
+
* @throws {RequiredError}
|
|
5903
|
+
*/
|
|
5904
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5905
|
+
/**
|
|
5906
|
+
* ListingContent Get
|
|
5907
|
+
* @summary ListingContent Get
|
|
5908
|
+
* @param {string} listingContentId
|
|
5909
|
+
* @param {*} [options] Override http request option.
|
|
5910
|
+
* @throws {RequiredError}
|
|
5911
|
+
*/
|
|
5912
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5913
|
+
/**
|
|
5914
|
+
* ListingContent List
|
|
5915
|
+
* @summary ListingContent List
|
|
5916
|
+
* @param {string} [listingId]
|
|
5917
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5918
|
+
* @param {*} [options] Override http request option.
|
|
5919
|
+
* @throws {RequiredError}
|
|
5920
|
+
*/
|
|
5921
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5922
|
+
/**
|
|
5923
|
+
* ListingContent Update
|
|
5924
|
+
* @summary ListingContent Update
|
|
5925
|
+
* @param {string} listingContentId
|
|
5926
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5927
|
+
* @param {*} [options] Override http request option.
|
|
5928
|
+
* @throws {RequiredError}
|
|
5929
|
+
*/
|
|
5930
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4978
5931
|
/**
|
|
4979
5932
|
* Listings Get
|
|
4980
5933
|
* @summary Listings Get
|
|
@@ -5003,6 +5956,49 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5003
5956
|
* @export
|
|
5004
5957
|
*/
|
|
5005
5958
|
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
5959
|
+
/**
|
|
5960
|
+
* ListingContent Create
|
|
5961
|
+
* @summary ListingContent Create
|
|
5962
|
+
* @param {string} listingId
|
|
5963
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5964
|
+
* @param {*} [options] Override http request option.
|
|
5965
|
+
* @throws {RequiredError}
|
|
5966
|
+
*/
|
|
5967
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5968
|
+
/**
|
|
5969
|
+
* ListingContent Delete
|
|
5970
|
+
* @summary ListingContent Delete
|
|
5971
|
+
* @param {string} listingContentId
|
|
5972
|
+
* @param {*} [options] Override http request option.
|
|
5973
|
+
* @throws {RequiredError}
|
|
5974
|
+
*/
|
|
5975
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5976
|
+
/**
|
|
5977
|
+
* ListingContent Get
|
|
5978
|
+
* @summary ListingContent Get
|
|
5979
|
+
* @param {string} listingContentId
|
|
5980
|
+
* @param {*} [options] Override http request option.
|
|
5981
|
+
* @throws {RequiredError}
|
|
5982
|
+
*/
|
|
5983
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5984
|
+
/**
|
|
5985
|
+
* ListingContent List
|
|
5986
|
+
* @summary ListingContent List
|
|
5987
|
+
* @param {string} [listingId]
|
|
5988
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5989
|
+
* @param {*} [options] Override http request option.
|
|
5990
|
+
* @throws {RequiredError}
|
|
5991
|
+
*/
|
|
5992
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
5993
|
+
/**
|
|
5994
|
+
* ListingContent Update
|
|
5995
|
+
* @summary ListingContent Update
|
|
5996
|
+
* @param {string} listingContentId
|
|
5997
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5998
|
+
* @param {*} [options] Override http request option.
|
|
5999
|
+
* @throws {RequiredError}
|
|
6000
|
+
*/
|
|
6001
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5006
6002
|
/**
|
|
5007
6003
|
* Listings Get
|
|
5008
6004
|
* @summary Listings Get
|
|
@@ -5031,6 +6027,49 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
5031
6027
|
* @export
|
|
5032
6028
|
*/
|
|
5033
6029
|
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6030
|
+
/**
|
|
6031
|
+
* ListingContent Create
|
|
6032
|
+
* @summary ListingContent Create
|
|
6033
|
+
* @param {string} listingId
|
|
6034
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6035
|
+
* @param {*} [options] Override http request option.
|
|
6036
|
+
* @throws {RequiredError}
|
|
6037
|
+
*/
|
|
6038
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
6039
|
+
/**
|
|
6040
|
+
* ListingContent Delete
|
|
6041
|
+
* @summary ListingContent Delete
|
|
6042
|
+
* @param {string} listingContentId
|
|
6043
|
+
* @param {*} [options] Override http request option.
|
|
6044
|
+
* @throws {RequiredError}
|
|
6045
|
+
*/
|
|
6046
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6047
|
+
/**
|
|
6048
|
+
* ListingContent Get
|
|
6049
|
+
* @summary ListingContent Get
|
|
6050
|
+
* @param {string} listingContentId
|
|
6051
|
+
* @param {*} [options] Override http request option.
|
|
6052
|
+
* @throws {RequiredError}
|
|
6053
|
+
*/
|
|
6054
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
6055
|
+
/**
|
|
6056
|
+
* ListingContent List
|
|
6057
|
+
* @summary ListingContent List
|
|
6058
|
+
* @param {string} [listingId]
|
|
6059
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6060
|
+
* @param {*} [options] Override http request option.
|
|
6061
|
+
* @throws {RequiredError}
|
|
6062
|
+
*/
|
|
6063
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
6064
|
+
/**
|
|
6065
|
+
* ListingContent Update
|
|
6066
|
+
* @summary ListingContent Update
|
|
6067
|
+
* @param {string} listingContentId
|
|
6068
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6069
|
+
* @param {*} [options] Override http request option.
|
|
6070
|
+
* @throws {RequiredError}
|
|
6071
|
+
*/
|
|
6072
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5034
6073
|
/**
|
|
5035
6074
|
* Listings Get
|
|
5036
6075
|
* @summary Listings Get
|
|
@@ -5061,6 +6100,54 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5061
6100
|
* @extends {BaseAPI}
|
|
5062
6101
|
*/
|
|
5063
6102
|
declare class ListingsApi extends BaseAPI {
|
|
6103
|
+
/**
|
|
6104
|
+
* ListingContent Create
|
|
6105
|
+
* @summary ListingContent Create
|
|
6106
|
+
* @param {string} listingId
|
|
6107
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6108
|
+
* @param {*} [options] Override http request option.
|
|
6109
|
+
* @throws {RequiredError}
|
|
6110
|
+
* @memberof ListingsApi
|
|
6111
|
+
*/
|
|
6112
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
6113
|
+
/**
|
|
6114
|
+
* ListingContent Delete
|
|
6115
|
+
* @summary ListingContent Delete
|
|
6116
|
+
* @param {string} listingContentId
|
|
6117
|
+
* @param {*} [options] Override http request option.
|
|
6118
|
+
* @throws {RequiredError}
|
|
6119
|
+
* @memberof ListingsApi
|
|
6120
|
+
*/
|
|
6121
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6122
|
+
/**
|
|
6123
|
+
* ListingContent Get
|
|
6124
|
+
* @summary ListingContent Get
|
|
6125
|
+
* @param {string} listingContentId
|
|
6126
|
+
* @param {*} [options] Override http request option.
|
|
6127
|
+
* @throws {RequiredError}
|
|
6128
|
+
* @memberof ListingsApi
|
|
6129
|
+
*/
|
|
6130
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
6131
|
+
/**
|
|
6132
|
+
* ListingContent List
|
|
6133
|
+
* @summary ListingContent List
|
|
6134
|
+
* @param {string} [listingId]
|
|
6135
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6136
|
+
* @param {*} [options] Override http request option.
|
|
6137
|
+
* @throws {RequiredError}
|
|
6138
|
+
* @memberof ListingsApi
|
|
6139
|
+
*/
|
|
6140
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
6141
|
+
/**
|
|
6142
|
+
* ListingContent Update
|
|
6143
|
+
* @summary ListingContent Update
|
|
6144
|
+
* @param {string} listingContentId
|
|
6145
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6146
|
+
* @param {*} [options] Override http request option.
|
|
6147
|
+
* @throws {RequiredError}
|
|
6148
|
+
* @memberof ListingsApi
|
|
6149
|
+
*/
|
|
6150
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5064
6151
|
/**
|
|
5065
6152
|
* Listings Get
|
|
5066
6153
|
* @summary Listings Get
|
|
@@ -5528,6 +6615,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5528
6615
|
* @throws {RequiredError}
|
|
5529
6616
|
*/
|
|
5530
6617
|
addressesUpdate: (addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6618
|
+
/**
|
|
6619
|
+
* AiResponses Create
|
|
6620
|
+
* @summary AiResponses Create
|
|
6621
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
6622
|
+
* @param {*} [options] Override http request option.
|
|
6623
|
+
* @throws {RequiredError}
|
|
6624
|
+
*/
|
|
6625
|
+
aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5531
6626
|
/**
|
|
5532
6627
|
* Associates a contact with a listing with the OWNER type.
|
|
5533
6628
|
* @summary Create Contact Listing
|
|
@@ -5679,6 +6774,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5679
6774
|
* @throws {RequiredError}
|
|
5680
6775
|
*/
|
|
5681
6776
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6777
|
+
/**
|
|
6778
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
6779
|
+
* @summary Generate Listing Content Upload Url
|
|
6780
|
+
* @param {string} listingId
|
|
6781
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
6782
|
+
* @param {*} [options] Override http request option.
|
|
6783
|
+
* @throws {RequiredError}
|
|
6784
|
+
*/
|
|
6785
|
+
generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5682
6786
|
/**
|
|
5683
6787
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5684
6788
|
* @summary Get Me
|
|
@@ -5701,6 +6805,65 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5701
6805
|
* @throws {RequiredError}
|
|
5702
6806
|
*/
|
|
5703
6807
|
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6808
|
+
/**
|
|
6809
|
+
* ListingContent Create
|
|
6810
|
+
* @summary ListingContent Create
|
|
6811
|
+
* @param {string} listingId
|
|
6812
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6813
|
+
* @param {*} [options] Override http request option.
|
|
6814
|
+
* @throws {RequiredError}
|
|
6815
|
+
*/
|
|
6816
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6817
|
+
/**
|
|
6818
|
+
* ListingContent Delete
|
|
6819
|
+
* @summary ListingContent Delete
|
|
6820
|
+
* @param {string} listingContentId
|
|
6821
|
+
* @param {*} [options] Override http request option.
|
|
6822
|
+
* @throws {RequiredError}
|
|
6823
|
+
*/
|
|
6824
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6825
|
+
/**
|
|
6826
|
+
* ListingContent Get
|
|
6827
|
+
* @summary ListingContent Get
|
|
6828
|
+
* @param {string} listingContentId
|
|
6829
|
+
* @param {*} [options] Override http request option.
|
|
6830
|
+
* @throws {RequiredError}
|
|
6831
|
+
*/
|
|
6832
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6833
|
+
/**
|
|
6834
|
+
* ListingContent List
|
|
6835
|
+
* @summary ListingContent List
|
|
6836
|
+
* @param {string} [listingId]
|
|
6837
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6838
|
+
* @param {*} [options] Override http request option.
|
|
6839
|
+
* @throws {RequiredError}
|
|
6840
|
+
*/
|
|
6841
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6842
|
+
/**
|
|
6843
|
+
* ListingContent Update
|
|
6844
|
+
* @summary ListingContent Update
|
|
6845
|
+
* @param {string} listingContentId
|
|
6846
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6847
|
+
* @param {*} [options] Override http request option.
|
|
6848
|
+
* @throws {RequiredError}
|
|
6849
|
+
*/
|
|
6850
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6851
|
+
/**
|
|
6852
|
+
* ListingContentVersions Get
|
|
6853
|
+
* @summary ListingContentVersions Get
|
|
6854
|
+
* @param {string} listingContentVersionId
|
|
6855
|
+
* @param {*} [options] Override http request option.
|
|
6856
|
+
* @throws {RequiredError}
|
|
6857
|
+
*/
|
|
6858
|
+
listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6859
|
+
/**
|
|
6860
|
+
* ListingContentVersions List
|
|
6861
|
+
* @summary ListingContentVersions List
|
|
6862
|
+
* @param {string} [listingContentId]
|
|
6863
|
+
* @param {*} [options] Override http request option.
|
|
6864
|
+
* @throws {RequiredError}
|
|
6865
|
+
*/
|
|
6866
|
+
listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5704
6867
|
/**
|
|
5705
6868
|
* Listings Get
|
|
5706
6869
|
* @summary Listings Get
|
|
@@ -5924,6 +7087,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5924
7087
|
* @throws {RequiredError}
|
|
5925
7088
|
*/
|
|
5926
7089
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
7090
|
+
/**
|
|
7091
|
+
* AiResponses Create
|
|
7092
|
+
* @summary AiResponses Create
|
|
7093
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
7094
|
+
* @param {*} [options] Override http request option.
|
|
7095
|
+
* @throws {RequiredError}
|
|
7096
|
+
*/
|
|
7097
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAiResponse>>;
|
|
5927
7098
|
/**
|
|
5928
7099
|
* Associates a contact with a listing with the OWNER type.
|
|
5929
7100
|
* @summary Create Contact Listing
|
|
@@ -6075,6 +7246,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6075
7246
|
* @throws {RequiredError}
|
|
6076
7247
|
*/
|
|
6077
7248
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
7249
|
+
/**
|
|
7250
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
7251
|
+
* @summary Generate Listing Content Upload Url
|
|
7252
|
+
* @param {string} listingId
|
|
7253
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
7254
|
+
* @param {*} [options] Override http request option.
|
|
7255
|
+
* @throws {RequiredError}
|
|
7256
|
+
*/
|
|
7257
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
6078
7258
|
/**
|
|
6079
7259
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6080
7260
|
* @summary Get Me
|
|
@@ -6097,6 +7277,65 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6097
7277
|
* @throws {RequiredError}
|
|
6098
7278
|
*/
|
|
6099
7279
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
|
|
7280
|
+
/**
|
|
7281
|
+
* ListingContent Create
|
|
7282
|
+
* @summary ListingContent Create
|
|
7283
|
+
* @param {string} listingId
|
|
7284
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
7285
|
+
* @param {*} [options] Override http request option.
|
|
7286
|
+
* @throws {RequiredError}
|
|
7287
|
+
*/
|
|
7288
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7289
|
+
/**
|
|
7290
|
+
* ListingContent Delete
|
|
7291
|
+
* @summary ListingContent Delete
|
|
7292
|
+
* @param {string} listingContentId
|
|
7293
|
+
* @param {*} [options] Override http request option.
|
|
7294
|
+
* @throws {RequiredError}
|
|
7295
|
+
*/
|
|
7296
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7297
|
+
/**
|
|
7298
|
+
* ListingContent Get
|
|
7299
|
+
* @summary ListingContent Get
|
|
7300
|
+
* @param {string} listingContentId
|
|
7301
|
+
* @param {*} [options] Override http request option.
|
|
7302
|
+
* @throws {RequiredError}
|
|
7303
|
+
*/
|
|
7304
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7305
|
+
/**
|
|
7306
|
+
* ListingContent List
|
|
7307
|
+
* @summary ListingContent List
|
|
7308
|
+
* @param {string} [listingId]
|
|
7309
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
7310
|
+
* @param {*} [options] Override http request option.
|
|
7311
|
+
* @throws {RequiredError}
|
|
7312
|
+
*/
|
|
7313
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
7314
|
+
/**
|
|
7315
|
+
* ListingContent Update
|
|
7316
|
+
* @summary ListingContent Update
|
|
7317
|
+
* @param {string} listingContentId
|
|
7318
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
7319
|
+
* @param {*} [options] Override http request option.
|
|
7320
|
+
* @throws {RequiredError}
|
|
7321
|
+
*/
|
|
7322
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7323
|
+
/**
|
|
7324
|
+
* ListingContentVersions Get
|
|
7325
|
+
* @summary ListingContentVersions Get
|
|
7326
|
+
* @param {string} listingContentVersionId
|
|
7327
|
+
* @param {*} [options] Override http request option.
|
|
7328
|
+
* @throws {RequiredError}
|
|
7329
|
+
*/
|
|
7330
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
7331
|
+
/**
|
|
7332
|
+
* ListingContentVersions List
|
|
7333
|
+
* @summary ListingContentVersions List
|
|
7334
|
+
* @param {string} [listingContentId]
|
|
7335
|
+
* @param {*} [options] Override http request option.
|
|
7336
|
+
* @throws {RequiredError}
|
|
7337
|
+
*/
|
|
7338
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
6100
7339
|
/**
|
|
6101
7340
|
* Listings Get
|
|
6102
7341
|
* @summary Listings Get
|
|
@@ -6320,6 +7559,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6320
7559
|
* @throws {RequiredError}
|
|
6321
7560
|
*/
|
|
6322
7561
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
7562
|
+
/**
|
|
7563
|
+
* AiResponses Create
|
|
7564
|
+
* @summary AiResponses Create
|
|
7565
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
7566
|
+
* @param {*} [options] Override http request option.
|
|
7567
|
+
* @throws {RequiredError}
|
|
7568
|
+
*/
|
|
7569
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAiResponse>;
|
|
6323
7570
|
/**
|
|
6324
7571
|
* Associates a contact with a listing with the OWNER type.
|
|
6325
7572
|
* @summary Create Contact Listing
|
|
@@ -6471,6 +7718,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6471
7718
|
* @throws {RequiredError}
|
|
6472
7719
|
*/
|
|
6473
7720
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
7721
|
+
/**
|
|
7722
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
7723
|
+
* @summary Generate Listing Content Upload Url
|
|
7724
|
+
* @param {string} listingId
|
|
7725
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
7726
|
+
* @param {*} [options] Override http request option.
|
|
7727
|
+
* @throws {RequiredError}
|
|
7728
|
+
*/
|
|
7729
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
6474
7730
|
/**
|
|
6475
7731
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6476
7732
|
* @summary Get Me
|
|
@@ -6493,6 +7749,65 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6493
7749
|
* @throws {RequiredError}
|
|
6494
7750
|
*/
|
|
6495
7751
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
|
|
7752
|
+
/**
|
|
7753
|
+
* ListingContent Create
|
|
7754
|
+
* @summary ListingContent Create
|
|
7755
|
+
* @param {string} listingId
|
|
7756
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
7757
|
+
* @param {*} [options] Override http request option.
|
|
7758
|
+
* @throws {RequiredError}
|
|
7759
|
+
*/
|
|
7760
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7761
|
+
/**
|
|
7762
|
+
* ListingContent Delete
|
|
7763
|
+
* @summary ListingContent Delete
|
|
7764
|
+
* @param {string} listingContentId
|
|
7765
|
+
* @param {*} [options] Override http request option.
|
|
7766
|
+
* @throws {RequiredError}
|
|
7767
|
+
*/
|
|
7768
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7769
|
+
/**
|
|
7770
|
+
* ListingContent Get
|
|
7771
|
+
* @summary ListingContent Get
|
|
7772
|
+
* @param {string} listingContentId
|
|
7773
|
+
* @param {*} [options] Override http request option.
|
|
7774
|
+
* @throws {RequiredError}
|
|
7775
|
+
*/
|
|
7776
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7777
|
+
/**
|
|
7778
|
+
* ListingContent List
|
|
7779
|
+
* @summary ListingContent List
|
|
7780
|
+
* @param {string} [listingId]
|
|
7781
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
7782
|
+
* @param {*} [options] Override http request option.
|
|
7783
|
+
* @throws {RequiredError}
|
|
7784
|
+
*/
|
|
7785
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
7786
|
+
/**
|
|
7787
|
+
* ListingContent Update
|
|
7788
|
+
* @summary ListingContent Update
|
|
7789
|
+
* @param {string} listingContentId
|
|
7790
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
7791
|
+
* @param {*} [options] Override http request option.
|
|
7792
|
+
* @throws {RequiredError}
|
|
7793
|
+
*/
|
|
7794
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7795
|
+
/**
|
|
7796
|
+
* ListingContentVersions Get
|
|
7797
|
+
* @summary ListingContentVersions Get
|
|
7798
|
+
* @param {string} listingContentVersionId
|
|
7799
|
+
* @param {*} [options] Override http request option.
|
|
7800
|
+
* @throws {RequiredError}
|
|
7801
|
+
*/
|
|
7802
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
7803
|
+
/**
|
|
7804
|
+
* ListingContentVersions List
|
|
7805
|
+
* @summary ListingContentVersions List
|
|
7806
|
+
* @param {string} [listingContentId]
|
|
7807
|
+
* @param {*} [options] Override http request option.
|
|
7808
|
+
* @throws {RequiredError}
|
|
7809
|
+
*/
|
|
7810
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
6496
7811
|
/**
|
|
6497
7812
|
* Listings Get
|
|
6498
7813
|
* @summary Listings Get
|
|
@@ -6723,6 +8038,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6723
8038
|
* @memberof UnboundApi
|
|
6724
8039
|
*/
|
|
6725
8040
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
8041
|
+
/**
|
|
8042
|
+
* AiResponses Create
|
|
8043
|
+
* @summary AiResponses Create
|
|
8044
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
8045
|
+
* @param {*} [options] Override http request option.
|
|
8046
|
+
* @throws {RequiredError}
|
|
8047
|
+
* @memberof UnboundApi
|
|
8048
|
+
*/
|
|
8049
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAiResponse, any>>;
|
|
6726
8050
|
/**
|
|
6727
8051
|
* Associates a contact with a listing with the OWNER type.
|
|
6728
8052
|
* @summary Create Contact Listing
|
|
@@ -6890,6 +8214,16 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6890
8214
|
* @memberof UnboundApi
|
|
6891
8215
|
*/
|
|
6892
8216
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
8217
|
+
/**
|
|
8218
|
+
* Returns a signed URL for uploading a file directly to storage. Workflow: 1. Call this endpoint to obtain an upload URL and canonical file_url. 2. Perform the upload to storage using upload_url and upload_method. 3. Call POST/PATCH with listing_content_type_data.listing_content_type=\"file\" and the provided file_url (plus file_name, file_size, mime_type).
|
|
8219
|
+
* @summary Generate Listing Content Upload Url
|
|
8220
|
+
* @param {string} listingId
|
|
8221
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
8222
|
+
* @param {*} [options] Override http request option.
|
|
8223
|
+
* @throws {RequiredError}
|
|
8224
|
+
* @memberof UnboundApi
|
|
8225
|
+
*/
|
|
8226
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
6893
8227
|
/**
|
|
6894
8228
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6895
8229
|
* @summary Get Me
|
|
@@ -6915,6 +8249,72 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6915
8249
|
* @memberof UnboundApi
|
|
6916
8250
|
*/
|
|
6917
8251
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
8252
|
+
/**
|
|
8253
|
+
* ListingContent Create
|
|
8254
|
+
* @summary ListingContent Create
|
|
8255
|
+
* @param {string} listingId
|
|
8256
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
8257
|
+
* @param {*} [options] Override http request option.
|
|
8258
|
+
* @throws {RequiredError}
|
|
8259
|
+
* @memberof UnboundApi
|
|
8260
|
+
*/
|
|
8261
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8262
|
+
/**
|
|
8263
|
+
* ListingContent Delete
|
|
8264
|
+
* @summary ListingContent Delete
|
|
8265
|
+
* @param {string} listingContentId
|
|
8266
|
+
* @param {*} [options] Override http request option.
|
|
8267
|
+
* @throws {RequiredError}
|
|
8268
|
+
* @memberof UnboundApi
|
|
8269
|
+
*/
|
|
8270
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8271
|
+
/**
|
|
8272
|
+
* ListingContent Get
|
|
8273
|
+
* @summary ListingContent Get
|
|
8274
|
+
* @param {string} listingContentId
|
|
8275
|
+
* @param {*} [options] Override http request option.
|
|
8276
|
+
* @throws {RequiredError}
|
|
8277
|
+
* @memberof UnboundApi
|
|
8278
|
+
*/
|
|
8279
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8280
|
+
/**
|
|
8281
|
+
* ListingContent List
|
|
8282
|
+
* @summary ListingContent List
|
|
8283
|
+
* @param {string} [listingId]
|
|
8284
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
8285
|
+
* @param {*} [options] Override http request option.
|
|
8286
|
+
* @throws {RequiredError}
|
|
8287
|
+
* @memberof UnboundApi
|
|
8288
|
+
*/
|
|
8289
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
8290
|
+
/**
|
|
8291
|
+
* ListingContent Update
|
|
8292
|
+
* @summary ListingContent Update
|
|
8293
|
+
* @param {string} listingContentId
|
|
8294
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
8295
|
+
* @param {*} [options] Override http request option.
|
|
8296
|
+
* @throws {RequiredError}
|
|
8297
|
+
* @memberof UnboundApi
|
|
8298
|
+
*/
|
|
8299
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8300
|
+
/**
|
|
8301
|
+
* ListingContentVersions Get
|
|
8302
|
+
* @summary ListingContentVersions Get
|
|
8303
|
+
* @param {string} listingContentVersionId
|
|
8304
|
+
* @param {*} [options] Override http request option.
|
|
8305
|
+
* @throws {RequiredError}
|
|
8306
|
+
* @memberof UnboundApi
|
|
8307
|
+
*/
|
|
8308
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
8309
|
+
/**
|
|
8310
|
+
* ListingContentVersions List
|
|
8311
|
+
* @summary ListingContentVersions List
|
|
8312
|
+
* @param {string} [listingContentId]
|
|
8313
|
+
* @param {*} [options] Override http request option.
|
|
8314
|
+
* @throws {RequiredError}
|
|
8315
|
+
* @memberof UnboundApi
|
|
8316
|
+
*/
|
|
8317
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
6918
8318
|
/**
|
|
6919
8319
|
* Listings Get
|
|
6920
8320
|
* @summary Listings Get
|
|
@@ -7204,4 +8604,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
7204
8604
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7205
8605
|
}
|
|
7206
8606
|
|
|
7207
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, 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,
|
|
8607
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIListingContent, type APIListingContentCreate, APIListingContentStatusEnum, type APIListingContentUpdate, type APIListingContentVersion, 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, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, 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 FileListingContentApi, FileListingContentApiListingContentTypeEnum, 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 ListResponseAPIListingContent, type ListResponseAPIListingContentVersion, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingContentApi, ListingContentApiAxiosParamCreator, ListingContentApiFactory, ListingContentApiFp, type ListingContentVersionApi, type Listingcontenttypedata, type Listingcontenttypedata1, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, 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 PlainTextListingContentApi, PlainTextListingContentApiListingContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLListingContentApi, URLListingContentApiListingContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|