@ember-home/unbound-ts-client 0.0.100 → 0.0.103

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 CHANGED
@@ -736,6 +736,152 @@ interface APIContactUpdate {
736
736
  */
737
737
  'smsTransactionalConsentType'?: string | null;
738
738
  }
739
+ /**
740
+ *
741
+ * @export
742
+ * @interface APIContent
743
+ */
744
+ interface APIContent {
745
+ /**
746
+ *
747
+ * @type {string}
748
+ * @memberof APIContent
749
+ */
750
+ 'contentItemId': string;
751
+ /**
752
+ *
753
+ * @type {ContentParentResource}
754
+ * @memberof APIContent
755
+ */
756
+ 'parentResource': ContentParentResource;
757
+ /**
758
+ *
759
+ * @type {string}
760
+ * @memberof APIContent
761
+ */
762
+ 'parentId': string;
763
+ /**
764
+ *
765
+ * @type {ContentVersionApi}
766
+ * @memberof APIContent
767
+ */
768
+ 'currentVersion': ContentVersionApi;
769
+ /**
770
+ *
771
+ * @type {string}
772
+ * @memberof APIContent
773
+ */
774
+ 'createdAt': string;
775
+ /**
776
+ *
777
+ * @type {string}
778
+ * @memberof APIContent
779
+ */
780
+ 'updatedAt': string;
781
+ /**
782
+ *
783
+ * @type {string}
784
+ * @memberof APIContent
785
+ */
786
+ 'deletedAt'?: string | null;
787
+ }
788
+ /**
789
+ *
790
+ * @export
791
+ * @interface APIContentUpdate
792
+ */
793
+ interface APIContentUpdate {
794
+ /**
795
+ *
796
+ * @type {string}
797
+ * @memberof APIContentUpdate
798
+ */
799
+ 'title'?: string | null;
800
+ /**
801
+ *
802
+ * @type {string}
803
+ * @memberof APIContentUpdate
804
+ */
805
+ 'description'?: string | null;
806
+ /**
807
+ *
808
+ * @type {Contenttypedata}
809
+ * @memberof APIContentUpdate
810
+ */
811
+ 'contentTypeData'?: Contenttypedata | null;
812
+ }
813
+ /**
814
+ *
815
+ * @export
816
+ * @interface APIContentVersion
817
+ */
818
+ interface APIContentVersion {
819
+ /**
820
+ *
821
+ * @type {string}
822
+ * @memberof APIContentVersion
823
+ */
824
+ 'contentItemVersionId': string;
825
+ /**
826
+ *
827
+ * @type {string}
828
+ * @memberof APIContentVersion
829
+ */
830
+ 'contentItemId': string;
831
+ /**
832
+ *
833
+ * @type {string}
834
+ * @memberof APIContentVersion
835
+ */
836
+ 'parentResource': APIContentVersionParentResourceEnum;
837
+ /**
838
+ *
839
+ * @type {number}
840
+ * @memberof APIContentVersion
841
+ */
842
+ 'version': number;
843
+ /**
844
+ *
845
+ * @type {string}
846
+ * @memberof APIContentVersion
847
+ */
848
+ 'title': string;
849
+ /**
850
+ *
851
+ * @type {string}
852
+ * @memberof APIContentVersion
853
+ */
854
+ 'description': string;
855
+ /**
856
+ *
857
+ * @type {Contenttypedata1}
858
+ * @memberof APIContentVersion
859
+ */
860
+ 'contentTypeData': Contenttypedata1;
861
+ /**
862
+ *
863
+ * @type {string}
864
+ * @memberof APIContentVersion
865
+ */
866
+ 'createdAt': string;
867
+ /**
868
+ *
869
+ * @type {string}
870
+ * @memberof APIContentVersion
871
+ */
872
+ 'createdBy': string;
873
+ /**
874
+ *
875
+ * @type {boolean}
876
+ * @memberof APIContentVersion
877
+ */
878
+ 'isCurrent'?: boolean;
879
+ }
880
+ declare const APIContentVersionParentResourceEnum: {
881
+ readonly Listing: "LISTING";
882
+ readonly Tag: "TAG";
883
+ };
884
+ type APIContentVersionParentResourceEnum = typeof APIContentVersionParentResourceEnum[keyof typeof APIContentVersionParentResourceEnum];
739
885
  /**
740
886
  *
741
887
  * @export
@@ -1099,159 +1245,6 @@ interface APIListing {
1099
1245
  */
1100
1246
  'providerAccountId': string;
1101
1247
  }
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
- }
1255
1248
  /**
1256
1249
  *
1257
1250
  * @export
@@ -2193,66 +2186,315 @@ interface ContactTypeDataApi {
2193
2186
  */
2194
2187
  type Contactcreate = APIContactCreate1 | APIContactCreate2;
2195
2188
  /**
2196
- *
2197
- * @export
2198
- * @enum {string}
2199
- */
2200
- declare const ConversationStatus: {
2201
- readonly Open: "OPEN";
2202
- readonly Closed: "CLOSED";
2203
- };
2204
- type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
2205
- /**
2206
- *
2189
+ * Logical content resource. Points to a current version. Title, description, and content_type_data are stored on the version for history tracking. Belongs to exactly one parent resource (listing or tag).
2207
2190
  * @export
2208
- * @interface ConversationSuggestionApi
2191
+ * @interface Content
2209
2192
  */
2210
- interface ConversationSuggestionApi {
2193
+ interface Content {
2211
2194
  /**
2212
2195
  *
2213
- * @type {SuggestionStatus}
2214
- * @memberof ConversationSuggestionApi
2196
+ * @type {string}
2197
+ * @memberof Content
2215
2198
  */
2216
- 'suggestionStatus': SuggestionStatus;
2199
+ 'contentItemId': string;
2217
2200
  /**
2218
2201
  *
2219
- * @type {SuggestionApi}
2220
- * @memberof ConversationSuggestionApi
2202
+ * @type {ContentParentResource}
2203
+ * @memberof Content
2221
2204
  */
2222
- 'suggestion'?: SuggestionApi | null;
2223
- }
2224
- /**
2225
- * @type Conversationtypedata
2226
- * @export
2227
- */
2228
- type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
2229
- /**
2230
- *
2231
- * @export
2232
- * @interface CreateContactListing
2233
- */
2234
- interface CreateContactListing {
2205
+ 'parentResource': ContentParentResource;
2235
2206
  /**
2236
2207
  *
2237
- * @type {ContactListingType}
2238
- * @memberof CreateContactListing
2208
+ * @type {string}
2209
+ * @memberof Content
2239
2210
  */
2240
- 'type': ContactListingType;
2211
+ 'parentId': string;
2212
+ /**
2213
+ *
2214
+ * @type {ContentVersion}
2215
+ * @memberof Content
2216
+ */
2217
+ 'currentVersion': ContentVersion;
2241
2218
  /**
2242
2219
  *
2243
2220
  * @type {string}
2244
- * @memberof CreateContactListing
2221
+ * @memberof Content
2245
2222
  */
2246
- 'startDate': string;
2223
+ 'createdAt': string;
2247
2224
  /**
2248
2225
  *
2249
2226
  * @type {string}
2250
- * @memberof CreateContactListing
2227
+ * @memberof Content
2251
2228
  */
2252
- 'endDate'?: string | null;
2253
- }
2254
- /**
2255
- *
2229
+ 'updatedAt': string;
2230
+ /**
2231
+ *
2232
+ * @type {string}
2233
+ * @memberof Content
2234
+ */
2235
+ 'deletedAt'?: string | null;
2236
+ }
2237
+ /**
2238
+ * Types of resources that can own content.
2239
+ * @export
2240
+ * @enum {string}
2241
+ */
2242
+ declare const ContentParentResource: {
2243
+ readonly Listing: "LISTING";
2244
+ readonly Tag: "TAG";
2245
+ };
2246
+ type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
2247
+ /**
2248
+ * Immutable content version snapshot. Contains the actual content_type_data describing the content at a point in time. Once created, it is never mutated.
2249
+ * @export
2250
+ * @interface ContentVersion
2251
+ */
2252
+ interface ContentVersion {
2253
+ /**
2254
+ *
2255
+ * @type {string}
2256
+ * @memberof ContentVersion
2257
+ */
2258
+ 'contentItemVersionId': string;
2259
+ /**
2260
+ *
2261
+ * @type {string}
2262
+ * @memberof ContentVersion
2263
+ */
2264
+ 'contentItemId': string;
2265
+ /**
2266
+ *
2267
+ * @type {string}
2268
+ * @memberof ContentVersion
2269
+ */
2270
+ 'parentResource': ContentVersionParentResourceEnum;
2271
+ /**
2272
+ *
2273
+ * @type {number}
2274
+ * @memberof ContentVersion
2275
+ */
2276
+ 'version': number;
2277
+ /**
2278
+ *
2279
+ * @type {string}
2280
+ * @memberof ContentVersion
2281
+ */
2282
+ 'title': string;
2283
+ /**
2284
+ *
2285
+ * @type {string}
2286
+ * @memberof ContentVersion
2287
+ */
2288
+ 'description': string;
2289
+ /**
2290
+ *
2291
+ * @type {Contenttypedata2}
2292
+ * @memberof ContentVersion
2293
+ */
2294
+ 'contentTypeData': Contenttypedata2;
2295
+ /**
2296
+ *
2297
+ * @type {string}
2298
+ * @memberof ContentVersion
2299
+ */
2300
+ 'createdAt': string;
2301
+ /**
2302
+ *
2303
+ * @type {string}
2304
+ * @memberof ContentVersion
2305
+ */
2306
+ 'createdBy': string;
2307
+ /**
2308
+ *
2309
+ * @type {boolean}
2310
+ * @memberof ContentVersion
2311
+ */
2312
+ 'isCurrent'?: boolean;
2313
+ }
2314
+ declare const ContentVersionParentResourceEnum: {
2315
+ readonly Listing: "LISTING";
2316
+ readonly Tag: "TAG";
2317
+ };
2318
+ type ContentVersionParentResourceEnum = typeof ContentVersionParentResourceEnum[keyof typeof ContentVersionParentResourceEnum];
2319
+ /**
2320
+ *
2321
+ * @export
2322
+ * @interface ContentVersionApi
2323
+ */
2324
+ interface ContentVersionApi {
2325
+ /**
2326
+ *
2327
+ * @type {string}
2328
+ * @memberof ContentVersionApi
2329
+ */
2330
+ 'contentItemVersionId': string;
2331
+ /**
2332
+ *
2333
+ * @type {string}
2334
+ * @memberof ContentVersionApi
2335
+ */
2336
+ 'contentItemId': string;
2337
+ /**
2338
+ *
2339
+ * @type {string}
2340
+ * @memberof ContentVersionApi
2341
+ */
2342
+ 'parentResource': ContentVersionApiParentResourceEnum;
2343
+ /**
2344
+ *
2345
+ * @type {number}
2346
+ * @memberof ContentVersionApi
2347
+ */
2348
+ 'version': number;
2349
+ /**
2350
+ *
2351
+ * @type {string}
2352
+ * @memberof ContentVersionApi
2353
+ */
2354
+ 'title': string;
2355
+ /**
2356
+ *
2357
+ * @type {string}
2358
+ * @memberof ContentVersionApi
2359
+ */
2360
+ 'description': string;
2361
+ /**
2362
+ *
2363
+ * @type {Contenttypedata1}
2364
+ * @memberof ContentVersionApi
2365
+ */
2366
+ 'contentTypeData': Contenttypedata1;
2367
+ /**
2368
+ *
2369
+ * @type {string}
2370
+ * @memberof ContentVersionApi
2371
+ */
2372
+ 'createdAt': string;
2373
+ /**
2374
+ *
2375
+ * @type {string}
2376
+ * @memberof ContentVersionApi
2377
+ */
2378
+ 'createdBy': string;
2379
+ /**
2380
+ *
2381
+ * @type {boolean}
2382
+ * @memberof ContentVersionApi
2383
+ */
2384
+ 'isCurrent'?: boolean;
2385
+ }
2386
+ declare const ContentVersionApiParentResourceEnum: {
2387
+ readonly Listing: "LISTING";
2388
+ readonly Tag: "TAG";
2389
+ };
2390
+ type ContentVersionApiParentResourceEnum = typeof ContentVersionApiParentResourceEnum[keyof typeof ContentVersionApiParentResourceEnum];
2391
+ /**
2392
+ * @type Contenttypedata
2393
+ * @export
2394
+ */
2395
+ type Contenttypedata = FileContentApi | PlainTextContentApi | URLContentApi;
2396
+ /**
2397
+ * @type Contenttypedata1
2398
+ * @export
2399
+ */
2400
+ type Contenttypedata1 = FileContentApi | PlainTextContentApi | URLContentApi;
2401
+ /**
2402
+ * @type Contenttypedata2
2403
+ * @export
2404
+ */
2405
+ type Contenttypedata2 = {
2406
+ contentType: 'file';
2407
+ } & FileContent | {
2408
+ contentType: 'plain_text';
2409
+ } & PlainTextContent | {
2410
+ contentType: 'url';
2411
+ } & URLContent;
2412
+ /**
2413
+ *
2414
+ * @export
2415
+ * @enum {string}
2416
+ */
2417
+ declare const ConversationStatus: {
2418
+ readonly Open: "OPEN";
2419
+ readonly Closed: "CLOSED";
2420
+ };
2421
+ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
2422
+ /**
2423
+ *
2424
+ * @export
2425
+ * @interface ConversationSuggestionApi
2426
+ */
2427
+ interface ConversationSuggestionApi {
2428
+ /**
2429
+ *
2430
+ * @type {SuggestionStatus}
2431
+ * @memberof ConversationSuggestionApi
2432
+ */
2433
+ 'suggestionStatus': SuggestionStatus;
2434
+ /**
2435
+ *
2436
+ * @type {SuggestionApi}
2437
+ * @memberof ConversationSuggestionApi
2438
+ */
2439
+ 'suggestion'?: SuggestionApi | null;
2440
+ }
2441
+ /**
2442
+ * @type Conversationtypedata
2443
+ * @export
2444
+ */
2445
+ type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
2446
+ /**
2447
+ * Model for creating a new content resource.
2448
+ * @export
2449
+ * @interface Create
2450
+ */
2451
+ interface Create {
2452
+ /**
2453
+ *
2454
+ * @type {string}
2455
+ * @memberof Create
2456
+ */
2457
+ 'title': string;
2458
+ /**
2459
+ *
2460
+ * @type {string}
2461
+ * @memberof Create
2462
+ */
2463
+ 'description': string;
2464
+ /**
2465
+ *
2466
+ * @type {Contenttypedata2}
2467
+ * @memberof Create
2468
+ */
2469
+ 'contentTypeData': Contenttypedata2;
2470
+ }
2471
+ /**
2472
+ *
2473
+ * @export
2474
+ * @interface CreateContactListing
2475
+ */
2476
+ interface CreateContactListing {
2477
+ /**
2478
+ *
2479
+ * @type {ContactListingType}
2480
+ * @memberof CreateContactListing
2481
+ */
2482
+ 'type': ContactListingType;
2483
+ /**
2484
+ *
2485
+ * @type {string}
2486
+ * @memberof CreateContactListing
2487
+ */
2488
+ 'startDate': string;
2489
+ /**
2490
+ *
2491
+ * @type {string}
2492
+ * @memberof CreateContactListing
2493
+ */
2494
+ 'endDate'?: string | null;
2495
+ }
2496
+ /**
2497
+ *
2256
2498
  * @export
2257
2499
  * @interface DeleteContactListing
2258
2500
  */
@@ -2264,6 +2506,56 @@ interface DeleteContactListing {
2264
2506
  */
2265
2507
  'type': ContactListingType;
2266
2508
  }
