@ember-home/unbound-ts-client 0.0.100 → 0.0.104
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 +1642 -1259
- package/dist/index.d.ts +1642 -1259
- package/dist/index.js +2048 -1809
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1934 -1695
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -736,6 +736,188 @@ 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 {string}
|
|
766
|
+
* @memberof APIContent
|
|
767
|
+
*/
|
|
768
|
+
'createdAt': string;
|
|
769
|
+
/**
|
|
770
|
+
*
|
|
771
|
+
* @type {string}
|
|
772
|
+
* @memberof APIContent
|
|
773
|
+
*/
|
|
774
|
+
'updatedAt': string;
|
|
775
|
+
/**
|
|
776
|
+
*
|
|
777
|
+
* @type {string}
|
|
778
|
+
* @memberof APIContent
|
|
779
|
+
*/
|
|
780
|
+
'deletedAt'?: string | null;
|
|
781
|
+
/**
|
|
782
|
+
*
|
|
783
|
+
* @type {string}
|
|
784
|
+
* @memberof APIContent
|
|
785
|
+
*/
|
|
786
|
+
'currentVersionId': string;
|
|
787
|
+
/**
|
|
788
|
+
*
|
|
789
|
+
* @type {number}
|
|
790
|
+
* @memberof APIContent
|
|
791
|
+
*/
|
|
792
|
+
'version': number;
|
|
793
|
+
/**
|
|
794
|
+
*
|
|
795
|
+
* @type {string}
|
|
796
|
+
* @memberof APIContent
|
|
797
|
+
*/
|
|
798
|
+
'title': string;
|
|
799
|
+
/**
|
|
800
|
+
*
|
|
801
|
+
* @type {string}
|
|
802
|
+
* @memberof APIContent
|
|
803
|
+
*/
|
|
804
|
+
'description': string;
|
|
805
|
+
/**
|
|
806
|
+
*
|
|
807
|
+
* @type {Contenttypedata}
|
|
808
|
+
* @memberof APIContent
|
|
809
|
+
*/
|
|
810
|
+
'contentTypeData': Contenttypedata;
|
|
811
|
+
/**
|
|
812
|
+
*
|
|
813
|
+
* @type {string}
|
|
814
|
+
* @memberof APIContent
|
|
815
|
+
*/
|
|
816
|
+
'versionCreatedAt': string;
|
|
817
|
+
/**
|
|
818
|
+
*
|
|
819
|
+
* @type {string}
|
|
820
|
+
* @memberof APIContent
|
|
821
|
+
*/
|
|
822
|
+
'createdBy': string;
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
*
|
|
826
|
+
* @export
|
|
827
|
+
* @interface APIContentUpdate
|
|
828
|
+
*/
|
|
829
|
+
interface APIContentUpdate {
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @type {string}
|
|
833
|
+
* @memberof APIContentUpdate
|
|
834
|
+
*/
|
|
835
|
+
'title'?: string | null;
|
|
836
|
+
/**
|
|
837
|
+
*
|
|
838
|
+
* @type {string}
|
|
839
|
+
* @memberof APIContentUpdate
|
|
840
|
+
*/
|
|
841
|
+
'description'?: string | null;
|
|
842
|
+
/**
|
|
843
|
+
*
|
|
844
|
+
* @type {Contenttypedata1}
|
|
845
|
+
* @memberof APIContentUpdate
|
|
846
|
+
*/
|
|
847
|
+
'contentTypeData'?: Contenttypedata1 | null;
|
|
848
|
+
}
|
|
849
|
+
/**
|
|
850
|
+
*
|
|
851
|
+
* @export
|
|
852
|
+
* @interface APIContentVersion
|
|
853
|
+
*/
|
|
854
|
+
interface APIContentVersion {
|
|
855
|
+
/**
|
|
856
|
+
*
|
|
857
|
+
* @type {string}
|
|
858
|
+
* @memberof APIContentVersion
|
|
859
|
+
*/
|
|
860
|
+
'contentItemVersionId': string;
|
|
861
|
+
/**
|
|
862
|
+
*
|
|
863
|
+
* @type {string}
|
|
864
|
+
* @memberof APIContentVersion
|
|
865
|
+
*/
|
|
866
|
+
'contentItemId': string;
|
|
867
|
+
/**
|
|
868
|
+
*
|
|
869
|
+
* @type {string}
|
|
870
|
+
* @memberof APIContentVersion
|
|
871
|
+
*/
|
|
872
|
+
'parentResource': APIContentVersionParentResourceEnum;
|
|
873
|
+
/**
|
|
874
|
+
*
|
|
875
|
+
* @type {number}
|
|
876
|
+
* @memberof APIContentVersion
|
|
877
|
+
*/
|
|
878
|
+
'version': number;
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @type {string}
|
|
882
|
+
* @memberof APIContentVersion
|
|
883
|
+
*/
|
|
884
|
+
'title': string;
|
|
885
|
+
/**
|
|
886
|
+
*
|
|
887
|
+
* @type {string}
|
|
888
|
+
* @memberof APIContentVersion
|
|
889
|
+
*/
|
|
890
|
+
'description': string;
|
|
891
|
+
/**
|
|
892
|
+
*
|
|
893
|
+
* @type {Contenttypedata}
|
|
894
|
+
* @memberof APIContentVersion
|
|
895
|
+
*/
|
|
896
|
+
'contentTypeData': Contenttypedata;
|
|
897
|
+
/**
|
|
898
|
+
*
|
|
899
|
+
* @type {string}
|
|
900
|
+
* @memberof APIContentVersion
|
|
901
|
+
*/
|
|
902
|
+
'createdAt': string;
|
|
903
|
+
/**
|
|
904
|
+
*
|
|
905
|
+
* @type {string}
|
|
906
|
+
* @memberof APIContentVersion
|
|
907
|
+
*/
|
|
908
|
+
'createdBy': string;
|
|
909
|
+
/**
|
|
910
|
+
*
|
|
911
|
+
* @type {boolean}
|
|
912
|
+
* @memberof APIContentVersion
|
|
913
|
+
*/
|
|
914
|
+
'isCurrent'?: boolean;
|
|
915
|
+
}
|
|
916
|
+
declare const APIContentVersionParentResourceEnum: {
|
|
917
|
+
readonly Listing: "LISTING";
|
|
918
|
+
readonly Tag: "TAG";
|
|
919
|
+
};
|
|
920
|
+
type APIContentVersionParentResourceEnum = typeof APIContentVersionParentResourceEnum[keyof typeof APIContentVersionParentResourceEnum];
|
|
739
921
|
/**
|
|
740
922
|
*
|
|
741
923
|
* @export
|
|
@@ -1099,159 +1281,6 @@ interface APIListing {
|
|
|
1099
1281
|
*/
|
|
1100
1282
|
'providerAccountId': string;
|
|
1101
1283
|
}
|
|
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
1284
|
/**
|
|
1256
1285
|
*
|
|
1257
1286
|
* @export
|
|
@@ -2193,39 +2222,180 @@ interface ContactTypeDataApi {
|
|
|
2193
2222
|
*/
|
|
2194
2223
|
type Contactcreate = APIContactCreate1 | APIContactCreate2;
|
|
2195
2224
|
/**
|
|
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
|
-
*
|
|
2225
|
+
* Logical content resource with current version fields hoisted. Title, description, and content_type_data are stored on versions for history tracking, but hoisted to top level for the current version. Belongs to exactly one parent resource (listing or tag).
|
|
2207
2226
|
* @export
|
|
2208
|
-
* @interface
|
|
2227
|
+
* @interface Content
|
|
2209
2228
|
*/
|
|
2210
|
-
interface
|
|
2229
|
+
interface Content {
|
|
2211
2230
|
/**
|
|
2212
2231
|
*
|
|
2213
|
-
* @type {
|
|
2214
|
-
* @memberof
|
|
2232
|
+
* @type {string}
|
|
2233
|
+
* @memberof Content
|
|
2215
2234
|
*/
|
|
2216
|
-
'
|
|
2235
|
+
'contentItemId': string;
|
|
2217
2236
|
/**
|
|
2218
2237
|
*
|
|
2219
|
-
* @type {
|
|
2220
|
-
* @memberof
|
|
2238
|
+
* @type {ContentParentResource}
|
|
2239
|
+
* @memberof Content
|
|
2221
2240
|
*/
|
|
2222
|
-
'
|
|
2241
|
+
'parentResource': ContentParentResource;
|
|
2242
|
+
/**
|
|
2243
|
+
*
|
|
2244
|
+
* @type {string}
|
|
2245
|
+
* @memberof Content
|
|
2246
|
+
*/
|
|
2247
|
+
'parentId': string;
|
|
2248
|
+
/**
|
|
2249
|
+
*
|
|
2250
|
+
* @type {string}
|
|
2251
|
+
* @memberof Content
|
|
2252
|
+
*/
|
|
2253
|
+
'createdAt': string;
|
|
2254
|
+
/**
|
|
2255
|
+
*
|
|
2256
|
+
* @type {string}
|
|
2257
|
+
* @memberof Content
|
|
2258
|
+
*/
|
|
2259
|
+
'updatedAt': string;
|
|
2260
|
+
/**
|
|
2261
|
+
*
|
|
2262
|
+
* @type {string}
|
|
2263
|
+
* @memberof Content
|
|
2264
|
+
*/
|
|
2265
|
+
'deletedAt'?: string | null;
|
|
2266
|
+
/**
|
|
2267
|
+
*
|
|
2268
|
+
* @type {string}
|
|
2269
|
+
* @memberof Content
|
|
2270
|
+
*/
|
|
2271
|
+
'currentVersionId': string;
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @type {number}
|
|
2275
|
+
* @memberof Content
|
|
2276
|
+
*/
|
|
2277
|
+
'version': number;
|
|
2278
|
+
/**
|
|
2279
|
+
*
|
|
2280
|
+
* @type {string}
|
|
2281
|
+
* @memberof Content
|
|
2282
|
+
*/
|
|
2283
|
+
'title': string;
|
|
2284
|
+
/**
|
|
2285
|
+
*
|
|
2286
|
+
* @type {string}
|
|
2287
|
+
* @memberof Content
|
|
2288
|
+
*/
|
|
2289
|
+
'description': string;
|
|
2290
|
+
/**
|
|
2291
|
+
*
|
|
2292
|
+
* @type {Contenttypedata2}
|
|
2293
|
+
* @memberof Content
|
|
2294
|
+
*/
|
|
2295
|
+
'contentTypeData': Contenttypedata2;
|
|
2296
|
+
/**
|
|
2297
|
+
*
|
|
2298
|
+
* @type {string}
|
|
2299
|
+
* @memberof Content
|
|
2300
|
+
*/
|
|
2301
|
+
'versionCreatedAt': string;
|
|
2302
|
+
/**
|
|
2303
|
+
*
|
|
2304
|
+
* @type {string}
|
|
2305
|
+
* @memberof Content
|
|
2306
|
+
*/
|
|
2307
|
+
'createdBy': string;
|
|
2308
|
+
}
|
|
2309
|
+
/**
|
|
2310
|
+
* Types of resources that can own content.
|
|
2311
|
+
* @export
|
|
2312
|
+
* @enum {string}
|
|
2313
|
+
*/
|
|
2314
|
+
declare const ContentParentResource: {
|
|
2315
|
+
readonly Listing: "LISTING";
|
|
2316
|
+
readonly Tag: "TAG";
|
|
2317
|
+
};
|
|
2318
|
+
type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
|
|
2319
|
+
/**
|
|
2320
|
+
* @type Contenttypedata
|
|
2321
|
+
* @export
|
|
2322
|
+
*/
|
|
2323
|
+
type Contenttypedata = FileContentApi | PlainTextContentApi | URLContentApi;
|
|
2324
|
+
/**
|
|
2325
|
+
* @type Contenttypedata1
|
|
2326
|
+
* @export
|
|
2327
|
+
*/
|
|
2328
|
+
type Contenttypedata1 = FileContentApi | PlainTextContentApi | URLContentApi;
|
|
2329
|
+
/**
|
|
2330
|
+
* @type Contenttypedata2
|
|
2331
|
+
* @export
|
|
2332
|
+
*/
|
|
2333
|
+
type Contenttypedata2 = {
|
|
2334
|
+
contentType: 'file';
|
|
2335
|
+
} & FileContent | {
|
|
2336
|
+
contentType: 'plain_text';
|
|
2337
|
+
} & PlainTextContent | {
|
|
2338
|
+
contentType: 'url';
|
|
2339
|
+
} & URLContent;
|
|
2340
|
+
/**
|
|
2341
|
+
*
|
|
2342
|
+
* @export
|
|
2343
|
+
* @enum {string}
|
|
2344
|
+
*/
|
|
2345
|
+
declare const ConversationStatus: {
|
|
2346
|
+
readonly Open: "OPEN";
|
|
2347
|
+
readonly Closed: "CLOSED";
|
|
2348
|
+
};
|
|
2349
|
+
type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
|
|
2350
|
+
/**
|
|
2351
|
+
*
|
|
2352
|
+
* @export
|
|
2353
|
+
* @interface ConversationSuggestionApi
|
|
2354
|
+
*/
|
|
2355
|
+
interface ConversationSuggestionApi {
|
|
2356
|
+
/**
|
|
2357
|
+
*
|
|
2358
|
+
* @type {SuggestionStatus}
|
|
2359
|
+
* @memberof ConversationSuggestionApi
|
|
2360
|
+
*/
|
|
2361
|
+
'suggestionStatus': SuggestionStatus;
|
|
2362
|
+
/**
|
|
2363
|
+
*
|
|
2364
|
+
* @type {SuggestionApi}
|
|
2365
|
+
* @memberof ConversationSuggestionApi
|
|
2366
|
+
*/
|
|
2367
|
+
'suggestion'?: SuggestionApi | null;
|
|
2223
2368
|
}
|
|
2224
2369
|
/**
|
|
2225
2370
|
* @type Conversationtypedata
|
|
2226
2371
|
* @export
|
|
2227
2372
|
*/
|
|
2228
2373
|
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
|
|
2374
|
+
/**
|
|
2375
|
+
* Model for creating a new content resource.
|
|
2376
|
+
* @export
|
|
2377
|
+
* @interface Create
|
|
2378
|
+
*/
|
|
2379
|
+
interface Create {
|
|
2380
|
+
/**
|
|
2381
|
+
*
|
|
2382
|
+
* @type {string}
|
|
2383
|
+
* @memberof Create
|
|
2384
|
+
*/
|
|
2385
|
+
'title': string;
|
|
2386
|
+
/**
|
|
2387
|
+
*
|
|
2388
|
+
* @type {string}
|
|
2389
|
+
* @memberof Create
|
|
2390
|
+
*/
|
|
2391
|
+
'description': string;
|
|
2392
|
+
/**
|
|
2393
|
+
*
|
|
2394
|
+
* @type {Contenttypedata2}
|
|
2395
|
+
* @memberof Create
|
|
2396
|
+
*/
|
|
2397
|
+
'contentTypeData': Contenttypedata2;
|
|
2398
|
+
}
|
|
2229
2399
|
/**
|
|
2230
2400
|
*
|
|
2231
2401
|
* @export
|
|
@@ -2264,6 +2434,56 @@ interface DeleteContactListing {
|
|
|
2264
2434
|
*/
|
|
2265
2435
|
'type': ContactListingType;
|
|
2266
2436
|
}
|
|
2437
|
+
/**
|
|
2438
|
+
* Request model for generating signed download URLs.
|
|
2439
|
+
* @export
|
|
2440
|
+
* @interface DownloadURLRequest
|
|
2441
|
+
*/
|
|
2442
|
+
interface DownloadURLRequest {
|
|
2443
|
+
/**
|
|
2444
|
+
* The S3 object key to download
|
|
2445
|
+
* @type {string}
|
|
2446
|
+
* @memberof DownloadURLRequest
|
|
2447
|
+
*/
|
|
2448
|
+
'fileKey': string;
|
|
2449
|
+
/**
|
|
2450
|
+
*
|
|
2451
|
+
* @type {number}
|
|
2452
|
+
* @memberof DownloadURLRequest
|
|
2453
|
+
*/
|
|
2454
|
+
'expiresInSeconds'?: number | null;
|
|
2455
|
+
/**
|
|
2456
|
+
*
|
|
2457
|
+
* @type {string}
|
|
2458
|
+
* @memberof DownloadURLRequest
|
|
2459
|
+
*/
|
|
2460
|
+
'downloadFilename'?: string | null;
|
|
2461
|
+
}
|
|
2462
|
+
/**
|
|
2463
|
+
* Response model for signed download URL generation.
|
|
2464
|
+
* @export
|
|
2465
|
+
* @interface DownloadURLResponse
|
|
2466
|
+
*/
|
|
2467
|
+
interface DownloadURLResponse {
|
|
2468
|
+
/**
|
|
2469
|
+
* Presigned URL for downloading the file
|
|
2470
|
+
* @type {string}
|
|
2471
|
+
* @memberof DownloadURLResponse
|
|
2472
|
+
*/
|
|
2473
|
+
'downloadUrl': string;
|
|
2474
|
+
/**
|
|
2475
|
+
* The S3 object key
|
|
2476
|
+
* @type {string}
|
|
2477
|
+
* @memberof DownloadURLResponse
|
|
2478
|
+
*/
|
|
2479
|
+
'fileKey': string;
|
|
2480
|
+
/**
|
|
2481
|
+
* ISO8601 timestamp when URL expires
|
|
2482
|
+
* @type {string}
|
|
2483
|
+
* @memberof DownloadURLResponse
|
|
2484
|
+
*/
|
|
2485
|
+
'expiresAt': string;
|
|
2486
|
+
}
|
|
2267
2487
|
/**
|
|
2268
2488
|
*
|
|
2269
2489
|
* @export
|
|
@@ -2387,47 +2607,112 @@ declare const ExternalStaffApiStaffTypeEnum: {
|
|
|
2387
2607
|
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
2388
2608
|
};
|
|
2389
2609
|
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
2610
|
+
/**
|
|
2611
|
+
* File content type (PDF, image, document, etc.).
|
|
2612
|
+
* @export
|
|
2613
|
+
* @interface FileContent
|
|
2614
|
+
*/
|
|
2615
|
+
interface FileContent {
|
|
2616
|
+
/**
|
|
2617
|
+
*
|
|
2618
|
+
* @type {string}
|
|
2619
|
+
* @memberof FileContent
|
|
2620
|
+
*/
|
|
2621
|
+
'contentType': FileContentContentTypeEnum;
|
|
2622
|
+
/**
|
|
2623
|
+
*
|
|
2624
|
+
* @type {string}
|
|
2625
|
+
* @memberof FileContent
|
|
2626
|
+
*/
|
|
2627
|
+
'fileUrl': string;
|
|
2628
|
+
/**
|
|
2629
|
+
*
|
|
2630
|
+
* @type {string}
|
|
2631
|
+
* @memberof FileContent
|
|
2632
|
+
*/
|
|
2633
|
+
'fileName': string;
|
|
2634
|
+
/**
|
|
2635
|
+
*
|
|
2636
|
+
* @type {number}
|
|
2637
|
+
* @memberof FileContent
|
|
2638
|
+
*/
|
|
2639
|
+
'fileSize': number;
|
|
2640
|
+
/**
|
|
2641
|
+
*
|
|
2642
|
+
* @type {string}
|
|
2643
|
+
* @memberof FileContent
|
|
2644
|
+
*/
|
|
2645
|
+
'mimeType': string;
|
|
2646
|
+
/**
|
|
2647
|
+
*
|
|
2648
|
+
* @type {string}
|
|
2649
|
+
* @memberof FileContent
|
|
2650
|
+
*/
|
|
2651
|
+
'downloadUrl'?: string | null;
|
|
2652
|
+
/**
|
|
2653
|
+
*
|
|
2654
|
+
* @type {string}
|
|
2655
|
+
* @memberof FileContent
|
|
2656
|
+
*/
|
|
2657
|
+
'downloadUrlExpiresAt'?: string | null;
|
|
2658
|
+
}
|
|
2659
|
+
declare const FileContentContentTypeEnum: {
|
|
2660
|
+
readonly File: "file";
|
|
2661
|
+
};
|
|
2662
|
+
type FileContentContentTypeEnum = typeof FileContentContentTypeEnum[keyof typeof FileContentContentTypeEnum];
|
|
2390
2663
|
/**
|
|
2391
2664
|
*
|
|
2392
2665
|
* @export
|
|
2393
|
-
* @interface
|
|
2666
|
+
* @interface FileContentApi
|
|
2394
2667
|
*/
|
|
2395
|
-
interface
|
|
2668
|
+
interface FileContentApi {
|
|
2396
2669
|
/**
|
|
2397
2670
|
*
|
|
2398
2671
|
* @type {string}
|
|
2399
|
-
* @memberof
|
|
2672
|
+
* @memberof FileContentApi
|
|
2400
2673
|
*/
|
|
2401
|
-
'
|
|
2674
|
+
'contentType': FileContentApiContentTypeEnum;
|
|
2402
2675
|
/**
|
|
2403
2676
|
*
|
|
2404
2677
|
* @type {string}
|
|
2405
|
-
* @memberof
|
|
2678
|
+
* @memberof FileContentApi
|
|
2406
2679
|
*/
|
|
2407
2680
|
'fileUrl': string;
|
|
2408
2681
|
/**
|
|
2409
2682
|
*
|
|
2410
2683
|
* @type {string}
|
|
2411
|
-
* @memberof
|
|
2684
|
+
* @memberof FileContentApi
|
|
2412
2685
|
*/
|
|
2413
2686
|
'fileName': string;
|
|
2414
2687
|
/**
|
|
2415
2688
|
*
|
|
2416
2689
|
* @type {number}
|
|
2417
|
-
* @memberof
|
|
2690
|
+
* @memberof FileContentApi
|
|
2418
2691
|
*/
|
|
2419
2692
|
'fileSize': number;
|
|
2420
2693
|
/**
|
|
2421
2694
|
*
|
|
2422
2695
|
* @type {string}
|
|
2423
|
-
* @memberof
|
|
2696
|
+
* @memberof FileContentApi
|
|
2424
2697
|
*/
|
|
2425
2698
|
'mimeType': string;
|
|
2699
|
+
/**
|
|
2700
|
+
*
|
|
2701
|
+
* @type {string}
|
|
2702
|
+
* @memberof FileContentApi
|
|
2703
|
+
*/
|
|
2704
|
+
'downloadUrl'?: string | null;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
* @type {string}
|
|
2708
|
+
* @memberof FileContentApi
|
|
2709
|
+
*/
|
|
2710
|
+
'downloadUrlExpiresAt'?: string | null;
|
|
2426
2711
|
}
|
|
2427
|
-
declare const
|
|
2712
|
+
declare const FileContentApiContentTypeEnum: {
|
|
2428
2713
|
readonly File: "file";
|
|
2429
2714
|
};
|
|
2430
|
-
type
|
|
2715
|
+
type FileContentApiContentTypeEnum = typeof FileContentApiContentTypeEnum[keyof typeof FileContentApiContentTypeEnum];
|
|
2431
2716
|
/**
|
|
2432
2717
|
*
|
|
2433
2718
|
* @export
|
|
@@ -2564,54 +2849,54 @@ interface ListResponseAPIAccount {
|
|
|
2564
2849
|
/**
|
|
2565
2850
|
*
|
|
2566
2851
|
* @export
|
|
2567
|
-
* @interface
|
|
2852
|
+
* @interface ListResponseAPIContent
|
|
2568
2853
|
*/
|
|
2569
|
-
interface
|
|
2854
|
+
interface ListResponseAPIContent {
|
|
2570
2855
|
/**
|
|
2571
2856
|
*
|
|
2572
|
-
* @type {Array<
|
|
2573
|
-
* @memberof
|
|
2857
|
+
* @type {Array<APIContent>}
|
|
2858
|
+
* @memberof ListResponseAPIContent
|
|
2574
2859
|
*/
|
|
2575
|
-
'data': Array<
|
|
2860
|
+
'data': Array<APIContent>;
|
|
2576
2861
|
}
|
|
2577
2862
|
/**
|
|
2578
2863
|
*
|
|
2579
2864
|
* @export
|
|
2580
|
-
* @interface
|
|
2865
|
+
* @interface ListResponseAPIContentVersion
|
|
2581
2866
|
*/
|
|
2582
|
-
interface
|
|
2867
|
+
interface ListResponseAPIContentVersion {
|
|
2583
2868
|
/**
|
|
2584
2869
|
*
|
|
2585
|
-
* @type {Array<
|
|
2586
|
-
* @memberof
|
|
2870
|
+
* @type {Array<APIContentVersion>}
|
|
2871
|
+
* @memberof ListResponseAPIContentVersion
|
|
2587
2872
|
*/
|
|
2588
|
-
'data': Array<
|
|
2873
|
+
'data': Array<APIContentVersion>;
|
|
2589
2874
|
}
|
|
2590
2875
|
/**
|
|
2591
2876
|
*
|
|
2592
2877
|
* @export
|
|
2593
|
-
* @interface
|
|
2878
|
+
* @interface ListResponseAPIInbox
|
|
2594
2879
|
*/
|
|
2595
|
-
interface
|
|
2880
|
+
interface ListResponseAPIInbox {
|
|
2596
2881
|
/**
|
|
2597
2882
|
*
|
|
2598
|
-
* @type {Array<
|
|
2599
|
-
* @memberof
|
|
2883
|
+
* @type {Array<APIInbox>}
|
|
2884
|
+
* @memberof ListResponseAPIInbox
|
|
2600
2885
|
*/
|
|
2601
|
-
'data': Array<
|
|
2886
|
+
'data': Array<APIInbox>;
|
|
2602
2887
|
}
|
|
2603
2888
|
/**
|
|
2604
2889
|
*
|
|
2605
2890
|
* @export
|
|
2606
|
-
* @interface
|
|
2891
|
+
* @interface ListResponseAPIInquiry
|
|
2607
2892
|
*/
|
|
2608
|
-
interface
|
|
2893
|
+
interface ListResponseAPIInquiry {
|
|
2609
2894
|
/**
|
|
2610
2895
|
*
|
|
2611
|
-
* @type {Array<
|
|
2612
|
-
* @memberof
|
|
2896
|
+
* @type {Array<APIInquiry>}
|
|
2897
|
+
* @memberof ListResponseAPIInquiry
|
|
2613
2898
|
*/
|
|
2614
|
-
'data': Array<
|
|
2899
|
+
'data': Array<APIInquiry>;
|
|
2615
2900
|
}
|
|
2616
2901
|
/**
|
|
2617
2902
|
*
|
|
@@ -2652,71 +2937,6 @@ interface ListResponseAPITag {
|
|
|
2652
2937
|
*/
|
|
2653
2938
|
'data': Array<APITag>;
|
|
2654
2939
|
}
|
|
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
2940
|
/**
|
|
2721
2941
|
*
|
|
2722
2942
|
* @export
|
|
@@ -3038,32 +3258,43 @@ declare const PhoneInboxApiInboxTypeEnum: {
|
|
|
3038
3258
|
};
|
|
3039
3259
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
3040
3260
|
/**
|
|
3041
|
-
*
|
|
3261
|
+
* Plain text content type. The text content is stored in Content.description.
|
|
3042
3262
|
* @export
|
|
3043
|
-
* @interface
|
|
3263
|
+
* @interface PlainTextContent
|
|
3044
3264
|
*/
|
|
3045
|
-
interface
|
|
3046
|
-
/**
|
|
3047
|
-
*
|
|
3048
|
-
* @type {string}
|
|
3049
|
-
* @memberof PlainTextListingContentApi
|
|
3050
|
-
*/
|
|
3051
|
-
'listingContentType': PlainTextListingContentApiListingContentTypeEnum;
|
|
3265
|
+
interface PlainTextContent {
|
|
3052
3266
|
/**
|
|
3053
3267
|
*
|
|
3054
3268
|
* @type {string}
|
|
3055
|
-
* @memberof
|
|
3269
|
+
* @memberof PlainTextContent
|
|
3056
3270
|
*/
|
|
3057
|
-
'
|
|
3271
|
+
'contentType': PlainTextContentContentTypeEnum;
|
|
3058
3272
|
}
|
|
3059
|
-
declare const
|
|
3273
|
+
declare const PlainTextContentContentTypeEnum: {
|
|
3060
3274
|
readonly PlainText: "plain_text";
|
|
3061
3275
|
};
|
|
3062
|
-
type
|
|
3276
|
+
type PlainTextContentContentTypeEnum = typeof PlainTextContentContentTypeEnum[keyof typeof PlainTextContentContentTypeEnum];
|
|
3063
3277
|
/**
|
|
3064
3278
|
*
|
|
3065
3279
|
* @export
|
|
3066
|
-
* @interface
|
|
3280
|
+
* @interface PlainTextContentApi
|
|
3281
|
+
*/
|
|
3282
|
+
interface PlainTextContentApi {
|
|
3283
|
+
/**
|
|
3284
|
+
*
|
|
3285
|
+
* @type {string}
|
|
3286
|
+
* @memberof PlainTextContentApi
|
|
3287
|
+
*/
|
|
3288
|
+
'contentType': PlainTextContentApiContentTypeEnum;
|
|
3289
|
+
}
|
|
3290
|
+
declare const PlainTextContentApiContentTypeEnum: {
|
|
3291
|
+
readonly PlainText: "plain_text";
|
|
3292
|
+
};
|
|
3293
|
+
type PlainTextContentApiContentTypeEnum = typeof PlainTextContentApiContentTypeEnum[keyof typeof PlainTextContentApiContentTypeEnum];
|
|
3294
|
+
/**
|
|
3295
|
+
*
|
|
3296
|
+
* @export
|
|
3297
|
+
* @interface ProviderAccountInboxApi
|
|
3067
3298
|
*/
|
|
3068
3299
|
interface ProviderAccountInboxApi {
|
|
3069
3300
|
/**
|
|
@@ -4080,29 +4311,52 @@ interface ToPhoneApi {
|
|
|
4080
4311
|
*/
|
|
4081
4312
|
'contactId'?: string | null;
|
|
4082
4313
|
}
|
|
4314
|
+
/**
|
|
4315
|
+
* External URL content type.
|
|
4316
|
+
* @export
|
|
4317
|
+
* @interface URLContent
|
|
4318
|
+
*/
|
|
4319
|
+
interface URLContent {
|
|
4320
|
+
/**
|
|
4321
|
+
*
|
|
4322
|
+
* @type {string}
|
|
4323
|
+
* @memberof URLContent
|
|
4324
|
+
*/
|
|
4325
|
+
'contentType': URLContentContentTypeEnum;
|
|
4326
|
+
/**
|
|
4327
|
+
*
|
|
4328
|
+
* @type {string}
|
|
4329
|
+
* @memberof URLContent
|
|
4330
|
+
*/
|
|
4331
|
+
'url': string;
|
|
4332
|
+
}
|
|
4333
|
+
declare const URLContentContentTypeEnum: {
|
|
4334
|
+
readonly Url: "url";
|
|
4335
|
+
};
|
|
4336
|
+
type URLContentContentTypeEnum = typeof URLContentContentTypeEnum[keyof typeof URLContentContentTypeEnum];
|
|
4083
4337
|
/**
|
|
4084
4338
|
*
|
|
4085
4339
|
* @export
|
|
4086
|
-
* @interface
|
|
4340
|
+
* @interface URLContentApi
|
|
4087
4341
|
*/
|
|
4088
|
-
interface
|
|
4342
|
+
interface URLContentApi {
|
|
4089
4343
|
/**
|
|
4090
4344
|
*
|
|
4091
4345
|
* @type {string}
|
|
4092
|
-
* @memberof
|
|
4346
|
+
* @memberof URLContentApi
|
|
4093
4347
|
*/
|
|
4094
|
-
'
|
|
4348
|
+
'contentType': URLContentApiContentTypeEnum;
|
|
4095
4349
|
/**
|
|
4096
4350
|
*
|
|
4097
4351
|
* @type {string}
|
|
4098
|
-
* @memberof
|
|
4352
|
+
* @memberof URLContentApi
|
|
4099
4353
|
*/
|
|
4100
4354
|
'url': string;
|
|
4101
4355
|
}
|
|
4102
|
-
declare const
|
|
4356
|
+
declare const URLContentApiContentTypeEnum: {
|
|
4103
4357
|
readonly Url: "url";
|
|
4104
4358
|
};
|
|
4105
|
-
type
|
|
4359
|
+
type URLContentApiContentTypeEnum = typeof URLContentApiContentTypeEnum[keyof typeof URLContentApiContentTypeEnum];
|
|
4106
4360
|
/**
|
|
4107
4361
|
*
|
|
4108
4362
|
* @export
|
|
@@ -4135,23 +4389,23 @@ interface UpdateContactListing {
|
|
|
4135
4389
|
*/
|
|
4136
4390
|
interface UploadURLRequest {
|
|
4137
4391
|
/**
|
|
4138
|
-
*
|
|
4392
|
+
* Original filename with extension
|
|
4139
4393
|
* @type {string}
|
|
4140
4394
|
* @memberof UploadURLRequest
|
|
4141
4395
|
*/
|
|
4142
|
-
'
|
|
4396
|
+
'fileName': string;
|
|
4143
4397
|
/**
|
|
4144
|
-
*
|
|
4398
|
+
* MIME type of the file
|
|
4145
4399
|
* @type {string}
|
|
4146
4400
|
* @memberof UploadURLRequest
|
|
4147
4401
|
*/
|
|
4148
|
-
'
|
|
4402
|
+
'mimeType': string;
|
|
4149
4403
|
/**
|
|
4150
|
-
*
|
|
4404
|
+
* File size in bytes
|
|
4151
4405
|
* @type {number}
|
|
4152
4406
|
* @memberof UploadURLRequest
|
|
4153
4407
|
*/
|
|
4154
|
-
'
|
|
4408
|
+
'fileSize': number;
|
|
4155
4409
|
}
|
|
4156
4410
|
/**
|
|
4157
4411
|
* Response model for signed upload URL generation.
|
|
@@ -4160,35 +4414,31 @@ interface UploadURLRequest {
|
|
|
4160
4414
|
*/
|
|
4161
4415
|
interface UploadURLResponse {
|
|
4162
4416
|
/**
|
|
4163
|
-
*
|
|
4164
|
-
* @type {string}
|
|
4165
|
-
* @memberof UploadURLResponse
|
|
4166
|
-
*/
|
|
4167
|
-
'upload_url': string;
|
|
4168
|
-
/**
|
|
4169
|
-
*
|
|
4417
|
+
* Endpoint URL for form submission
|
|
4170
4418
|
* @type {string}
|
|
4171
4419
|
* @memberof UploadURLResponse
|
|
4172
4420
|
*/
|
|
4173
|
-
'
|
|
4421
|
+
'uploadUrl': string;
|
|
4174
4422
|
/**
|
|
4175
|
-
*
|
|
4176
|
-
* @type {
|
|
4423
|
+
* Form fields to include in POST request
|
|
4424
|
+
* @type {{ [key: string]: string; }}
|
|
4177
4425
|
* @memberof UploadURLResponse
|
|
4178
4426
|
*/
|
|
4179
|
-
'
|
|
4427
|
+
'uploadFields': {
|
|
4428
|
+
[key: string]: string;
|
|
4429
|
+
};
|
|
4180
4430
|
/**
|
|
4181
|
-
*
|
|
4431
|
+
* The S3 object key for the uploaded file
|
|
4182
4432
|
* @type {string}
|
|
4183
4433
|
* @memberof UploadURLResponse
|
|
4184
4434
|
*/
|
|
4185
|
-
'
|
|
4435
|
+
'fileKey': string;
|
|
4186
4436
|
/**
|
|
4187
|
-
*
|
|
4437
|
+
* ISO8601 timestamp when URL expires
|
|
4188
4438
|
* @type {string}
|
|
4189
4439
|
* @memberof UploadURLResponse
|
|
4190
4440
|
*/
|
|
4191
|
-
'
|
|
4441
|
+
'expiresAt': string;
|
|
4192
4442
|
}
|
|
4193
4443
|
/**
|
|
4194
4444
|
*
|
|
@@ -5209,935 +5459,1132 @@ declare class ContactsApi extends BaseAPI {
|
|
|
5209
5459
|
phonesUpdate(phoneId: string, aPIPhoneUpdate: APIPhoneUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIPhone, any>>;
|
|
5210
5460
|
}
|
|
5211
5461
|
/**
|
|
5212
|
-
*
|
|
5462
|
+
* ContentApi - axios parameter creator
|
|
5213
5463
|
* @export
|
|
5214
5464
|
*/
|
|
5215
|
-
declare const
|
|
5465
|
+
declare const ContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5216
5466
|
/**
|
|
5217
|
-
*
|
|
5218
|
-
* @summary
|
|
5219
|
-
* @param {string}
|
|
5220
|
-
* @param {
|
|
5467
|
+
* Create new content under a listing.
|
|
5468
|
+
* @summary Create Listing Content
|
|
5469
|
+
* @param {string} listingId
|
|
5470
|
+
* @param {Create} create
|
|
5221
5471
|
* @param {*} [options] Override http request option.
|
|
5222
5472
|
* @throws {RequiredError}
|
|
5223
5473
|
*/
|
|
5224
|
-
|
|
5474
|
+
contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5225
5475
|
/**
|
|
5226
|
-
*
|
|
5227
|
-
* @summary
|
|
5228
|
-
* @param {string}
|
|
5476
|
+
* Create new content under a tag.
|
|
5477
|
+
* @summary Create Tag Content
|
|
5478
|
+
* @param {string} tagId
|
|
5479
|
+
* @param {Create} create
|
|
5229
5480
|
* @param {*} [options] Override http request option.
|
|
5230
5481
|
* @throws {RequiredError}
|
|
5231
5482
|
*/
|
|
5232
|
-
|
|
5483
|
+
contentCreateOnTag: (tagId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5233
5484
|
/**
|
|
5234
|
-
*
|
|
5235
|
-
* @summary
|
|
5236
|
-
* @param {string}
|
|
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
|
|
5485
|
+
* Content Delete
|
|
5486
|
+
* @summary Content Delete
|
|
5487
|
+
* @param {string} contentId
|
|
5247
5488
|
* @param {*} [options] Override http request option.
|
|
5248
5489
|
* @throws {RequiredError}
|
|
5249
5490
|
*/
|
|
5250
|
-
|
|
5251
|
-
};
|
|
5252
|
-
/**
|
|
5253
|
-
* ConversationsApi - functional programming interface
|
|
5254
|
-
* @export
|
|
5255
|
-
*/
|
|
5256
|
-
declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
5491
|
+
contentDelete: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5257
5492
|
/**
|
|
5258
|
-
*
|
|
5259
|
-
* @summary
|
|
5260
|
-
* @param {string}
|
|
5261
|
-
* @param {Messagecreate} messagecreate
|
|
5493
|
+
* Content Delete
|
|
5494
|
+
* @summary Content Delete
|
|
5495
|
+
* @param {string} contentId
|
|
5262
5496
|
* @param {*} [options] Override http request option.
|
|
5263
5497
|
* @throws {RequiredError}
|
|
5264
5498
|
*/
|
|
5265
|
-
|
|
5499
|
+
contentDelete_1: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5266
5500
|
/**
|
|
5267
|
-
*
|
|
5268
|
-
* @summary
|
|
5269
|
-
* @param {string}
|
|
5501
|
+
* Content Get
|
|
5502
|
+
* @summary Content Get
|
|
5503
|
+
* @param {string} contentId
|
|
5270
5504
|
* @param {*} [options] Override http request option.
|
|
5271
5505
|
* @throws {RequiredError}
|
|
5272
5506
|
*/
|
|
5273
|
-
|
|
5507
|
+
contentGet: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5274
5508
|
/**
|
|
5275
|
-
*
|
|
5276
|
-
* @summary
|
|
5277
|
-
* @param {string}
|
|
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
|
|
5509
|
+
* Content Get
|
|
5510
|
+
* @summary Content Get
|
|
5511
|
+
* @param {string} contentId
|
|
5288
5512
|
* @param {*} [options] Override http request option.
|
|
5289
5513
|
* @throws {RequiredError}
|
|
5290
5514
|
*/
|
|
5291
|
-
|
|
5292
|
-
};
|
|
5293
|
-
/**
|
|
5294
|
-
* ConversationsApi - factory interface
|
|
5295
|
-
* @export
|
|
5296
|
-
*/
|
|
5297
|
-
declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5515
|
+
contentGet_2: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5298
5516
|
/**
|
|
5299
|
-
*
|
|
5300
|
-
* @summary
|
|
5301
|
-
* @param {string}
|
|
5302
|
-
* @param {
|
|
5517
|
+
* Content List
|
|
5518
|
+
* @summary Content List
|
|
5519
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5520
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5521
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5303
5522
|
* @param {*} [options] Override http request option.
|
|
5304
5523
|
* @throws {RequiredError}
|
|
5305
5524
|
*/
|
|
5306
|
-
|
|
5525
|
+
contentList: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5307
5526
|
/**
|
|
5308
|
-
*
|
|
5309
|
-
* @summary
|
|
5310
|
-
* @param {string}
|
|
5527
|
+
* Content List
|
|
5528
|
+
* @summary Content List
|
|
5529
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5530
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5531
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5311
5532
|
* @param {*} [options] Override http request option.
|
|
5312
5533
|
* @throws {RequiredError}
|
|
5313
5534
|
*/
|
|
5314
|
-
|
|
5535
|
+
contentList_3: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5315
5536
|
/**
|
|
5316
|
-
*
|
|
5317
|
-
* @summary
|
|
5318
|
-
* @param {string}
|
|
5319
|
-
* @param {
|
|
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
|
|
5537
|
+
* Content Update
|
|
5538
|
+
* @summary Content Update
|
|
5539
|
+
* @param {string} contentId
|
|
5540
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5329
5541
|
* @param {*} [options] Override http request option.
|
|
5330
5542
|
* @throws {RequiredError}
|
|
5331
5543
|
*/
|
|
5332
|
-
|
|
5333
|
-
};
|
|
5334
|
-
/**
|
|
5335
|
-
* ConversationsApi - object-oriented interface
|
|
5336
|
-
* @export
|
|
5337
|
-
* @class ConversationsApi
|
|
5338
|
-
* @extends {BaseAPI}
|
|
5339
|
-
*/
|
|
5340
|
-
declare class ConversationsApi extends BaseAPI {
|
|
5544
|
+
contentUpdate: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5341
5545
|
/**
|
|
5342
|
-
*
|
|
5343
|
-
* @summary
|
|
5344
|
-
* @param {string}
|
|
5345
|
-
* @param {
|
|
5546
|
+
* Content Update
|
|
5547
|
+
* @summary Content Update
|
|
5548
|
+
* @param {string} contentId
|
|
5549
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5346
5550
|
* @param {*} [options] Override http request option.
|
|
5347
5551
|
* @throws {RequiredError}
|
|
5348
|
-
* @memberof ConversationsApi
|
|
5349
5552
|
*/
|
|
5350
|
-
|
|
5553
|
+
contentUpdate_4: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5351
5554
|
/**
|
|
5352
|
-
*
|
|
5353
|
-
* @summary
|
|
5354
|
-
* @param {string}
|
|
5555
|
+
* ContentVersions Get
|
|
5556
|
+
* @summary ContentVersions Get
|
|
5557
|
+
* @param {string} contentVersionId
|
|
5355
5558
|
* @param {*} [options] Override http request option.
|
|
5356
5559
|
* @throws {RequiredError}
|
|
5357
|
-
* @memberof ConversationsApi
|
|
5358
5560
|
*/
|
|
5359
|
-
|
|
5561
|
+
contentVersionsGet: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5360
5562
|
/**
|
|
5361
|
-
*
|
|
5362
|
-
* @summary
|
|
5363
|
-
* @param {string}
|
|
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
|
|
5563
|
+
* ContentVersions Get
|
|
5564
|
+
* @summary ContentVersions Get
|
|
5565
|
+
* @param {string} contentVersionId
|
|
5374
5566
|
* @param {*} [options] Override http request option.
|
|
5375
5567
|
* @throws {RequiredError}
|
|
5376
|
-
* @memberof ConversationsApi
|
|
5377
5568
|
*/
|
|
5378
|
-
|
|
5379
|
-
}
|
|
5380
|
-
/**
|
|
5381
|
-
* HostawayApi - axios parameter creator
|
|
5382
|
-
* @export
|
|
5383
|
-
*/
|
|
5384
|
-
declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5569
|
+
contentVersionsGet_5: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5385
5570
|
/**
|
|
5386
|
-
*
|
|
5387
|
-
* @summary
|
|
5388
|
-
* @param {
|
|
5571
|
+
* ContentVersions List
|
|
5572
|
+
* @summary ContentVersions List
|
|
5573
|
+
* @param {string} [contentId]
|
|
5389
5574
|
* @param {*} [options] Override http request option.
|
|
5390
5575
|
* @throws {RequiredError}
|
|
5391
5576
|
*/
|
|
5392
|
-
|
|
5393
|
-
};
|
|
5394
|
-
/**
|
|
5395
|
-
* HostawayApi - functional programming interface
|
|
5396
|
-
* @export
|
|
5397
|
-
*/
|
|
5398
|
-
declare const HostawayApiFp: (configuration?: Configuration) => {
|
|
5577
|
+
contentVersionsList: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5399
5578
|
/**
|
|
5400
|
-
*
|
|
5401
|
-
* @summary
|
|
5402
|
-
* @param {
|
|
5579
|
+
* ContentVersions List
|
|
5580
|
+
* @summary ContentVersions List
|
|
5581
|
+
* @param {string} [contentId]
|
|
5403
5582
|
* @param {*} [options] Override http request option.
|
|
5404
5583
|
* @throws {RequiredError}
|
|
5405
5584
|
*/
|
|
5406
|
-
|
|
5585
|
+
contentVersionsList_6: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5407
5586
|
};
|
|
5408
5587
|
/**
|
|
5409
|
-
*
|
|
5588
|
+
* ContentApi - functional programming interface
|
|
5410
5589
|
* @export
|
|
5411
5590
|
*/
|
|
5412
|
-
declare const
|
|
5591
|
+
declare const ContentApiFp: (configuration?: Configuration) => {
|
|
5413
5592
|
/**
|
|
5414
|
-
*
|
|
5415
|
-
* @summary
|
|
5416
|
-
* @param {
|
|
5593
|
+
* Create new content under a listing.
|
|
5594
|
+
* @summary Create Listing Content
|
|
5595
|
+
* @param {string} listingId
|
|
5596
|
+
* @param {Create} create
|
|
5417
5597
|
* @param {*} [options] Override http request option.
|
|
5418
5598
|
* @throws {RequiredError}
|
|
5419
5599
|
*/
|
|
5420
|
-
|
|
5421
|
-
};
|
|
5422
|
-
/**
|
|
5423
|
-
* HostawayApi - object-oriented interface
|
|
5424
|
-
* @export
|
|
5425
|
-
* @class HostawayApi
|
|
5426
|
-
* @extends {BaseAPI}
|
|
5427
|
-
*/
|
|
5428
|
-
declare class HostawayApi extends BaseAPI {
|
|
5600
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
|
|
5429
5601
|
/**
|
|
5430
|
-
*
|
|
5431
|
-
* @summary
|
|
5432
|
-
* @param {
|
|
5602
|
+
* Create new content under a tag.
|
|
5603
|
+
* @summary Create Tag Content
|
|
5604
|
+
* @param {string} tagId
|
|
5605
|
+
* @param {Create} create
|
|
5433
5606
|
* @param {*} [options] Override http request option.
|
|
5434
5607
|
* @throws {RequiredError}
|
|
5435
|
-
* @memberof HostawayApi
|
|
5436
5608
|
*/
|
|
5437
|
-
|
|
5438
|
-
}
|
|
5439
|
-
/**
|
|
5440
|
-
* InboxesApi - axios parameter creator
|
|
5441
|
-
* @export
|
|
5442
|
-
*/
|
|
5443
|
-
declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5609
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
|
|
5444
5610
|
/**
|
|
5445
|
-
*
|
|
5446
|
-
* @summary
|
|
5447
|
-
* @param {string}
|
|
5448
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
5611
|
+
* Content Delete
|
|
5612
|
+
* @summary Content Delete
|
|
5613
|
+
* @param {string} contentId
|
|
5449
5614
|
* @param {*} [options] Override http request option.
|
|
5450
5615
|
* @throws {RequiredError}
|
|
5451
5616
|
*/
|
|
5452
|
-
|
|
5617
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5453
5618
|
/**
|
|
5454
|
-
*
|
|
5455
|
-
* @summary
|
|
5456
|
-
* @param {string}
|
|
5619
|
+
* Content Delete
|
|
5620
|
+
* @summary Content Delete
|
|
5621
|
+
* @param {string} contentId
|
|
5457
5622
|
* @param {*} [options] Override http request option.
|
|
5458
5623
|
* @throws {RequiredError}
|
|
5459
5624
|
*/
|
|
5460
|
-
|
|
5625
|
+
contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5461
5626
|
/**
|
|
5462
|
-
*
|
|
5463
|
-
* @summary
|
|
5464
|
-
* @param {string
|
|
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]
|
|
5627
|
+
* Content Get
|
|
5628
|
+
* @summary Content Get
|
|
5629
|
+
* @param {string} contentId
|
|
5472
5630
|
* @param {*} [options] Override http request option.
|
|
5473
5631
|
* @throws {RequiredError}
|
|
5474
5632
|
*/
|
|
5475
|
-
|
|
5633
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
5476
5634
|
/**
|
|
5477
|
-
*
|
|
5478
|
-
* @summary
|
|
5479
|
-
* @param {string}
|
|
5480
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5635
|
+
* Content Get
|
|
5636
|
+
* @summary Content Get
|
|
5637
|
+
* @param {string} contentId
|
|
5481
5638
|
* @param {*} [options] Override http request option.
|
|
5482
5639
|
* @throws {RequiredError}
|
|
5483
5640
|
*/
|
|
5484
|
-
|
|
5641
|
+
contentGet_2(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
5485
5642
|
/**
|
|
5486
|
-
*
|
|
5487
|
-
* @summary
|
|
5643
|
+
* Content List
|
|
5644
|
+
* @summary Content List
|
|
5645
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5646
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5647
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5488
5648
|
* @param {*} [options] Override http request option.
|
|
5489
5649
|
* @throws {RequiredError}
|
|
5490
5650
|
*/
|
|
5491
|
-
|
|
5492
|
-
};
|
|
5493
|
-
/**
|
|
5494
|
-
* InboxesApi - functional programming interface
|
|
5495
|
-
* @export
|
|
5496
|
-
*/
|
|
5497
|
-
declare const InboxesApiFp: (configuration?: Configuration) => {
|
|
5651
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
|
|
5498
5652
|
/**
|
|
5499
|
-
*
|
|
5500
|
-
* @summary
|
|
5501
|
-
* @param {string}
|
|
5502
|
-
* @param {
|
|
5653
|
+
* Content List
|
|
5654
|
+
* @summary Content List
|
|
5655
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5656
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5657
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5503
5658
|
* @param {*} [options] Override http request option.
|
|
5504
5659
|
* @throws {RequiredError}
|
|
5505
5660
|
*/
|
|
5506
|
-
|
|
5661
|
+
contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
|
|
5507
5662
|
/**
|
|
5508
|
-
*
|
|
5509
|
-
* @summary
|
|
5510
|
-
* @param {string}
|
|
5663
|
+
* Content Update
|
|
5664
|
+
* @summary Content Update
|
|
5665
|
+
* @param {string} contentId
|
|
5666
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5511
5667
|
* @param {*} [options] Override http request option.
|
|
5512
5668
|
* @throws {RequiredError}
|
|
5513
5669
|
*/
|
|
5514
|
-
|
|
5670
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
5515
5671
|
/**
|
|
5516
|
-
*
|
|
5517
|
-
* @summary
|
|
5518
|
-
* @param {string
|
|
5519
|
-
* @param {
|
|
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]
|
|
5672
|
+
* Content Update
|
|
5673
|
+
* @summary Content Update
|
|
5674
|
+
* @param {string} contentId
|
|
5675
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5526
5676
|
* @param {*} [options] Override http request option.
|
|
5527
5677
|
* @throws {RequiredError}
|
|
5528
5678
|
*/
|
|
5529
|
-
|
|
5679
|
+
contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
5530
5680
|
/**
|
|
5531
|
-
*
|
|
5532
|
-
* @summary
|
|
5533
|
-
* @param {string}
|
|
5534
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5681
|
+
* ContentVersions Get
|
|
5682
|
+
* @summary ContentVersions Get
|
|
5683
|
+
* @param {string} contentVersionId
|
|
5535
5684
|
* @param {*} [options] Override http request option.
|
|
5536
5685
|
* @throws {RequiredError}
|
|
5537
5686
|
*/
|
|
5538
|
-
|
|
5687
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
|
|
5539
5688
|
/**
|
|
5540
|
-
*
|
|
5541
|
-
* @summary
|
|
5689
|
+
* ContentVersions Get
|
|
5690
|
+
* @summary ContentVersions Get
|
|
5691
|
+
* @param {string} contentVersionId
|
|
5542
5692
|
* @param {*} [options] Override http request option.
|
|
5543
5693
|
* @throws {RequiredError}
|
|
5544
5694
|
*/
|
|
5545
|
-
|
|
5695
|
+
contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
|
|
5696
|
+
/**
|
|
5697
|
+
* ContentVersions List
|
|
5698
|
+
* @summary ContentVersions List
|
|
5699
|
+
* @param {string} [contentId]
|
|
5700
|
+
* @param {*} [options] Override http request option.
|
|
5701
|
+
* @throws {RequiredError}
|
|
5702
|
+
*/
|
|
5703
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
|
|
5704
|
+
/**
|
|
5705
|
+
* ContentVersions List
|
|
5706
|
+
* @summary ContentVersions List
|
|
5707
|
+
* @param {string} [contentId]
|
|
5708
|
+
* @param {*} [options] Override http request option.
|
|
5709
|
+
* @throws {RequiredError}
|
|
5710
|
+
*/
|
|
5711
|
+
contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
|
|
5546
5712
|
};
|
|
5547
5713
|
/**
|
|
5548
|
-
*
|
|
5714
|
+
* ContentApi - factory interface
|
|
5549
5715
|
* @export
|
|
5550
5716
|
*/
|
|
5551
|
-
declare const
|
|
5717
|
+
declare const ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5552
5718
|
/**
|
|
5553
|
-
*
|
|
5554
|
-
* @summary
|
|
5555
|
-
* @param {string}
|
|
5556
|
-
* @param {
|
|
5719
|
+
* Create new content under a listing.
|
|
5720
|
+
* @summary Create Listing Content
|
|
5721
|
+
* @param {string} listingId
|
|
5722
|
+
* @param {Create} create
|
|
5557
5723
|
* @param {*} [options] Override http request option.
|
|
5558
5724
|
* @throws {RequiredError}
|
|
5559
5725
|
*/
|
|
5560
|
-
|
|
5726
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
|
|
5561
5727
|
/**
|
|
5562
|
-
*
|
|
5563
|
-
* @summary
|
|
5564
|
-
* @param {string}
|
|
5728
|
+
* Create new content under a tag.
|
|
5729
|
+
* @summary Create Tag Content
|
|
5730
|
+
* @param {string} tagId
|
|
5731
|
+
* @param {Create} create
|
|
5565
5732
|
* @param {*} [options] Override http request option.
|
|
5566
5733
|
* @throws {RequiredError}
|
|
5567
5734
|
*/
|
|
5568
|
-
|
|
5735
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
|
|
5569
5736
|
/**
|
|
5570
|
-
*
|
|
5571
|
-
* @summary
|
|
5572
|
-
* @param {string
|
|
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]
|
|
5737
|
+
* Content Delete
|
|
5738
|
+
* @summary Content Delete
|
|
5739
|
+
* @param {string} contentId
|
|
5580
5740
|
* @param {*} [options] Override http request option.
|
|
5581
5741
|
* @throws {RequiredError}
|
|
5582
5742
|
*/
|
|
5583
|
-
|
|
5743
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5584
5744
|
/**
|
|
5585
|
-
*
|
|
5586
|
-
* @summary
|
|
5587
|
-
* @param {string}
|
|
5588
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5745
|
+
* Content Delete
|
|
5746
|
+
* @summary Content Delete
|
|
5747
|
+
* @param {string} contentId
|
|
5589
5748
|
* @param {*} [options] Override http request option.
|
|
5590
5749
|
* @throws {RequiredError}
|
|
5591
5750
|
*/
|
|
5592
|
-
|
|
5751
|
+
contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5593
5752
|
/**
|
|
5594
|
-
*
|
|
5595
|
-
* @summary
|
|
5753
|
+
* Content Get
|
|
5754
|
+
* @summary Content Get
|
|
5755
|
+
* @param {string} contentId
|
|
5596
5756
|
* @param {*} [options] Override http request option.
|
|
5597
5757
|
* @throws {RequiredError}
|
|
5598
5758
|
*/
|
|
5599
|
-
|
|
5759
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
5760
|
+
/**
|
|
5761
|
+
* Content Get
|
|
5762
|
+
* @summary Content Get
|
|
5763
|
+
* @param {string} contentId
|
|
5764
|
+
* @param {*} [options] Override http request option.
|
|
5765
|
+
* @throws {RequiredError}
|
|
5766
|
+
*/
|
|
5767
|
+
contentGet_2(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
5768
|
+
/**
|
|
5769
|
+
* Content List
|
|
5770
|
+
* @summary Content List
|
|
5771
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5772
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5773
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5774
|
+
* @param {*} [options] Override http request option.
|
|
5775
|
+
* @throws {RequiredError}
|
|
5776
|
+
*/
|
|
5777
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
|
|
5778
|
+
/**
|
|
5779
|
+
* Content List
|
|
5780
|
+
* @summary Content List
|
|
5781
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5782
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5783
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5784
|
+
* @param {*} [options] Override http request option.
|
|
5785
|
+
* @throws {RequiredError}
|
|
5786
|
+
*/
|
|
5787
|
+
contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
|
|
5788
|
+
/**
|
|
5789
|
+
* Content Update
|
|
5790
|
+
* @summary Content Update
|
|
5791
|
+
* @param {string} contentId
|
|
5792
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5793
|
+
* @param {*} [options] Override http request option.
|
|
5794
|
+
* @throws {RequiredError}
|
|
5795
|
+
*/
|
|
5796
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
5797
|
+
/**
|
|
5798
|
+
* Content Update
|
|
5799
|
+
* @summary Content Update
|
|
5800
|
+
* @param {string} contentId
|
|
5801
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5802
|
+
* @param {*} [options] Override http request option.
|
|
5803
|
+
* @throws {RequiredError}
|
|
5804
|
+
*/
|
|
5805
|
+
contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
5806
|
+
/**
|
|
5807
|
+
* ContentVersions Get
|
|
5808
|
+
* @summary ContentVersions Get
|
|
5809
|
+
* @param {string} contentVersionId
|
|
5810
|
+
* @param {*} [options] Override http request option.
|
|
5811
|
+
* @throws {RequiredError}
|
|
5812
|
+
*/
|
|
5813
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
|
|
5814
|
+
/**
|
|
5815
|
+
* ContentVersions Get
|
|
5816
|
+
* @summary ContentVersions Get
|
|
5817
|
+
* @param {string} contentVersionId
|
|
5818
|
+
* @param {*} [options] Override http request option.
|
|
5819
|
+
* @throws {RequiredError}
|
|
5820
|
+
*/
|
|
5821
|
+
contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
|
|
5822
|
+
/**
|
|
5823
|
+
* ContentVersions List
|
|
5824
|
+
* @summary ContentVersions List
|
|
5825
|
+
* @param {string} [contentId]
|
|
5826
|
+
* @param {*} [options] Override http request option.
|
|
5827
|
+
* @throws {RequiredError}
|
|
5828
|
+
*/
|
|
5829
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
|
|
5830
|
+
/**
|
|
5831
|
+
* ContentVersions List
|
|
5832
|
+
* @summary ContentVersions List
|
|
5833
|
+
* @param {string} [contentId]
|
|
5834
|
+
* @param {*} [options] Override http request option.
|
|
5835
|
+
* @throws {RequiredError}
|
|
5836
|
+
*/
|
|
5837
|
+
contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
|
|
5600
5838
|
};
|
|
5601
5839
|
/**
|
|
5602
|
-
*
|
|
5840
|
+
* ContentApi - object-oriented interface
|
|
5603
5841
|
* @export
|
|
5604
|
-
* @class
|
|
5842
|
+
* @class ContentApi
|
|
5605
5843
|
* @extends {BaseAPI}
|
|
5606
5844
|
*/
|
|
5607
|
-
declare class
|
|
5845
|
+
declare class ContentApi extends BaseAPI {
|
|
5608
5846
|
/**
|
|
5609
|
-
*
|
|
5610
|
-
* @summary
|
|
5611
|
-
* @param {string}
|
|
5612
|
-
* @param {
|
|
5847
|
+
* Create new content under a listing.
|
|
5848
|
+
* @summary Create Listing Content
|
|
5849
|
+
* @param {string} listingId
|
|
5850
|
+
* @param {Create} create
|
|
5613
5851
|
* @param {*} [options] Override http request option.
|
|
5614
5852
|
* @throws {RequiredError}
|
|
5615
|
-
* @memberof
|
|
5853
|
+
* @memberof ContentApi
|
|
5616
5854
|
*/
|
|
5617
|
-
|
|
5855
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
|
|
5618
5856
|
/**
|
|
5619
|
-
*
|
|
5620
|
-
* @summary
|
|
5621
|
-
* @param {string}
|
|
5857
|
+
* Create new content under a tag.
|
|
5858
|
+
* @summary Create Tag Content
|
|
5859
|
+
* @param {string} tagId
|
|
5860
|
+
* @param {Create} create
|
|
5622
5861
|
* @param {*} [options] Override http request option.
|
|
5623
5862
|
* @throws {RequiredError}
|
|
5624
|
-
* @memberof
|
|
5863
|
+
* @memberof ContentApi
|
|
5625
5864
|
*/
|
|
5626
|
-
|
|
5865
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
|
|
5627
5866
|
/**
|
|
5628
|
-
*
|
|
5629
|
-
* @summary
|
|
5630
|
-
* @param {string
|
|
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]
|
|
5867
|
+
* Content Delete
|
|
5868
|
+
* @summary Content Delete
|
|
5869
|
+
* @param {string} contentId
|
|
5638
5870
|
* @param {*} [options] Override http request option.
|
|
5639
5871
|
* @throws {RequiredError}
|
|
5640
|
-
* @memberof
|
|
5872
|
+
* @memberof ContentApi
|
|
5641
5873
|
*/
|
|
5642
|
-
|
|
5874
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5643
5875
|
/**
|
|
5644
|
-
*
|
|
5645
|
-
* @summary
|
|
5646
|
-
* @param {string}
|
|
5647
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5876
|
+
* Content Delete
|
|
5877
|
+
* @summary Content Delete
|
|
5878
|
+
* @param {string} contentId
|
|
5648
5879
|
* @param {*} [options] Override http request option.
|
|
5649
5880
|
* @throws {RequiredError}
|
|
5650
|
-
* @memberof
|
|
5881
|
+
* @memberof ContentApi
|
|
5651
5882
|
*/
|
|
5652
|
-
|
|
5883
|
+
contentDelete_1(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5653
5884
|
/**
|
|
5654
|
-
*
|
|
5655
|
-
* @summary
|
|
5885
|
+
* Content Get
|
|
5886
|
+
* @summary Content Get
|
|
5887
|
+
* @param {string} contentId
|
|
5656
5888
|
* @param {*} [options] Override http request option.
|
|
5657
5889
|
* @throws {RequiredError}
|
|
5658
|
-
* @memberof
|
|
5890
|
+
* @memberof ContentApi
|
|
5659
5891
|
*/
|
|
5660
|
-
|
|
5892
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
5893
|
+
/**
|
|
5894
|
+
* Content Get
|
|
5895
|
+
* @summary Content Get
|
|
5896
|
+
* @param {string} contentId
|
|
5897
|
+
* @param {*} [options] Override http request option.
|
|
5898
|
+
* @throws {RequiredError}
|
|
5899
|
+
* @memberof ContentApi
|
|
5900
|
+
*/
|
|
5901
|
+
contentGet_2(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
5902
|
+
/**
|
|
5903
|
+
* Content List
|
|
5904
|
+
* @summary Content List
|
|
5905
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5906
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5907
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5908
|
+
* @param {*} [options] Override http request option.
|
|
5909
|
+
* @throws {RequiredError}
|
|
5910
|
+
* @memberof ContentApi
|
|
5911
|
+
*/
|
|
5912
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
|
|
5913
|
+
/**
|
|
5914
|
+
* Content List
|
|
5915
|
+
* @summary Content List
|
|
5916
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
5917
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
5918
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
5919
|
+
* @param {*} [options] Override http request option.
|
|
5920
|
+
* @throws {RequiredError}
|
|
5921
|
+
* @memberof ContentApi
|
|
5922
|
+
*/
|
|
5923
|
+
contentList_3(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
|
|
5924
|
+
/**
|
|
5925
|
+
* Content Update
|
|
5926
|
+
* @summary Content Update
|
|
5927
|
+
* @param {string} contentId
|
|
5928
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5929
|
+
* @param {*} [options] Override http request option.
|
|
5930
|
+
* @throws {RequiredError}
|
|
5931
|
+
* @memberof ContentApi
|
|
5932
|
+
*/
|
|
5933
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
5934
|
+
/**
|
|
5935
|
+
* Content Update
|
|
5936
|
+
* @summary Content Update
|
|
5937
|
+
* @param {string} contentId
|
|
5938
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
5939
|
+
* @param {*} [options] Override http request option.
|
|
5940
|
+
* @throws {RequiredError}
|
|
5941
|
+
* @memberof ContentApi
|
|
5942
|
+
*/
|
|
5943
|
+
contentUpdate_4(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
5944
|
+
/**
|
|
5945
|
+
* ContentVersions Get
|
|
5946
|
+
* @summary ContentVersions Get
|
|
5947
|
+
* @param {string} contentVersionId
|
|
5948
|
+
* @param {*} [options] Override http request option.
|
|
5949
|
+
* @throws {RequiredError}
|
|
5950
|
+
* @memberof ContentApi
|
|
5951
|
+
*/
|
|
5952
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
|
|
5953
|
+
/**
|
|
5954
|
+
* ContentVersions Get
|
|
5955
|
+
* @summary ContentVersions Get
|
|
5956
|
+
* @param {string} contentVersionId
|
|
5957
|
+
* @param {*} [options] Override http request option.
|
|
5958
|
+
* @throws {RequiredError}
|
|
5959
|
+
* @memberof ContentApi
|
|
5960
|
+
*/
|
|
5961
|
+
contentVersionsGet_5(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
|
|
5962
|
+
/**
|
|
5963
|
+
* ContentVersions List
|
|
5964
|
+
* @summary ContentVersions List
|
|
5965
|
+
* @param {string} [contentId]
|
|
5966
|
+
* @param {*} [options] Override http request option.
|
|
5967
|
+
* @throws {RequiredError}
|
|
5968
|
+
* @memberof ContentApi
|
|
5969
|
+
*/
|
|
5970
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
|
|
5971
|
+
/**
|
|
5972
|
+
* ContentVersions List
|
|
5973
|
+
* @summary ContentVersions List
|
|
5974
|
+
* @param {string} [contentId]
|
|
5975
|
+
* @param {*} [options] Override http request option.
|
|
5976
|
+
* @throws {RequiredError}
|
|
5977
|
+
* @memberof ContentApi
|
|
5978
|
+
*/
|
|
5979
|
+
contentVersionsList_6(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
|
|
5661
5980
|
}
|
|
5662
5981
|
/**
|
|
5663
|
-
*
|
|
5982
|
+
* ConversationsApi - axios parameter creator
|
|
5664
5983
|
* @export
|
|
5665
5984
|
*/
|
|
5666
|
-
declare const
|
|
5985
|
+
declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5667
5986
|
/**
|
|
5668
|
-
*
|
|
5669
|
-
* @summary
|
|
5670
|
-
* @param {string}
|
|
5987
|
+
* Messages Create
|
|
5988
|
+
* @summary Messages Create
|
|
5989
|
+
* @param {string} conversationId
|
|
5990
|
+
* @param {Messagecreate} messagecreate
|
|
5671
5991
|
* @param {*} [options] Override http request option.
|
|
5672
5992
|
* @throws {RequiredError}
|
|
5673
5993
|
*/
|
|
5674
|
-
|
|
5675
|
-
};
|
|
5676
|
-
/**
|
|
5677
|
-
* InquiriesApi - functional programming interface
|
|
5678
|
-
* @export
|
|
5679
|
-
*/
|
|
5680
|
-
declare const InquiriesApiFp: (configuration?: Configuration) => {
|
|
5994
|
+
messagesCreate: (conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5681
5995
|
/**
|
|
5682
|
-
*
|
|
5683
|
-
* @summary
|
|
5684
|
-
* @param {string}
|
|
5996
|
+
* Messages Get
|
|
5997
|
+
* @summary Messages Get
|
|
5998
|
+
* @param {string} messageId
|
|
5685
5999
|
* @param {*} [options] Override http request option.
|
|
5686
6000
|
* @throws {RequiredError}
|
|
5687
6001
|
*/
|
|
5688
|
-
|
|
5689
|
-
};
|
|
5690
|
-
/**
|
|
5691
|
-
* InquiriesApi - factory interface
|
|
5692
|
-
* @export
|
|
5693
|
-
*/
|
|
5694
|
-
declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6002
|
+
messagesGet: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5695
6003
|
/**
|
|
5696
|
-
* List
|
|
5697
|
-
* @summary
|
|
5698
|
-
* @param {string} [
|
|
6004
|
+
* Messages List
|
|
6005
|
+
* @summary Messages List
|
|
6006
|
+
* @param {string} [conversationId]
|
|
6007
|
+
* @param {string | null} [searchString]
|
|
6008
|
+
* @param {string | null} [sentAtAfter]
|
|
6009
|
+
* @param {string | null} [sentAtBefore]
|
|
6010
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6011
|
+
* @param {string | null} [scheduledAtBefore]
|
|
6012
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6013
|
+
* @param {number} [limit]
|
|
6014
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6015
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
|
|
6016
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5699
6017
|
* @param {*} [options] Override http request option.
|
|
5700
6018
|
* @throws {RequiredError}
|
|
5701
6019
|
*/
|
|
5702
|
-
|
|
6020
|
+
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
6021
|
};
|
|
5704
6022
|
/**
|
|
5705
|
-
*
|
|
6023
|
+
* ConversationsApi - functional programming interface
|
|
5706
6024
|
* @export
|
|
5707
|
-
* @class InquiriesApi
|
|
5708
|
-
* @extends {BaseAPI}
|
|
5709
6025
|
*/
|
|
5710
|
-
declare
|
|
6026
|
+
declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
5711
6027
|
/**
|
|
5712
|
-
*
|
|
5713
|
-
* @summary
|
|
5714
|
-
* @param {string}
|
|
6028
|
+
* Messages Create
|
|
6029
|
+
* @summary Messages Create
|
|
6030
|
+
* @param {string} conversationId
|
|
6031
|
+
* @param {Messagecreate} messagecreate
|
|
5715
6032
|
* @param {*} [options] Override http request option.
|
|
5716
6033
|
* @throws {RequiredError}
|
|
5717
|
-
* @memberof InquiriesApi
|
|
5718
6034
|
*/
|
|
5719
|
-
|
|
5720
|
-
}
|
|
5721
|
-
/**
|
|
5722
|
-
* ListingContentApi - axios parameter creator
|
|
5723
|
-
* @export
|
|
5724
|
-
*/
|
|
5725
|
-
declare const ListingContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6035
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
5726
6036
|
/**
|
|
5727
|
-
*
|
|
5728
|
-
* @summary
|
|
5729
|
-
* @param {string}
|
|
5730
|
-
* @param {UploadURLRequest} uploadURLRequest
|
|
6037
|
+
* Messages Get
|
|
6038
|
+
* @summary Messages Get
|
|
6039
|
+
* @param {string} messageId
|
|
5731
6040
|
* @param {*} [options] Override http request option.
|
|
5732
6041
|
* @throws {RequiredError}
|
|
5733
6042
|
*/
|
|
5734
|
-
|
|
6043
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIMessage>>;
|
|
5735
6044
|
/**
|
|
5736
|
-
*
|
|
5737
|
-
* @summary
|
|
5738
|
-
* @param {string}
|
|
5739
|
-
* @param {
|
|
6045
|
+
* Messages List
|
|
6046
|
+
* @summary Messages List
|
|
6047
|
+
* @param {string} [conversationId]
|
|
6048
|
+
* @param {string | null} [searchString]
|
|
6049
|
+
* @param {string | null} [sentAtAfter]
|
|
6050
|
+
* @param {string | null} [sentAtBefore]
|
|
6051
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6052
|
+
* @param {string | null} [scheduledAtBefore]
|
|
6053
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6054
|
+
* @param {number} [limit]
|
|
6055
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6056
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
|
|
6057
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5740
6058
|
* @param {*} [options] Override http request option.
|
|
5741
6059
|
* @throws {RequiredError}
|
|
5742
6060
|
*/
|
|
5743
|
-
|
|
6061
|
+
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>>;
|
|
6062
|
+
};
|
|
6063
|
+
/**
|
|
6064
|
+
* ConversationsApi - factory interface
|
|
6065
|
+
* @export
|
|
6066
|
+
*/
|
|
6067
|
+
declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5744
6068
|
/**
|
|
5745
|
-
*
|
|
5746
|
-
* @summary
|
|
5747
|
-
* @param {string}
|
|
6069
|
+
* Messages Create
|
|
6070
|
+
* @summary Messages Create
|
|
6071
|
+
* @param {string} conversationId
|
|
6072
|
+
* @param {Messagecreate} messagecreate
|
|
5748
6073
|
* @param {*} [options] Override http request option.
|
|
5749
6074
|
* @throws {RequiredError}
|
|
5750
6075
|
*/
|
|
5751
|
-
|
|
6076
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
5752
6077
|
/**
|
|
5753
|
-
*
|
|
5754
|
-
* @summary
|
|
5755
|
-
* @param {string}
|
|
6078
|
+
* Messages Get
|
|
6079
|
+
* @summary Messages Get
|
|
6080
|
+
* @param {string} messageId
|
|
5756
6081
|
* @param {*} [options] Override http request option.
|
|
5757
6082
|
* @throws {RequiredError}
|
|
5758
6083
|
*/
|
|
5759
|
-
|
|
6084
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIMessage>;
|
|
5760
6085
|
/**
|
|
5761
|
-
*
|
|
5762
|
-
* @summary
|
|
5763
|
-
* @param {string} [
|
|
5764
|
-
* @param {string} [
|
|
6086
|
+
* Messages List
|
|
6087
|
+
* @summary Messages List
|
|
6088
|
+
* @param {string} [conversationId]
|
|
6089
|
+
* @param {string | null} [searchString]
|
|
6090
|
+
* @param {string | null} [sentAtAfter]
|
|
6091
|
+
* @param {string | null} [sentAtBefore]
|
|
6092
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6093
|
+
* @param {string | null} [scheduledAtBefore]
|
|
6094
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6095
|
+
* @param {number} [limit]
|
|
6096
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6097
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
|
|
6098
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5765
6099
|
* @param {*} [options] Override http request option.
|
|
5766
6100
|
* @throws {RequiredError}
|
|
5767
6101
|
*/
|
|
5768
|
-
|
|
6102
|
+
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>;
|
|
6103
|
+
};
|
|
6104
|
+
/**
|
|
6105
|
+
* ConversationsApi - object-oriented interface
|
|
6106
|
+
* @export
|
|
6107
|
+
* @class ConversationsApi
|
|
6108
|
+
* @extends {BaseAPI}
|
|
6109
|
+
*/
|
|
6110
|
+
declare class ConversationsApi extends BaseAPI {
|
|
5769
6111
|
/**
|
|
5770
|
-
*
|
|
5771
|
-
* @summary
|
|
5772
|
-
* @param {string}
|
|
5773
|
-
* @param {
|
|
6112
|
+
* Messages Create
|
|
6113
|
+
* @summary Messages Create
|
|
6114
|
+
* @param {string} conversationId
|
|
6115
|
+
* @param {Messagecreate} messagecreate
|
|
5774
6116
|
* @param {*} [options] Override http request option.
|
|
5775
6117
|
* @throws {RequiredError}
|
|
6118
|
+
* @memberof ConversationsApi
|
|
5776
6119
|
*/
|
|
5777
|
-
|
|
6120
|
+
messagesCreate(conversationId: string, messagecreate: Messagecreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
5778
6121
|
/**
|
|
5779
|
-
*
|
|
5780
|
-
* @summary
|
|
5781
|
-
* @param {string}
|
|
6122
|
+
* Messages Get
|
|
6123
|
+
* @summary Messages Get
|
|
6124
|
+
* @param {string} messageId
|
|
5782
6125
|
* @param {*} [options] Override http request option.
|
|
5783
6126
|
* @throws {RequiredError}
|
|
6127
|
+
* @memberof ConversationsApi
|
|
5784
6128
|
*/
|
|
5785
|
-
|
|
6129
|
+
messagesGet(messageId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIMessage, any>>;
|
|
5786
6130
|
/**
|
|
5787
|
-
*
|
|
5788
|
-
* @summary
|
|
5789
|
-
* @param {string}
|
|
6131
|
+
* Messages List
|
|
6132
|
+
* @summary Messages List
|
|
6133
|
+
* @param {string} [conversationId]
|
|
6134
|
+
* @param {string | null} [searchString]
|
|
6135
|
+
* @param {string | null} [sentAtAfter]
|
|
6136
|
+
* @param {string | null} [sentAtBefore]
|
|
6137
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6138
|
+
* @param {string | null} [scheduledAtBefore]
|
|
6139
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6140
|
+
* @param {number} [limit]
|
|
6141
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6142
|
+
* @param {SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy} [sortBy] Sort key
|
|
6143
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5790
6144
|
* @param {*} [options] Override http request option.
|
|
5791
6145
|
* @throws {RequiredError}
|
|
6146
|
+
* @memberof ConversationsApi
|
|
5792
6147
|
*/
|
|
5793
|
-
|
|
6148
|
+
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>>;
|
|
6149
|
+
}
|
|
6150
|
+
/**
|
|
6151
|
+
* FilesApi - axios parameter creator
|
|
6152
|
+
* @export
|
|
6153
|
+
*/
|
|
6154
|
+
declare const FilesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5794
6155
|
/**
|
|
5795
|
-
*
|
|
5796
|
-
* @summary
|
|
5797
|
-
* @param {
|
|
6156
|
+
* 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)
|
|
6157
|
+
* @summary Generate presigned download URL
|
|
6158
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
5798
6159
|
* @param {*} [options] Override http request option.
|
|
5799
6160
|
* @throws {RequiredError}
|
|
5800
6161
|
*/
|
|
5801
|
-
|
|
6162
|
+
generateFileDownloadURL: (downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5802
6163
|
/**
|
|
5803
|
-
*
|
|
5804
|
-
* @summary
|
|
5805
|
-
* @param {
|
|
6164
|
+
* 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
|
|
6165
|
+
* @summary Generate presigned upload URL
|
|
6166
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5806
6167
|
* @param {*} [options] Override http request option.
|
|
5807
6168
|
* @throws {RequiredError}
|
|
5808
6169
|
*/
|
|
5809
|
-
|
|
6170
|
+
generateFileUploadURL: (uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5810
6171
|
};
|
|
5811
6172
|
/**
|
|
5812
|
-
*
|
|
6173
|
+
* FilesApi - functional programming interface
|
|
5813
6174
|
* @export
|
|
5814
6175
|
*/
|
|
5815
|
-
declare const
|
|
6176
|
+
declare const FilesApiFp: (configuration?: Configuration) => {
|
|
5816
6177
|
/**
|
|
5817
|
-
*
|
|
5818
|
-
* @summary Generate
|
|
5819
|
-
* @param {
|
|
5820
|
-
* @param {UploadURLRequest} uploadURLRequest
|
|
6178
|
+
* 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)
|
|
6179
|
+
* @summary Generate presigned download URL
|
|
6180
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
5821
6181
|
* @param {*} [options] Override http request option.
|
|
5822
6182
|
* @throws {RequiredError}
|
|
5823
6183
|
*/
|
|
5824
|
-
|
|
6184
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadURLResponse>>;
|
|
5825
6185
|
/**
|
|
5826
|
-
*
|
|
5827
|
-
* @summary
|
|
5828
|
-
* @param {
|
|
5829
|
-
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6186
|
+
* 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
|
|
6187
|
+
* @summary Generate presigned upload URL
|
|
6188
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5830
6189
|
* @param {*} [options] Override http request option.
|
|
5831
6190
|
* @throws {RequiredError}
|
|
5832
6191
|
*/
|
|
5833
|
-
|
|
6192
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
6193
|
+
};
|
|
6194
|
+
/**
|
|
6195
|
+
* FilesApi - factory interface
|
|
6196
|
+
* @export
|
|
6197
|
+
*/
|
|
6198
|
+
declare const FilesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5834
6199
|
/**
|
|
5835
|
-
*
|
|
5836
|
-
* @summary
|
|
5837
|
-
* @param {
|
|
6200
|
+
* 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)
|
|
6201
|
+
* @summary Generate presigned download URL
|
|
6202
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
5838
6203
|
* @param {*} [options] Override http request option.
|
|
5839
6204
|
* @throws {RequiredError}
|
|
5840
6205
|
*/
|
|
5841
|
-
|
|
6206
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<DownloadURLResponse>;
|
|
5842
6207
|
/**
|
|
5843
|
-
*
|
|
5844
|
-
* @summary
|
|
5845
|
-
* @param {
|
|
6208
|
+
* 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
|
|
6209
|
+
* @summary Generate presigned upload URL
|
|
6210
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5846
6211
|
* @param {*} [options] Override http request option.
|
|
5847
6212
|
* @throws {RequiredError}
|
|
5848
6213
|
*/
|
|
5849
|
-
|
|
6214
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
6215
|
+
};
|
|
6216
|
+
/**
|
|
6217
|
+
* FilesApi - object-oriented interface
|
|
6218
|
+
* @export
|
|
6219
|
+
* @class FilesApi
|
|
6220
|
+
* @extends {BaseAPI}
|
|
6221
|
+
*/
|
|
6222
|
+
declare class FilesApi extends BaseAPI {
|
|
5850
6223
|
/**
|
|
5851
|
-
*
|
|
5852
|
-
* @summary
|
|
5853
|
-
* @param {
|
|
5854
|
-
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6224
|
+
* 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)
|
|
6225
|
+
* @summary Generate presigned download URL
|
|
6226
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
5855
6227
|
* @param {*} [options] Override http request option.
|
|
5856
6228
|
* @throws {RequiredError}
|
|
6229
|
+
* @memberof FilesApi
|
|
5857
6230
|
*/
|
|
5858
|
-
|
|
6231
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<DownloadURLResponse, any>>;
|
|
5859
6232
|
/**
|
|
5860
|
-
*
|
|
5861
|
-
* @summary
|
|
5862
|
-
* @param {
|
|
5863
|
-
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6233
|
+
* 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
|
|
6234
|
+
* @summary Generate presigned upload URL
|
|
6235
|
+
* @param {UploadURLRequest} uploadURLRequest
|
|
5864
6236
|
* @param {*} [options] Override http request option.
|
|
5865
6237
|
* @throws {RequiredError}
|
|
6238
|
+
* @memberof FilesApi
|
|
5866
6239
|
*/
|
|
5867
|
-
|
|
6240
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
6241
|
+
}
|
|
6242
|
+
/**
|
|
6243
|
+
* HostawayApi - axios parameter creator
|
|
6244
|
+
* @export
|
|
6245
|
+
*/
|
|
6246
|
+
declare const HostawayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5868
6247
|
/**
|
|
5869
|
-
*
|
|
5870
|
-
* @summary
|
|
5871
|
-
* @param {
|
|
6248
|
+
*
|
|
6249
|
+
* @summary Unifiedwebhook
|
|
6250
|
+
* @param {object} body
|
|
5872
6251
|
* @param {*} [options] Override http request option.
|
|
5873
6252
|
* @throws {RequiredError}
|
|
5874
6253
|
*/
|
|
5875
|
-
|
|
6254
|
+
webhook: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6255
|
+
};
|
|
6256
|
+
/**
|
|
6257
|
+
* HostawayApi - functional programming interface
|
|
6258
|
+
* @export
|
|
6259
|
+
*/
|
|
6260
|
+
declare const HostawayApiFp: (configuration?: Configuration) => {
|
|
5876
6261
|
/**
|
|
5877
|
-
*
|
|
5878
|
-
* @summary
|
|
5879
|
-
* @param {
|
|
6262
|
+
*
|
|
6263
|
+
* @summary Unifiedwebhook
|
|
6264
|
+
* @param {object} body
|
|
5880
6265
|
* @param {*} [options] Override http request option.
|
|
5881
6266
|
* @throws {RequiredError}
|
|
5882
6267
|
*/
|
|
5883
|
-
|
|
6268
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
6269
|
+
};
|
|
6270
|
+
/**
|
|
6271
|
+
* HostawayApi - factory interface
|
|
6272
|
+
* @export
|
|
6273
|
+
*/
|
|
6274
|
+
declare const HostawayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5884
6275
|
/**
|
|
5885
|
-
*
|
|
5886
|
-
* @summary
|
|
5887
|
-
* @param {
|
|
6276
|
+
*
|
|
6277
|
+
* @summary Unifiedwebhook
|
|
6278
|
+
* @param {object} body
|
|
5888
6279
|
* @param {*} [options] Override http request option.
|
|
5889
6280
|
* @throws {RequiredError}
|
|
5890
6281
|
*/
|
|
5891
|
-
|
|
6282
|
+
webhook(body: object, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
6283
|
+
};
|
|
6284
|
+
/**
|
|
6285
|
+
* HostawayApi - object-oriented interface
|
|
6286
|
+
* @export
|
|
6287
|
+
* @class HostawayApi
|
|
6288
|
+
* @extends {BaseAPI}
|
|
6289
|
+
*/
|
|
6290
|
+
declare class HostawayApi extends BaseAPI {
|
|
5892
6291
|
/**
|
|
5893
|
-
*
|
|
5894
|
-
* @summary
|
|
5895
|
-
* @param {
|
|
6292
|
+
*
|
|
6293
|
+
* @summary Unifiedwebhook
|
|
6294
|
+
* @param {object} body
|
|
5896
6295
|
* @param {*} [options] Override http request option.
|
|
5897
6296
|
* @throws {RequiredError}
|
|
6297
|
+
* @memberof HostawayApi
|
|
5898
6298
|
*/
|
|
5899
|
-
|
|
5900
|
-
}
|
|
6299
|
+
webhook(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6300
|
+
}
|
|
5901
6301
|
/**
|
|
5902
|
-
*
|
|
6302
|
+
* InboxesApi - axios parameter creator
|
|
5903
6303
|
* @export
|
|
5904
6304
|
*/
|
|
5905
|
-
declare const
|
|
6305
|
+
declare const InboxesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5906
6306
|
/**
|
|
5907
|
-
*
|
|
5908
|
-
* @summary
|
|
5909
|
-
* @param {string}
|
|
5910
|
-
* @param {
|
|
6307
|
+
* Conversations Create
|
|
6308
|
+
* @summary Conversations Create
|
|
6309
|
+
* @param {string} inboxId
|
|
6310
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
5911
6311
|
* @param {*} [options] Override http request option.
|
|
5912
6312
|
* @throws {RequiredError}
|
|
5913
6313
|
*/
|
|
5914
|
-
|
|
6314
|
+
conversationsCreate: (inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5915
6315
|
/**
|
|
5916
|
-
*
|
|
5917
|
-
* @summary
|
|
5918
|
-
* @param {string}
|
|
5919
|
-
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6316
|
+
* Conversations Get
|
|
6317
|
+
* @summary Conversations Get
|
|
6318
|
+
* @param {string} conversationId
|
|
5920
6319
|
* @param {*} [options] Override http request option.
|
|
5921
6320
|
* @throws {RequiredError}
|
|
5922
6321
|
*/
|
|
5923
|
-
|
|
6322
|
+
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5924
6323
|
/**
|
|
5925
|
-
*
|
|
5926
|
-
* @summary
|
|
5927
|
-
* @param {string}
|
|
6324
|
+
* List all conversations, must filter by contact_id
|
|
6325
|
+
* @summary Conversations List
|
|
6326
|
+
* @param {string | null} [searchString]
|
|
6327
|
+
* @param {string | null} [contactId]
|
|
6328
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
6329
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6330
|
+
* @param {number} [limit]
|
|
6331
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6332
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6333
|
+
* @param {string | null} [inboxId]
|
|
5928
6334
|
* @param {*} [options] Override http request option.
|
|
5929
6335
|
* @throws {RequiredError}
|
|
5930
6336
|
*/
|
|
5931
|
-
|
|
6337
|
+
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
6338
|
/**
|
|
5933
|
-
*
|
|
5934
|
-
* @summary
|
|
5935
|
-
* @param {string}
|
|
6339
|
+
* Conversations Update
|
|
6340
|
+
* @summary Conversations Update
|
|
6341
|
+
* @param {string} conversationId
|
|
6342
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5936
6343
|
* @param {*} [options] Override http request option.
|
|
5937
6344
|
* @throws {RequiredError}
|
|
5938
6345
|
*/
|
|
5939
|
-
|
|
6346
|
+
conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5940
6347
|
/**
|
|
5941
|
-
*
|
|
5942
|
-
* @summary
|
|
5943
|
-
* @param {string} [listingId]
|
|
5944
|
-
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6348
|
+
* Inboxes List
|
|
6349
|
+
* @summary Inboxes List
|
|
5945
6350
|
* @param {*} [options] Override http request option.
|
|
5946
6351
|
* @throws {RequiredError}
|
|
5947
6352
|
*/
|
|
5948
|
-
|
|
6353
|
+
inboxesList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6354
|
+
};
|
|
6355
|
+
/**
|
|
6356
|
+
* InboxesApi - functional programming interface
|
|
6357
|
+
* @export
|
|
6358
|
+
*/
|
|
6359
|
+
declare const InboxesApiFp: (configuration?: Configuration) => {
|
|
5949
6360
|
/**
|
|
5950
|
-
*
|
|
5951
|
-
* @summary
|
|
5952
|
-
* @param {string}
|
|
5953
|
-
* @param {
|
|
6361
|
+
* Conversations Create
|
|
6362
|
+
* @summary Conversations Create
|
|
6363
|
+
* @param {string} inboxId
|
|
6364
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
5954
6365
|
* @param {*} [options] Override http request option.
|
|
5955
6366
|
* @throws {RequiredError}
|
|
5956
6367
|
*/
|
|
5957
|
-
|
|
6368
|
+
conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5958
6369
|
/**
|
|
5959
|
-
*
|
|
5960
|
-
* @summary
|
|
5961
|
-
* @param {string}
|
|
6370
|
+
* Conversations Get
|
|
6371
|
+
* @summary Conversations Get
|
|
6372
|
+
* @param {string} conversationId
|
|
5962
6373
|
* @param {*} [options] Override http request option.
|
|
5963
6374
|
* @throws {RequiredError}
|
|
5964
6375
|
*/
|
|
5965
|
-
|
|
6376
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5966
6377
|
/**
|
|
5967
|
-
*
|
|
5968
|
-
* @summary
|
|
5969
|
-
* @param {string}
|
|
6378
|
+
* List all conversations, must filter by contact_id
|
|
6379
|
+
* @summary Conversations List
|
|
6380
|
+
* @param {string | null} [searchString]
|
|
6381
|
+
* @param {string | null} [contactId]
|
|
6382
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
6383
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6384
|
+
* @param {number} [limit]
|
|
6385
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6386
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6387
|
+
* @param {string | null} [inboxId]
|
|
5970
6388
|
* @param {*} [options] Override http request option.
|
|
5971
6389
|
* @throws {RequiredError}
|
|
5972
6390
|
*/
|
|
5973
|
-
|
|
6391
|
+
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
6392
|
/**
|
|
5975
|
-
*
|
|
5976
|
-
* @summary
|
|
5977
|
-
* @param {string}
|
|
6393
|
+
* Conversations Update
|
|
6394
|
+
* @summary Conversations Update
|
|
6395
|
+
* @param {string} conversationId
|
|
6396
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5978
6397
|
* @param {*} [options] Override http request option.
|
|
5979
6398
|
* @throws {RequiredError}
|
|
5980
6399
|
*/
|
|
5981
|
-
|
|
6400
|
+
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5982
6401
|
/**
|
|
5983
|
-
*
|
|
5984
|
-
* @summary
|
|
5985
|
-
* @param {string} [listingContentId]
|
|
6402
|
+
* Inboxes List
|
|
6403
|
+
* @summary Inboxes List
|
|
5986
6404
|
* @param {*} [options] Override http request option.
|
|
5987
6405
|
* @throws {RequiredError}
|
|
5988
6406
|
*/
|
|
5989
|
-
|
|
6407
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInbox>>;
|
|
5990
6408
|
};
|
|
5991
6409
|
/**
|
|
5992
|
-
*
|
|
6410
|
+
* InboxesApi - factory interface
|
|
5993
6411
|
* @export
|
|
5994
|
-
* @class ListingContentApi
|
|
5995
|
-
* @extends {BaseAPI}
|
|
5996
6412
|
*/
|
|
5997
|
-
declare
|
|
6413
|
+
declare const InboxesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5998
6414
|
/**
|
|
5999
|
-
*
|
|
6000
|
-
* @summary
|
|
6001
|
-
* @param {string}
|
|
6002
|
-
* @param {
|
|
6415
|
+
* Conversations Create
|
|
6416
|
+
* @summary Conversations Create
|
|
6417
|
+
* @param {string} inboxId
|
|
6418
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
6003
6419
|
* @param {*} [options] Override http request option.
|
|
6004
6420
|
* @throws {RequiredError}
|
|
6005
|
-
* @memberof ListingContentApi
|
|
6006
6421
|
*/
|
|
6007
|
-
|
|
6422
|
+
conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
6008
6423
|
/**
|
|
6009
|
-
*
|
|
6010
|
-
* @summary
|
|
6011
|
-
* @param {string}
|
|
6012
|
-
* @param {APIListingContentCreate} aPIListingContentCreate
|
|
6424
|
+
* Conversations Get
|
|
6425
|
+
* @summary Conversations Get
|
|
6426
|
+
* @param {string} conversationId
|
|
6013
6427
|
* @param {*} [options] Override http request option.
|
|
6014
6428
|
* @throws {RequiredError}
|
|
6015
|
-
* @memberof ListingContentApi
|
|
6016
6429
|
*/
|
|
6017
|
-
|
|
6430
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
6018
6431
|
/**
|
|
6019
|
-
*
|
|
6020
|
-
* @summary
|
|
6021
|
-
* @param {string}
|
|
6432
|
+
* List all conversations, must filter by contact_id
|
|
6433
|
+
* @summary Conversations List
|
|
6434
|
+
* @param {string | null} [searchString]
|
|
6435
|
+
* @param {string | null} [contactId]
|
|
6436
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
6437
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6438
|
+
* @param {number} [limit]
|
|
6439
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6440
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6441
|
+
* @param {string | null} [inboxId]
|
|
6022
6442
|
* @param {*} [options] Override http request option.
|
|
6023
6443
|
* @throws {RequiredError}
|
|
6024
|
-
* @memberof ListingContentApi
|
|
6025
6444
|
*/
|
|
6026
|
-
|
|
6445
|
+
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
6446
|
/**
|
|
6028
|
-
*
|
|
6029
|
-
* @summary
|
|
6030
|
-
* @param {string}
|
|
6447
|
+
* Conversations Update
|
|
6448
|
+
* @summary Conversations Update
|
|
6449
|
+
* @param {string} conversationId
|
|
6450
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
6031
6451
|
* @param {*} [options] Override http request option.
|
|
6032
6452
|
* @throws {RequiredError}
|
|
6033
|
-
* @memberof ListingContentApi
|
|
6034
6453
|
*/
|
|
6035
|
-
|
|
6454
|
+
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
6036
6455
|
/**
|
|
6037
|
-
*
|
|
6038
|
-
* @summary
|
|
6039
|
-
* @param {string} [listingId]
|
|
6040
|
-
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6456
|
+
* Inboxes List
|
|
6457
|
+
* @summary Inboxes List
|
|
6041
6458
|
* @param {*} [options] Override http request option.
|
|
6042
6459
|
* @throws {RequiredError}
|
|
6043
|
-
* @memberof ListingContentApi
|
|
6044
6460
|
*/
|
|
6045
|
-
|
|
6461
|
+
inboxesList(options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInbox>;
|
|
6462
|
+
};
|
|
6463
|
+
/**
|
|
6464
|
+
* InboxesApi - object-oriented interface
|
|
6465
|
+
* @export
|
|
6466
|
+
* @class InboxesApi
|
|
6467
|
+
* @extends {BaseAPI}
|
|
6468
|
+
*/
|
|
6469
|
+
declare class InboxesApi extends BaseAPI {
|
|
6046
6470
|
/**
|
|
6047
|
-
*
|
|
6048
|
-
* @summary
|
|
6049
|
-
* @param {string}
|
|
6050
|
-
* @param {
|
|
6471
|
+
* Conversations Create
|
|
6472
|
+
* @summary Conversations Create
|
|
6473
|
+
* @param {string} inboxId
|
|
6474
|
+
* @param {APIConversationCreate} aPIConversationCreate
|
|
6051
6475
|
* @param {*} [options] Override http request option.
|
|
6052
6476
|
* @throws {RequiredError}
|
|
6053
|
-
* @memberof
|
|
6477
|
+
* @memberof InboxesApi
|
|
6054
6478
|
*/
|
|
6055
|
-
|
|
6479
|
+
conversationsCreate(inboxId: string, aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
6056
6480
|
/**
|
|
6057
|
-
*
|
|
6058
|
-
* @summary
|
|
6059
|
-
* @param {string}
|
|
6481
|
+
* Conversations Get
|
|
6482
|
+
* @summary Conversations Get
|
|
6483
|
+
* @param {string} conversationId
|
|
6060
6484
|
* @param {*} [options] Override http request option.
|
|
6061
6485
|
* @throws {RequiredError}
|
|
6062
|
-
* @memberof
|
|
6486
|
+
* @memberof InboxesApi
|
|
6063
6487
|
*/
|
|
6064
|
-
|
|
6488
|
+
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
6065
6489
|
/**
|
|
6066
|
-
*
|
|
6067
|
-
* @summary
|
|
6068
|
-
* @param {string}
|
|
6490
|
+
* List all conversations, must filter by contact_id
|
|
6491
|
+
* @summary Conversations List
|
|
6492
|
+
* @param {string | null} [searchString]
|
|
6493
|
+
* @param {string | null} [contactId]
|
|
6494
|
+
* @param {Array<ConversationStatus> | null} [status] Filter conversations by status
|
|
6495
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6496
|
+
* @param {number} [limit]
|
|
6497
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6498
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6499
|
+
* @param {string | null} [inboxId]
|
|
6069
6500
|
* @param {*} [options] Override http request option.
|
|
6070
6501
|
* @throws {RequiredError}
|
|
6071
|
-
* @memberof
|
|
6502
|
+
* @memberof InboxesApi
|
|
6072
6503
|
*/
|
|
6073
|
-
|
|
6504
|
+
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
6505
|
/**
|
|
6075
|
-
*
|
|
6076
|
-
* @summary
|
|
6077
|
-
* @param {string}
|
|
6506
|
+
* Conversations Update
|
|
6507
|
+
* @summary Conversations Update
|
|
6508
|
+
* @param {string} conversationId
|
|
6509
|
+
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
6078
6510
|
* @param {*} [options] Override http request option.
|
|
6079
6511
|
* @throws {RequiredError}
|
|
6080
|
-
* @memberof
|
|
6512
|
+
* @memberof InboxesApi
|
|
6081
6513
|
*/
|
|
6082
|
-
|
|
6514
|
+
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
6083
6515
|
/**
|
|
6084
|
-
*
|
|
6085
|
-
* @summary
|
|
6086
|
-
* @param {string} [listingContentId]
|
|
6516
|
+
* Inboxes List
|
|
6517
|
+
* @summary Inboxes List
|
|
6087
6518
|
* @param {*} [options] Override http request option.
|
|
6088
6519
|
* @throws {RequiredError}
|
|
6089
|
-
* @memberof
|
|
6520
|
+
* @memberof InboxesApi
|
|
6090
6521
|
*/
|
|
6091
|
-
|
|
6522
|
+
inboxesList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInbox, any>>;
|
|
6092
6523
|
}
|
|
6093
6524
|
/**
|
|
6094
|
-
*
|
|
6525
|
+
* InquiriesApi - axios parameter creator
|
|
6095
6526
|
* @export
|
|
6096
6527
|
*/
|
|
6097
|
-
declare const
|
|
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>;
|
|
6528
|
+
declare const InquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6107
6529
|
/**
|
|
6108
|
-
*
|
|
6109
|
-
* @summary
|
|
6110
|
-
* @param {string}
|
|
6530
|
+
* List all listings
|
|
6531
|
+
* @summary Inquiries List
|
|
6532
|
+
* @param {string} [contactId]
|
|
6111
6533
|
* @param {*} [options] Override http request option.
|
|
6112
6534
|
* @throws {RequiredError}
|
|
6113
6535
|
*/
|
|
6114
|
-
|
|
6536
|
+
inquiriesList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6537
|
+
};
|
|
6538
|
+
/**
|
|
6539
|
+
* InquiriesApi - functional programming interface
|
|
6540
|
+
* @export
|
|
6541
|
+
*/
|
|
6542
|
+
declare const InquiriesApiFp: (configuration?: Configuration) => {
|
|
6115
6543
|
/**
|
|
6116
|
-
*
|
|
6117
|
-
* @summary
|
|
6118
|
-
* @param {string}
|
|
6544
|
+
* List all listings
|
|
6545
|
+
* @summary Inquiries List
|
|
6546
|
+
* @param {string} [contactId]
|
|
6119
6547
|
* @param {*} [options] Override http request option.
|
|
6120
6548
|
* @throws {RequiredError}
|
|
6121
6549
|
*/
|
|
6122
|
-
|
|
6550
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIInquiry>>;
|
|
6551
|
+
};
|
|
6552
|
+
/**
|
|
6553
|
+
* InquiriesApi - factory interface
|
|
6554
|
+
* @export
|
|
6555
|
+
*/
|
|
6556
|
+
declare const InquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6123
6557
|
/**
|
|
6124
|
-
*
|
|
6125
|
-
* @summary
|
|
6126
|
-
* @param {string} [
|
|
6127
|
-
* @param {string} [status] Filter by status: active, deleted, or all
|
|
6558
|
+
* List all listings
|
|
6559
|
+
* @summary Inquiries List
|
|
6560
|
+
* @param {string} [contactId]
|
|
6128
6561
|
* @param {*} [options] Override http request option.
|
|
6129
6562
|
* @throws {RequiredError}
|
|
6130
6563
|
*/
|
|
6131
|
-
|
|
6564
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIInquiry>;
|
|
6565
|
+
};
|
|
6566
|
+
/**
|
|
6567
|
+
* InquiriesApi - object-oriented interface
|
|
6568
|
+
* @export
|
|
6569
|
+
* @class InquiriesApi
|
|
6570
|
+
* @extends {BaseAPI}
|
|
6571
|
+
*/
|
|
6572
|
+
declare class InquiriesApi extends BaseAPI {
|
|
6132
6573
|
/**
|
|
6133
|
-
*
|
|
6134
|
-
* @summary
|
|
6135
|
-
* @param {string}
|
|
6136
|
-
* @param {APIListingContentUpdate} aPIListingContentUpdate
|
|
6574
|
+
* List all listings
|
|
6575
|
+
* @summary Inquiries List
|
|
6576
|
+
* @param {string} [contactId]
|
|
6137
6577
|
* @param {*} [options] Override http request option.
|
|
6138
6578
|
* @throws {RequiredError}
|
|
6579
|
+
* @memberof InquiriesApi
|
|
6139
6580
|
*/
|
|
6140
|
-
|
|
6581
|
+
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
6582
|
+
}
|
|
6583
|
+
/**
|
|
6584
|
+
* ListingsApi - axios parameter creator
|
|
6585
|
+
* @export
|
|
6586
|
+
*/
|
|
6587
|
+
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6141
6588
|
/**
|
|
6142
6589
|
* Listings Get
|
|
6143
6590
|
* @summary Listings Get
|
|
@@ -6166,49 +6613,6 @@ declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6166
6613
|
* @export
|
|
6167
6614
|
*/
|
|
6168
6615
|
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
6616
|
/**
|
|
6213
6617
|
* Listings Get
|
|
6214
6618
|
* @summary Listings Get
|
|
@@ -6237,49 +6641,6 @@ declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
|
6237
6641
|
* @export
|
|
6238
6642
|
*/
|
|
6239
6643
|
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
6644
|
/**
|
|
6284
6645
|
* Listings Get
|
|
6285
6646
|
* @summary Listings Get
|
|
@@ -6310,54 +6671,6 @@ declare const ListingsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
6310
6671
|
* @extends {BaseAPI}
|
|
6311
6672
|
*/
|
|
6312
6673
|
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
6674
|
/**
|
|
6362
6675
|
* Listings Get
|
|
6363
6676
|
* @summary Listings Get
|
|
@@ -7450,7 +7763,76 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7450
7763
|
* @param {*} [options] Override http request option.
|
|
7451
7764
|
* @throws {RequiredError}
|
|
7452
7765
|
*/
|
|
7453
|
-
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7766
|
+
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7767
|
+
/**
|
|
7768
|
+
* Create new content under a listing.
|
|
7769
|
+
* @summary Create Listing Content
|
|
7770
|
+
* @param {string} listingId
|
|
7771
|
+
* @param {Create} create
|
|
7772
|
+
* @param {*} [options] Override http request option.
|
|
7773
|
+
* @throws {RequiredError}
|
|
7774
|
+
*/
|
|
7775
|
+
contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7776
|
+
/**
|
|
7777
|
+
* Create new content under a tag.
|
|
7778
|
+
* @summary Create Tag Content
|
|
7779
|
+
* @param {string} tagId
|
|
7780
|
+
* @param {Create} create
|
|
7781
|
+
* @param {*} [options] Override http request option.
|
|
7782
|
+
* @throws {RequiredError}
|
|
7783
|
+
*/
|
|
7784
|
+
contentCreateOnTag: (tagId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7785
|
+
/**
|
|
7786
|
+
* Content Delete
|
|
7787
|
+
* @summary Content Delete
|
|
7788
|
+
* @param {string} contentId
|
|
7789
|
+
* @param {*} [options] Override http request option.
|
|
7790
|
+
* @throws {RequiredError}
|
|
7791
|
+
*/
|
|
7792
|
+
contentDelete: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7793
|
+
/**
|
|
7794
|
+
* Content Get
|
|
7795
|
+
* @summary Content Get
|
|
7796
|
+
* @param {string} contentId
|
|
7797
|
+
* @param {*} [options] Override http request option.
|
|
7798
|
+
* @throws {RequiredError}
|
|
7799
|
+
*/
|
|
7800
|
+
contentGet: (contentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7801
|
+
/**
|
|
7802
|
+
* Content List
|
|
7803
|
+
* @summary Content List
|
|
7804
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
7805
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
7806
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
7807
|
+
* @param {*} [options] Override http request option.
|
|
7808
|
+
* @throws {RequiredError}
|
|
7809
|
+
*/
|
|
7810
|
+
contentList: (listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7811
|
+
/**
|
|
7812
|
+
* Content Update
|
|
7813
|
+
* @summary Content Update
|
|
7814
|
+
* @param {string} contentId
|
|
7815
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
7816
|
+
* @param {*} [options] Override http request option.
|
|
7817
|
+
* @throws {RequiredError}
|
|
7818
|
+
*/
|
|
7819
|
+
contentUpdate: (contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7820
|
+
/**
|
|
7821
|
+
* ContentVersions Get
|
|
7822
|
+
* @summary ContentVersions Get
|
|
7823
|
+
* @param {string} contentVersionId
|
|
7824
|
+
* @param {*} [options] Override http request option.
|
|
7825
|
+
* @throws {RequiredError}
|
|
7826
|
+
*/
|
|
7827
|
+
contentVersionsGet: (contentVersionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7828
|
+
/**
|
|
7829
|
+
* ContentVersions List
|
|
7830
|
+
* @summary ContentVersions List
|
|
7831
|
+
* @param {string} [contentId]
|
|
7832
|
+
* @param {*} [options] Override http request option.
|
|
7833
|
+
* @throws {RequiredError}
|
|
7834
|
+
*/
|
|
7835
|
+
contentVersionsList: (contentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7454
7836
|
/**
|
|
7455
7837
|
* Conversations Create
|
|
7456
7838
|
* @summary Conversations Create
|
|
@@ -7527,14 +7909,21 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7527
7909
|
*/
|
|
7528
7910
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7529
7911
|
/**
|
|
7530
|
-
*
|
|
7531
|
-
* @summary Generate
|
|
7532
|
-
* @param {
|
|
7912
|
+
* 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)
|
|
7913
|
+
* @summary Generate presigned download URL
|
|
7914
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
7915
|
+
* @param {*} [options] Override http request option.
|
|
7916
|
+
* @throws {RequiredError}
|
|
7917
|
+
*/
|
|
7918
|
+
generateFileDownloadURL: (downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7919
|
+
/**
|
|
7920
|
+
* 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
|
|
7921
|
+
* @summary Generate presigned upload URL
|
|
7533
7922
|
* @param {UploadURLRequest} uploadURLRequest
|
|
7534
7923
|
* @param {*} [options] Override http request option.
|
|
7535
7924
|
* @throws {RequiredError}
|
|
7536
7925
|
*/
|
|
7537
|
-
|
|
7926
|
+
generateFileUploadURL: (uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7538
7927
|
/**
|
|
7539
7928
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
7540
7929
|
* @summary Get Me
|
|
@@ -7557,65 +7946,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7557
7946
|
* @throws {RequiredError}
|
|
7558
7947
|
*/
|
|
7559
7948
|
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
7949
|
/**
|
|
7620
7950
|
* Associates a tag with a listing. This operation is idempotent.
|
|
7621
7951
|
* @summary Add Tag To Listing
|
|
@@ -8042,6 +8372,75 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
8042
8372
|
* @throws {RequiredError}
|
|
8043
8373
|
*/
|
|
8044
8374
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8375
|
+
/**
|
|
8376
|
+
* Create new content under a listing.
|
|
8377
|
+
* @summary Create Listing Content
|
|
8378
|
+
* @param {string} listingId
|
|
8379
|
+
* @param {Create} create
|
|
8380
|
+
* @param {*} [options] Override http request option.
|
|
8381
|
+
* @throws {RequiredError}
|
|
8382
|
+
*/
|
|
8383
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
|
|
8384
|
+
/**
|
|
8385
|
+
* Create new content under a tag.
|
|
8386
|
+
* @summary Create Tag Content
|
|
8387
|
+
* @param {string} tagId
|
|
8388
|
+
* @param {Create} create
|
|
8389
|
+
* @param {*} [options] Override http request option.
|
|
8390
|
+
* @throws {RequiredError}
|
|
8391
|
+
*/
|
|
8392
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Content>>;
|
|
8393
|
+
/**
|
|
8394
|
+
* Content Delete
|
|
8395
|
+
* @summary Content Delete
|
|
8396
|
+
* @param {string} contentId
|
|
8397
|
+
* @param {*} [options] Override http request option.
|
|
8398
|
+
* @throws {RequiredError}
|
|
8399
|
+
*/
|
|
8400
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8401
|
+
/**
|
|
8402
|
+
* Content Get
|
|
8403
|
+
* @summary Content Get
|
|
8404
|
+
* @param {string} contentId
|
|
8405
|
+
* @param {*} [options] Override http request option.
|
|
8406
|
+
* @throws {RequiredError}
|
|
8407
|
+
*/
|
|
8408
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
8409
|
+
/**
|
|
8410
|
+
* Content List
|
|
8411
|
+
* @summary Content List
|
|
8412
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
8413
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
8414
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
8415
|
+
* @param {*} [options] Override http request option.
|
|
8416
|
+
* @throws {RequiredError}
|
|
8417
|
+
*/
|
|
8418
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContent>>;
|
|
8419
|
+
/**
|
|
8420
|
+
* Content Update
|
|
8421
|
+
* @summary Content Update
|
|
8422
|
+
* @param {string} contentId
|
|
8423
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
8424
|
+
* @param {*} [options] Override http request option.
|
|
8425
|
+
* @throws {RequiredError}
|
|
8426
|
+
*/
|
|
8427
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContent>>;
|
|
8428
|
+
/**
|
|
8429
|
+
* ContentVersions Get
|
|
8430
|
+
* @summary ContentVersions Get
|
|
8431
|
+
* @param {string} contentVersionId
|
|
8432
|
+
* @param {*} [options] Override http request option.
|
|
8433
|
+
* @throws {RequiredError}
|
|
8434
|
+
*/
|
|
8435
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIContentVersion>>;
|
|
8436
|
+
/**
|
|
8437
|
+
* ContentVersions List
|
|
8438
|
+
* @summary ContentVersions List
|
|
8439
|
+
* @param {string} [contentId]
|
|
8440
|
+
* @param {*} [options] Override http request option.
|
|
8441
|
+
* @throws {RequiredError}
|
|
8442
|
+
*/
|
|
8443
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPIContentVersion>>;
|
|
8045
8444
|
/**
|
|
8046
8445
|
* Conversations Create
|
|
8047
8446
|
* @summary Conversations Create
|
|
@@ -8118,14 +8517,21 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
8118
8517
|
*/
|
|
8119
8518
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
8120
8519
|
/**
|
|
8121
|
-
*
|
|
8122
|
-
* @summary Generate
|
|
8123
|
-
* @param {
|
|
8520
|
+
* 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)
|
|
8521
|
+
* @summary Generate presigned download URL
|
|
8522
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
8523
|
+
* @param {*} [options] Override http request option.
|
|
8524
|
+
* @throws {RequiredError}
|
|
8525
|
+
*/
|
|
8526
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadURLResponse>>;
|
|
8527
|
+
/**
|
|
8528
|
+
* 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
|
|
8529
|
+
* @summary Generate presigned upload URL
|
|
8124
8530
|
* @param {UploadURLRequest} uploadURLRequest
|
|
8125
8531
|
* @param {*} [options] Override http request option.
|
|
8126
8532
|
* @throws {RequiredError}
|
|
8127
8533
|
*/
|
|
8128
|
-
|
|
8534
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UploadURLResponse>>;
|
|
8129
8535
|
/**
|
|
8130
8536
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
8131
8537
|
* @summary Get Me
|
|
@@ -8148,65 +8554,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
8148
8554
|
* @throws {RequiredError}
|
|
8149
8555
|
*/
|
|
8150
8556
|
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
8557
|
/**
|
|
8211
8558
|
* Associates a tag with a listing. This operation is idempotent.
|
|
8212
8559
|
* @summary Add Tag To Listing
|
|
@@ -8633,6 +8980,75 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
8633
8980
|
* @throws {RequiredError}
|
|
8634
8981
|
*/
|
|
8635
8982
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8983
|
+
/**
|
|
8984
|
+
* Create new content under a listing.
|
|
8985
|
+
* @summary Create Listing Content
|
|
8986
|
+
* @param {string} listingId
|
|
8987
|
+
* @param {Create} create
|
|
8988
|
+
* @param {*} [options] Override http request option.
|
|
8989
|
+
* @throws {RequiredError}
|
|
8990
|
+
*/
|
|
8991
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
|
|
8992
|
+
/**
|
|
8993
|
+
* Create new content under a tag.
|
|
8994
|
+
* @summary Create Tag Content
|
|
8995
|
+
* @param {string} tagId
|
|
8996
|
+
* @param {Create} create
|
|
8997
|
+
* @param {*} [options] Override http request option.
|
|
8998
|
+
* @throws {RequiredError}
|
|
8999
|
+
*/
|
|
9000
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<Content>;
|
|
9001
|
+
/**
|
|
9002
|
+
* Content Delete
|
|
9003
|
+
* @summary Content Delete
|
|
9004
|
+
* @param {string} contentId
|
|
9005
|
+
* @param {*} [options] Override http request option.
|
|
9006
|
+
* @throws {RequiredError}
|
|
9007
|
+
*/
|
|
9008
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9009
|
+
/**
|
|
9010
|
+
* Content Get
|
|
9011
|
+
* @summary Content Get
|
|
9012
|
+
* @param {string} contentId
|
|
9013
|
+
* @param {*} [options] Override http request option.
|
|
9014
|
+
* @throws {RequiredError}
|
|
9015
|
+
*/
|
|
9016
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
9017
|
+
/**
|
|
9018
|
+
* Content List
|
|
9019
|
+
* @summary Content List
|
|
9020
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
9021
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
9022
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
9023
|
+
* @param {*} [options] Override http request option.
|
|
9024
|
+
* @throws {RequiredError}
|
|
9025
|
+
*/
|
|
9026
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContent>;
|
|
9027
|
+
/**
|
|
9028
|
+
* Content Update
|
|
9029
|
+
* @summary Content Update
|
|
9030
|
+
* @param {string} contentId
|
|
9031
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
9032
|
+
* @param {*} [options] Override http request option.
|
|
9033
|
+
* @throws {RequiredError}
|
|
9034
|
+
*/
|
|
9035
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIContent>;
|
|
9036
|
+
/**
|
|
9037
|
+
* ContentVersions Get
|
|
9038
|
+
* @summary ContentVersions Get
|
|
9039
|
+
* @param {string} contentVersionId
|
|
9040
|
+
* @param {*} [options] Override http request option.
|
|
9041
|
+
* @throws {RequiredError}
|
|
9042
|
+
*/
|
|
9043
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIContentVersion>;
|
|
9044
|
+
/**
|
|
9045
|
+
* ContentVersions List
|
|
9046
|
+
* @summary ContentVersions List
|
|
9047
|
+
* @param {string} [contentId]
|
|
9048
|
+
* @param {*} [options] Override http request option.
|
|
9049
|
+
* @throws {RequiredError}
|
|
9050
|
+
*/
|
|
9051
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPIContentVersion>;
|
|
8636
9052
|
/**
|
|
8637
9053
|
* Conversations Create
|
|
8638
9054
|
* @summary Conversations Create
|
|
@@ -8709,14 +9125,21 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
8709
9125
|
*/
|
|
8710
9126
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
8711
9127
|
/**
|
|
8712
|
-
*
|
|
8713
|
-
* @summary Generate
|
|
8714
|
-
* @param {
|
|
9128
|
+
* 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)
|
|
9129
|
+
* @summary Generate presigned download URL
|
|
9130
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
9131
|
+
* @param {*} [options] Override http request option.
|
|
9132
|
+
* @throws {RequiredError}
|
|
9133
|
+
*/
|
|
9134
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<DownloadURLResponse>;
|
|
9135
|
+
/**
|
|
9136
|
+
* 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
|
|
9137
|
+
* @summary Generate presigned upload URL
|
|
8715
9138
|
* @param {UploadURLRequest} uploadURLRequest
|
|
8716
9139
|
* @param {*} [options] Override http request option.
|
|
8717
9140
|
* @throws {RequiredError}
|
|
8718
9141
|
*/
|
|
8719
|
-
|
|
9142
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): AxiosPromise<UploadURLResponse>;
|
|
8720
9143
|
/**
|
|
8721
9144
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
8722
9145
|
* @summary Get Me
|
|
@@ -8739,65 +9162,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
8739
9162
|
* @throws {RequiredError}
|
|
8740
9163
|
*/
|
|
8741
9164
|
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
9165
|
/**
|
|
8802
9166
|
* Associates a tag with a listing. This operation is idempotent.
|
|
8803
9167
|
* @summary Add Tag To Listing
|
|
@@ -9243,6 +9607,83 @@ declare class UnboundApi extends BaseAPI {
|
|
|
9243
9607
|
* @memberof UnboundApi
|
|
9244
9608
|
*/
|
|
9245
9609
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9610
|
+
/**
|
|
9611
|
+
* Create new content under a listing.
|
|
9612
|
+
* @summary Create Listing Content
|
|
9613
|
+
* @param {string} listingId
|
|
9614
|
+
* @param {Create} create
|
|
9615
|
+
* @param {*} [options] Override http request option.
|
|
9616
|
+
* @throws {RequiredError}
|
|
9617
|
+
* @memberof UnboundApi
|
|
9618
|
+
*/
|
|
9619
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
|
|
9620
|
+
/**
|
|
9621
|
+
* Create new content under a tag.
|
|
9622
|
+
* @summary Create Tag Content
|
|
9623
|
+
* @param {string} tagId
|
|
9624
|
+
* @param {Create} create
|
|
9625
|
+
* @param {*} [options] Override http request option.
|
|
9626
|
+
* @throws {RequiredError}
|
|
9627
|
+
* @memberof UnboundApi
|
|
9628
|
+
*/
|
|
9629
|
+
contentCreateOnTag(tagId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Content, any>>;
|
|
9630
|
+
/**
|
|
9631
|
+
* Content Delete
|
|
9632
|
+
* @summary Content Delete
|
|
9633
|
+
* @param {string} contentId
|
|
9634
|
+
* @param {*} [options] Override http request option.
|
|
9635
|
+
* @throws {RequiredError}
|
|
9636
|
+
* @memberof UnboundApi
|
|
9637
|
+
*/
|
|
9638
|
+
contentDelete(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9639
|
+
/**
|
|
9640
|
+
* Content Get
|
|
9641
|
+
* @summary Content Get
|
|
9642
|
+
* @param {string} contentId
|
|
9643
|
+
* @param {*} [options] Override http request option.
|
|
9644
|
+
* @throws {RequiredError}
|
|
9645
|
+
* @memberof UnboundApi
|
|
9646
|
+
*/
|
|
9647
|
+
contentGet(contentId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
9648
|
+
/**
|
|
9649
|
+
* Content List
|
|
9650
|
+
* @summary Content List
|
|
9651
|
+
* @param {string | null} [listingId] Filter by listing ID
|
|
9652
|
+
* @param {string | null} [tagId] Filter by tag ID
|
|
9653
|
+
* @param {boolean} [includeDeleted] Include soft-deleted content
|
|
9654
|
+
* @param {*} [options] Override http request option.
|
|
9655
|
+
* @throws {RequiredError}
|
|
9656
|
+
* @memberof UnboundApi
|
|
9657
|
+
*/
|
|
9658
|
+
contentList(listingId?: string | null, tagId?: string | null, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContent, any>>;
|
|
9659
|
+
/**
|
|
9660
|
+
* Content Update
|
|
9661
|
+
* @summary Content Update
|
|
9662
|
+
* @param {string} contentId
|
|
9663
|
+
* @param {APIContentUpdate} aPIContentUpdate
|
|
9664
|
+
* @param {*} [options] Override http request option.
|
|
9665
|
+
* @throws {RequiredError}
|
|
9666
|
+
* @memberof UnboundApi
|
|
9667
|
+
*/
|
|
9668
|
+
contentUpdate(contentId: string, aPIContentUpdate: APIContentUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContent, any>>;
|
|
9669
|
+
/**
|
|
9670
|
+
* ContentVersions Get
|
|
9671
|
+
* @summary ContentVersions Get
|
|
9672
|
+
* @param {string} contentVersionId
|
|
9673
|
+
* @param {*} [options] Override http request option.
|
|
9674
|
+
* @throws {RequiredError}
|
|
9675
|
+
* @memberof UnboundApi
|
|
9676
|
+
*/
|
|
9677
|
+
contentVersionsGet(contentVersionId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIContentVersion, any>>;
|
|
9678
|
+
/**
|
|
9679
|
+
* ContentVersions List
|
|
9680
|
+
* @summary ContentVersions List
|
|
9681
|
+
* @param {string} [contentId]
|
|
9682
|
+
* @param {*} [options] Override http request option.
|
|
9683
|
+
* @throws {RequiredError}
|
|
9684
|
+
* @memberof UnboundApi
|
|
9685
|
+
*/
|
|
9686
|
+
contentVersionsList(contentId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIContentVersion, any>>;
|
|
9246
9687
|
/**
|
|
9247
9688
|
* Conversations Create
|
|
9248
9689
|
* @summary Conversations Create
|
|
@@ -9327,15 +9768,23 @@ declare class UnboundApi extends BaseAPI {
|
|
|
9327
9768
|
*/
|
|
9328
9769
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
9329
9770
|
/**
|
|
9330
|
-
*
|
|
9331
|
-
* @summary Generate
|
|
9332
|
-
* @param {
|
|
9771
|
+
* 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)
|
|
9772
|
+
* @summary Generate presigned download URL
|
|
9773
|
+
* @param {DownloadURLRequest} downloadURLRequest
|
|
9774
|
+
* @param {*} [options] Override http request option.
|
|
9775
|
+
* @throws {RequiredError}
|
|
9776
|
+
* @memberof UnboundApi
|
|
9777
|
+
*/
|
|
9778
|
+
generateFileDownloadURL(downloadURLRequest: DownloadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<DownloadURLResponse, any>>;
|
|
9779
|
+
/**
|
|
9780
|
+
* 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
|
|
9781
|
+
* @summary Generate presigned upload URL
|
|
9333
9782
|
* @param {UploadURLRequest} uploadURLRequest
|
|
9334
9783
|
* @param {*} [options] Override http request option.
|
|
9335
9784
|
* @throws {RequiredError}
|
|
9336
9785
|
* @memberof UnboundApi
|
|
9337
9786
|
*/
|
|
9338
|
-
|
|
9787
|
+
generateFileUploadURL(uploadURLRequest: UploadURLRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadURLResponse, any>>;
|
|
9339
9788
|
/**
|
|
9340
9789
|
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
9341
9790
|
* @summary Get Me
|
|
@@ -9361,72 +9810,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
9361
9810
|
* @memberof UnboundApi
|
|
9362
9811
|
*/
|
|
9363
9812
|
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
9813
|
/**
|
|
9431
9814
|
* Associates a tag with a listing. This operation is idempotent.
|
|
9432
9815
|
* @summary Add Tag To Listing
|
|
@@ -9820,4 +10203,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
9820
10203
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
9821
10204
|
}
|
|
9822
10205
|
|
|
9823
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type
|
|
10206
|
+
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 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 };
|