@ember-home/unbound-ts-client 0.0.96 → 0.0.98
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 +1477 -71
- package/dist/index.d.ts +1477 -71
- 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,61 @@ 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 {Array<string>}
|
|
1044
|
+
* @memberof APIListing
|
|
1045
|
+
*/
|
|
1046
|
+
'amenities'?: Array<string> | null;
|
|
1047
|
+
/**
|
|
1048
|
+
*
|
|
1049
|
+
* @type {number}
|
|
1050
|
+
* @memberof APIListing
|
|
1051
|
+
*/
|
|
1052
|
+
'numBedrooms'?: number | null;
|
|
1053
|
+
/**
|
|
1054
|
+
*
|
|
1055
|
+
* @type {number}
|
|
1056
|
+
* @memberof APIListing
|
|
1057
|
+
*/
|
|
1058
|
+
'numBeds'?: number | null;
|
|
1059
|
+
/**
|
|
1060
|
+
*
|
|
1061
|
+
* @type {number}
|
|
1062
|
+
* @memberof APIListing
|
|
1063
|
+
*/
|
|
1064
|
+
'numBathrooms'?: number | null;
|
|
1065
|
+
/**
|
|
1066
|
+
*
|
|
1067
|
+
* @type {number}
|
|
1068
|
+
* @memberof APIListing
|
|
1069
|
+
*/
|
|
1070
|
+
'numFullBathrooms'?: number | null;
|
|
1071
|
+
/**
|
|
1072
|
+
*
|
|
1073
|
+
* @type {number}
|
|
1074
|
+
* @memberof APIListing
|
|
1075
|
+
*/
|
|
1076
|
+
'numHalfBathrooms'?: number | null;
|
|
1077
|
+
/**
|
|
1078
|
+
*
|
|
1079
|
+
* @type {string}
|
|
1080
|
+
* @memberof APIListing
|
|
1081
|
+
*/
|
|
1082
|
+
'listingPicUrl'?: string | null;
|
|
991
1083
|
/**
|
|
992
1084
|
*
|
|
993
1085
|
* @type {string}
|
|
@@ -1007,6 +1099,159 @@ interface APIListing {
|
|
|
1007
1099
|
*/
|
|
1008
1100
|
'providerAccountId': string;
|
|
1009
1101
|
}
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @export
|
|
1105
|
+
* @interface APIListingContent
|
|
1106
|
+
*/
|
|
1107
|
+
interface APIListingContent {
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @type {string}
|
|
1111
|
+
* @memberof APIListingContent
|
|
1112
|
+
*/
|
|
1113
|
+
'listingContentId': string;
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof APIListingContent
|
|
1118
|
+
*/
|
|
1119
|
+
'listingId': string;
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {string}
|
|
1123
|
+
* @memberof APIListingContent
|
|
1124
|
+
*/
|
|
1125
|
+
'title': string;
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {string}
|
|
1129
|
+
* @memberof APIListingContent
|
|
1130
|
+
*/
|
|
1131
|
+
'status'?: APIListingContentStatusEnum;
|
|
1132
|
+
/**
|
|
1133
|
+
*
|
|
1134
|
+
* @type {ListingContentVersionApi}
|
|
1135
|
+
* @memberof APIListingContent
|
|
1136
|
+
*/
|
|
1137
|
+
'currentVersion': ListingContentVersionApi;
|
|
1138
|
+
/**
|
|
1139
|
+
*
|
|
1140
|
+
* @type {Listingcontenttypedata}
|
|
1141
|
+
* @memberof APIListingContent
|
|
1142
|
+
*/
|
|
1143
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @type {string}
|
|
1147
|
+
* @memberof APIListingContent
|
|
1148
|
+
*/
|
|
1149
|
+
'createdAt': string;
|
|
1150
|
+
/**
|
|
1151
|
+
*
|
|
1152
|
+
* @type {string}
|
|
1153
|
+
* @memberof APIListingContent
|
|
1154
|
+
*/
|
|
1155
|
+
'updatedAt': string;
|
|
1156
|
+
}
|
|
1157
|
+
declare const APIListingContentStatusEnum: {
|
|
1158
|
+
readonly Active: "active";
|
|
1159
|
+
readonly Deleted: "deleted";
|
|
1160
|
+
};
|
|
1161
|
+
type APIListingContentStatusEnum = typeof APIListingContentStatusEnum[keyof typeof APIListingContentStatusEnum];
|
|
1162
|
+
/**
|
|
1163
|
+
*
|
|
1164
|
+
* @export
|
|
1165
|
+
* @interface APIListingContentCreate
|
|
1166
|
+
*/
|
|
1167
|
+
interface APIListingContentCreate {
|
|
1168
|
+
/**
|
|
1169
|
+
*
|
|
1170
|
+
* @type {string}
|
|
1171
|
+
* @memberof APIListingContentCreate
|
|
1172
|
+
*/
|
|
1173
|
+
'title': string;
|
|
1174
|
+
/**
|
|
1175
|
+
*
|
|
1176
|
+
* @type {Listingcontenttypedata}
|
|
1177
|
+
* @memberof APIListingContentCreate
|
|
1178
|
+
*/
|
|
1179
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1180
|
+
}
|
|
1181
|
+
/**
|
|
1182
|
+
*
|
|
1183
|
+
* @export
|
|
1184
|
+
* @interface APIListingContentUpdate
|
|
1185
|
+
*/
|
|
1186
|
+
interface APIListingContentUpdate {
|
|
1187
|
+
/**
|
|
1188
|
+
*
|
|
1189
|
+
* @type {string}
|
|
1190
|
+
* @memberof APIListingContentUpdate
|
|
1191
|
+
*/
|
|
1192
|
+
'title'?: string | null;
|
|
1193
|
+
/**
|
|
1194
|
+
*
|
|
1195
|
+
* @type {Listingcontenttypedata1}
|
|
1196
|
+
* @memberof APIListingContentUpdate
|
|
1197
|
+
*/
|
|
1198
|
+
'listingContentTypeData'?: Listingcontenttypedata1 | null;
|
|
1199
|
+
}
|
|
1200
|
+
/**
|
|
1201
|
+
*
|
|
1202
|
+
* @export
|
|
1203
|
+
* @interface APIListingContentVersion
|
|
1204
|
+
*/
|
|
1205
|
+
interface APIListingContentVersion {
|
|
1206
|
+
/**
|
|
1207
|
+
*
|
|
1208
|
+
* @type {string}
|
|
1209
|
+
* @memberof APIListingContentVersion
|
|
1210
|
+
*/
|
|
1211
|
+
'listingContentVersionId': string;
|
|
1212
|
+
/**
|
|
1213
|
+
*
|
|
1214
|
+
* @type {string}
|
|
1215
|
+
* @memberof APIListingContentVersion
|
|
1216
|
+
*/
|
|
1217
|
+
'listingContentId': string;
|
|
1218
|
+
/**
|
|
1219
|
+
*
|
|
1220
|
+
* @type {string}
|
|
1221
|
+
* @memberof APIListingContentVersion
|
|
1222
|
+
*/
|
|
1223
|
+
'listingId': string;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* @type {number}
|
|
1227
|
+
* @memberof APIListingContentVersion
|
|
1228
|
+
*/
|
|
1229
|
+
'version': number;
|
|
1230
|
+
/**
|
|
1231
|
+
*
|
|
1232
|
+
* @type {Listingcontenttypedata}
|
|
1233
|
+
* @memberof APIListingContentVersion
|
|
1234
|
+
*/
|
|
1235
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
1236
|
+
/**
|
|
1237
|
+
*
|
|
1238
|
+
* @type {string}
|
|
1239
|
+
* @memberof APIListingContentVersion
|
|
1240
|
+
*/
|
|
1241
|
+
'createdAt': string;
|
|
1242
|
+
/**
|
|
1243
|
+
*
|
|
1244
|
+
* @type {string}
|
|
1245
|
+
* @memberof APIListingContentVersion
|
|
1246
|
+
*/
|
|
1247
|
+
'createdBy': string;
|
|
1248
|
+
/**
|
|
1249
|
+
*
|
|
1250
|
+
* @type {boolean}
|
|
1251
|
+
* @memberof APIListingContentVersion
|
|
1252
|
+
*/
|
|
1253
|
+
'isCurrent'?: boolean;
|
|
1254
|
+
}
|
|
1010
1255
|
/**
|
|
1011
1256
|
*
|
|
1012
1257
|
* @export
|
|
@@ -1638,55 +1883,6 @@ interface APIValidationError {
|
|
|
1638
1883
|
* @export
|
|
1639
1884
|
*/
|
|
1640
1885
|
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
1886
|
/**
|
|
1691
1887
|
*
|
|
1692
1888
|
* @export
|
|
@@ -2098,6 +2294,47 @@ declare const ExternalStaffApiStaffTypeEnum: {
|
|
|
2098
2294
|
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
2099
2295
|
};
|
|
2100
2296
|
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
* @export
|
|
2300
|
+
* @interface FileListingContentApi
|
|
2301
|
+
*/
|
|
2302
|
+
interface FileListingContentApi {
|
|
2303
|
+
/**
|
|
2304
|
+
*
|
|
2305
|
+
* @type {string}
|
|
2306
|
+
* @memberof FileListingContentApi
|
|
2307
|
+
*/
|
|
2308
|
+
'listingContentType': FileListingContentApiListingContentTypeEnum;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {string}
|
|
2312
|
+
* @memberof FileListingContentApi
|
|
2313
|
+
*/
|
|
2314
|
+
'fileUrl': string;
|
|
2315
|
+
/**
|
|
2316
|
+
*
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof FileListingContentApi
|
|
2319
|
+
*/
|
|
2320
|
+
'fileName': string;
|
|
2321
|
+
/**
|
|
2322
|
+
*
|
|
2323
|
+
* @type {number}
|
|
2324
|
+
* @memberof FileListingContentApi
|
|
2325
|
+
*/
|
|
2326
|
+
'fileSize': number;
|
|
2327
|
+
/**
|
|
2328
|
+
*
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof FileListingContentApi
|
|
2331
|
+
*/
|
|
2332
|
+
'mimeType': string;
|
|
2333
|
+
}
|
|
2334
|
+
declare const FileListingContentApiListingContentTypeEnum: {
|
|
2335
|
+
readonly File: "file";
|
|
2336
|
+
};
|
|
2337
|
+
type FileListingContentApiListingContentTypeEnum = typeof FileListingContentApiListingContentTypeEnum[keyof typeof FileListingContentApiListingContentTypeEnum];
|
|
2101
2338
|
/**
|
|
2102
2339
|
*
|
|
2103
2340
|
* @export
|
|
@@ -2260,38 +2497,129 @@ interface ListResponseAPIInquiry {
|
|
|
2260
2497
|
/**
|
|
2261
2498
|
*
|
|
2262
2499
|
* @export
|
|
2263
|
-
* @interface
|
|
2500
|
+
* @interface ListResponseAPIListingContent
|
|
2264
2501
|
*/
|
|
2265
|
-
interface
|
|
2502
|
+
interface ListResponseAPIListingContent {
|
|
2266
2503
|
/**
|
|
2267
2504
|
*
|
|
2268
|
-
* @type {Array<
|
|
2269
|
-
* @memberof
|
|
2505
|
+
* @type {Array<APIListingContent>}
|
|
2506
|
+
* @memberof ListResponseAPIListingContent
|
|
2270
2507
|
*/
|
|
2271
|
-
'data': Array<
|
|
2508
|
+
'data': Array<APIListingContent>;
|
|
2272
2509
|
}
|
|
2273
2510
|
/**
|
|
2274
2511
|
*
|
|
2275
2512
|
* @export
|
|
2276
|
-
* @interface
|
|
2513
|
+
* @interface ListResponseAPIListingContentVersion
|
|
2277
2514
|
*/
|
|
2278
|
-
interface
|
|
2515
|
+
interface ListResponseAPIListingContentVersion {
|
|
2279
2516
|
/**
|
|
2280
2517
|
*
|
|
2281
|
-
* @type {Array<
|
|
2282
|
-
* @memberof
|
|
2518
|
+
* @type {Array<APIListingContentVersion>}
|
|
2519
|
+
* @memberof ListResponseAPIListingContentVersion
|
|
2283
2520
|
*/
|
|
2284
|
-
'data': Array<
|
|
2521
|
+
'data': Array<APIListingContentVersion>;
|
|
2285
2522
|
}
|
|
2286
2523
|
/**
|
|
2287
2524
|
*
|
|
2288
2525
|
* @export
|
|
2289
|
-
* @interface
|
|
2526
|
+
* @interface ListResponseAPIManagedPhoneNumber
|
|
2290
2527
|
*/
|
|
2291
|
-
interface
|
|
2528
|
+
interface ListResponseAPIManagedPhoneNumber {
|
|
2292
2529
|
/**
|
|
2293
2530
|
*
|
|
2294
|
-
* @type {
|
|
2531
|
+
* @type {Array<APIManagedPhoneNumber>}
|
|
2532
|
+
* @memberof ListResponseAPIManagedPhoneNumber
|
|
2533
|
+
*/
|
|
2534
|
+
'data': Array<APIManagedPhoneNumber>;
|
|
2535
|
+
}
|
|
2536
|
+
/**
|
|
2537
|
+
*
|
|
2538
|
+
* @export
|
|
2539
|
+
* @interface ListResponseAPIProvider
|
|
2540
|
+
*/
|
|
2541
|
+
interface ListResponseAPIProvider {
|
|
2542
|
+
/**
|
|
2543
|
+
*
|
|
2544
|
+
* @type {Array<APIProvider>}
|
|
2545
|
+
* @memberof ListResponseAPIProvider
|
|
2546
|
+
*/
|
|
2547
|
+
'data': Array<APIProvider>;
|
|
2548
|
+
}
|
|
2549
|
+
/**
|
|
2550
|
+
*
|
|
2551
|
+
* @export
|
|
2552
|
+
* @interface ListingContentVersionApi
|
|
2553
|
+
*/
|
|
2554
|
+
interface ListingContentVersionApi {
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
* @type {string}
|
|
2558
|
+
* @memberof ListingContentVersionApi
|
|
2559
|
+
*/
|
|
2560
|
+
'listingContentVersionId': string;
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
* @type {string}
|
|
2564
|
+
* @memberof ListingContentVersionApi
|
|
2565
|
+
*/
|
|
2566
|
+
'listingContentId': string;
|
|
2567
|
+
/**
|
|
2568
|
+
*
|
|
2569
|
+
* @type {string}
|
|
2570
|
+
* @memberof ListingContentVersionApi
|
|
2571
|
+
*/
|
|
2572
|
+
'listingId': string;
|
|
2573
|
+
/**
|
|
2574
|
+
*
|
|
2575
|
+
* @type {number}
|
|
2576
|
+
* @memberof ListingContentVersionApi
|
|
2577
|
+
*/
|
|
2578
|
+
'version': number;
|
|
2579
|
+
/**
|
|
2580
|
+
*
|
|
2581
|
+
* @type {Listingcontenttypedata}
|
|
2582
|
+
* @memberof ListingContentVersionApi
|
|
2583
|
+
*/
|
|
2584
|
+
'listingContentTypeData': Listingcontenttypedata;
|
|
2585
|
+
/**
|
|
2586
|
+
*
|
|
2587
|
+
* @type {string}
|
|
2588
|
+
* @memberof ListingContentVersionApi
|
|
2589
|
+
*/
|
|
2590
|
+
'createdAt': string;
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
* @type {string}
|
|
2594
|
+
* @memberof ListingContentVersionApi
|
|
2595
|
+
*/
|
|
2596
|
+
'createdBy': string;
|
|
2597
|
+
/**
|
|
2598
|
+
*
|
|
2599
|
+
* @type {boolean}
|
|
2600
|
+
* @memberof ListingContentVersionApi
|
|
2601
|
+
*/
|
|
2602
|
+
'isCurrent'?: boolean;
|
|
2603
|
+
}
|
|
2604
|
+
/**
|
|
2605
|
+
* @type Listingcontenttypedata
|
|
2606
|
+
* @export
|
|
2607
|
+
*/
|
|
2608
|
+
type Listingcontenttypedata = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
|
|
2609
|
+
/**
|
|
2610
|
+
* @type Listingcontenttypedata1
|
|
2611
|
+
* @export
|
|
2612
|
+
*/
|
|
2613
|
+
type Listingcontenttypedata1 = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
|
|
2614
|
+
/**
|
|
2615
|
+
*
|
|
2616
|
+
* @export
|
|
2617
|
+
* @interface MessageAttachmentApi
|
|
2618
|
+
*/
|
|
2619
|
+
interface MessageAttachmentApi {
|
|
2620
|
+
/**
|
|
2621
|
+
*
|
|
2622
|
+
* @type {string}
|
|
2295
2623
|
* @memberof MessageAttachmentApi
|
|
2296
2624
|
*/
|
|
2297
2625
|
'url': string;
|
|
@@ -2603,6 +2931,29 @@ declare const PhoneInboxApiInboxTypeEnum: {
|
|
|
2603
2931
|
readonly Text: "TEXT";
|
|
2604
2932
|
};
|
|
2605
2933
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @export
|
|
2937
|
+
* @interface PlainTextListingContentApi
|
|
2938
|
+
*/
|
|
2939
|
+
interface PlainTextListingContentApi {
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @type {string}
|
|
2943
|
+
* @memberof PlainTextListingContentApi
|
|
2944
|
+
*/
|
|
2945
|
+
'listingContentType': PlainTextListingContentApiListingContentTypeEnum;
|
|
2946
|
+
/**
|
|
2947
|
+
*
|
|
2948
|
+
* @type {string}
|
|
2949
|
+
* @memberof PlainTextListingContentApi
|
|
2950
|
+
*/
|
|
2951
|
+
'body': string;
|
|
2952
|
+
}
|
|
2953
|
+
declare const PlainTextListingContentApiListingContentTypeEnum: {
|
|
2954
|
+
readonly PlainText: "plain_text";
|
|
2955
|
+
};
|
|
2956
|
+
type PlainTextListingContentApiListingContentTypeEnum = typeof PlainTextListingContentApiListingContentTypeEnum[keyof typeof PlainTextListingContentApiListingContentTypeEnum];
|
|
2606
2957
|
/**
|
|
2607
2958
|
*
|
|
2608
2959
|
* @export
|
|
@@ -3109,6 +3460,55 @@ declare const SrcResourceModelsConversationsModelConversationsHelperModelsProvid
|
|
|
3109
3460
|
readonly Whatsapp: "WHATSAPP";
|
|
3110
3461
|
};
|
|
3111
3462
|
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
3463
|
+
/**
|
|
3464
|
+
*
|
|
3465
|
+
* @export
|
|
3466
|
+
* @interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3467
|
+
*/
|
|
3468
|
+
interface SrcResourceModelsHelperModelsCustomBaseModelAddressApi1 {
|
|
3469
|
+
/**
|
|
3470
|
+
*
|
|
3471
|
+
* @type {string}
|
|
3472
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3473
|
+
*/
|
|
3474
|
+
'street1'?: string | null;
|
|
3475
|
+
/**
|
|
3476
|
+
*
|
|
3477
|
+
* @type {string}
|
|
3478
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3479
|
+
*/
|
|
3480
|
+
'street2'?: string | null;
|
|
3481
|
+
/**
|
|
3482
|
+
*
|
|
3483
|
+
* @type {string}
|
|
3484
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3485
|
+
*/
|
|
3486
|
+
'country'?: string | null;
|
|
3487
|
+
/**
|
|
3488
|
+
*
|
|
3489
|
+
* @type {string}
|
|
3490
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3491
|
+
*/
|
|
3492
|
+
'locality'?: string | null;
|
|
3493
|
+
/**
|
|
3494
|
+
*
|
|
3495
|
+
* @type {string}
|
|
3496
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3497
|
+
*/
|
|
3498
|
+
'postalCode'?: string | null;
|
|
3499
|
+
/**
|
|
3500
|
+
*
|
|
3501
|
+
* @type {string}
|
|
3502
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3503
|
+
*/
|
|
3504
|
+
'region'?: string | null;
|
|
3505
|
+
/**
|
|
3506
|
+
*
|
|
3507
|
+
* @type {string}
|
|
3508
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelAddressApi1
|
|
3509
|
+
*/
|
|
3510
|
+
'addressId': string;
|
|
3511
|
+
}
|
|
3112
3512
|
/**
|
|
3113
3513
|
*
|
|
3114
3514
|
* @export
|
|
@@ -3476,6 +3876,29 @@ interface ToPhoneApi {
|
|
|
3476
3876
|
*/
|
|
3477
3877
|
'contactId'?: string | null;
|
|
3478
3878
|
}
|
|
3879
|
+
/**
|
|
3880
|
+
*
|
|
3881
|
+
* @export
|
|
3882
|
+
* @interface URLListingContentApi
|
|
3883
|
+
*/
|
|
3884
|
+
interface URLListingContentApi {
|
|
3885
|
+
/**
|
|
3886
|
+
*
|
|
3887
|
+
* @type {string}
|
|
3888
|
+
* @memberof URLListingContentApi
|
|
3889
|
+
*/
|
|
3890
|
+
'listingContentType': URLListingContentApiListingContentTypeEnum;
|
|
3891
|
+
/**
|
|
3892
|
+
*
|
|
3893
|
+
* @type {string}
|
|
3894
|
+
* @memberof URLListingContentApi
|
|
3895
|
+
*/
|
|
3896
|
+
'url': string;
|
|
3897
|
+
}
|
|
3898
|
+
declare const URLListingContentApiListingContentTypeEnum: {
|
|
3899
|
+
readonly Url: "url";
|
|
3900
|
+
};
|
|
3901
|
+
type URLListingContentApiListingContentTypeEnum = typeof URLListingContentApiListingContentTypeEnum[keyof typeof URLListingContentApiListingContentTypeEnum];
|
|
3479
3902
|
/**
|
|
3480
3903
|
*
|
|
3481
3904
|
* @export
|
|
@@ -3501,6 +3924,68 @@ interface UpdateContactListing {
|
|
|
3501
3924
|
*/
|
|
3502
3925
|
'endDate'?: string | null;
|
|
3503
3926
|
}
|
|
3927
|
+
/**
|
|
3928
|
+
* Request model for generating signed upload URLs.
|
|
3929
|
+
* @export
|
|
3930
|
+
* @interface UploadURLRequest
|
|
3931
|
+
*/
|
|
3932
|
+
interface UploadURLRequest {
|
|
3933
|
+
/**
|
|
3934
|
+
*
|
|
3935
|
+
* @type {string}
|
|
3936
|
+
* @memberof UploadURLRequest
|
|
3937
|
+
*/
|
|
3938
|
+
'file_name': string;
|
|
3939
|
+
/**
|
|
3940
|
+
*
|
|
3941
|
+
* @type {string}
|
|
3942
|
+
* @memberof UploadURLRequest
|
|
3943
|
+
*/
|
|
3944
|
+
'mime_type': string;
|
|
3945
|
+
/**
|
|
3946
|
+
*
|
|
3947
|
+
* @type {number}
|
|
3948
|
+
* @memberof UploadURLRequest
|
|
3949
|
+
*/
|
|
3950
|
+
'file_size': number;
|
|
3951
|
+
}
|
|
3952
|
+
/**
|
|
3953
|
+
* Response model for signed upload URL generation.
|
|
3954
|
+
* @export
|
|
3955
|
+
* @interface UploadURLResponse
|
|
3956
|
+
*/
|
|
3957
|
+
interface UploadURLResponse {
|
|
3958
|
+
/**
|
|
3959
|
+
*
|
|
3960
|
+
* @type {string}
|
|
3961
|
+
* @memberof UploadURLResponse
|
|
3962
|
+
*/
|
|
3963
|
+
'upload_url': string;
|
|
3964
|
+
/**
|
|
3965
|
+
*
|
|
3966
|
+
* @type {string}
|
|
3967
|
+
* @memberof UploadURLResponse
|
|
3968
|
+
*/
|
|
3969
|
+
'upload_method': string;
|
|
3970
|
+
/**
|
|
3971
|
+
*
|
|
3972
|
+
* @type {object}
|
|
3973
|
+
* @memberof UploadURLResponse
|
|
3974
|
+
*/
|
|
3975
|
+
'upload_headers': object;
|
|
3976
|
+
/**
|
|
3977
|
+
*
|
|
3978
|
+
* @type {string}
|
|
3979
|
+
* @memberof UploadURLResponse
|
|
3980
|
+
*/
|
|
3981
|
+
'file_url': string;
|
|
3982
|
+
/**
|
|
3983
|
+
*
|
|
3984
|
+
* @type {string}
|
|
3985
|
+
* @memberof UploadURLResponse
|
|
3986
|
+
*/
|
|
3987
|
+
'expires_at': string;
|
|
3988
|
+
}
|
|
3504
3989
|
/**
|
|
3505
3990
|
*
|
|
3506
3991
|
* @export
|
|
@@ -3647,6 +4132,65 @@ declare class AccountsApi extends BaseAPI {
|
|
|
3647
4132
|
*/
|
|
3648
4133
|
accountsList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIAccount, any>>;
|
|
3649
4134
|
}
|
|
4135
|
+
/**
|
|
4136
|
+
* AiResponsesApi - axios parameter creator
|
|
4137
|
+
* @export
|
|
4138
|
+
*/
|
|
4139
|
+
declare const AiResponsesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4140
|
+
/**
|
|
4141
|
+
* AiResponses Create
|
|
4142
|
+
* @summary AiResponses Create
|
|
4143
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4144
|
+
* @param {*} [options] Override http request option.
|
|
4145
|
+
* @throws {RequiredError}
|
|
4146
|
+
*/
|
|
4147
|
+
aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4148
|
+
};
|
|
4149
|
+
/**
|
|
4150
|
+
* AiResponsesApi - functional programming interface
|
|
4151
|
+
* @export
|
|
4152
|
+
*/
|
|
4153
|
+
declare const AiResponsesApiFp: (configuration?: Configuration) => {
|
|
4154
|
+
/**
|
|
4155
|
+
* AiResponses Create
|
|
4156
|
+
* @summary AiResponses Create
|
|
4157
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4158
|
+
* @param {*} [options] Override http request option.
|
|
4159
|
+
* @throws {RequiredError}
|
|
4160
|
+
*/
|
|
4161
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAiResponse>>;
|
|
4162
|
+
};
|
|
4163
|
+
/**
|
|
4164
|
+
* AiResponsesApi - factory interface
|
|
4165
|
+
* @export
|
|
4166
|
+
*/
|
|
4167
|
+
declare const AiResponsesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4168
|
+
/**
|
|
4169
|
+
* AiResponses Create
|
|
4170
|
+
* @summary AiResponses Create
|
|
4171
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4172
|
+
* @param {*} [options] Override http request option.
|
|
4173
|
+
* @throws {RequiredError}
|
|
4174
|
+
*/
|
|
4175
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAiResponse>;
|
|
4176
|
+
};
|
|
4177
|
+
/**
|
|
4178
|
+
* AiResponsesApi - object-oriented interface
|
|
4179
|
+
* @export
|
|
4180
|
+
* @class AiResponsesApi
|
|
4181
|
+
* @extends {BaseAPI}
|
|
4182
|
+
*/
|
|
4183
|
+
declare class AiResponsesApi extends BaseAPI {
|
|
4184
|
+
/**
|
|
4185
|
+
* AiResponses Create
|
|
4186
|
+
* @summary AiResponses Create
|
|
4187
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
4188
|
+
* @param {*} [options] Override http request option.
|
|
4189
|
+
* @throws {RequiredError}
|
|
4190
|
+
* @memberof AiResponsesApi
|
|
4191
|
+
*/
|
|
4192
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAiResponse, any>>;
|
|
4193
|
+
}
|
|
3650
4194
|
/**
|
|
3651
4195
|
* AuthApi - axios parameter creator
|
|
3652
4196
|
* @export
|
|
@@ -4961,20 +5505,435 @@ declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4961
5505
|
*/
|
|
4962
5506
|
declare class InquiriesApi extends BaseAPI {
|
|
4963
5507
|
/**
|
|
4964
|
-
* List all listings
|
|
4965
|
-
* @summary Inquiries List
|
|
4966
|
-
* @param {string} [contactId]
|
|
5508
|
+
* List all listings
|
|
5509
|
+
* @summary Inquiries List
|
|
5510
|
+
* @param {string} [contactId]
|
|
5511
|
+
* @param {*} [options] Override http request option.
|
|
5512
|
+
* @throws {RequiredError}
|
|
5513
|
+
* @memberof InquiriesApi
|
|
5514
|
+
*/
|
|
5515
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
5516
|
+
}
|
|
5517
|
+
/**
|
|
5518
|
+
* ListingContentApi - axios parameter creator
|
|
5519
|
+
* @export
|
|
5520
|
+
*/
|
|
5521
|
+
declare const ListingContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5522
|
+
/**
|
|
5523
|
+
* 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).
|
|
5524
|
+
* @summary Generate Listing Content Upload Url
|
|
5525
|
+
* @param {string} listingId
|
|
5526
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5527
|
+
* @param {*} [options] Override http request option.
|
|
5528
|
+
* @throws {RequiredError}
|
|
5529
|
+
*/
|
|
5530
|
+
generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5531
|
+
/**
|
|
5532
|
+
* ListingContent Create
|
|
5533
|
+
* @summary ListingContent Create
|
|
5534
|
+
* @param {string} listingId
|
|
5535
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5536
|
+
* @param {*} [options] Override http request option.
|
|
5537
|
+
* @throws {RequiredError}
|
|
5538
|
+
*/
|
|
5539
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5540
|
+
/**
|
|
5541
|
+
* ListingContent Delete
|
|
5542
|
+
* @summary ListingContent Delete
|
|
5543
|
+
* @param {string} listingContentId
|
|
5544
|
+
* @param {*} [options] Override http request option.
|
|
5545
|
+
* @throws {RequiredError}
|
|
5546
|
+
*/
|
|
5547
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5548
|
+
/**
|
|
5549
|
+
* ListingContent Get
|
|
5550
|
+
* @summary ListingContent Get
|
|
5551
|
+
* @param {string} listingContentId
|
|
5552
|
+
* @param {*} [options] Override http request option.
|
|
5553
|
+
* @throws {RequiredError}
|
|
5554
|
+
*/
|
|
5555
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5556
|
+
/**
|
|
5557
|
+
* ListingContent List
|
|
5558
|
+
* @summary ListingContent List
|
|
5559
|
+
* @param {string} [listingId]
|
|
5560
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5561
|
+
* @param {*} [options] Override http request option.
|
|
5562
|
+
* @throws {RequiredError}
|
|
5563
|
+
*/
|
|
5564
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5565
|
+
/**
|
|
5566
|
+
* ListingContent Update
|
|
5567
|
+
* @summary ListingContent Update
|
|
5568
|
+
* @param {string} listingContentId
|
|
5569
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5570
|
+
* @param {*} [options] Override http request option.
|
|
5571
|
+
* @throws {RequiredError}
|
|
5572
|
+
*/
|
|
5573
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5574
|
+
/**
|
|
5575
|
+
* ListingContentVersions Get
|
|
5576
|
+
* @summary ListingContentVersions Get
|
|
5577
|
+
* @param {string} listingContentVersionId
|
|
5578
|
+
* @param {*} [options] Override http request option.
|
|
5579
|
+
* @throws {RequiredError}
|
|
5580
|
+
*/
|
|
5581
|
+
listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5582
|
+
/**
|
|
5583
|
+
* ListingContentVersions Get
|
|
5584
|
+
* @summary ListingContentVersions Get
|
|
5585
|
+
* @param {string} listingContentVersionId
|
|
5586
|
+
* @param {*} [options] Override http request option.
|
|
5587
|
+
* @throws {RequiredError}
|
|
5588
|
+
*/
|
|
5589
|
+
listingContentVersionsGet_1: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5590
|
+
/**
|
|
5591
|
+
* ListingContentVersions List
|
|
5592
|
+
* @summary ListingContentVersions List
|
|
5593
|
+
* @param {string} [listingContentId]
|
|
5594
|
+
* @param {*} [options] Override http request option.
|
|
5595
|
+
* @throws {RequiredError}
|
|
5596
|
+
*/
|
|
5597
|
+
listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5598
|
+
/**
|
|
5599
|
+
* ListingContentVersions List
|
|
5600
|
+
* @summary ListingContentVersions List
|
|
5601
|
+
* @param {string} [listingContentId]
|
|
5602
|
+
* @param {*} [options] Override http request option.
|
|
5603
|
+
* @throws {RequiredError}
|
|
5604
|
+
*/
|
|
5605
|
+
listingContentVersionsList_2: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5606
|
+
};
|
|
5607
|
+
/**
|
|
5608
|
+
* ListingContentApi - functional programming interface
|
|
5609
|
+
* @export
|
|
5610
|
+
*/
|
|
5611
|
+
declare const ListingContentApiFp: (configuration?: Configuration) => {
|
|
5612
|
+
/**
|
|
5613
|
+
* 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).
|
|
5614
|
+
* @summary Generate Listing Content Upload Url
|
|
5615
|
+
* @param {string} listingId
|
|
5616
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5617
|
+
* @param {*} [options] Override http request option.
|
|
5618
|
+
* @throws {RequiredError}
|
|
5619
|
+
*/
|
|
5620
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
5621
|
+
/**
|
|
5622
|
+
* ListingContent Create
|
|
5623
|
+
* @summary ListingContent Create
|
|
5624
|
+
* @param {string} listingId
|
|
5625
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5626
|
+
* @param {*} [options] Override http request option.
|
|
5627
|
+
* @throws {RequiredError}
|
|
5628
|
+
*/
|
|
5629
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5630
|
+
/**
|
|
5631
|
+
* ListingContent Delete
|
|
5632
|
+
* @summary ListingContent Delete
|
|
5633
|
+
* @param {string} listingContentId
|
|
5634
|
+
* @param {*} [options] Override http request option.
|
|
5635
|
+
* @throws {RequiredError}
|
|
5636
|
+
*/
|
|
5637
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5638
|
+
/**
|
|
5639
|
+
* ListingContent Get
|
|
5640
|
+
* @summary ListingContent Get
|
|
5641
|
+
* @param {string} listingContentId
|
|
5642
|
+
* @param {*} [options] Override http request option.
|
|
5643
|
+
* @throws {RequiredError}
|
|
5644
|
+
*/
|
|
5645
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5646
|
+
/**
|
|
5647
|
+
* ListingContent List
|
|
5648
|
+
* @summary ListingContent List
|
|
5649
|
+
* @param {string} [listingId]
|
|
5650
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5651
|
+
* @param {*} [options] Override http request option.
|
|
5652
|
+
* @throws {RequiredError}
|
|
5653
|
+
*/
|
|
5654
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
5655
|
+
/**
|
|
5656
|
+
* ListingContent Update
|
|
5657
|
+
* @summary ListingContent Update
|
|
5658
|
+
* @param {string} listingContentId
|
|
5659
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5660
|
+
* @param {*} [options] Override http request option.
|
|
5661
|
+
* @throws {RequiredError}
|
|
5662
|
+
*/
|
|
5663
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5664
|
+
/**
|
|
5665
|
+
* ListingContentVersions Get
|
|
5666
|
+
* @summary ListingContentVersions Get
|
|
5667
|
+
* @param {string} listingContentVersionId
|
|
5668
|
+
* @param {*} [options] Override http request option.
|
|
5669
|
+
* @throws {RequiredError}
|
|
5670
|
+
*/
|
|
5671
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
5672
|
+
/**
|
|
5673
|
+
* ListingContentVersions Get
|
|
5674
|
+
* @summary ListingContentVersions Get
|
|
5675
|
+
* @param {string} listingContentVersionId
|
|
5676
|
+
* @param {*} [options] Override http request option.
|
|
5677
|
+
* @throws {RequiredError}
|
|
5678
|
+
*/
|
|
5679
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
5680
|
+
/**
|
|
5681
|
+
* ListingContentVersions List
|
|
5682
|
+
* @summary ListingContentVersions List
|
|
5683
|
+
* @param {string} [listingContentId]
|
|
5684
|
+
* @param {*} [options] Override http request option.
|
|
5685
|
+
* @throws {RequiredError}
|
|
5686
|
+
*/
|
|
5687
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
5688
|
+
/**
|
|
5689
|
+
* ListingContentVersions List
|
|
5690
|
+
* @summary ListingContentVersions List
|
|
5691
|
+
* @param {string} [listingContentId]
|
|
5692
|
+
* @param {*} [options] Override http request option.
|
|
5693
|
+
* @throws {RequiredError}
|
|
5694
|
+
*/
|
|
5695
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
5696
|
+
};
|
|
5697
|
+
/**
|
|
5698
|
+
* ListingContentApi - factory interface
|
|
5699
|
+
* @export
|
|
5700
|
+
*/
|
|
5701
|
+
declare const ListingContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5702
|
+
/**
|
|
5703
|
+
* 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).
|
|
5704
|
+
* @summary Generate Listing Content Upload Url
|
|
5705
|
+
* @param {string} listingId
|
|
5706
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5707
|
+
* @param {*} [options] Override http request option.
|
|
5708
|
+
* @throws {RequiredError}
|
|
5709
|
+
*/
|
|
5710
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
5711
|
+
/**
|
|
5712
|
+
* ListingContent Create
|
|
5713
|
+
* @summary ListingContent Create
|
|
5714
|
+
* @param {string} listingId
|
|
5715
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5716
|
+
* @param {*} [options] Override http request option.
|
|
5717
|
+
* @throws {RequiredError}
|
|
5718
|
+
*/
|
|
5719
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5720
|
+
/**
|
|
5721
|
+
* ListingContent Delete
|
|
5722
|
+
* @summary ListingContent Delete
|
|
5723
|
+
* @param {string} listingContentId
|
|
5724
|
+
* @param {*} [options] Override http request option.
|
|
5725
|
+
* @throws {RequiredError}
|
|
5726
|
+
*/
|
|
5727
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5728
|
+
/**
|
|
5729
|
+
* ListingContent Get
|
|
5730
|
+
* @summary ListingContent Get
|
|
5731
|
+
* @param {string} listingContentId
|
|
5732
|
+
* @param {*} [options] Override http request option.
|
|
5733
|
+
* @throws {RequiredError}
|
|
5734
|
+
*/
|
|
5735
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5736
|
+
/**
|
|
5737
|
+
* ListingContent List
|
|
5738
|
+
* @summary ListingContent List
|
|
5739
|
+
* @param {string} [listingId]
|
|
5740
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5741
|
+
* @param {*} [options] Override http request option.
|
|
5742
|
+
* @throws {RequiredError}
|
|
5743
|
+
*/
|
|
5744
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
5745
|
+
/**
|
|
5746
|
+
* ListingContent Update
|
|
5747
|
+
* @summary ListingContent Update
|
|
5748
|
+
* @param {string} listingContentId
|
|
5749
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5750
|
+
* @param {*} [options] Override http request option.
|
|
5751
|
+
* @throws {RequiredError}
|
|
5752
|
+
*/
|
|
5753
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5754
|
+
/**
|
|
5755
|
+
* ListingContentVersions Get
|
|
5756
|
+
* @summary ListingContentVersions Get
|
|
5757
|
+
* @param {string} listingContentVersionId
|
|
5758
|
+
* @param {*} [options] Override http request option.
|
|
5759
|
+
* @throws {RequiredError}
|
|
5760
|
+
*/
|
|
5761
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
5762
|
+
/**
|
|
5763
|
+
* ListingContentVersions Get
|
|
5764
|
+
* @summary ListingContentVersions Get
|
|
5765
|
+
* @param {string} listingContentVersionId
|
|
5766
|
+
* @param {*} [options] Override http request option.
|
|
5767
|
+
* @throws {RequiredError}
|
|
5768
|
+
*/
|
|
5769
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
5770
|
+
/**
|
|
5771
|
+
* ListingContentVersions List
|
|
5772
|
+
* @summary ListingContentVersions List
|
|
5773
|
+
* @param {string} [listingContentId]
|
|
5774
|
+
* @param {*} [options] Override http request option.
|
|
5775
|
+
* @throws {RequiredError}
|
|
5776
|
+
*/
|
|
5777
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
5778
|
+
/**
|
|
5779
|
+
* ListingContentVersions List
|
|
5780
|
+
* @summary ListingContentVersions List
|
|
5781
|
+
* @param {string} [listingContentId]
|
|
5782
|
+
* @param {*} [options] Override http request option.
|
|
5783
|
+
* @throws {RequiredError}
|
|
5784
|
+
*/
|
|
5785
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
5786
|
+
};
|
|
5787
|
+
/**
|
|
5788
|
+
* ListingContentApi - object-oriented interface
|
|
5789
|
+
* @export
|
|
5790
|
+
* @class ListingContentApi
|
|
5791
|
+
* @extends {BaseAPI}
|
|
5792
|
+
*/
|
|
5793
|
+
declare class ListingContentApi extends BaseAPI {
|
|
5794
|
+
/**
|
|
5795
|
+
* 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).
|
|
5796
|
+
* @summary Generate Listing Content Upload Url
|
|
5797
|
+
* @param {string} listingId
|
|
5798
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5799
|
+
* @param {*} [options] Override http request option.
|
|
5800
|
+
* @throws {RequiredError}
|
|
5801
|
+
* @memberof ListingContentApi
|
|
5802
|
+
*/
|
|
5803
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
5804
|
+
/**
|
|
5805
|
+
* ListingContent Create
|
|
5806
|
+
* @summary ListingContent Create
|
|
5807
|
+
* @param {string} listingId
|
|
5808
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5809
|
+
* @param {*} [options] Override http request option.
|
|
5810
|
+
* @throws {RequiredError}
|
|
5811
|
+
* @memberof ListingContentApi
|
|
5812
|
+
*/
|
|
5813
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5814
|
+
/**
|
|
5815
|
+
* ListingContent Delete
|
|
5816
|
+
* @summary ListingContent Delete
|
|
5817
|
+
* @param {string} listingContentId
|
|
5818
|
+
* @param {*} [options] Override http request option.
|
|
5819
|
+
* @throws {RequiredError}
|
|
5820
|
+
* @memberof ListingContentApi
|
|
5821
|
+
*/
|
|
5822
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5823
|
+
/**
|
|
5824
|
+
* ListingContent Get
|
|
5825
|
+
* @summary ListingContent Get
|
|
5826
|
+
* @param {string} listingContentId
|
|
5827
|
+
* @param {*} [options] Override http request option.
|
|
5828
|
+
* @throws {RequiredError}
|
|
5829
|
+
* @memberof ListingContentApi
|
|
5830
|
+
*/
|
|
5831
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5832
|
+
/**
|
|
5833
|
+
* ListingContent List
|
|
5834
|
+
* @summary ListingContent List
|
|
5835
|
+
* @param {string} [listingId]
|
|
5836
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5837
|
+
* @param {*} [options] Override http request option.
|
|
5838
|
+
* @throws {RequiredError}
|
|
5839
|
+
* @memberof ListingContentApi
|
|
5840
|
+
*/
|
|
5841
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
5842
|
+
/**
|
|
5843
|
+
* ListingContent Update
|
|
5844
|
+
* @summary ListingContent Update
|
|
5845
|
+
* @param {string} listingContentId
|
|
5846
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5847
|
+
* @param {*} [options] Override http request option.
|
|
5848
|
+
* @throws {RequiredError}
|
|
5849
|
+
* @memberof ListingContentApi
|
|
5850
|
+
*/
|
|
5851
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5852
|
+
/**
|
|
5853
|
+
* ListingContentVersions Get
|
|
5854
|
+
* @summary ListingContentVersions Get
|
|
5855
|
+
* @param {string} listingContentVersionId
|
|
5856
|
+
* @param {*} [options] Override http request option.
|
|
5857
|
+
* @throws {RequiredError}
|
|
5858
|
+
* @memberof ListingContentApi
|
|
5859
|
+
*/
|
|
5860
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
5861
|
+
/**
|
|
5862
|
+
* ListingContentVersions Get
|
|
5863
|
+
* @summary ListingContentVersions Get
|
|
5864
|
+
* @param {string} listingContentVersionId
|
|
5865
|
+
* @param {*} [options] Override http request option.
|
|
5866
|
+
* @throws {RequiredError}
|
|
5867
|
+
* @memberof ListingContentApi
|
|
5868
|
+
*/
|
|
5869
|
+
listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
5870
|
+
/**
|
|
5871
|
+
* ListingContentVersions List
|
|
5872
|
+
* @summary ListingContentVersions List
|
|
5873
|
+
* @param {string} [listingContentId]
|
|
5874
|
+
* @param {*} [options] Override http request option.
|
|
5875
|
+
* @throws {RequiredError}
|
|
5876
|
+
* @memberof ListingContentApi
|
|
5877
|
+
*/
|
|
5878
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
5879
|
+
/**
|
|
5880
|
+
* ListingContentVersions List
|
|
5881
|
+
* @summary ListingContentVersions List
|
|
5882
|
+
* @param {string} [listingContentId]
|
|
4967
5883
|
* @param {*} [options] Override http request option.
|
|
4968
5884
|
* @throws {RequiredError}
|
|
4969
|
-
* @memberof
|
|
5885
|
+
* @memberof ListingContentApi
|
|
4970
5886
|
*/
|
|
4971
|
-
|
|
5887
|
+
listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
4972
5888
|
}
|
|
4973
5889
|
/**
|
|
4974
5890
|
* ListingsApi - axios parameter creator
|
|
4975
5891
|
* @export
|
|
4976
5892
|
*/
|
|
4977
5893
|
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5894
|
+
/**
|
|
5895
|
+
* ListingContent Create
|
|
5896
|
+
* @summary ListingContent Create
|
|
5897
|
+
* @param {string} listingId
|
|
5898
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5899
|
+
* @param {*} [options] Override http request option.
|
|
5900
|
+
* @throws {RequiredError}
|
|
5901
|
+
*/
|
|
5902
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5903
|
+
/**
|
|
5904
|
+
* ListingContent Delete
|
|
5905
|
+
* @summary ListingContent Delete
|
|
5906
|
+
* @param {string} listingContentId
|
|
5907
|
+
* @param {*} [options] Override http request option.
|
|
5908
|
+
* @throws {RequiredError}
|
|
5909
|
+
*/
|
|
5910
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5911
|
+
/**
|
|
5912
|
+
* ListingContent Get
|
|
5913
|
+
* @summary ListingContent Get
|
|
5914
|
+
* @param {string} listingContentId
|
|
5915
|
+
* @param {*} [options] Override http request option.
|
|
5916
|
+
* @throws {RequiredError}
|
|
5917
|
+
*/
|
|
5918
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5919
|
+
/**
|
|
5920
|
+
* ListingContent List
|
|
5921
|
+
* @summary ListingContent List
|
|
5922
|
+
* @param {string} [listingId]
|
|
5923
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5924
|
+
* @param {*} [options] Override http request option.
|
|
5925
|
+
* @throws {RequiredError}
|
|
5926
|
+
*/
|
|
5927
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5928
|
+
/**
|
|
5929
|
+
* ListingContent Update
|
|
5930
|
+
* @summary ListingContent Update
|
|
5931
|
+
* @param {string} listingContentId
|
|
5932
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
5933
|
+
* @param {*} [options] Override http request option.
|
|
5934
|
+
* @throws {RequiredError}
|
|
5935
|
+
*/
|
|
5936
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4978
5937
|
/**
|
|
4979
5938
|
* Listings Get
|
|
4980
5939
|
* @summary Listings Get
|
|
@@ -5003,6 +5962,49 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5003
5962
|
* @export
|
|
5004
5963
|
*/
|
|
5005
5964
|
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
5965
|
+
/**
|
|
5966
|
+
* ListingContent Create
|
|
5967
|
+
* @summary ListingContent Create
|
|
5968
|
+
* @param {string} listingId
|
|
5969
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
5970
|
+
* @param {*} [options] Override http request option.
|
|
5971
|
+
* @throws {RequiredError}
|
|
5972
|
+
*/
|
|
5973
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5974
|
+
/**
|
|
5975
|
+
* ListingContent Delete
|
|
5976
|
+
* @summary ListingContent Delete
|
|
5977
|
+
* @param {string} listingContentId
|
|
5978
|
+
* @param {*} [options] Override http request option.
|
|
5979
|
+
* @throws {RequiredError}
|
|
5980
|
+
*/
|
|
5981
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5982
|
+
/**
|
|
5983
|
+
* ListingContent Get
|
|
5984
|
+
* @summary ListingContent Get
|
|
5985
|
+
* @param {string} listingContentId
|
|
5986
|
+
* @param {*} [options] Override http request option.
|
|
5987
|
+
* @throws {RequiredError}
|
|
5988
|
+
*/
|
|
5989
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5990
|
+
/**
|
|
5991
|
+
* ListingContent List
|
|
5992
|
+
* @summary ListingContent List
|
|
5993
|
+
* @param {string} [listingId]
|
|
5994
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
5995
|
+
* @param {*} [options] Override http request option.
|
|
5996
|
+
* @throws {RequiredError}
|
|
5997
|
+
*/
|
|
5998
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
5999
|
+
/**
|
|
6000
|
+
* ListingContent Update
|
|
6001
|
+
* @summary ListingContent Update
|
|
6002
|
+
* @param {string} listingContentId
|
|
6003
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6004
|
+
* @param {*} [options] Override http request option.
|
|
6005
|
+
* @throws {RequiredError}
|
|
6006
|
+
*/
|
|
6007
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
5006
6008
|
/**
|
|
5007
6009
|
* Listings Get
|
|
5008
6010
|
* @summary Listings Get
|
|
@@ -5031,6 +6033,49 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
5031
6033
|
* @export
|
|
5032
6034
|
*/
|
|
5033
6035
|
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6036
|
+
/**
|
|
6037
|
+
* ListingContent Create
|
|
6038
|
+
* @summary ListingContent Create
|
|
6039
|
+
* @param {string} listingId
|
|
6040
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6041
|
+
* @param {*} [options] Override http request option.
|
|
6042
|
+
* @throws {RequiredError}
|
|
6043
|
+
*/
|
|
6044
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
6045
|
+
/**
|
|
6046
|
+
* ListingContent Delete
|
|
6047
|
+
* @summary ListingContent Delete
|
|
6048
|
+
* @param {string} listingContentId
|
|
6049
|
+
* @param {*} [options] Override http request option.
|
|
6050
|
+
* @throws {RequiredError}
|
|
6051
|
+
*/
|
|
6052
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6053
|
+
/**
|
|
6054
|
+
* ListingContent Get
|
|
6055
|
+
* @summary ListingContent Get
|
|
6056
|
+
* @param {string} listingContentId
|
|
6057
|
+
* @param {*} [options] Override http request option.
|
|
6058
|
+
* @throws {RequiredError}
|
|
6059
|
+
*/
|
|
6060
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
6061
|
+
/**
|
|
6062
|
+
* ListingContent List
|
|
6063
|
+
* @summary ListingContent List
|
|
6064
|
+
* @param {string} [listingId]
|
|
6065
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6066
|
+
* @param {*} [options] Override http request option.
|
|
6067
|
+
* @throws {RequiredError}
|
|
6068
|
+
*/
|
|
6069
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
6070
|
+
/**
|
|
6071
|
+
* ListingContent Update
|
|
6072
|
+
* @summary ListingContent Update
|
|
6073
|
+
* @param {string} listingContentId
|
|
6074
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6075
|
+
* @param {*} [options] Override http request option.
|
|
6076
|
+
* @throws {RequiredError}
|
|
6077
|
+
*/
|
|
6078
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
5034
6079
|
/**
|
|
5035
6080
|
* Listings Get
|
|
5036
6081
|
* @summary Listings Get
|
|
@@ -5061,6 +6106,54 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5061
6106
|
* @extends {BaseAPI}
|
|
5062
6107
|
*/
|
|
5063
6108
|
declare class ListingsApi extends BaseAPI {
|
|
6109
|
+
/**
|
|
6110
|
+
* ListingContent Create
|
|
6111
|
+
* @summary ListingContent Create
|
|
6112
|
+
* @param {string} listingId
|
|
6113
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6114
|
+
* @param {*} [options] Override http request option.
|
|
6115
|
+
* @throws {RequiredError}
|
|
6116
|
+
* @memberof ListingsApi
|
|
6117
|
+
*/
|
|
6118
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
6119
|
+
/**
|
|
6120
|
+
* ListingContent Delete
|
|
6121
|
+
* @summary ListingContent Delete
|
|
6122
|
+
* @param {string} listingContentId
|
|
6123
|
+
* @param {*} [options] Override http request option.
|
|
6124
|
+
* @throws {RequiredError}
|
|
6125
|
+
* @memberof ListingsApi
|
|
6126
|
+
*/
|
|
6127
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6128
|
+
/**
|
|
6129
|
+
* ListingContent Get
|
|
6130
|
+
* @summary ListingContent Get
|
|
6131
|
+
* @param {string} listingContentId
|
|
6132
|
+
* @param {*} [options] Override http request option.
|
|
6133
|
+
* @throws {RequiredError}
|
|
6134
|
+
* @memberof ListingsApi
|
|
6135
|
+
*/
|
|
6136
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
6137
|
+
/**
|
|
6138
|
+
* ListingContent List
|
|
6139
|
+
* @summary ListingContent List
|
|
6140
|
+
* @param {string} [listingId]
|
|
6141
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6142
|
+
* @param {*} [options] Override http request option.
|
|
6143
|
+
* @throws {RequiredError}
|
|
6144
|
+
* @memberof ListingsApi
|
|
6145
|
+
*/
|
|
6146
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
6147
|
+
/**
|
|
6148
|
+
* ListingContent Update
|
|
6149
|
+
* @summary ListingContent Update
|
|
6150
|
+
* @param {string} listingContentId
|
|
6151
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6152
|
+
* @param {*} [options] Override http request option.
|
|
6153
|
+
* @throws {RequiredError}
|
|
6154
|
+
* @memberof ListingsApi
|
|
6155
|
+
*/
|
|
6156
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
5064
6157
|
/**
|
|
5065
6158
|
* Listings Get
|
|
5066
6159
|
* @summary Listings Get
|
|
@@ -5528,6 +6621,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5528
6621
|
* @throws {RequiredError}
|
|
5529
6622
|
*/
|
|
5530
6623
|
addressesUpdate: (addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6624
|
+
/**
|
|
6625
|
+
* AiResponses Create
|
|
6626
|
+
* @summary AiResponses Create
|
|
6627
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
6628
|
+
* @param {*} [options] Override http request option.
|
|
6629
|
+
* @throws {RequiredError}
|
|
6630
|
+
*/
|
|
6631
|
+
aiResponsesCreate: (aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5531
6632
|
/**
|
|
5532
6633
|
* Associates a contact with a listing with the OWNER type.
|
|
5533
6634
|
* @summary Create Contact Listing
|
|
@@ -5679,6 +6780,15 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5679
6780
|
* @throws {RequiredError}
|
|
5680
6781
|
*/
|
|
5681
6782
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6783
|
+
/**
|
|
6784
|
+
* 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).
|
|
6785
|
+
* @summary Generate Listing Content Upload Url
|
|
6786
|
+
* @param {string} listingId
|
|
6787
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
6788
|
+
* @param {*} [options] Override http request option.
|
|
6789
|
+
* @throws {RequiredError}
|
|
6790
|
+
*/
|
|
6791
|
+
generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5682
6792
|
/**
|
|
5683
6793
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5684
6794
|
* @summary Get Me
|
|
@@ -5701,6 +6811,65 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5701
6811
|
* @throws {RequiredError}
|
|
5702
6812
|
*/
|
|
5703
6813
|
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6814
|
+
/**
|
|
6815
|
+
* ListingContent Create
|
|
6816
|
+
* @summary ListingContent Create
|
|
6817
|
+
* @param {string} listingId
|
|
6818
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6819
|
+
* @param {*} [options] Override http request option.
|
|
6820
|
+
* @throws {RequiredError}
|
|
6821
|
+
*/
|
|
6822
|
+
listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6823
|
+
/**
|
|
6824
|
+
* ListingContent Delete
|
|
6825
|
+
* @summary ListingContent Delete
|
|
6826
|
+
* @param {string} listingContentId
|
|
6827
|
+
* @param {*} [options] Override http request option.
|
|
6828
|
+
* @throws {RequiredError}
|
|
6829
|
+
*/
|
|
6830
|
+
listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6831
|
+
/**
|
|
6832
|
+
* ListingContent Get
|
|
6833
|
+
* @summary ListingContent Get
|
|
6834
|
+
* @param {string} listingContentId
|
|
6835
|
+
* @param {*} [options] Override http request option.
|
|
6836
|
+
* @throws {RequiredError}
|
|
6837
|
+
*/
|
|
6838
|
+
listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6839
|
+
/**
|
|
6840
|
+
* ListingContent List
|
|
6841
|
+
* @summary ListingContent List
|
|
6842
|
+
* @param {string} [listingId]
|
|
6843
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6844
|
+
* @param {*} [options] Override http request option.
|
|
6845
|
+
* @throws {RequiredError}
|
|
6846
|
+
*/
|
|
6847
|
+
listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6848
|
+
/**
|
|
6849
|
+
* ListingContent Update
|
|
6850
|
+
* @summary ListingContent Update
|
|
6851
|
+
* @param {string} listingContentId
|
|
6852
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6853
|
+
* @param {*} [options] Override http request option.
|
|
6854
|
+
* @throws {RequiredError}
|
|
6855
|
+
*/
|
|
6856
|
+
listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6857
|
+
/**
|
|
6858
|
+
* ListingContentVersions Get
|
|
6859
|
+
* @summary ListingContentVersions Get
|
|
6860
|
+
* @param {string} listingContentVersionId
|
|
6861
|
+
* @param {*} [options] Override http request option.
|
|
6862
|
+
* @throws {RequiredError}
|
|
6863
|
+
*/
|
|
6864
|
+
listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6865
|
+
/**
|
|
6866
|
+
* ListingContentVersions List
|
|
6867
|
+
* @summary ListingContentVersions List
|
|
6868
|
+
* @param {string} [listingContentId]
|
|
6869
|
+
* @param {*} [options] Override http request option.
|
|
6870
|
+
* @throws {RequiredError}
|
|
6871
|
+
*/
|
|
6872
|
+
listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5704
6873
|
/**
|
|
5705
6874
|
* Listings Get
|
|
5706
6875
|
* @summary Listings Get
|
|
@@ -5924,6 +7093,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5924
7093
|
* @throws {RequiredError}
|
|
5925
7094
|
*/
|
|
5926
7095
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAddress>>;
|
|
7096
|
+
/**
|
|
7097
|
+
* AiResponses Create
|
|
7098
|
+
* @summary AiResponses Create
|
|
7099
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
7100
|
+
* @param {*} [options] Override http request option.
|
|
7101
|
+
* @throws {RequiredError}
|
|
7102
|
+
*/
|
|
7103
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIAiResponse>>;
|
|
5927
7104
|
/**
|
|
5928
7105
|
* Associates a contact with a listing with the OWNER type.
|
|
5929
7106
|
* @summary Create Contact Listing
|
|
@@ -6075,6 +7252,15 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6075
7252
|
* @throws {RequiredError}
|
|
6076
7253
|
*/
|
|
6077
7254
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
7255
|
+
/**
|
|
7256
|
+
* 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).
|
|
7257
|
+
* @summary Generate Listing Content Upload Url
|
|
7258
|
+
* @param {string} listingId
|
|
7259
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
7260
|
+
* @param {*} [options] Override http request option.
|
|
7261
|
+
* @throws {RequiredError}
|
|
7262
|
+
*/
|
|
7263
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
6078
7264
|
/**
|
|
6079
7265
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6080
7266
|
* @summary Get Me
|
|
@@ -6097,6 +7283,65 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
6097
7283
|
* @throws {RequiredError}
|
|
6098
7284
|
*/
|
|
6099
7285
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
|
|
7286
|
+
/**
|
|
7287
|
+
* ListingContent Create
|
|
7288
|
+
* @summary ListingContent Create
|
|
7289
|
+
* @param {string} listingId
|
|
7290
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
7291
|
+
* @param {*} [options] Override http request option.
|
|
7292
|
+
* @throws {RequiredError}
|
|
7293
|
+
*/
|
|
7294
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7295
|
+
/**
|
|
7296
|
+
* ListingContent Delete
|
|
7297
|
+
* @summary ListingContent Delete
|
|
7298
|
+
* @param {string} listingContentId
|
|
7299
|
+
* @param {*} [options] Override http request option.
|
|
7300
|
+
* @throws {RequiredError}
|
|
7301
|
+
*/
|
|
7302
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7303
|
+
/**
|
|
7304
|
+
* ListingContent Get
|
|
7305
|
+
* @summary ListingContent Get
|
|
7306
|
+
* @param {string} listingContentId
|
|
7307
|
+
* @param {*} [options] Override http request option.
|
|
7308
|
+
* @throws {RequiredError}
|
|
7309
|
+
*/
|
|
7310
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7311
|
+
/**
|
|
7312
|
+
* ListingContent List
|
|
7313
|
+
* @summary ListingContent List
|
|
7314
|
+
* @param {string} [listingId]
|
|
7315
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
7316
|
+
* @param {*} [options] Override http request option.
|
|
7317
|
+
* @throws {RequiredError}
|
|
7318
|
+
*/
|
|
7319
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
|
|
7320
|
+
/**
|
|
7321
|
+
* ListingContent Update
|
|
7322
|
+
* @summary ListingContent Update
|
|
7323
|
+
* @param {string} listingContentId
|
|
7324
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
7325
|
+
* @param {*} [options] Override http request option.
|
|
7326
|
+
* @throws {RequiredError}
|
|
7327
|
+
*/
|
|
7328
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
|
|
7329
|
+
/**
|
|
7330
|
+
* ListingContentVersions Get
|
|
7331
|
+
* @summary ListingContentVersions Get
|
|
7332
|
+
* @param {string} listingContentVersionId
|
|
7333
|
+
* @param {*} [options] Override http request option.
|
|
7334
|
+
* @throws {RequiredError}
|
|
7335
|
+
*/
|
|
7336
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
|
|
7337
|
+
/**
|
|
7338
|
+
* ListingContentVersions List
|
|
7339
|
+
* @summary ListingContentVersions List
|
|
7340
|
+
* @param {string} [listingContentId]
|
|
7341
|
+
* @param {*} [options] Override http request option.
|
|
7342
|
+
* @throws {RequiredError}
|
|
7343
|
+
*/
|
|
7344
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
|
|
6100
7345
|
/**
|
|
6101
7346
|
* Listings Get
|
|
6102
7347
|
* @summary Listings Get
|
|
@@ -6320,6 +7565,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6320
7565
|
* @throws {RequiredError}
|
|
6321
7566
|
*/
|
|
6322
7567
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIAddress>;
|
|
7568
|
+
/**
|
|
7569
|
+
* AiResponses Create
|
|
7570
|
+
* @summary AiResponses Create
|
|
7571
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
7572
|
+
* @param {*} [options] Override http request option.
|
|
7573
|
+
* @throws {RequiredError}
|
|
7574
|
+
*/
|
|
7575
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIAiResponse>;
|
|
6323
7576
|
/**
|
|
6324
7577
|
* Associates a contact with a listing with the OWNER type.
|
|
6325
7578
|
* @summary Create Contact Listing
|
|
@@ -6471,6 +7724,15 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6471
7724
|
* @throws {RequiredError}
|
|
6472
7725
|
*/
|
|
6473
7726
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
7727
|
+
/**
|
|
7728
|
+
* 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).
|
|
7729
|
+
* @summary Generate Listing Content Upload Url
|
|
7730
|
+
* @param {string} listingId
|
|
7731
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
7732
|
+
* @param {*} [options] Override http request option.
|
|
7733
|
+
* @throws {RequiredError}
|
|
7734
|
+
*/
|
|
7735
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
6474
7736
|
/**
|
|
6475
7737
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6476
7738
|
* @summary Get Me
|
|
@@ -6493,6 +7755,65 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6493
7755
|
* @throws {RequiredError}
|
|
6494
7756
|
*/
|
|
6495
7757
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
|
|
7758
|
+
/**
|
|
7759
|
+
* ListingContent Create
|
|
7760
|
+
* @summary ListingContent Create
|
|
7761
|
+
* @param {string} listingId
|
|
7762
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
7763
|
+
* @param {*} [options] Override http request option.
|
|
7764
|
+
* @throws {RequiredError}
|
|
7765
|
+
*/
|
|
7766
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7767
|
+
/**
|
|
7768
|
+
* ListingContent Delete
|
|
7769
|
+
* @summary ListingContent Delete
|
|
7770
|
+
* @param {string} listingContentId
|
|
7771
|
+
* @param {*} [options] Override http request option.
|
|
7772
|
+
* @throws {RequiredError}
|
|
7773
|
+
*/
|
|
7774
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7775
|
+
/**
|
|
7776
|
+
* ListingContent Get
|
|
7777
|
+
* @summary ListingContent Get
|
|
7778
|
+
* @param {string} listingContentId
|
|
7779
|
+
* @param {*} [options] Override http request option.
|
|
7780
|
+
* @throws {RequiredError}
|
|
7781
|
+
*/
|
|
7782
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7783
|
+
/**
|
|
7784
|
+
* ListingContent List
|
|
7785
|
+
* @summary ListingContent List
|
|
7786
|
+
* @param {string} [listingId]
|
|
7787
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
7788
|
+
* @param {*} [options] Override http request option.
|
|
7789
|
+
* @throws {RequiredError}
|
|
7790
|
+
*/
|
|
7791
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
|
|
7792
|
+
/**
|
|
7793
|
+
* ListingContent Update
|
|
7794
|
+
* @summary ListingContent Update
|
|
7795
|
+
* @param {string} listingContentId
|
|
7796
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
7797
|
+
* @param {*} [options] Override http request option.
|
|
7798
|
+
* @throws {RequiredError}
|
|
7799
|
+
*/
|
|
7800
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
|
|
7801
|
+
/**
|
|
7802
|
+
* ListingContentVersions Get
|
|
7803
|
+
* @summary ListingContentVersions Get
|
|
7804
|
+
* @param {string} listingContentVersionId
|
|
7805
|
+
* @param {*} [options] Override http request option.
|
|
7806
|
+
* @throws {RequiredError}
|
|
7807
|
+
*/
|
|
7808
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
|
|
7809
|
+
/**
|
|
7810
|
+
* ListingContentVersions List
|
|
7811
|
+
* @summary ListingContentVersions List
|
|
7812
|
+
* @param {string} [listingContentId]
|
|
7813
|
+
* @param {*} [options] Override http request option.
|
|
7814
|
+
* @throws {RequiredError}
|
|
7815
|
+
*/
|
|
7816
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
|
|
6496
7817
|
/**
|
|
6497
7818
|
* Listings Get
|
|
6498
7819
|
* @summary Listings Get
|
|
@@ -6723,6 +8044,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6723
8044
|
* @memberof UnboundApi
|
|
6724
8045
|
*/
|
|
6725
8046
|
addressesUpdate(addressId: string, aPIAddressUpdate: APIAddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAddress, any>>;
|
|
8047
|
+
/**
|
|
8048
|
+
* AiResponses Create
|
|
8049
|
+
* @summary AiResponses Create
|
|
8050
|
+
* @param {APIAiResponseCreate} aPIAiResponseCreate
|
|
8051
|
+
* @param {*} [options] Override http request option.
|
|
8052
|
+
* @throws {RequiredError}
|
|
8053
|
+
* @memberof UnboundApi
|
|
8054
|
+
*/
|
|
8055
|
+
aiResponsesCreate(aPIAiResponseCreate: APIAiResponseCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIAiResponse, any>>;
|
|
6726
8056
|
/**
|
|
6727
8057
|
* Associates a contact with a listing with the OWNER type.
|
|
6728
8058
|
* @summary Create Contact Listing
|
|
@@ -6890,6 +8220,16 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6890
8220
|
* @memberof UnboundApi
|
|
6891
8221
|
*/
|
|
6892
8222
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
8223
|
+
/**
|
|
8224
|
+
* 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).
|
|
8225
|
+
* @summary Generate Listing Content Upload Url
|
|
8226
|
+
* @param {string} listingId
|
|
8227
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
8228
|
+
* @param {*} [options] Override http request option.
|
|
8229
|
+
* @throws {RequiredError}
|
|
8230
|
+
* @memberof UnboundApi
|
|
8231
|
+
*/
|
|
8232
|
+
generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
6893
8233
|
/**
|
|
6894
8234
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6895
8235
|
* @summary Get Me
|
|
@@ -6915,6 +8255,72 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6915
8255
|
* @memberof UnboundApi
|
|
6916
8256
|
*/
|
|
6917
8257
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
8258
|
+
/**
|
|
8259
|
+
* ListingContent Create
|
|
8260
|
+
* @summary ListingContent Create
|
|
8261
|
+
* @param {string} listingId
|
|
8262
|
+
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
8263
|
+
* @param {*} [options] Override http request option.
|
|
8264
|
+
* @throws {RequiredError}
|
|
8265
|
+
* @memberof UnboundApi
|
|
8266
|
+
*/
|
|
8267
|
+
listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8268
|
+
/**
|
|
8269
|
+
* ListingContent Delete
|
|
8270
|
+
* @summary ListingContent Delete
|
|
8271
|
+
* @param {string} listingContentId
|
|
8272
|
+
* @param {*} [options] Override http request option.
|
|
8273
|
+
* @throws {RequiredError}
|
|
8274
|
+
* @memberof UnboundApi
|
|
8275
|
+
*/
|
|
8276
|
+
listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
8277
|
+
/**
|
|
8278
|
+
* ListingContent Get
|
|
8279
|
+
* @summary ListingContent Get
|
|
8280
|
+
* @param {string} listingContentId
|
|
8281
|
+
* @param {*} [options] Override http request option.
|
|
8282
|
+
* @throws {RequiredError}
|
|
8283
|
+
* @memberof UnboundApi
|
|
8284
|
+
*/
|
|
8285
|
+
listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8286
|
+
/**
|
|
8287
|
+
* ListingContent List
|
|
8288
|
+
* @summary ListingContent List
|
|
8289
|
+
* @param {string} [listingId]
|
|
8290
|
+
* @param {string} [status] Filter by status: active, deleted, or all
|
|
8291
|
+
* @param {*} [options] Override http request option.
|
|
8292
|
+
* @throws {RequiredError}
|
|
8293
|
+
* @memberof UnboundApi
|
|
8294
|
+
*/
|
|
8295
|
+
listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
|
|
8296
|
+
/**
|
|
8297
|
+
* ListingContent Update
|
|
8298
|
+
* @summary ListingContent Update
|
|
8299
|
+
* @param {string} listingContentId
|
|
8300
|
+
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
8301
|
+
* @param {*} [options] Override http request option.
|
|
8302
|
+
* @throws {RequiredError}
|
|
8303
|
+
* @memberof UnboundApi
|
|
8304
|
+
*/
|
|
8305
|
+
listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
|
|
8306
|
+
/**
|
|
8307
|
+
* ListingContentVersions Get
|
|
8308
|
+
* @summary ListingContentVersions Get
|
|
8309
|
+
* @param {string} listingContentVersionId
|
|
8310
|
+
* @param {*} [options] Override http request option.
|
|
8311
|
+
* @throws {RequiredError}
|
|
8312
|
+
* @memberof UnboundApi
|
|
8313
|
+
*/
|
|
8314
|
+
listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
|
|
8315
|
+
/**
|
|
8316
|
+
* ListingContentVersions List
|
|
8317
|
+
* @summary ListingContentVersions List
|
|
8318
|
+
* @param {string} [listingContentId]
|
|
8319
|
+
* @param {*} [options] Override http request option.
|
|
8320
|
+
* @throws {RequiredError}
|
|
8321
|
+
* @memberof UnboundApi
|
|
8322
|
+
*/
|
|
8323
|
+
listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
|
|
6918
8324
|
/**
|
|
6919
8325
|
* Listings Get
|
|
6920
8326
|
* @summary Listings Get
|
|
@@ -7204,4 +8610,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
7204
8610
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
7205
8611
|
}
|
|
7206
8612
|
|
|
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,
|
|
8613
|
+
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 };
|