2509
+ /**
2510
+ * Request model for generating signed download URLs.
2511
+ * @export
2512
+ * @interface DownloadURLRequest
2513
+ */
2514
+ interface DownloadURLRequest {
2515
+ /**
2516
+ * The S3 object key to download
2517
+ * @type {string}
2518
+ * @memberof DownloadURLRequest
2519
+ */
2520
+ 'fileKey': string;
2521
+ /**
2522
+ *
2523
+ * @type {number}
2524
+ * @memberof DownloadURLRequest
2525
+ */
2526
+ 'expiresInSeconds'?: number | null;
2527
+ /**
2528
+ *
2529
+ * @type {string}
2530
+ * @memberof DownloadURLRequest
2531
+ */
2532
+ 'downloadFilename'?: string | null;
2533
+ }
2534
+ /**
2535
+ * Response model for signed download URL generation.
2536
+ * @export
2537
+ * @interface DownloadURLResponse
2538
+ */
2539
+ interface DownloadURLResponse {
2540
+ /**
2541
+ * Presigned URL for downloading the file
2542
+ * @type {string}
2543
+ * @memberof DownloadURLResponse
2544
+ */
2545
+ 'downloadUrl': string;
2546
+ /**
2547
+ * The S3 object key
2548
+ * @type {string}
2549
+ * @memberof DownloadURLResponse
2550
+ */
2551
+ 'fileKey': string;
2552
+ /**
2553
+ * ISO8601 timestamp when URL expires
2554
+ * @type {string}
2555
+ * @memberof DownloadURLResponse
2556
+ */
2557
+ 'expiresAt': string;
2558
+ }
2267
2559
  /**
2268
2560
  *
2269
2561
  * @export
@@ -2388,93 +2680,158 @@ declare const ExternalStaffApiStaffTypeEnum: {
2388
2680
  };
2389
2681
  type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
2390
2682
  /**
2391
- *
2683
+ * File content type (PDF, image, document, etc.).
2392
2684
  * @export
2393
- * @interface FileListingContentApi
2685
+ * @interface FileContent
2394
2686
  */
2395
- interface FileListingContentApi {
2687
+ interface FileContent {
2396
2688
  /**
2397
2689
  *
2398
2690
  * @type {string}
2399
- * @memberof FileListingContentApi
2691
+ * @memberof FileContent
2400
2692
  */
2401
- 'listingContentType': FileListingContentApiListingContentTypeEnum;
2693
+ 'contentType': FileContentContentTypeEnum;
2402
2694
  /**
2403
2695
  *
2404
2696
  * @type {string}
2405
- * @memberof FileListingContentApi
2697
+ * @memberof FileContent
2406
2698
  */
2407
2699
  'fileUrl': string;
2408
2700
  /**
2409
2701
  *
2410
2702
  * @type {string}
2411
- * @memberof FileListingContentApi
2703
+ * @memberof FileContent
2412
2704
  */
2413
2705
  'fileName': string;
2414
2706
  /**
2415
2707
  *
2416
2708
  * @type {number}
2417
- * @memberof FileListingContentApi
2709
+ * @memberof FileContent
2418
2710
  */
2419
2711
  'fileSize': number;
2420
2712
  /**
2421
2713
  *
2422
2714
  * @type {string}
2423
- * @memberof FileListingContentApi
2715
+ * @memberof FileContent
2424
2716
  */
2425
2717
  'mimeType': string;
2426
- }
2427
- declare const FileListingContentApiListingContentTypeEnum: {
2428
- readonly File: "file";
2429
- };
2430
- type FileListingContentApiListingContentTypeEnum = typeof FileListingContentApiListingContentTypeEnum[keyof typeof FileListingContentApiListingContentTypeEnum];
2431
- /**
2432
- *
2433
- * @export
2434
- * @interface GuestApi
2435
- */
2436
- interface GuestApi {
2437
2718
  /**
2438
2719
  *
2439
2720
  * @type {string}
2440
- * @memberof GuestApi
2441
- */
2442
- 'participantType': GuestApiParticipantTypeEnum;
2443
- /**
2444
- *
2445
- * @type {Participantname}
2446
- * @memberof GuestApi
2721
+ * @memberof FileContent
2447
2722
  */
2448
- 'participantName': Participantname;
2723
+ 'downloadUrl'?: string | null;
2449
2724
  /**
2450
2725
  *
2451
2726
  * @type {string}
2452
- * @memberof GuestApi
2727
+ * @memberof FileContent
2453
2728
  */
2454
- 'contactId'?: string | null;
2729
+ 'downloadUrlExpiresAt'?: string | null;
2455
2730
  }
2456
- declare const GuestApiParticipantTypeEnum: {
2457
- readonly Guest: "GUEST";
2731
+ declare const FileContentContentTypeEnum: {
2732
+ readonly File: "file";
2458
2733
  };
2459
- type GuestApiParticipantTypeEnum = typeof GuestApiParticipantTypeEnum[keyof typeof GuestApiParticipantTypeEnum];
2734
+ type FileContentContentTypeEnum = typeof FileContentContentTypeEnum[keyof typeof FileContentContentTypeEnum];
2460
2735
  /**
2461
2736
  *
2462
2737
  * @export
2463
- * @interface GuestDataApi
2738
+ * @interface FileContentApi
2464
2739
  */
2465
- interface GuestDataApi {
2740
+ interface FileContentApi {
2466
2741
  /**
2467
2742
  *
2468
2743
  * @type {string}
2469
- * @memberof GuestDataApi
2744
+ * @memberof FileContentApi
2470
2745
  */
2471
- 'firstBookedAt': string;
2746
+ 'contentType': FileContentApiContentTypeEnum;
2472
2747
  /**
2473
2748
  *
2474
2749
  * @type {string}
2475
- * @memberof GuestDataApi
2750
+ * @memberof FileContentApi
2476
2751
  */
2477
- 'firstStayAt': string;
2752
+ 'fileUrl': string;
2753
+ /**
2754
+ *
2755
+ * @type {string}
2756
+ * @memberof FileContentApi
2757
+ */
2758
+ 'fileName': string;
2759
+ /**
2760
+ *
2761
+ * @type {number}
2762
+ * @memberof FileContentApi
2763
+ */
2764
+ 'fileSize': number;
2765
+ /**
2766
+ *
2767
+ * @type {string}
2768
+ * @memberof FileContentApi
2769
+ */
2770
+ 'mimeType': string;
2771
+ /**
2772
+ *
2773
+ * @type {string}
2774
+ * @memberof FileContentApi
2775
+ */
2776
+ 'downloadUrl'?: string | null;
2777
+ /**
2778
+ *
2779
+ * @type {string}
2780
+ * @memberof FileContentApi
2781
+ */
2782
+ 'downloadUrlExpiresAt'?: string | null;
2783
+ }
2784
+ declare const FileContentApiContentTypeEnum: {
2785
+ readonly File: "file";
2786
+ };
2787
+ type FileContentApiContentTypeEnum = typeof FileContentApiContentTypeEnum[keyof typeof FileContentApiContentTypeEnum];
2788
+ /**
2789
+ *
2790
+ * @export
2791
+ * @interface GuestApi
2792
+ */
2793
+ interface GuestApi {
2794
+ /**
2795
+ *
2796
+ * @type {string}
2797
+ * @memberof GuestApi
2798
+ */
2799
+ 'participantType': GuestApiParticipantTypeEnum;
2800
+ /**
2801
+ *
2802
+ * @type {Participantname}
2803
+ * @memberof GuestApi
2804
+ */
2805
+ 'participantName': Participantname;
2806
+ /**
2807
+ *
2808
+ * @type {string}
2809
+ * @memberof GuestApi
2810
+ */
2811
+ 'contactId'?: string | null;
2812
+ }
2813
+ declare const GuestApiParticipantTypeEnum: {
2814
+ readonly Guest: "GUEST";
2815
+ };
2816
+ type GuestApiParticipantTypeEnum = typeof GuestApiParticipantTypeEnum[keyof typeof GuestApiParticipantTypeEnum];
2817
+ /**
2818
+ *
2819
+ * @export
2820
+ * @interface GuestDataApi
2821
+ */
2822
+ interface GuestDataApi {
2823
+ /**
2824
+ *
2825
+ * @type {string}
2826
+ * @memberof GuestDataApi
2827
+ */
2828
+ 'firstBookedAt': string;
2829
+ /**
2830
+ *
2831
+ * @type {string}
2832
+ * @memberof GuestDataApi
2833
+ */
2834
+ 'firstStayAt': string;
2478
2835
  /**
2479
2836
  *
2480
2837
  * @type {number}
@@ -2564,54 +2921,54 @@ interface ListResponseAPIAccount {
2564
2921
  /**
2565
2922
  *
2566
2923
  * @export
2567
- * @interface ListResponseAPIInbox
2924
+ * @interface ListResponseAPIContent
2568
2925
  */
2569
- interface ListResponseAPIInbox {
2926
+ interface ListResponseAPIContent {
2570
2927
  /**
2571
2928
  *
2572
- * @type {Array<APIInbox>}
2573
- * @memberof ListResponseAPIInbox
2929
+ * @type {Array<APIContent>}
2930
+ * @memberof ListResponseAPIContent
2574
2931
  */
2575
- 'data': Array<APIInbox>;
2932
+ 'data': Array<APIContent>;
2576
2933
  }
2577
2934
  /**
2578
2935
  *
2579
2936
  * @export
2580
- * @interface ListResponseAPIInquiry
2937
+ * @interface ListResponseAPIContentVersion
2581
2938
  */
2582
- interface ListResponseAPIInquiry {
2939
+ interface ListResponseAPIContentVersion {
2583
2940
  /**
2584
2941
  *
2585
- * @type {Array<APIInquiry>}
2586
- * @memberof ListResponseAPIInquiry
2942
+ * @type {Array<APIContentVersion>}
2943
+ * @memberof ListResponseAPIContentVersion
2587
2944
  */
2588
- 'data': Array<APIInquiry>;
2945
+ 'data': Array<APIContentVersion>;
2589
2946
  }
2590
2947
  /**
2591
2948
  *
2592
2949
  * @export
2593
- * @interface ListResponseAPIListingContent
2950
+ * @interface ListResponseAPIInbox
2594
2951
  */
2595
- interface ListResponseAPIListingContent {
2952
+ interface ListResponseAPIInbox {
2596
2953
  /**
2597
2954
  *
2598
- * @type {Array<APIListingContent>}
2599
- * @memberof ListResponseAPIListingContent
2955
+ * @type {Array<APIInbox>}
2956
+ * @memberof ListResponseAPIInbox
2600
2957
  */
2601
- 'data': Array<APIListingContent>;
2958
+ 'data': Array<APIInbox>;
2602
2959
  }
2603
2960
  /**
2604
2961
  *
2605
2962
  * @export
2606
- * @interface ListResponseAPIListingContentVersion
2963
+ * @interface ListResponseAPIInquiry
2607
2964
  */
2608
- interface ListResponseAPIListingContentVersion {
2965
+ interface ListResponseAPIInquiry {
2609
2966
  /**
2610
2967
  *
2611
- * @type {Array<APIListingContentVersion>}
2612
- * @memberof ListResponseAPIListingContentVersion
2968
+ * @type {Array<APIInquiry>}
2969
+ * @memberof ListResponseAPIInquiry
2613
2970
  */
2614
- 'data': Array<APIListingContentVersion>;
2971
+ 'data': Array<APIInquiry>;
2615
2972
  }
2616
2973
  /**
2617
2974
  *
@@ -2652,71 +3009,6 @@ interface ListResponseAPITag {
2652
3009
  */
2653
3010
  'data': Array<APITag>;
2654
3011
  }
2655
- /**
2656
- *
2657
- * @export
2658
- * @interface ListingContentVersionApi
2659
- */
2660
- interface ListingContentVersionApi {
2661
- /**
2662
- *
2663
- * @type {string}
2664
- * @memberof ListingContentVersionApi
2665
- */
2666
- 'listingContentVersionId': string;
2667
- /**
2668
- *
2669
- * @type {string}
2670
- * @memberof ListingContentVersionApi
2671
- */
2672
- 'listingContentId': string;
2673
- /**
2674
- *
2675
- * @type {string}
2676
- * @memberof ListingContentVersionApi
2677
- */
2678
- 'listingId': string;
2679
- /**
2680
- *
2681
- * @type {number}
2682
- * @memberof ListingContentVersionApi
2683
- */
2684
- 'version': number;
2685
- /**
2686
- *
2687
- * @type {Listingcontenttypedata}
2688
- * @memberof ListingContentVersionApi
2689
- */
2690
- 'listingContentTypeData': Listingcontenttypedata;
2691
- /**
2692
- *
2693
- * @type {string}
2694
- * @memberof ListingContentVersionApi
2695
- */
2696
- 'createdAt': string;
2697
- /**
2698
- *
2699
- * @type {string}
2700
- * @memberof ListingContentVersionApi
2701
- */
2702
- 'createdBy': string;
2703
- /**
2704
- *
2705
- * @type {boolean}
2706
- * @memberof ListingContentVersionApi
2707
- */
2708
- 'isCurrent'?: boolean;
2709
- }
2710
- /**
2711
- * @type Listingcontenttypedata
2712
- * @export
2713
- */
2714
- type Listingcontenttypedata = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
2715
- /**
2716
- * @type Listingcontenttypedata1
2717
- * @export
2718
- */
2719
- type Listingcontenttypedata1 = FileListingContentApi | PlainTextListingContentApi | URLListingContentApi;
2720
3012
  /**
2721
3013
  *
2722
3014
  * @export
@@ -3038,28 +3330,39 @@ declare const PhoneInboxApiInboxTypeEnum: {
3038
3330
  };
3039
3331
  type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
3040
3332
  /**
3041
- *
3333
+ * Plain text content type. The text content is stored in Content.description.
3042
3334
  * @export
3043
- * @interface PlainTextListingContentApi
3335
+ * @interface PlainTextContent
3044
3336
  */
3045
- interface PlainTextListingContentApi {
3337
+ interface PlainTextContent {
3046
3338
  /**
3047
3339
  *
3048
3340
  * @type {string}
3049
- * @memberof PlainTextListingContentApi
3341
+ * @memberof PlainTextContent
3050
3342
  */
3051
- 'listingContentType': PlainTextListingContentApiListingContentTypeEnum;
3343
+ 'contentType': PlainTextContentContentTypeEnum;
3344
+ }
3345
+ declare const PlainTextContentContentTypeEnum: {
3346
+ readonly PlainText: "plain_text";
3347
+ };
3348
+ type PlainTextContentContentTypeEnum = typeof PlainTextContentContentTypeEnum[keyof typeof PlainTextContentContentTypeEnum];
3349
+ /**
3350
+ *
3351
+ * @export
3352
+ * @interface PlainTextContentApi
3353
+ */
3354
+ interface PlainTextContentApi {
3052
3355
  /**
3053
3356
  *
3054
3357
  * @type {string}
3055
- * @memberof PlainTextListingContentApi
3358
+ * @memberof PlainTextContentApi
3056
3359
  */
3057
- 'body': string;
3360
+ 'contentType': PlainTextContentApiContentTypeEnum;
3058
3361
  }
3059
- declare const PlainTextListingContentApiListingContentTypeEnum: {
3362
+ declare const PlainTextContentApiContentTypeEnum: {
3060
3363
  readonly PlainText: "plain_text";
3061
3364
  };
3062
- type PlainTextListingContentApiListingContentTypeEnum = typeof PlainTextListingContentApiListingContentTypeEnum[keyof typeof PlainTextListingContentApiListingContentTypeEnum];
3365
+ type PlainTextContentApiContentTypeEnum = typeof PlainTextContentApiContentTypeEnum[keyof typeof PlainTextContentApiContentTypeEnum];
3063
3366
  /**
3064
3367
  *
3065
3368
  * @export
@@ -4080,29 +4383,52 @@ interface ToPhoneApi {
4080
4383
  */
4081
4384
  'contactId'?: string | null;
4082
4385
  }
4386
+ /**
4387
+ * External URL content type.
4388
+ * @export
4389
+ * @interface URLContent
4390
+ */
4391
+ interface URLContent {
4392
+ /**
4393
+ *
4394
+ * @type {string}
4395
+ * @memberof URLContent
4396
+ */
4397
+ 'contentType': URLContentContentTypeEnum;
4398
+ /**
4399
+ *
4400
+ * @type {string}
4401
+ * @memberof URLContent
4402
+ */
4403
+ 'url': string;
4404
+ }
4405
+ declare const URLContentContentTypeEnum: {
4406
+ readonly Url: "url";
4407
+ };
4408
+ type URLContentContentTypeEnum = typeof URLContentContentTypeEnum[keyof typeof URLContentContentTypeEnum];
4083
4409
  /**
4084
4410
  *
4085
4411
  * @export
4086
- * @interface URLListingContentApi
4412
+ * @interface URLContentApi
4087
4413
  */
4088
- interface URLListingContentApi {
4414
+ interface URLContentApi {
4089
4415
  /**
4090
4416
  *
4091
4417
  * @type {string}
4092
- * @memberof URLListingContentApi
4418
+ * @memberof URLContentApi
4093
4419
  */
4094
- 'listingContentType': URLListingContentApiListingContentTypeEnum;
4420
+ 'contentType': URLContentApiContentTypeEnum;
4095
4421
  /**
4096
4422
  *
4097
4423
  * @type {string}
4098
- * @memberof URLListingContentApi
4424
+ * @memberof URLContentApi
4099
4425
  */
4100
4426
  'url': string;
4101
4427
  }
4102
- declare const URLListingContentApiListingContentTypeEnum: {
4428
+ declare const URLContentApiContentTypeEnum: {
4103
4429
  readonly Url: "url";
4104
4430
  };
4105
- type URLListingContentApiListingContentTypeEnum = typeof URLListingContentApiListingContentTypeEnum[keyof typeof URLListingContentApiListingContentTypeEnum];
4431
+ type URLContentApiContentTypeEnum = typeof URLContentApiContentTypeEnum[keyof typeof URLContentApiContentTypeEnum];
4106
4432
  /**
4107
4433
  *
4108
4434
  * @export
@@ -4135,23 +4461,23 @@ interface UpdateContactListing {
4135
4461
  */
4136
4462
  interface UploadURLRequest {
4137
4463
  /**
4138
- *
4464
+ * Original filename with extension
4139
4465
  * @type {string}
4140
4466
  * @memberof UploadURLRequest
4141
4467
  */
4142
- 'file_name': string;
4468
+ 'fileName': string;
4143
4469
  /**
4144
- *
4470
+ * MIME type of the file
4145
4471
  * @type {string}
4146
4472
  * @memberof UploadURLRequest
4147
4473
  */
4148
- 'mime_type': string;
4474
+ 'mimeType': string;
4149
4475
  /**
4150
- *
4476
+ * File size in bytes
4151
4477
  * @type {number}
4152
4478
  * @memberof UploadURLRequest
4153
4479
  */
4154
- 'file_size': number;
4480
+ 'fileSize': number;
4155
4481
  }
4156
4482
  /**
4157
4483
  * Response model for signed upload URL generation.
@@ -4160,35 +4486,31 @@ interface UploadURLRequest {
4160
4486
  */
4161
4487
  interface UploadURLResponse {
4162
4488
  /**
4163
- *
4164
- * @type {string}
4165
- * @memberof UploadURLResponse
4166
- */
4167
- 'upload_url': string;
4168
- /**
4169
- *
4489
+ * Endpoint URL for form submission
4170
4490
  * @type {string}
4171
4491
  * @memberof UploadURLResponse
4172
4492
  */
4173
- 'upload_method': string;
4493
+ 'uploadUrl': string;
4174
4494
  /**
4175
- *
4176
- * @type {object}
4495
+ * Form fields to include in POST request
4496
+ * @type {{ [key: string]: string; }}
4177
4497
  * @memberof UploadURLResponse
4178
4498
  */
4179
- 'upload_headers': object;
4499
+ 'uploadFields': {
4500
+ [key: string]: string;
4501
+ };
4180
4502
  /**
4181
- *
4503
+ * The S3 object key for the uploaded file
4182
4504
  * @type {string}
4183
4505
  * @memberof UploadURLResponse
4184
4506
  */
4185
- 'file_url': string;
4507
+ 'fileKey': string;
4186
4508
  /**
4187
- *
4509
+ * ISO8601 timestamp when URL expires
4188
4510
  * @type {string}
4189
4511
  * @memberof UploadURLResponse
4190
4512
  */
4191
- 'expires_at': string;
4513
+ 'expiresAt': string;
4192
4514
  }
4193
4515
  /**
4194
4516
  *
@@ -5209,935 +5531,1132 @@ declare class ContactsApi extends BaseAPI {
5209
5531
  phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
5210
5532
  }
5211
5533
  /**
5212
- * ConversationsApi - axios parameter creator
5534
+ * ContentApi - axios parameter creator
5213
5535
  * @export
5214
5536
  */
5215
- declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
5537
+ declare const ContentApiAxiosParamCreator: (configuration?: Configuration) => {
5216
5538
  /**
5217
- * Messages Create
5218
- * @summary Messages Create
5219
- * @param {string} conversationId
5220
- * @param {Messagecreate} messagecreate
5539
+ * Create new content under a listing.
5540
+ * @summary Create Listing Content
5541
+ * @param {string} listingId
5542
+ * @param {Create} create
5221
5543
  * @param {*} [options] Override http request option.
5222
5544
  * @throws {RequiredError}
5223
5545
  */
5224
- messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5546
+ contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5225
5547
  /**
5226
- * Messages Get
5227
- * @summary Messages Get
5228
- * @param {string} messageId
5548
+ * Create new content under a tag.
5549
+ * @summary Create Tag Content
5550
+ * @param {string} tagId
5551
+ * @param {Create} create
5229
5552
  * @param {*} [options] Override http request option.
5230
5553
  * @throws {RequiredError}
5231
5554
  */
5232
- messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5555
+ contentCreateOnTag: (tagId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5233
5556
  /**
5234
- * Messages List
5235
- * @summary Messages List
5236
- * @param {string} [conversationId]
5237
- * @param {string | null} [searchString]
5238
- * @param {string | null} [sentAtAfter]
5239
- * @param {string | null} [sentAtBefore]
5240
- * @param {string | null} [scheduledAtAfter]
5241
- * @param {string | null} [scheduledAtBefore]
5242
- * @param {string | null} [cursor] Cursor for keyset paging
5243
- * @param {number} [limit]
5244
- * @param {PaginationDirection} [pageDir] Direction of paging
5245
- * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
5246
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5557
+ * Content Delete
5558
+ * @summary Content Delete
5559
+ * @param {string} contentId
5247
5560
  * @param {*} [options] Override http request option.
5248
5561
  * @throws {RequiredError}
5249
5562
  */
5250
- messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5251
- };
5252
- /**
5253
- * ConversationsApi - functional programming interface
5254
- * @export
5255
- */
5256
- declare const ConversationsApiFp: (configuration?: Configuration) => {
5563
+ contentDelete: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5257
5564
  /**
5258
- * Messages Create
5259
- * @summary Messages Create
5260
- * @param {string} conversationId
5261
- * @param {Messagecreate} messagecreate
5565
+ * Content Delete
5566
+ * @summary Content Delete
5567
+ * @param {string} contentId
5262
5568
  * @param {*} [options] Override http request option.
5263
5569
  * @throws {RequiredError}
5264
5570
  */
5265
- messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
5571
+ contentDelete_1: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5266
5572
  /**
5267
- * Messages Get
5268
- * @summary Messages Get
5269
- * @param {string} messageId
5573
+ * Content Get
5574
+ * @summary Content Get
5575
+ * @param {string} contentId
5270
5576
  * @param {*} [options] Override http request option.
5271
5577
  * @throws {RequiredError}
5272
5578
  */
5273
- messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
5579
+ contentGet: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5274
5580
  /**
5275
- * Messages List
5276
- * @summary Messages List
5277
- * @param {string} [conversationId]
5278
- * @param {string | null} [searchString]
5279
- * @param {string | null} [sentAtAfter]
5280
- * @param {string | null} [sentAtBefore]
5281
- * @param {string | null} [scheduledAtAfter]
5282
- * @param {string | null} [scheduledAtBefore]
5283
- * @param {string | null} [cursor] Cursor for keyset paging
5284
- * @param {number} [limit]
5285
- * @param {PaginationDirection} [pageDir] Direction of paging
5286
- * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
5287
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5581
+ * Content Get
5582
+ * @summary Content Get
5583
+ * @param {string} contentId
5288
5584
  * @param {*} [options] Override http request option.
5289
5585
  * @throws {RequiredError}
5290
5586
  */
5291
- messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
5292
- };
5293
- /**
5294
- * ConversationsApi - factory interface
5295
- * @export
5296
- */
5297
- declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5587
+ contentGet_2: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5298
5588
  /**
5299
- * Messages Create
5300
- * @summary Messages Create
5301
- * @param {string} conversationId
5302
- * @param {Messagecreate} messagecreate
5589
+ * Content List
5590
+ * @summary Content List
5591
+ * @param {string | null} [listingId] Filter by listing ID
5592
+ * @param {string | null} [tagId] Filter by tag ID
5593
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5303
5594
  * @param {*} [options] Override http request option.
5304
5595
  * @throws {RequiredError}
5305
5596
  */
5306
- messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
5597
+ contentList: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5307
5598
  /**
5308
- * Messages Get
5309
- * @summary Messages Get
5310
- * @param {string} messageId
5599
+ * Content List
5600
+ * @summary Content List
5601
+ * @param {string | null} [listingId] Filter by listing ID
5602
+ * @param {string | null} [tagId] Filter by tag ID
5603
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5311
5604
  * @param {*} [options] Override http request option.
5312
5605
  * @throws {RequiredError}
5313
5606
  */
5314
- messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
5607
+ contentList_3: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5315
5608
  /**
5316
- * Messages List
5317
- * @summary Messages List
5318
- * @param {string} [conversationId]
5319
- * @param {string | null} [searchString]
5320
- * @param {string | null} [sentAtAfter]
5321
- * @param {string | null} [sentAtBefore]
5322
- * @param {string | null} [scheduledAtAfter]
5323
- * @param {string | null} [scheduledAtBefore]
5324
- * @param {string | null} [cursor] Cursor for keyset paging
5325
- * @param {number} [limit]
5326
- * @param {PaginationDirection} [pageDir] Direction of paging
5327
- * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
5328
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5609
+ * Content Update
5610
+ * @summary Content Update
5611
+ * @param {string} contentId
5612
+ * @param {APIContentUpdate} aPIContentUpdate
5329
5613
  * @param {*} [options] Override http request option.
5330
5614
  * @throws {RequiredError}
5331
5615
  */
5332
- messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
5333
- };
5334
- /**
5335
- * ConversationsApi - object-oriented interface
5336
- * @export
5337
- * @class ConversationsApi
5338
- * @extends {BaseAPI}
5339
- */
5340
- declare class ConversationsApi extends BaseAPI {
5616
+ contentUpdate: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5341
5617
  /**
5342
- * Messages Create
5343
- * @summary Messages Create
5344
- * @param {string} conversationId
5345
- * @param {Messagecreate} messagecreate
5618
+ * Content Update
5619
+ * @summary Content Update
5620
+ * @param {string} contentId
5621
+ * @param {APIContentUpdate} aPIContentUpdate
5346
5622
  * @param {*} [options] Override http request option.
5347
5623
  * @throws {RequiredError}
5348
- * @memberof ConversationsApi
5349
5624
  */
5350
- messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5625
+ contentUpdate_4: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5351
5626
  /**
5352
- * Messages Get
5353
- * @summary Messages Get
5354
- * @param {string} messageId
5627
+ * ContentVersions Get
5628
+ * @summary ContentVersions Get
5629
+ * @param {string} contentVersionId
5355
5630
  * @param {*} [options] Override http request option.
5356
5631
  * @throws {RequiredError}
5357
- * @memberof ConversationsApi
5358
5632
  */
5359
- messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5633
+ contentVersionsGet: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5360
5634
  /**
5361
- * Messages List
5362
- * @summary Messages List
5363
- * @param {string} [conversationId]
5364
- * @param {string | null} [searchString]
5365
- * @param {string | null} [sentAtAfter]
5366
- * @param {string | null} [sentAtBefore]
5367
- * @param {string | null} [scheduledAtAfter]
5368
- * @param {string | null} [scheduledAtBefore]
5369
- * @param {string | null} [cursor] Cursor for keyset paging
5370
- * @param {number} [limit]
5371
- * @param {PaginationDirection} [pageDir] Direction of paging
5372
- * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
5373
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5635
+ * ContentVersions Get
5636
+ * @summary ContentVersions Get
5637
+ * @param {string} contentVersionId
5374
5638
  * @param {*} [options] Override http request option.
5375
5639
  * @throws {RequiredError}
5376
- * @memberof ConversationsApi
5377
5640
  */
5378
- messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
5379
- }
5380
- /**
5381
- * HostawayApi - axios parameter creator
5382
- * @export
5383
- */
5384
- declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
5641
+ contentVersionsGet_5: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5385
5642
  /**
5386
- *
5387
- * @summary Unifiedwebhook
5388
- * @param {object} body
5643
+ * ContentVersions List
5644
+ * @summary ContentVersions List
5645
+ * @param {string} [contentId]
5389
5646
  * @param {*} [options] Override http request option.
5390
5647
  * @throws {RequiredError}
5391
5648
  */
5392
- webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5393
- };
5394
- /**
5395
- * HostawayApi - functional programming interface
5396
- * @export
5397
- */
5398
- declare const HostawayApiFp: (configuration?: Configuration) => {
5649
+ contentVersionsList: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5399
5650
  /**
5400
- *
5401
- * @summary Unifiedwebhook
5402
- * @param {object} body
5651
+ * ContentVersions List
5652
+ * @summary ContentVersions List
5653
+ * @param {string} [contentId]
5403
5654
  * @param {*} [options] Override http request option.
5404
5655
  * @throws {RequiredError}
5405
5656
  */
5406
- webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5657
+ contentVersionsList_6: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5407
5658
  };
5408
5659
  /**
5409
- * HostawayApi - factory interface
5660
+ * ContentApi - functional programming interface
5410
5661
  * @export
5411
5662
  */
5412
- declare const HostawayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5663
+ declare const ContentApiFp: (configuration?: Configuration) => {
5413
5664
  /**
5414
- *
5415
- * @summary Unifiedwebhook
5416
- * @param {object} body
5665
+ * Create new content under a listing.
5666
+ * @summary Create Listing Content
5667
+ * @param {string} listingId
5668
+ * @param {Create} create
5417
5669
  * @param {*} [options] Override http request option.
5418
5670
  * @throws {RequiredError}
5419
5671
  */
5420
- webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
5421
- };
5422
- /**
5423
- * HostawayApi - object-oriented interface
5424
- * @export
5425
- * @class HostawayApi
5426
- * @extends {BaseAPI}
5427
- */
5428
- declare class HostawayApi extends BaseAPI {
5672
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
5429
5673
  /**
5430
- *
5431
- * @summary Unifiedwebhook
5432
- * @param {object} body
5674
+ * Create new content under a tag.
5675
+ * @summary Create Tag Content
5676
+ * @param {string} tagId
5677
+ * @param {Create} create
5433
5678
  * @param {*} [options] Override http request option.
5434
5679
  * @throws {RequiredError}
5435
- * @memberof HostawayApi
5436
5680
  */
5437
- webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
5438
- }
5439
- /**
5440
- * InboxesApi - axios parameter creator
5441
- * @export
5442
- */
5443
- declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
5681
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
5444
5682
  /**
5445
- * Conversations Create
5446
- * @summary Conversations Create
5447
- * @param {string} inboxId
5448
- * @param {APIConversationCreate} aPIConversationCreate
5683
+ * Content Delete
5684
+ * @summary Content Delete
5685
+ * @param {string} contentId
5449
5686
  * @param {*} [options] Override http request option.
5450
5687
  * @throws {RequiredError}
5451
5688
  */
5452
- conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5689
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5453
5690
  /**
5454
- * Conversations Get
5455
- * @summary Conversations Get
5456
- * @param {string} conversationId
5691
+ * Content Delete
5692
+ * @summary Content Delete
5693
+ * @param {string} contentId
5457
5694
  * @param {*} [options] Override http request option.
5458
5695
  * @throws {RequiredError}
5459
5696
  */
5460
- conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5697
+ contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5461
5698
  /**
5462
- * List all conversations, must filter by contact_id
5463
- * @summary Conversations List
5464
- * @param {string | null} [searchString]
5465
- * @param {string | null} [contactId]
5466
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
5467
- * @param {string | null} [cursor] Cursor for keyset paging
5468
- * @param {number} [limit]
5469
- * @param {PaginationDirection} [pageDir] Direction of paging
5470
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5471
- * @param {string | null} [inboxId]
5699
+ * Content Get
5700
+ * @summary Content Get
5701
+ * @param {string} contentId
5472
5702
  * @param {*} [options] Override http request option.
5473
5703
  * @throws {RequiredError}
5474
5704
  */
5475
- conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5705
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
5476
5706
  /**
5477
- * Conversations Update
5478
- * @summary Conversations Update
5479
- * @param {string} conversationId
5480
- * @param {APIConversationUpdate} aPIConversationUpdate
5707
+ * Content Get
5708
+ * @summary Content Get
5709
+ * @param {string} contentId
5481
5710
  * @param {*} [options] Override http request option.
5482
5711
  * @throws {RequiredError}
5483
5712
  */
5484
- conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5713
+ contentGet_2(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
5485
5714
  /**
5486
- * Inboxes List
5487
- * @summary Inboxes List
5715
+ * Content List
5716
+ * @summary Content List
5717
+ * @param {string | null} [listingId] Filter by listing ID
5718
+ * @param {string | null} [tagId] Filter by tag ID
5719
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5488
5720
  * @param {*} [options] Override http request option.
5489
5721
  * @throws {RequiredError}
5490
5722
  */
5491
- inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5492
- };
5493
- /**
5494
- * InboxesApi - functional programming interface
5495
- * @export
5496
- */
5497
- declare const InboxesApiFp: (configuration?: Configuration) => {
5723
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
5498
5724
  /**
5499
- * Conversations Create
5500
- * @summary Conversations Create
5501
- * @param {string} inboxId
5502
- * @param {APIConversationCreate} aPIConversationCreate
5725
+ * Content List
5726
+ * @summary Content List
5727
+ * @param {string | null} [listingId] Filter by listing ID
5728
+ * @param {string | null} [tagId] Filter by tag ID
5729
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5503
5730
  * @param {*} [options] Override http request option.
5504
5731
  * @throws {RequiredError}
5505
5732
  */
5506
- conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5733
+ contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
5507
5734
  /**
5508
- * Conversations Get
5509
- * @summary Conversations Get
5510
- * @param {string} conversationId
5735
+ * Content Update
5736
+ * @summary Content Update
5737
+ * @param {string} contentId
5738
+ * @param {APIContentUpdate} aPIContentUpdate
5511
5739
  * @param {*} [options] Override http request option.
5512
5740
  * @throws {RequiredError}
5513
5741
  */
5514
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5742
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
5515
5743
  /**
5516
- * List all conversations, must filter by contact_id
5517
- * @summary Conversations List
5518
- * @param {string | null} [searchString]
5519
- * @param {string | null} [contactId]
5520
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
5521
- * @param {string | null} [cursor] Cursor for keyset paging
5522
- * @param {number} [limit]
5523
- * @param {PaginationDirection} [pageDir] Direction of paging
5524
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5525
- * @param {string | null} [inboxId]
5744
+ * Content Update
5745
+ * @summary Content Update
5746
+ * @param {string} contentId
5747
+ * @param {APIContentUpdate} aPIContentUpdate
5526
5748
  * @param {*} [options] Override http request option.
5527
5749
  * @throws {RequiredError}
5528
5750
  */
5529
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
5751
+ contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
5530
5752
  /**
5531
- * Conversations Update
5532
- * @summary Conversations Update
5533
- * @param {string} conversationId
5534
- * @param {APIConversationUpdate} aPIConversationUpdate
5753
+ * ContentVersions Get
5754
+ * @summary ContentVersions Get
5755
+ * @param {string} contentVersionId
5535
5756
  * @param {*} [options] Override http request option.
5536
5757
  * @throws {RequiredError}
5537
5758
  */
5538
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5759
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
5539
5760
  /**
5540
- * Inboxes List
5541
- * @summary Inboxes List
5761
+ * ContentVersions Get
5762
+ * @summary ContentVersions Get
5763
+ * @param {string} contentVersionId
5542
5764
  * @param {*} [options] Override http request option.
5543
5765
  * @throws {RequiredError}
5544
5766
  */
5545
- inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
5767
+ contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
5768
+ /**
5769
+ * ContentVersions List
5770
+ * @summary ContentVersions List
5771
+ * @param {string} [contentId]
5772
+ * @param {*} [options] Override http request option.
5773
+ * @throws {RequiredError}
5774
+ */
5775
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
5776
+ /**
5777
+ * ContentVersions List
5778
+ * @summary ContentVersions List
5779
+ * @param {string} [contentId]
5780
+ * @param {*} [options] Override http request option.
5781
+ * @throws {RequiredError}
5782
+ */
5783
+ contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
5546
5784
  };
5547
5785
  /**
5548
- * InboxesApi - factory interface
5786
+ * ContentApi - factory interface
5549
5787
  * @export
5550
5788
  */
5551
- declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5789
+ declare const ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5552
5790
  /**
5553
- * Conversations Create
5554
- * @summary Conversations Create
5555
- * @param {string} inboxId
5556
- * @param {APIConversationCreate} aPIConversationCreate
5791
+ * Create new content under a listing.
5792
+ * @summary Create Listing Content
5793
+ * @param {string} listingId
5794
+ * @param {Create} create
5557
5795
  * @param {*} [options] Override http request option.
5558
5796
  * @throws {RequiredError}
5559
5797
  */
5560
- conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
5798
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
5561
5799
  /**
5562
- * Conversations Get
5563
- * @summary Conversations Get
5564
- * @param {string} conversationId
5800
+ * Create new content under a tag.
5801
+ * @summary Create Tag Content
5802
+ * @param {string} tagId
5803
+ * @param {Create} create
5565
5804
  * @param {*} [options] Override http request option.
5566
5805
  * @throws {RequiredError}
5567
5806
  */
5568
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
5807
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
5569
5808
  /**
5570
- * List all conversations, must filter by contact_id
5571
- * @summary Conversations List
5572
- * @param {string | null} [searchString]
5573
- * @param {string | null} [contactId]
5574
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
5575
- * @param {string | null} [cursor] Cursor for keyset paging
5576
- * @param {number} [limit]
5577
- * @param {PaginationDirection} [pageDir] Direction of paging
5578
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5579
- * @param {string | null} [inboxId]
5809
+ * Content Delete
5810
+ * @summary Content Delete
5811
+ * @param {string} contentId
5580
5812
  * @param {*} [options] Override http request option.
5581
5813
  * @throws {RequiredError}
5582
5814
  */
5583
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
5815
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5584
5816
  /**
5585
- * Conversations Update
5586
- * @summary Conversations Update
5587
- * @param {string} conversationId
5588
- * @param {APIConversationUpdate} aPIConversationUpdate
5817
+ * Content Delete
5818
+ * @summary Content Delete
5819
+ * @param {string} contentId
5589
5820
  * @param {*} [options] Override http request option.
5590
5821
  * @throws {RequiredError}
5591
5822
  */
5592
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
5823
+ contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5593
5824
  /**
5594
- * Inboxes List
5595
- * @summary Inboxes List
5825
+ * Content Get
5826
+ * @summary Content Get
5827
+ * @param {string} contentId
5596
5828
  * @param {*} [options] Override http request option.
5597
5829
  * @throws {RequiredError}
5598
5830
  */
5599
- inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
5831
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
5832
+ /**
5833
+ * Content Get
5834
+ * @summary Content Get
5835
+ * @param {string} contentId
5836
+ * @param {*} [options] Override http request option.
5837
+ * @throws {RequiredError}
5838
+ */
5839
+ contentGet_2(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
5840
+ /**
5841
+ * Content List
5842
+ * @summary Content List
5843
+ * @param {string | null} [listingId] Filter by listing ID
5844
+ * @param {string | null} [tagId] Filter by tag ID
5845
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5846
+ * @param {*} [options] Override http request option.
5847
+ * @throws {RequiredError}
5848
+ */
5849
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
5850
+ /**
5851
+ * Content List
5852
+ * @summary Content List
5853
+ * @param {string | null} [listingId] Filter by listing ID
5854
+ * @param {string | null} [tagId] Filter by tag ID
5855
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5856
+ * @param {*} [options] Override http request option.
5857
+ * @throws {RequiredError}
5858
+ */
5859
+ contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
5860
+ /**
5861
+ * Content Update
5862
+ * @summary Content Update
5863
+ * @param {string} contentId
5864
+ * @param {APIContentUpdate} aPIContentUpdate
5865
+ * @param {*} [options] Override http request option.
5866
+ * @throws {RequiredError}
5867
+ */
5868
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
5869
+ /**
5870
+ * Content Update
5871
+ * @summary Content Update
5872
+ * @param {string} contentId
5873
+ * @param {APIContentUpdate} aPIContentUpdate
5874
+ * @param {*} [options] Override http request option.
5875
+ * @throws {RequiredError}
5876
+ */
5877
+ contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
5878
+ /**
5879
+ * ContentVersions Get
5880
+ * @summary ContentVersions Get
5881
+ * @param {string} contentVersionId
5882
+ * @param {*} [options] Override http request option.
5883
+ * @throws {RequiredError}
5884
+ */
5885
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
5886
+ /**
5887
+ * ContentVersions Get
5888
+ * @summary ContentVersions Get
5889
+ * @param {string} contentVersionId
5890
+ * @param {*} [options] Override http request option.
5891
+ * @throws {RequiredError}
5892
+ */
5893
+ contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
5894
+ /**
5895
+ * ContentVersions List
5896
+ * @summary ContentVersions List
5897
+ * @param {string} [contentId]
5898
+ * @param {*} [options] Override http request option.
5899
+ * @throws {RequiredError}
5900
+ */
5901
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
5902
+ /**
5903
+ * ContentVersions List
5904
+ * @summary ContentVersions List
5905
+ * @param {string} [contentId]
5906
+ * @param {*} [options] Override http request option.
5907
+ * @throws {RequiredError}
5908
+ */
5909
+ contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
5600
5910
  };
5601
5911
  /**
5602
- * InboxesApi - object-oriented interface
5912
+ * ContentApi - object-oriented interface
5603
5913
  * @export
5604
- * @class InboxesApi
5914
+ * @class ContentApi
5605
5915
  * @extends {BaseAPI}
5606
5916
  */
5607
- declare class InboxesApi extends BaseAPI {
5917
+ declare class ContentApi extends BaseAPI {
5608
5918
  /**
5609
- * Conversations Create
5610
- * @summary Conversations Create
5611
- * @param {string} inboxId
5612
- * @param {APIConversationCreate} aPIConversationCreate
5919
+ * Create new content under a listing.
5920
+ * @summary Create Listing Content
5921
+ * @param {string} listingId
5922
+ * @param {Create} create
5613
5923
  * @param {*} [options] Override http request option.
5614
5924
  * @throws {RequiredError}
5615
- * @memberof InboxesApi
5925
+ * @memberof ContentApi
5616
5926
  */
5617
- conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
5927
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
5618
5928
  /**
5619
- * Conversations Get
5620
- * @summary Conversations Get
5621
- * @param {string} conversationId
5929
+ * Create new content under a tag.
5930
+ * @summary Create Tag Content
5931
+ * @param {string} tagId
5932
+ * @param {Create} create
5622
5933
  * @param {*} [options] Override http request option.
5623
5934
  * @throws {RequiredError}
5624
- * @memberof InboxesApi
5935
+ * @memberof ContentApi
5625
5936
  */
5626
- conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
5937
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
5627
5938
  /**
5628
- * List all conversations, must filter by contact_id
5629
- * @summary Conversations List
5630
- * @param {string | null} [searchString]
5631
- * @param {string | null} [contactId]
5632
- * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
5633
- * @param {string | null} [cursor] Cursor for keyset paging
5634
- * @param {number} [limit]
5635
- * @param {PaginationDirection} [pageDir] Direction of paging
5636
- * @param {SortOrder} [sortOrder] Sort order asc/desc
5637
- * @param {string | null} [inboxId]
5939
+ * Content Delete
5940
+ * @summary Content Delete
5941
+ * @param {string} contentId
5638
5942
  * @param {*} [options] Override http request option.
5639
5943
  * @throws {RequiredError}
5640
- * @memberof InboxesApi
5944
+ * @memberof ContentApi
5641
5945
  */
5642
- conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
5946
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5643
5947
  /**
5644
- * Conversations Update
5645
- * @summary Conversations Update
5646
- * @param {string} conversationId
5647
- * @param {APIConversationUpdate} aPIConversationUpdate
5948
+ * Content Delete
5949
+ * @summary Content Delete
5950
+ * @param {string} contentId
5648
5951
  * @param {*} [options] Override http request option.
5649
5952
  * @throws {RequiredError}
5650
- * @memberof InboxesApi
5953
+ * @memberof ContentApi
5651
5954
  */
5652
- conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
5955
+ contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
5653
5956
  /**
5654
- * Inboxes List
5655
- * @summary Inboxes List
5957
+ * Content Get
5958
+ * @summary Content Get
5959
+ * @param {string} contentId
5656
5960
  * @param {*} [options] Override http request option.
5657
5961
  * @throws {RequiredError}
5658
- * @memberof InboxesApi
5962
+ * @memberof ContentApi
5659
5963
  */
5660
- inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
5964
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
5965
+ /**
5966
+ * Content Get
5967
+ * @summary Content Get
5968
+ * @param {string} contentId
5969
+ * @param {*} [options] Override http request option.
5970
+ * @throws {RequiredError}
5971
+ * @memberof ContentApi
5972
+ */
5973
+ contentGet_2(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
5974
+ /**
5975
+ * Content List
5976
+ * @summary Content List
5977
+ * @param {string | null} [listingId] Filter by listing ID
5978
+ * @param {string | null} [tagId] Filter by tag ID
5979
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5980
+ * @param {*} [options] Override http request option.
5981
+ * @throws {RequiredError}
5982
+ * @memberof ContentApi
5983
+ */
5984
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
5985
+ /**
5986
+ * Content List
5987
+ * @summary Content List
5988
+ * @param {string | null} [listingId] Filter by listing ID
5989
+ * @param {string | null} [tagId] Filter by tag ID
5990
+ * @param {boolean} [includeDeleted] Include soft-deleted content
5991
+ * @param {*} [options] Override http request option.
5992
+ * @throws {RequiredError}
5993
+ * @memberof ContentApi
5994
+ */
5995
+ contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
5996
+ /**
5997
+ * Content Update
5998
+ * @summary Content Update
5999
+ * @param {string} contentId
6000
+ * @param {APIContentUpdate} aPIContentUpdate
6001
+ * @param {*} [options] Override http request option.
6002
+ * @throws {RequiredError}
6003
+ * @memberof ContentApi
6004
+ */
6005
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
6006
+ /**
6007
+ * Content Update
6008
+ * @summary Content Update
6009
+ * @param {string} contentId
6010
+ * @param {APIContentUpdate} aPIContentUpdate
6011
+ * @param {*} [options] Override http request option.
6012
+ * @throws {RequiredError}
6013
+ * @memberof ContentApi
6014
+ */
6015
+ contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
6016
+ /**
6017
+ * ContentVersions Get
6018
+ * @summary ContentVersions Get
6019
+ * @param {string} contentVersionId
6020
+ * @param {*} [options] Override http request option.
6021
+ * @throws {RequiredError}
6022
+ * @memberof ContentApi
6023
+ */
6024
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
6025
+ /**
6026
+ * ContentVersions Get
6027
+ * @summary ContentVersions Get
6028
+ * @param {string} contentVersionId
6029
+ * @param {*} [options] Override http request option.
6030
+ * @throws {RequiredError}
6031
+ * @memberof ContentApi
6032
+ */
6033
+ contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
6034
+ /**
6035
+ * ContentVersions List
6036
+ * @summary ContentVersions List
6037
+ * @param {string} [contentId]
6038
+ * @param {*} [options] Override http request option.
6039
+ * @throws {RequiredError}
6040
+ * @memberof ContentApi
6041
+ */
6042
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
6043
+ /**
6044
+ * ContentVersions List
6045
+ * @summary ContentVersions List
6046
+ * @param {string} [contentId]
6047
+ * @param {*} [options] Override http request option.
6048
+ * @throws {RequiredError}
6049
+ * @memberof ContentApi
6050
+ */
6051
+ contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
5661
6052
  }
5662
6053
  /**
5663
- * InquiriesApi - axios parameter creator
6054
+ * ConversationsApi - axios parameter creator
5664
6055
  * @export
5665
6056
  */
5666
- declare const InquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
6057
+ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
5667
6058
  /**
5668
- * List all listings
5669
- * @summary Inquiries List
5670
- * @param {string} [contactId]
6059
+ * Messages Create
6060
+ * @summary Messages Create
6061
+ * @param {string} conversationId
6062
+ * @param {Messagecreate} messagecreate
5671
6063
  * @param {*} [options] Override http request option.
5672
6064
  * @throws {RequiredError}
5673
6065
  */
5674
- inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5675
- };
5676
- /**
5677
- * InquiriesApi - functional programming interface
5678
- * @export
5679
- */
5680
- declare const InquiriesApiFp: (configuration?: Configuration) => {
6066
+ messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5681
6067
  /**
5682
- * List all listings
5683
- * @summary Inquiries List
5684
- * @param {string} [contactId]
6068
+ * Messages Get
6069
+ * @summary Messages Get
6070
+ * @param {string} messageId
5685
6071
  * @param {*} [options] Override http request option.
5686
6072
  * @throws {RequiredError}
5687
6073
  */
5688
- inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
5689
- };
5690
- /**
5691
- * InquiriesApi - factory interface
5692
- * @export
5693
- */
5694
- declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6074
+ messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5695
6075
  /**
5696
- * List all listings
5697
- * @summary Inquiries List
5698
- * @param {string} [contactId]
6076
+ * Messages List
6077
+ * @summary Messages List
6078
+ * @param {string} [conversationId]
6079
+ * @param {string | null} [searchString]
6080
+ * @param {string | null} [sentAtAfter]
6081
+ * @param {string | null} [sentAtBefore]
6082
+ * @param {string | null} [scheduledAtAfter]
6083
+ * @param {string | null} [scheduledAtBefore]
6084
+ * @param {string | null} [cursor] Cursor for keyset paging
6085
+ * @param {number} [limit]
6086
+ * @param {PaginationDirection} [pageDir] Direction of paging
6087
+ * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
6088
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
5699
6089
  * @param {*} [options] Override http request option.
5700
6090
  * @throws {RequiredError}
5701
6091
  */
5702
- inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
6092
+ messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5703
6093
  };
5704
6094
  /**
5705
- * InquiriesApi - object-oriented interface
6095
+ * ConversationsApi - functional programming interface
5706
6096
  * @export
5707
- * @class InquiriesApi
5708
- * @extends {BaseAPI}
5709
6097
  */
5710
- declare class InquiriesApi extends BaseAPI {
6098
+ declare const ConversationsApiFp: (configuration?: Configuration) => {
5711
6099
  /**
5712
- * List all listings
5713
- * @summary Inquiries List
5714
- * @param {string} [contactId]
6100
+ * Messages Create
6101
+ * @summary Messages Create
6102
+ * @param {string} conversationId
6103
+ * @param {Messagecreate} messagecreate
5715
6104
  * @param {*} [options] Override http request option.
5716
6105
  * @throws {RequiredError}
5717
- * @memberof InquiriesApi
5718
6106
  */
5719
- inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
5720
- }
5721
- /**
5722
- * ListingContentApi - axios parameter creator
5723
- * @export
5724
- */
5725
- declare const ListingContentApiAxiosParamCreator: (configuration?: Configuration) => {
6107
+ messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
5726
6108
  /**
5727
- * 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).
5728
- * @summary Generate Listing Content Upload Url
5729
- * @param {string} listingId
5730
- * @param {UploadURLRequest} uploadURLRequest
6109
+ * Messages Get
6110
+ * @summary Messages Get
6111
+ * @param {string} messageId
5731
6112
  * @param {*} [options] Override http request option.
5732
6113
  * @throws {RequiredError}
5733
6114
  */
5734
- generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6115
+ messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
5735
6116
  /**
5736
- * ListingContent Create
5737
- * @summary ListingContent Create
5738
- * @param {string} listingId
5739
- * @param {APIListingContentCreate} aPIListingContentCreate
6117
+ * Messages List
6118
+ * @summary Messages List
6119
+ * @param {string} [conversationId]
6120
+ * @param {string | null} [searchString]
6121
+ * @param {string | null} [sentAtAfter]
6122
+ * @param {string | null} [sentAtBefore]
6123
+ * @param {string | null} [scheduledAtAfter]
6124
+ * @param {string | null} [scheduledAtBefore]
6125
+ * @param {string | null} [cursor] Cursor for keyset paging
6126
+ * @param {number} [limit]
6127
+ * @param {PaginationDirection} [pageDir] Direction of paging
6128
+ * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
6129
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
5740
6130
  * @param {*} [options] Override http request option.
5741
6131
  * @throws {RequiredError}
5742
6132
  */
5743
- listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6133
+ messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
6134
+ };
6135
+ /**
6136
+ * ConversationsApi - factory interface
6137
+ * @export
6138
+ */
6139
+ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5744
6140
  /**
5745
- * ListingContent Delete
5746
- * @summary ListingContent Delete
5747
- * @param {string} listingContentId
6141
+ * Messages Create
6142
+ * @summary Messages Create
6143
+ * @param {string} conversationId
6144
+ * @param {Messagecreate} messagecreate
5748
6145
  * @param {*} [options] Override http request option.
5749
6146
  * @throws {RequiredError}
5750
6147
  */
5751
- listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6148
+ messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
5752
6149
  /**
5753
- * ListingContent Get
5754
- * @summary ListingContent Get
5755
- * @param {string} listingContentId
6150
+ * Messages Get
6151
+ * @summary Messages Get
6152
+ * @param {string} messageId
5756
6153
  * @param {*} [options] Override http request option.
5757
6154
  * @throws {RequiredError}
5758
6155
  */
5759
- listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6156
+ messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
5760
6157
  /**
5761
- * ListingContent List
5762
- * @summary ListingContent List
5763
- * @param {string} [listingId]
5764
- * @param {string} [status] Filter by status: active, deleted, or all
6158
+ * Messages List
6159
+ * @summary Messages List
6160
+ * @param {string} [conversationId]
6161
+ * @param {string | null} [searchString]
6162
+ * @param {string | null} [sentAtAfter]
6163
+ * @param {string | null} [sentAtBefore]
6164
+ * @param {string | null} [scheduledAtAfter]
6165
+ * @param {string | null} [scheduledAtBefore]
6166
+ * @param {string | null} [cursor] Cursor for keyset paging
6167
+ * @param {number} [limit]
6168
+ * @param {PaginationDirection} [pageDir] Direction of paging
6169
+ * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
6170
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
5765
6171
  * @param {*} [options] Override http request option.
5766
6172
  * @throws {RequiredError}
5767
6173
  */
5768
- listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6174
+ messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
6175
+ };
6176
+ /**
6177
+ * ConversationsApi - object-oriented interface
6178
+ * @export
6179
+ * @class ConversationsApi
6180
+ * @extends {BaseAPI}
6181
+ */
6182
+ declare class ConversationsApi extends BaseAPI {
5769
6183
  /**
5770
- * ListingContent Update
5771
- * @summary ListingContent Update
5772
- * @param {string} listingContentId
5773
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6184
+ * Messages Create
6185
+ * @summary Messages Create
6186
+ * @param {string} conversationId
6187
+ * @param {Messagecreate} messagecreate
5774
6188
  * @param {*} [options] Override http request option.
5775
6189
  * @throws {RequiredError}
6190
+ * @memberof ConversationsApi
5776
6191
  */
5777
- listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6192
+ messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5778
6193
  /**
5779
- * ListingContentVersions Get
5780
- * @summary ListingContentVersions Get
5781
- * @param {string} listingContentVersionId
6194
+ * Messages Get
6195
+ * @summary Messages Get
6196
+ * @param {string} messageId
5782
6197
  * @param {*} [options] Override http request option.
5783
6198
  * @throws {RequiredError}
6199
+ * @memberof ConversationsApi
5784
6200
  */
5785
- listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6201
+ messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
5786
6202
  /**
5787
- * ListingContentVersions Get
5788
- * @summary ListingContentVersions Get
5789
- * @param {string} listingContentVersionId
6203
+ * Messages List
6204
+ * @summary Messages List
6205
+ * @param {string} [conversationId]
6206
+ * @param {string | null} [searchString]
6207
+ * @param {string | null} [sentAtAfter]
6208
+ * @param {string | null} [sentAtBefore]
6209
+ * @param {string | null} [scheduledAtAfter]
6210
+ * @param {string | null} [scheduledAtBefore]
6211
+ * @param {string | null} [cursor] Cursor for keyset paging
6212
+ * @param {number} [limit]
6213
+ * @param {PaginationDirection} [pageDir] Direction of paging
6214
+ * @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
6215
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
5790
6216
  * @param {*} [options] Override http request option.
5791
6217
  * @throws {RequiredError}
6218
+ * @memberof ConversationsApi
5792
6219
  */
5793
- listingContentVersionsGet_1: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6220
+ messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
6221
+ }
6222
+ /**
6223
+ * FilesApi - axios parameter creator
6224
+ * @export
6225
+ */
6226
+ declare const FilesApiAxiosParamCreator: (configuration?: Configuration) => {
5794
6227
  /**
5795
- * ListingContentVersions List
5796
- * @summary ListingContentVersions List
5797
- * @param {string} [listingContentId]
6228
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
6229
+ * @summary Generate presigned download URL
6230
+ * @param {DownloadURLRequest} downloadURLRequest
5798
6231
  * @param {*} [options] Override http request option.
5799
6232
  * @throws {RequiredError}
5800
6233
  */
5801
- listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6234
+ generateFileDownloadURL: (downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5802
6235
  /**
5803
- * ListingContentVersions List
5804
- * @summary ListingContentVersions List
5805
- * @param {string} [listingContentId]
6236
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
6237
+ * @summary Generate presigned upload URL
6238
+ * @param {UploadURLRequest} uploadURLRequest
5806
6239
  * @param {*} [options] Override http request option.
5807
6240
  * @throws {RequiredError}
5808
6241
  */
5809
- listingContentVersionsList_2: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6242
+ generateFileUploadURL: (uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5810
6243
  };
5811
6244
  /**
5812
- * ListingContentApi - functional programming interface
6245
+ * FilesApi - functional programming interface
5813
6246
  * @export
5814
6247
  */
5815
- declare const ListingContentApiFp: (configuration?: Configuration) => {
6248
+ declare const FilesApiFp: (configuration?: Configuration) => {
5816
6249
  /**
5817
- * 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).
5818
- * @summary Generate Listing Content Upload Url
5819
- * @param {string} listingId
5820
- * @param {UploadURLRequest} uploadURLRequest
6250
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
6251
+ * @summary Generate presigned download URL
6252
+ * @param {DownloadURLRequest} downloadURLRequest
5821
6253
  * @param {*} [options] Override http request option.
5822
6254
  * @throws {RequiredError}
5823
6255
  */
5824
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
6256
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadURLResponse>>;
5825
6257
  /**
5826
- * ListingContent Create
5827
- * @summary ListingContent Create
5828
- * @param {string} listingId
5829
- * @param {APIListingContentCreate} aPIListingContentCreate
6258
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
6259
+ * @summary Generate presigned upload URL
6260
+ * @param {UploadURLRequest} uploadURLRequest
5830
6261
  * @param {*} [options] Override http request option.
5831
6262
  * @throws {RequiredError}
5832
6263
  */
5833
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6264
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
6265
+ };
6266
+ /**
6267
+ * FilesApi - factory interface
6268
+ * @export
6269
+ */
6270
+ declare const FilesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5834
6271
  /**
5835
- * ListingContent Delete
5836
- * @summary ListingContent Delete
5837
- * @param {string} listingContentId
6272
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
6273
+ * @summary Generate presigned download URL
6274
+ * @param {DownloadURLRequest} downloadURLRequest
5838
6275
  * @param {*} [options] Override http request option.
5839
6276
  * @throws {RequiredError}
5840
6277
  */
5841
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6278
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<DownloadURLResponse>;
5842
6279
  /**
5843
- * ListingContent Get
5844
- * @summary ListingContent Get
5845
- * @param {string} listingContentId
6280
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
6281
+ * @summary Generate presigned upload URL
6282
+ * @param {UploadURLRequest} uploadURLRequest
5846
6283
  * @param {*} [options] Override http request option.
5847
6284
  * @throws {RequiredError}
5848
6285
  */
5849
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6286
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
6287
+ };
6288
+ /**
6289
+ * FilesApi - object-oriented interface
6290
+ * @export
6291
+ * @class FilesApi
6292
+ * @extends {BaseAPI}
6293
+ */
6294
+ declare class FilesApi extends BaseAPI {
5850
6295
  /**
5851
- * ListingContent List
5852
- * @summary ListingContent List
5853
- * @param {string} [listingId]
5854
- * @param {string} [status] Filter by status: active, deleted, or all
6296
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
6297
+ * @summary Generate presigned download URL
6298
+ * @param {DownloadURLRequest} downloadURLRequest
5855
6299
  * @param {*} [options] Override http request option.
5856
6300
  * @throws {RequiredError}
6301
+ * @memberof FilesApi
5857
6302
  */
5858
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
6303
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<DownloadURLResponse, any>>;
5859
6304
  /**
5860
- * ListingContent Update
5861
- * @summary ListingContent Update
5862
- * @param {string} listingContentId
5863
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6305
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
6306
+ * @summary Generate presigned upload URL
6307
+ * @param {UploadURLRequest} uploadURLRequest
5864
6308
  * @param {*} [options] Override http request option.
5865
6309
  * @throws {RequiredError}
6310
+ * @memberof FilesApi
5866
6311
  */
5867
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6312
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
6313
+ }
6314
+ /**
6315
+ * HostawayApi - axios parameter creator
6316
+ * @export
6317
+ */
6318
+ declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
5868
6319
  /**
5869
- * ListingContentVersions Get
5870
- * @summary ListingContentVersions Get
5871
- * @param {string} listingContentVersionId
6320
+ *
6321
+ * @summary Unifiedwebhook
6322
+ * @param {object} body
5872
6323
  * @param {*} [options] Override http request option.
5873
6324
  * @throws {RequiredError}
5874
6325
  */
5875
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
6326
+ webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6327
+ };
6328
+ /**
6329
+ * HostawayApi - functional programming interface
6330
+ * @export
6331
+ */
6332
+ declare const HostawayApiFp: (configuration?: Configuration) => {
5876
6333
  /**
5877
- * ListingContentVersions Get
5878
- * @summary ListingContentVersions Get
5879
- * @param {string} listingContentVersionId
6334
+ *
6335
+ * @summary Unifiedwebhook
6336
+ * @param {object} body
5880
6337
  * @param {*} [options] Override http request option.
5881
6338
  * @throws {RequiredError}
5882
6339
  */
5883
- listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
6340
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
6341
+ };
6342
+ /**
6343
+ * HostawayApi - factory interface
6344
+ * @export
6345
+ */
6346
+ declare const HostawayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5884
6347
  /**
5885
- * ListingContentVersions List
5886
- * @summary ListingContentVersions List
5887
- * @param {string} [listingContentId]
6348
+ *
6349
+ * @summary Unifiedwebhook
6350
+ * @param {object} body
5888
6351
  * @param {*} [options] Override http request option.
5889
6352
  * @throws {RequiredError}
5890
6353
  */
5891
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
6354
+ webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
6355
+ };
6356
+ /**
6357
+ * HostawayApi - object-oriented interface
6358
+ * @export
6359
+ * @class HostawayApi
6360
+ * @extends {BaseAPI}
6361
+ */
6362
+ declare class HostawayApi extends BaseAPI {
5892
6363
  /**
5893
- * ListingContentVersions List
5894
- * @summary ListingContentVersions List
5895
- * @param {string} [listingContentId]
6364
+ *
6365
+ * @summary Unifiedwebhook
6366
+ * @param {object} body
5896
6367
  * @param {*} [options] Override http request option.
5897
6368
  * @throws {RequiredError}
6369
+ * @memberof HostawayApi
5898
6370
  */
5899
- listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
5900
- };
6371
+ webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6372
+ }
5901
6373
  /**
5902
- * ListingContentApi - factory interface
6374
+ * InboxesApi - axios parameter creator
5903
6375
  * @export
5904
6376
  */
5905
- declare const ListingContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6377
+ declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
5906
6378
  /**
5907
- * 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).
5908
- * @summary Generate Listing Content Upload Url
5909
- * @param {string} listingId
5910
- * @param {UploadURLRequest} uploadURLRequest
6379
+ * Conversations Create
6380
+ * @summary Conversations Create
6381
+ * @param {string} inboxId
6382
+ * @param {APIConversationCreate} aPIConversationCreate
5911
6383
  * @param {*} [options] Override http request option.
5912
6384
  * @throws {RequiredError}
5913
6385
  */
5914
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
6386
+ conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5915
6387
  /**
5916
- * ListingContent Create
5917
- * @summary ListingContent Create
5918
- * @param {string} listingId
5919
- * @param {APIListingContentCreate} aPIListingContentCreate
6388
+ * Conversations Get
6389
+ * @summary Conversations Get
6390
+ * @param {string} conversationId
5920
6391
  * @param {*} [options] Override http request option.
5921
6392
  * @throws {RequiredError}
5922
6393
  */
5923
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6394
+ conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5924
6395
  /**
5925
- * ListingContent Delete
5926
- * @summary ListingContent Delete
5927
- * @param {string} listingContentId
6396
+ * List all conversations, must filter by contact_id
6397
+ * @summary Conversations List
6398
+ * @param {string | null} [searchString]
6399
+ * @param {string | null} [contactId]
6400
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
6401
+ * @param {string | null} [cursor] Cursor for keyset paging
6402
+ * @param {number} [limit]
6403
+ * @param {PaginationDirection} [pageDir] Direction of paging
6404
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
6405
+ * @param {string | null} [inboxId]
5928
6406
  * @param {*} [options] Override http request option.
5929
6407
  * @throws {RequiredError}
5930
6408
  */
5931
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6409
+ conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5932
6410
  /**
5933
- * ListingContent Get
5934
- * @summary ListingContent Get
5935
- * @param {string} listingContentId
6411
+ * Conversations Update
6412
+ * @summary Conversations Update
6413
+ * @param {string} conversationId
6414
+ * @param {APIConversationUpdate} aPIConversationUpdate
5936
6415
  * @param {*} [options] Override http request option.
5937
6416
  * @throws {RequiredError}
5938
6417
  */
5939
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6418
+ conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5940
6419
  /**
5941
- * ListingContent List
5942
- * @summary ListingContent List
5943
- * @param {string} [listingId]
5944
- * @param {string} [status] Filter by status: active, deleted, or all
6420
+ * Inboxes List
6421
+ * @summary Inboxes List
5945
6422
  * @param {*} [options] Override http request option.
5946
6423
  * @throws {RequiredError}
5947
6424
  */
5948
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
6425
+ inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6426
+ };
6427
+ /**
6428
+ * InboxesApi - functional programming interface
6429
+ * @export
6430
+ */
6431
+ declare const InboxesApiFp: (configuration?: Configuration) => {
5949
6432
  /**
5950
- * ListingContent Update
5951
- * @summary ListingContent Update
5952
- * @param {string} listingContentId
5953
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6433
+ * Conversations Create
6434
+ * @summary Conversations Create
6435
+ * @param {string} inboxId
6436
+ * @param {APIConversationCreate} aPIConversationCreate
5954
6437
  * @param {*} [options] Override http request option.
5955
6438
  * @throws {RequiredError}
5956
6439
  */
5957
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6440
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5958
6441
  /**
5959
- * ListingContentVersions Get
5960
- * @summary ListingContentVersions Get
5961
- * @param {string} listingContentVersionId
6442
+ * Conversations Get
6443
+ * @summary Conversations Get
6444
+ * @param {string} conversationId
5962
6445
  * @param {*} [options] Override http request option.
5963
6446
  * @throws {RequiredError}
5964
6447
  */
5965
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
6448
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5966
6449
  /**
5967
- * ListingContentVersions Get
5968
- * @summary ListingContentVersions Get
5969
- * @param {string} listingContentVersionId
6450
+ * List all conversations, must filter by contact_id
6451
+ * @summary Conversations List
6452
+ * @param {string | null} [searchString]
6453
+ * @param {string | null} [contactId]
6454
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
6455
+ * @param {string | null} [cursor] Cursor for keyset paging
6456
+ * @param {number} [limit]
6457
+ * @param {PaginationDirection} [pageDir] Direction of paging
6458
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
6459
+ * @param {string | null} [inboxId]
5970
6460
  * @param {*} [options] Override http request option.
5971
6461
  * @throws {RequiredError}
5972
6462
  */
5973
- listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
6463
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
5974
6464
  /**
5975
- * ListingContentVersions List
5976
- * @summary ListingContentVersions List
5977
- * @param {string} [listingContentId]
6465
+ * Conversations Update
6466
+ * @summary Conversations Update
6467
+ * @param {string} conversationId
6468
+ * @param {APIConversationUpdate} aPIConversationUpdate
5978
6469
  * @param {*} [options] Override http request option.
5979
6470
  * @throws {RequiredError}
5980
6471
  */
5981
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
6472
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
5982
6473
  /**
5983
- * ListingContentVersions List
5984
- * @summary ListingContentVersions List
5985
- * @param {string} [listingContentId]
6474
+ * Inboxes List
6475
+ * @summary Inboxes List
5986
6476
  * @param {*} [options] Override http request option.
5987
6477
  * @throws {RequiredError}
5988
6478
  */
5989
- listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
6479
+ inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
5990
6480
  };
5991
6481
  /**
5992
- * ListingContentApi - object-oriented interface
6482
+ * InboxesApi - factory interface
5993
6483
  * @export
5994
- * @class ListingContentApi
5995
- * @extends {BaseAPI}
5996
6484
  */
5997
- declare class ListingContentApi extends BaseAPI {
6485
+ declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5998
6486
  /**
5999
- * 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).
6000
- * @summary Generate Listing Content Upload Url
6001
- * @param {string} listingId
6002
- * @param {UploadURLRequest} uploadURLRequest
6487
+ * Conversations Create
6488
+ * @summary Conversations Create
6489
+ * @param {string} inboxId
6490
+ * @param {APIConversationCreate} aPIConversationCreate
6003
6491
  * @param {*} [options] Override http request option.
6004
6492
  * @throws {RequiredError}
6005
- * @memberof ListingContentApi
6006
6493
  */
6007
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
6494
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
6008
6495
  /**
6009
- * ListingContent Create
6010
- * @summary ListingContent Create
6011
- * @param {string} listingId
6012
- * @param {APIListingContentCreate} aPIListingContentCreate
6496
+ * Conversations Get
6497
+ * @summary Conversations Get
6498
+ * @param {string} conversationId
6013
6499
  * @param {*} [options] Override http request option.
6014
6500
  * @throws {RequiredError}
6015
- * @memberof ListingContentApi
6016
6501
  */
6017
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6502
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
6018
6503
  /**
6019
- * ListingContent Delete
6020
- * @summary ListingContent Delete
6021
- * @param {string} listingContentId
6504
+ * List all conversations, must filter by contact_id
6505
+ * @summary Conversations List
6506
+ * @param {string | null} [searchString]
6507
+ * @param {string | null} [contactId]
6508
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
6509
+ * @param {string | null} [cursor] Cursor for keyset paging
6510
+ * @param {number} [limit]
6511
+ * @param {PaginationDirection} [pageDir] Direction of paging
6512
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
6513
+ * @param {string | null} [inboxId]
6022
6514
  * @param {*} [options] Override http request option.
6023
6515
  * @throws {RequiredError}
6024
- * @memberof ListingContentApi
6025
6516
  */
6026
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
6517
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
6027
6518
  /**
6028
- * ListingContent Get
6029
- * @summary ListingContent Get
6030
- * @param {string} listingContentId
6519
+ * Conversations Update
6520
+ * @summary Conversations Update
6521
+ * @param {string} conversationId
6522
+ * @param {APIConversationUpdate} aPIConversationUpdate
6031
6523
  * @param {*} [options] Override http request option.
6032
6524
  * @throws {RequiredError}
6033
- * @memberof ListingContentApi
6034
6525
  */
6035
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6526
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
6036
6527
  /**
6037
- * ListingContent List
6038
- * @summary ListingContent List
6039
- * @param {string} [listingId]
6040
- * @param {string} [status] Filter by status: active, deleted, or all
6528
+ * Inboxes List
6529
+ * @summary Inboxes List
6041
6530
  * @param {*} [options] Override http request option.
6042
6531
  * @throws {RequiredError}
6043
- * @memberof ListingContentApi
6044
6532
  */
6045
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
6533
+ inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
6534
+ };
6535
+ /**
6536
+ * InboxesApi - object-oriented interface
6537
+ * @export
6538
+ * @class InboxesApi
6539
+ * @extends {BaseAPI}
6540
+ */
6541
+ declare class InboxesApi extends BaseAPI {
6046
6542
  /**
6047
- * ListingContent Update
6048
- * @summary ListingContent Update
6049
- * @param {string} listingContentId
6050
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6543
+ * Conversations Create
6544
+ * @summary Conversations Create
6545
+ * @param {string} inboxId
6546
+ * @param {APIConversationCreate} aPIConversationCreate
6051
6547
  * @param {*} [options] Override http request option.
6052
6548
  * @throws {RequiredError}
6053
- * @memberof ListingContentApi
6549
+ * @memberof InboxesApi
6054
6550
  */
6055
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6551
+ conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
6056
6552
  /**
6057
- * ListingContentVersions Get
6058
- * @summary ListingContentVersions Get
6059
- * @param {string} listingContentVersionId
6553
+ * Conversations Get
6554
+ * @summary Conversations Get
6555
+ * @param {string} conversationId
6060
6556
  * @param {*} [options] Override http request option.
6061
6557
  * @throws {RequiredError}
6062
- * @memberof ListingContentApi
6558
+ * @memberof InboxesApi
6063
6559
  */
6064
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
6560
+ conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
6065
6561
  /**
6066
- * ListingContentVersions Get
6067
- * @summary ListingContentVersions Get
6068
- * @param {string} listingContentVersionId
6562
+ * List all conversations, must filter by contact_id
6563
+ * @summary Conversations List
6564
+ * @param {string | null} [searchString]
6565
+ * @param {string | null} [contactId]
6566
+ * @param {Array<ConversationStatus> | null} [status] Filter conversations by status
6567
+ * @param {string | null} [cursor] Cursor for keyset paging
6568
+ * @param {number} [limit]
6569
+ * @param {PaginationDirection} [pageDir] Direction of paging
6570
+ * @param {SortOrder} [sortOrder] Sort order asc/desc
6571
+ * @param {string | null} [inboxId]
6069
6572
  * @param {*} [options] Override http request option.
6070
6573
  * @throws {RequiredError}
6071
- * @memberof ListingContentApi
6574
+ * @memberof InboxesApi
6072
6575
  */
6073
- listingContentVersionsGet_1(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
6576
+ conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
6074
6577
  /**
6075
- * ListingContentVersions List
6076
- * @summary ListingContentVersions List
6077
- * @param {string} [listingContentId]
6578
+ * Conversations Update
6579
+ * @summary Conversations Update
6580
+ * @param {string} conversationId
6581
+ * @param {APIConversationUpdate} aPIConversationUpdate
6078
6582
  * @param {*} [options] Override http request option.
6079
6583
  * @throws {RequiredError}
6080
- * @memberof ListingContentApi
6584
+ * @memberof InboxesApi
6081
6585
  */
6082
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
6586
+ conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
6083
6587
  /**
6084
- * ListingContentVersions List
6085
- * @summary ListingContentVersions List
6086
- * @param {string} [listingContentId]
6588
+ * Inboxes List
6589
+ * @summary Inboxes List
6087
6590
  * @param {*} [options] Override http request option.
6088
6591
  * @throws {RequiredError}
6089
- * @memberof ListingContentApi
6592
+ * @memberof InboxesApi
6090
6593
  */
6091
- listingContentVersionsList_2(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
6594
+ inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
6092
6595
  }
6093
6596
  /**
6094
- * ListingsApi - axios parameter creator
6597
+ * InquiriesApi - axios parameter creator
6095
6598
  * @export
6096
6599
  */
6097
- declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
6098
- /**
6099
- * ListingContent Create
6100
- * @summary ListingContent Create
6101
- * @param {string} listingId
6102
- * @param {APIListingContentCreate} aPIListingContentCreate
6103
- * @param {*} [options] Override http request option.
6104
- * @throws {RequiredError}
6105
- */
6106
- listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6600
+ declare const InquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
6107
6601
  /**
6108
- * ListingContent Delete
6109
- * @summary ListingContent Delete
6110
- * @param {string} listingContentId
6602
+ * List all listings
6603
+ * @summary Inquiries List
6604
+ * @param {string} [contactId]
6111
6605
  * @param {*} [options] Override http request option.
6112
6606
  * @throws {RequiredError}
6113
6607
  */
6114
- listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6608
+ inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6609
+ };
6610
+ /**
6611
+ * InquiriesApi - functional programming interface
6612
+ * @export
6613
+ */
6614
+ declare const InquiriesApiFp: (configuration?: Configuration) => {
6115
6615
  /**
6116
- * ListingContent Get
6117
- * @summary ListingContent Get
6118
- * @param {string} listingContentId
6616
+ * List all listings
6617
+ * @summary Inquiries List
6618
+ * @param {string} [contactId]
6119
6619
  * @param {*} [options] Override http request option.
6120
6620
  * @throws {RequiredError}
6121
6621
  */
6122
- listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6622
+ inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
6623
+ };
6624
+ /**
6625
+ * InquiriesApi - factory interface
6626
+ * @export
6627
+ */
6628
+ declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6123
6629
  /**
6124
- * ListingContent List
6125
- * @summary ListingContent List
6126
- * @param {string} [listingId]
6127
- * @param {string} [status] Filter by status: active, deleted, or all
6630
+ * List all listings
6631
+ * @summary Inquiries List
6632
+ * @param {string} [contactId]
6128
6633
  * @param {*} [options] Override http request option.
6129
6634
  * @throws {RequiredError}
6130
6635
  */
6131
- listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6636
+ inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
6637
+ };
6638
+ /**
6639
+ * InquiriesApi - object-oriented interface
6640
+ * @export
6641
+ * @class InquiriesApi
6642
+ * @extends {BaseAPI}
6643
+ */
6644
+ declare class InquiriesApi extends BaseAPI {
6132
6645
  /**
6133
- * ListingContent Update
6134
- * @summary ListingContent Update
6135
- * @param {string} listingContentId
6136
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6646
+ * List all listings
6647
+ * @summary Inquiries List
6648
+ * @param {string} [contactId]
6137
6649
  * @param {*} [options] Override http request option.
6138
6650
  * @throws {RequiredError}
6651
+ * @memberof InquiriesApi
6139
6652
  */
6140
- listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6653
+ inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
6654
+ }
6655
+ /**
6656
+ * ListingsApi - axios parameter creator
6657
+ * @export
6658
+ */
6659
+ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
6141
6660
  /**
6142
6661
  * Listings Get
6143
6662
  * @summary Listings Get
@@ -6166,49 +6685,6 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
6166
6685
  * @export
6167
6686
  */
6168
6687
  declare const ListingsApiFp: (configuration?: Configuration) => {
6169
- /**
6170
- * ListingContent Create
6171
- * @summary ListingContent Create
6172
- * @param {string} listingId
6173
- * @param {APIListingContentCreate} aPIListingContentCreate
6174
- * @param {*} [options] Override http request option.
6175
- * @throws {RequiredError}
6176
- */
6177
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6178
- /**
6179
- * ListingContent Delete
6180
- * @summary ListingContent Delete
6181
- * @param {string} listingContentId
6182
- * @param {*} [options] Override http request option.
6183
- * @throws {RequiredError}
6184
- */
6185
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6186
- /**
6187
- * ListingContent Get
6188
- * @summary ListingContent Get
6189
- * @param {string} listingContentId
6190
- * @param {*} [options] Override http request option.
6191
- * @throws {RequiredError}
6192
- */
6193
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6194
- /**
6195
- * ListingContent List
6196
- * @summary ListingContent List
6197
- * @param {string} [listingId]
6198
- * @param {string} [status] Filter by status: active, deleted, or all
6199
- * @param {*} [options] Override http request option.
6200
- * @throws {RequiredError}
6201
- */
6202
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
6203
- /**
6204
- * ListingContent Update
6205
- * @summary ListingContent Update
6206
- * @param {string} listingContentId
6207
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6208
- * @param {*} [options] Override http request option.
6209
- * @throws {RequiredError}
6210
- */
6211
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
6212
6688
  /**
6213
6689
  * Listings Get
6214
6690
  * @summary Listings Get
@@ -6237,49 +6713,6 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
6237
6713
  * @export
6238
6714
  */
6239
6715
  declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6240
- /**
6241
- * ListingContent Create
6242
- * @summary ListingContent Create
6243
- * @param {string} listingId
6244
- * @param {APIListingContentCreate} aPIListingContentCreate
6245
- * @param {*} [options] Override http request option.
6246
- * @throws {RequiredError}
6247
- */
6248
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6249
- /**
6250
- * ListingContent Delete
6251
- * @summary ListingContent Delete
6252
- * @param {string} listingContentId
6253
- * @param {*} [options] Override http request option.
6254
- * @throws {RequiredError}
6255
- */
6256
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6257
- /**
6258
- * ListingContent Get
6259
- * @summary ListingContent Get
6260
- * @param {string} listingContentId
6261
- * @param {*} [options] Override http request option.
6262
- * @throws {RequiredError}
6263
- */
6264
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6265
- /**
6266
- * ListingContent List
6267
- * @summary ListingContent List
6268
- * @param {string} [listingId]
6269
- * @param {string} [status] Filter by status: active, deleted, or all
6270
- * @param {*} [options] Override http request option.
6271
- * @throws {RequiredError}
6272
- */
6273
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
6274
- /**
6275
- * ListingContent Update
6276
- * @summary ListingContent Update
6277
- * @param {string} listingContentId
6278
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6279
- * @param {*} [options] Override http request option.
6280
- * @throws {RequiredError}
6281
- */
6282
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
6283
6716
  /**
6284
6717
  * Listings Get
6285
6718
  * @summary Listings Get
@@ -6310,54 +6743,6 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
6310
6743
  * @extends {BaseAPI}
6311
6744
  */
6312
6745
  declare class ListingsApi extends BaseAPI {
6313
- /**
6314
- * ListingContent Create
6315
- * @summary ListingContent Create
6316
- * @param {string} listingId
6317
- * @param {APIListingContentCreate} aPIListingContentCreate
6318
- * @param {*} [options] Override http request option.
6319
- * @throws {RequiredError}
6320
- * @memberof ListingsApi
6321
- */
6322
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6323
- /**
6324
- * ListingContent Delete
6325
- * @summary ListingContent Delete
6326
- * @param {string} listingContentId
6327
- * @param {*} [options] Override http request option.
6328
- * @throws {RequiredError}
6329
- * @memberof ListingsApi
6330
- */
6331
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
6332
- /**
6333
- * ListingContent Get
6334
- * @summary ListingContent Get
6335
- * @param {string} listingContentId
6336
- * @param {*} [options] Override http request option.
6337
- * @throws {RequiredError}
6338
- * @memberof ListingsApi
6339
- */
6340
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6341
- /**
6342
- * ListingContent List
6343
- * @summary ListingContent List
6344
- * @param {string} [listingId]
6345
- * @param {string} [status] Filter by status: active, deleted, or all
6346
- * @param {*} [options] Override http request option.
6347
- * @throws {RequiredError}
6348
- * @memberof ListingsApi
6349
- */
6350
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
6351
- /**
6352
- * ListingContent Update
6353
- * @summary ListingContent Update
6354
- * @param {string} listingContentId
6355
- * @param {APIListingContentUpdate} aPIListingContentUpdate
6356
- * @param {*} [options] Override http request option.
6357
- * @throws {RequiredError}
6358
- * @memberof ListingsApi
6359
- */
6360
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
6361
6746
  /**
6362
6747
  * Listings Get
6363
6748
  * @summary Listings Get
@@ -7450,7 +7835,76 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7450
7835
  * @param {*} [options] Override http request option.
7451
7836
  * @throws {RequiredError}
7452
7837
  */
7453
- contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7838
+ contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7839
+ /**
7840
+ * Create new content under a listing.
7841
+ * @summary Create Listing Content
7842
+ * @param {string} listingId
7843
+ * @param {Create} create
7844
+ * @param {*} [options] Override http request option.
7845
+ * @throws {RequiredError}
7846
+ */
7847
+ contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7848
+ /**
7849
+ * Create new content under a tag.
7850
+ * @summary Create Tag Content
7851
+ * @param {string} tagId
7852
+ * @param {Create} create
7853
+ * @param {*} [options] Override http request option.
7854
+ * @throws {RequiredError}
7855
+ */
7856
+ contentCreateOnTag: (tagId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7857
+ /**
7858
+ * Content Delete
7859
+ * @summary Content Delete
7860
+ * @param {string} contentId
7861
+ * @param {*} [options] Override http request option.
7862
+ * @throws {RequiredError}
7863
+ */
7864
+ contentDelete: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7865
+ /**
7866
+ * Content Get
7867
+ * @summary Content Get
7868
+ * @param {string} contentId
7869
+ * @param {*} [options] Override http request option.
7870
+ * @throws {RequiredError}
7871
+ */
7872
+ contentGet: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7873
+ /**
7874
+ * Content List
7875
+ * @summary Content List
7876
+ * @param {string | null} [listingId] Filter by listing ID
7877
+ * @param {string | null} [tagId] Filter by tag ID
7878
+ * @param {boolean} [includeDeleted] Include soft-deleted content
7879
+ * @param {*} [options] Override http request option.
7880
+ * @throws {RequiredError}
7881
+ */
7882
+ contentList: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7883
+ /**
7884
+ * Content Update
7885
+ * @summary Content Update
7886
+ * @param {string} contentId
7887
+ * @param {APIContentUpdate} aPIContentUpdate
7888
+ * @param {*} [options] Override http request option.
7889
+ * @throws {RequiredError}
7890
+ */
7891
+ contentUpdate: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7892
+ /**
7893
+ * ContentVersions Get
7894
+ * @summary ContentVersions Get
7895
+ * @param {string} contentVersionId
7896
+ * @param {*} [options] Override http request option.
7897
+ * @throws {RequiredError}
7898
+ */
7899
+ contentVersionsGet: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7900
+ /**
7901
+ * ContentVersions List
7902
+ * @summary ContentVersions List
7903
+ * @param {string} [contentId]
7904
+ * @param {*} [options] Override http request option.
7905
+ * @throws {RequiredError}
7906
+ */
7907
+ contentVersionsList: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7454
7908
  /**
7455
7909
  * Conversations Create
7456
7910
  * @summary Conversations Create
@@ -7527,14 +7981,21 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7527
7981
  */
7528
7982
  emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7529
7983
  /**
7530
- * 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).
7531
- * @summary Generate Listing Content Upload Url
7532
- * @param {string} listingId
7984
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
7985
+ * @summary Generate presigned download URL
7986
+ * @param {DownloadURLRequest} downloadURLRequest
7987
+ * @param {*} [options] Override http request option.
7988
+ * @throws {RequiredError}
7989
+ */
7990
+ generateFileDownloadURL: (downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7991
+ /**
7992
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
7993
+ * @summary Generate presigned upload URL
7533
7994
  * @param {UploadURLRequest} uploadURLRequest
7534
7995
  * @param {*} [options] Override http request option.
7535
7996
  * @throws {RequiredError}
7536
7997
  */
7537
- generateListingContentUploadURL: (listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7998
+ generateFileUploadURL: (uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7538
7999
  /**
7539
8000
  * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
7540
8001
  * @summary Get Me
@@ -7557,65 +8018,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
7557
8018
  * @throws {RequiredError}
7558
8019
  */
7559
8020
  inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7560
- /**
7561
- * ListingContent Create
7562
- * @summary ListingContent Create
7563
- * @param {string} listingId
7564
- * @param {APIListingContentCreate} aPIListingContentCreate
7565
- * @param {*} [options] Override http request option.
7566
- * @throws {RequiredError}
7567
- */
7568
- listingContentCreate: (listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7569
- /**
7570
- * ListingContent Delete
7571
- * @summary ListingContent Delete
7572
- * @param {string} listingContentId
7573
- * @param {*} [options] Override http request option.
7574
- * @throws {RequiredError}
7575
- */
7576
- listingContentDelete: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7577
- /**
7578
- * ListingContent Get
7579
- * @summary ListingContent Get
7580
- * @param {string} listingContentId
7581
- * @param {*} [options] Override http request option.
7582
- * @throws {RequiredError}
7583
- */
7584
- listingContentGet: (listingContentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7585
- /**
7586
- * ListingContent List
7587
- * @summary ListingContent List
7588
- * @param {string} [listingId]
7589
- * @param {string} [status] Filter by status: active, deleted, or all
7590
- * @param {*} [options] Override http request option.
7591
- * @throws {RequiredError}
7592
- */
7593
- listingContentList: (listingId?: string, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7594
- /**
7595
- * ListingContent Update
7596
- * @summary ListingContent Update
7597
- * @param {string} listingContentId
7598
- * @param {APIListingContentUpdate} aPIListingContentUpdate
7599
- * @param {*} [options] Override http request option.
7600
- * @throws {RequiredError}
7601
- */
7602
- listingContentUpdate: (listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7603
- /**
7604
- * ListingContentVersions Get
7605
- * @summary ListingContentVersions Get
7606
- * @param {string} listingContentVersionId
7607
- * @param {*} [options] Override http request option.
7608
- * @throws {RequiredError}
7609
- */
7610
- listingContentVersionsGet: (listingContentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7611
- /**
7612
- * ListingContentVersions List
7613
- * @summary ListingContentVersions List
7614
- * @param {string} [listingContentId]
7615
- * @param {*} [options] Override http request option.
7616
- * @throws {RequiredError}
7617
- */
7618
- listingContentVersionsList: (listingContentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7619
8021
  /**
7620
8022
  * Associates a tag with a listing. This operation is idempotent.
7621
8023
  * @summary Add Tag To Listing
@@ -8042,6 +8444,75 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
8042
8444
  * @throws {RequiredError}
8043
8445
  */
8044
8446
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8447
+ /**
8448
+ * Create new content under a listing.
8449
+ * @summary Create Listing Content
8450
+ * @param {string} listingId
8451
+ * @param {Create} create
8452
+ * @param {*} [options] Override http request option.
8453
+ * @throws {RequiredError}
8454
+ */
8455
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
8456
+ /**
8457
+ * Create new content under a tag.
8458
+ * @summary Create Tag Content
8459
+ * @param {string} tagId
8460
+ * @param {Create} create
8461
+ * @param {*} [options] Override http request option.
8462
+ * @throws {RequiredError}
8463
+ */
8464
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
8465
+ /**
8466
+ * Content Delete
8467
+ * @summary Content Delete
8468
+ * @param {string} contentId
8469
+ * @param {*} [options] Override http request option.
8470
+ * @throws {RequiredError}
8471
+ */
8472
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8473
+ /**
8474
+ * Content Get
8475
+ * @summary Content Get
8476
+ * @param {string} contentId
8477
+ * @param {*} [options] Override http request option.
8478
+ * @throws {RequiredError}
8479
+ */
8480
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
8481
+ /**
8482
+ * Content List
8483
+ * @summary Content List
8484
+ * @param {string | null} [listingId] Filter by listing ID
8485
+ * @param {string | null} [tagId] Filter by tag ID
8486
+ * @param {boolean} [includeDeleted] Include soft-deleted content
8487
+ * @param {*} [options] Override http request option.
8488
+ * @throws {RequiredError}
8489
+ */
8490
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
8491
+ /**
8492
+ * Content Update
8493
+ * @summary Content Update
8494
+ * @param {string} contentId
8495
+ * @param {APIContentUpdate} aPIContentUpdate
8496
+ * @param {*} [options] Override http request option.
8497
+ * @throws {RequiredError}
8498
+ */
8499
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
8500
+ /**
8501
+ * ContentVersions Get
8502
+ * @summary ContentVersions Get
8503
+ * @param {string} contentVersionId
8504
+ * @param {*} [options] Override http request option.
8505
+ * @throws {RequiredError}
8506
+ */
8507
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
8508
+ /**
8509
+ * ContentVersions List
8510
+ * @summary ContentVersions List
8511
+ * @param {string} [contentId]
8512
+ * @param {*} [options] Override http request option.
8513
+ * @throws {RequiredError}
8514
+ */
8515
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
8045
8516
  /**
8046
8517
  * Conversations Create
8047
8518
  * @summary Conversations Create
@@ -8118,14 +8589,21 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
8118
8589
  */
8119
8590
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
8120
8591
  /**
8121
- * 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).
8122
- * @summary Generate Listing Content Upload Url
8123
- * @param {string} listingId
8592
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
8593
+ * @summary Generate presigned download URL
8594
+ * @param {DownloadURLRequest} downloadURLRequest
8595
+ * @param {*} [options] Override http request option.
8596
+ * @throws {RequiredError}
8597
+ */
8598
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadURLResponse>>;
8599
+ /**
8600
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
8601
+ * @summary Generate presigned upload URL
8124
8602
  * @param {UploadURLRequest} uploadURLRequest
8125
8603
  * @param {*} [options] Override http request option.
8126
8604
  * @throws {RequiredError}
8127
8605
  */
8128
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
8606
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
8129
8607
  /**
8130
8608
  * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
8131
8609
  * @summary Get Me
@@ -8148,65 +8626,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
8148
8626
  * @throws {RequiredError}
8149
8627
  */
8150
8628
  inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
8151
- /**
8152
- * ListingContent Create
8153
- * @summary ListingContent Create
8154
- * @param {string} listingId
8155
- * @param {APIListingContentCreate} aPIListingContentCreate
8156
- * @param {*} [options] Override http request option.
8157
- * @throws {RequiredError}
8158
- */
8159
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
8160
- /**
8161
- * ListingContent Delete
8162
- * @summary ListingContent Delete
8163
- * @param {string} listingContentId
8164
- * @param {*} [options] Override http request option.
8165
- * @throws {RequiredError}
8166
- */
8167
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8168
- /**
8169
- * ListingContent Get
8170
- * @summary ListingContent Get
8171
- * @param {string} listingContentId
8172
- * @param {*} [options] Override http request option.
8173
- * @throws {RequiredError}
8174
- */
8175
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
8176
- /**
8177
- * ListingContent List
8178
- * @summary ListingContent List
8179
- * @param {string} [listingId]
8180
- * @param {string} [status] Filter by status: active, deleted, or all
8181
- * @param {*} [options] Override http request option.
8182
- * @throws {RequiredError}
8183
- */
8184
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContent>>;
8185
- /**
8186
- * ListingContent Update
8187
- * @summary ListingContent Update
8188
- * @param {string} listingContentId
8189
- * @param {APIListingContentUpdate} aPIListingContentUpdate
8190
- * @param {*} [options] Override http request option.
8191
- * @throws {RequiredError}
8192
- */
8193
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContent>>;
8194
- /**
8195
- * ListingContentVersions Get
8196
- * @summary ListingContentVersions Get
8197
- * @param {string} listingContentVersionId
8198
- * @param {*} [options] Override http request option.
8199
- * @throws {RequiredError}
8200
- */
8201
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIListingContentVersion>>;
8202
- /**
8203
- * ListingContentVersions List
8204
- * @summary ListingContentVersions List
8205
- * @param {string} [listingContentId]
8206
- * @param {*} [options] Override http request option.
8207
- * @throws {RequiredError}
8208
- */
8209
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIListingContentVersion>>;
8210
8629
  /**
8211
8630
  * Associates a tag with a listing. This operation is idempotent.
8212
8631
  * @summary Add Tag To Listing
@@ -8633,6 +9052,75 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
8633
9052
  * @throws {RequiredError}
8634
9053
  */
8635
9054
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9055
+ /**
9056
+ * Create new content under a listing.
9057
+ * @summary Create Listing Content
9058
+ * @param {string} listingId
9059
+ * @param {Create} create
9060
+ * @param {*} [options] Override http request option.
9061
+ * @throws {RequiredError}
9062
+ */
9063
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
9064
+ /**
9065
+ * Create new content under a tag.
9066
+ * @summary Create Tag Content
9067
+ * @param {string} tagId
9068
+ * @param {Create} create
9069
+ * @param {*} [options] Override http request option.
9070
+ * @throws {RequiredError}
9071
+ */
9072
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
9073
+ /**
9074
+ * Content Delete
9075
+ * @summary Content Delete
9076
+ * @param {string} contentId
9077
+ * @param {*} [options] Override http request option.
9078
+ * @throws {RequiredError}
9079
+ */
9080
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9081
+ /**
9082
+ * Content Get
9083
+ * @summary Content Get
9084
+ * @param {string} contentId
9085
+ * @param {*} [options] Override http request option.
9086
+ * @throws {RequiredError}
9087
+ */
9088
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
9089
+ /**
9090
+ * Content List
9091
+ * @summary Content List
9092
+ * @param {string | null} [listingId] Filter by listing ID
9093
+ * @param {string | null} [tagId] Filter by tag ID
9094
+ * @param {boolean} [includeDeleted] Include soft-deleted content
9095
+ * @param {*} [options] Override http request option.
9096
+ * @throws {RequiredError}
9097
+ */
9098
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
9099
+ /**
9100
+ * Content Update
9101
+ * @summary Content Update
9102
+ * @param {string} contentId
9103
+ * @param {APIContentUpdate} aPIContentUpdate
9104
+ * @param {*} [options] Override http request option.
9105
+ * @throws {RequiredError}
9106
+ */
9107
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
9108
+ /**
9109
+ * ContentVersions Get
9110
+ * @summary ContentVersions Get
9111
+ * @param {string} contentVersionId
9112
+ * @param {*} [options] Override http request option.
9113
+ * @throws {RequiredError}
9114
+ */
9115
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
9116
+ /**
9117
+ * ContentVersions List
9118
+ * @summary ContentVersions List
9119
+ * @param {string} [contentId]
9120
+ * @param {*} [options] Override http request option.
9121
+ * @throws {RequiredError}
9122
+ */
9123
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
8636
9124
  /**
8637
9125
  * Conversations Create
8638
9126
  * @summary Conversations Create
@@ -8709,14 +9197,21 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
8709
9197
  */
8710
9198
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
8711
9199
  /**
8712
- * 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).
8713
- * @summary Generate Listing Content Upload Url
8714
- * @param {string} listingId
9200
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
9201
+ * @summary Generate presigned download URL
9202
+ * @param {DownloadURLRequest} downloadURLRequest
9203
+ * @param {*} [options] Override http request option.
9204
+ * @throws {RequiredError}
9205
+ */
9206
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<DownloadURLResponse>;
9207
+ /**
9208
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
9209
+ * @summary Generate presigned upload URL
8715
9210
  * @param {UploadURLRequest} uploadURLRequest
8716
9211
  * @param {*} [options] Override http request option.
8717
9212
  * @throws {RequiredError}
8718
9213
  */
8719
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
9214
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
8720
9215
  /**
8721
9216
  * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
8722
9217
  * @summary Get Me
@@ -8739,65 +9234,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
8739
9234
  * @throws {RequiredError}
8740
9235
  */
8741
9236
  inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
8742
- /**
8743
- * ListingContent Create
8744
- * @summary ListingContent Create
8745
- * @param {string} listingId
8746
- * @param {APIListingContentCreate} aPIListingContentCreate
8747
- * @param {*} [options] Override http request option.
8748
- * @throws {RequiredError}
8749
- */
8750
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
8751
- /**
8752
- * ListingContent Delete
8753
- * @summary ListingContent Delete
8754
- * @param {string} listingContentId
8755
- * @param {*} [options] Override http request option.
8756
- * @throws {RequiredError}
8757
- */
8758
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8759
- /**
8760
- * ListingContent Get
8761
- * @summary ListingContent Get
8762
- * @param {string} listingContentId
8763
- * @param {*} [options] Override http request option.
8764
- * @throws {RequiredError}
8765
- */
8766
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
8767
- /**
8768
- * ListingContent List
8769
- * @summary ListingContent List
8770
- * @param {string} [listingId]
8771
- * @param {string} [status] Filter by status: active, deleted, or all
8772
- * @param {*} [options] Override http request option.
8773
- * @throws {RequiredError}
8774
- */
8775
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContent>;
8776
- /**
8777
- * ListingContent Update
8778
- * @summary ListingContent Update
8779
- * @param {string} listingContentId
8780
- * @param {APIListingContentUpdate} aPIListingContentUpdate
8781
- * @param {*} [options] Override http request option.
8782
- * @throws {RequiredError}
8783
- */
8784
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContent>;
8785
- /**
8786
- * ListingContentVersions Get
8787
- * @summary ListingContentVersions Get
8788
- * @param {string} listingContentVersionId
8789
- * @param {*} [options] Override http request option.
8790
- * @throws {RequiredError}
8791
- */
8792
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIListingContentVersion>;
8793
- /**
8794
- * ListingContentVersions List
8795
- * @summary ListingContentVersions List
8796
- * @param {string} [listingContentId]
8797
- * @param {*} [options] Override http request option.
8798
- * @throws {RequiredError}
8799
- */
8800
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIListingContentVersion>;
8801
9237
  /**
8802
9238
  * Associates a tag with a listing. This operation is idempotent.
8803
9239
  * @summary Add Tag To Listing
@@ -9243,6 +9679,83 @@ declare class UnboundApi extends BaseAPI {
9243
9679
  * @memberof UnboundApi
9244
9680
  */
9245
9681
  contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9682
+ /**
9683
+ * Create new content under a listing.
9684
+ * @summary Create Listing Content
9685
+ * @param {string} listingId
9686
+ * @param {Create} create
9687
+ * @param {*} [options] Override http request option.
9688
+ * @throws {RequiredError}
9689
+ * @memberof UnboundApi
9690
+ */
9691
+ contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
9692
+ /**
9693
+ * Create new content under a tag.
9694
+ * @summary Create Tag Content
9695
+ * @param {string} tagId
9696
+ * @param {Create} create
9697
+ * @param {*} [options] Override http request option.
9698
+ * @throws {RequiredError}
9699
+ * @memberof UnboundApi
9700
+ */
9701
+ contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
9702
+ /**
9703
+ * Content Delete
9704
+ * @summary Content Delete
9705
+ * @param {string} contentId
9706
+ * @param {*} [options] Override http request option.
9707
+ * @throws {RequiredError}
9708
+ * @memberof UnboundApi
9709
+ */
9710
+ contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9711
+ /**
9712
+ * Content Get
9713
+ * @summary Content Get
9714
+ * @param {string} contentId
9715
+ * @param {*} [options] Override http request option.
9716
+ * @throws {RequiredError}
9717
+ * @memberof UnboundApi
9718
+ */
9719
+ contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
9720
+ /**
9721
+ * Content List
9722
+ * @summary Content List
9723
+ * @param {string | null} [listingId] Filter by listing ID
9724
+ * @param {string | null} [tagId] Filter by tag ID
9725
+ * @param {boolean} [includeDeleted] Include soft-deleted content
9726
+ * @param {*} [options] Override http request option.
9727
+ * @throws {RequiredError}
9728
+ * @memberof UnboundApi
9729
+ */
9730
+ contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
9731
+ /**
9732
+ * Content Update
9733
+ * @summary Content Update
9734
+ * @param {string} contentId
9735
+ * @param {APIContentUpdate} aPIContentUpdate
9736
+ * @param {*} [options] Override http request option.
9737
+ * @throws {RequiredError}
9738
+ * @memberof UnboundApi
9739
+ */
9740
+ contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
9741
+ /**
9742
+ * ContentVersions Get
9743
+ * @summary ContentVersions Get
9744
+ * @param {string} contentVersionId
9745
+ * @param {*} [options] Override http request option.
9746
+ * @throws {RequiredError}
9747
+ * @memberof UnboundApi
9748
+ */
9749
+ contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
9750
+ /**
9751
+ * ContentVersions List
9752
+ * @summary ContentVersions List
9753
+ * @param {string} [contentId]
9754
+ * @param {*} [options] Override http request option.
9755
+ * @throws {RequiredError}
9756
+ * @memberof UnboundApi
9757
+ */
9758
+ contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
9246
9759
  /**
9247
9760
  * Conversations Create
9248
9761
  * @summary Conversations Create
@@ -9327,15 +9840,23 @@ declare class UnboundApi extends BaseAPI {
9327
9840
  */
9328
9841
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
9329
9842
  /**
9330
- * 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).
9331
- * @summary Generate Listing Content Upload Url
9332
- * @param {string} listingId
9843
+ * Generate a presigned GET URL for downloading a file. The file must belong to the authenticated account (enforced by file_key prefix matching account_id). **Download Workflow:** 1. Call this endpoint with the file_key obtained during upload 2. Redirect or fetch from the returned download_url 3. URL expires after the specified duration (default 1 hour)
9844
+ * @summary Generate presigned download URL
9845
+ * @param {DownloadURLRequest} downloadURLRequest
9846
+ * @param {*} [options] Override http request option.
9847
+ * @throws {RequiredError}
9848
+ * @memberof UnboundApi
9849
+ */
9850
+ generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<DownloadURLResponse, any>>;
9851
+ /**
9852
+ * Generate a presigned POST URL for uploading a file directly to storage. The upload enforces file size limits server-side. Files are organized under the authenticated account\'s namespace. **Upload Workflow:** 1. Call this endpoint to get upload URL and form fields 2. POST the file to upload_url with all upload_fields as form data 3. The file field should be named \'file\' and be the last field 4. Store the returned file_key for later download
9853
+ * @summary Generate presigned upload URL
9333
9854
  * @param {UploadURLRequest} uploadURLRequest
9334
9855
  * @param {*} [options] Override http request option.
9335
9856
  * @throws {RequiredError}
9336
9857
  * @memberof UnboundApi
9337
9858
  */
9338
- generateListingContentUploadURL(listingId: string, uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
9859
+ generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
9339
9860
  /**
9340
9861
  * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
9341
9862
  * @summary Get Me
@@ -9361,72 +9882,6 @@ declare class UnboundApi extends BaseAPI {
9361
9882
  * @memberof UnboundApi
9362
9883
  */
9363
9884
  inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
9364
- /**
9365
- * ListingContent Create
9366
- * @summary ListingContent Create
9367
- * @param {string} listingId
9368
- * @param {APIListingContentCreate} aPIListingContentCreate
9369
- * @param {*} [options] Override http request option.
9370
- * @throws {RequiredError}
9371
- * @memberof UnboundApi
9372
- */
9373
- listingContentCreate(listingId: string, aPIListingContentCreate: APIListingContentCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
9374
- /**
9375
- * ListingContent Delete
9376
- * @summary ListingContent Delete
9377
- * @param {string} listingContentId
9378
- * @param {*} [options] Override http request option.
9379
- * @throws {RequiredError}
9380
- * @memberof UnboundApi
9381
- */
9382
- listingContentDelete(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9383
- /**
9384
- * ListingContent Get
9385
- * @summary ListingContent Get
9386
- * @param {string} listingContentId
9387
- * @param {*} [options] Override http request option.
9388
- * @throws {RequiredError}
9389
- * @memberof UnboundApi
9390
- */
9391
- listingContentGet(listingContentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
9392
- /**
9393
- * ListingContent List
9394
- * @summary ListingContent List
9395
- * @param {string} [listingId]
9396
- * @param {string} [status] Filter by status: active, deleted, or all
9397
- * @param {*} [options] Override http request option.
9398
- * @throws {RequiredError}
9399
- * @memberof UnboundApi
9400
- */
9401
- listingContentList(listingId?: string, status?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContent, any>>;
9402
- /**
9403
- * ListingContent Update
9404
- * @summary ListingContent Update
9405
- * @param {string} listingContentId
9406
- * @param {APIListingContentUpdate} aPIListingContentUpdate
9407
- * @param {*} [options] Override http request option.
9408
- * @throws {RequiredError}
9409
- * @memberof UnboundApi
9410
- */
9411
- listingContentUpdate(listingContentId: string, aPIListingContentUpdate: APIListingContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContent, any>>;
9412
- /**
9413
- * ListingContentVersions Get
9414
- * @summary ListingContentVersions Get
9415
- * @param {string} listingContentVersionId
9416
- * @param {*} [options] Override http request option.
9417
- * @throws {RequiredError}
9418
- * @memberof UnboundApi
9419
- */
9420
- listingContentVersionsGet(listingContentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIListingContentVersion, any>>;
9421
- /**
9422
- * ListingContentVersions List
9423
- * @summary ListingContentVersions List
9424
- * @param {string} [listingContentId]
9425
- * @param {*} [options] Override http request option.
9426
- * @throws {RequiredError}
9427
- * @memberof UnboundApi
9428
- */
9429
- listingContentVersionsList(listingContentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIListingContentVersion, any>>;
9430
9885
  /**
9431
9886
  * Associates a tag with a listing. This operation is idempotent.
9432
9887
  * @summary Add Tag To Listing
@@ -9820,4 +10275,4 @@ declare class UserDevicesApi extends BaseAPI {
9820
10275
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
9821
10276
  }
9822
10277
 
9823
- 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 APITag, type APITagCreate, type APITagUpdate, 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, type ListResponseAPITag, 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 SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, 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, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, 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 };
10278
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIContent, type APIContentUpdate, type APIContentVersion, APIContentVersionParentResourceEnum, 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 APITag, type APITagCreate, type APITagUpdate, 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, type Content, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, ContentParentResource, type ContentVersion, type ContentVersionApi, ContentVersionApiParentResourceEnum, ContentVersionParentResourceEnum, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DeleteContactListing, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, 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 ListResponseAPIContent, type ListResponseAPIContentVersion, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, 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 PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, 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 SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, 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, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };