@connectedxm/admin-sdk 7.0.1 → 7.0.3
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/.openapi-generator/FILES +1 -0
- package/AdminApi.ts +3 -0
- package/README.md +3 -0
- package/api.ts +419 -1
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +217 -1
- package/dist/api.js +304 -1
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +217 -1
- package/dist/esm/api.js +299 -0
- package/docs/ThreadsStorageApi.md +199 -0
- package/docs/VideoSource.md +2 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -12525,7 +12525,8 @@ export declare enum VideoCaptionStatusEnum {
|
|
|
12525
12525
|
export declare enum VideoSource {
|
|
12526
12526
|
Admin = "admin",
|
|
12527
12527
|
Activity = "activity",
|
|
12528
|
-
Content = "content"
|
|
12528
|
+
Content = "content",
|
|
12529
|
+
Thread = "thread"
|
|
12529
12530
|
}
|
|
12530
12531
|
export declare enum VideoStatus {
|
|
12531
12532
|
Pendingupload = "pendingupload",
|
|
@@ -80462,6 +80463,221 @@ export declare class ThreadsMessagesVideosApi extends BaseAPI {
|
|
|
80462
80463
|
*/
|
|
80463
80464
|
getThreadMessageVideos(requestParameters: ThreadsMessagesVideosApiGetThreadMessageVideosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadMessageVideos200Response, any, {}>>;
|
|
80464
80465
|
}
|
|
80466
|
+
/**
|
|
80467
|
+
* ThreadsStorageApi - axios parameter creator
|
|
80468
|
+
*/
|
|
80469
|
+
export declare const ThreadsStorageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
80470
|
+
/**
|
|
80471
|
+
* Get Thread Storage Files endpoint
|
|
80472
|
+
* @summary Get Thread Storage Files
|
|
80473
|
+
* @param {string} threadId The thread identifier
|
|
80474
|
+
* @param {number} [page] Page number
|
|
80475
|
+
* @param {number} [pageSize] Number of items per page
|
|
80476
|
+
* @param {string} [orderBy] Field to order by
|
|
80477
|
+
* @param {string} [search] Search query
|
|
80478
|
+
* @param {*} [options] Override http request option.
|
|
80479
|
+
* @throws {RequiredError}
|
|
80480
|
+
*/
|
|
80481
|
+
getThreadStorageFiles: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80482
|
+
/**
|
|
80483
|
+
* Get Thread Storage Images endpoint
|
|
80484
|
+
* @summary Get Thread Storage Images
|
|
80485
|
+
* @param {string} threadId The thread identifier
|
|
80486
|
+
* @param {number} [page] Page number
|
|
80487
|
+
* @param {number} [pageSize] Number of items per page
|
|
80488
|
+
* @param {string} [orderBy] Field to order by
|
|
80489
|
+
* @param {string} [search] Search query
|
|
80490
|
+
* @param {*} [options] Override http request option.
|
|
80491
|
+
* @throws {RequiredError}
|
|
80492
|
+
*/
|
|
80493
|
+
getThreadStorageImages: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80494
|
+
/**
|
|
80495
|
+
* Get Thread Storage Videos endpoint
|
|
80496
|
+
* @summary Get Thread Storage Videos
|
|
80497
|
+
* @param {string} threadId The thread identifier
|
|
80498
|
+
* @param {number} [page] Page number
|
|
80499
|
+
* @param {number} [pageSize] Number of items per page
|
|
80500
|
+
* @param {string} [orderBy] Field to order by
|
|
80501
|
+
* @param {string} [search] Search query
|
|
80502
|
+
* @param {*} [options] Override http request option.
|
|
80503
|
+
* @throws {RequiredError}
|
|
80504
|
+
*/
|
|
80505
|
+
getThreadStorageVideos: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80506
|
+
};
|
|
80507
|
+
/**
|
|
80508
|
+
* ThreadsStorageApi - functional programming interface
|
|
80509
|
+
*/
|
|
80510
|
+
export declare const ThreadsStorageApiFp: (configuration?: Configuration) => {
|
|
80511
|
+
/**
|
|
80512
|
+
* Get Thread Storage Files endpoint
|
|
80513
|
+
* @summary Get Thread Storage Files
|
|
80514
|
+
* @param {string} threadId The thread identifier
|
|
80515
|
+
* @param {number} [page] Page number
|
|
80516
|
+
* @param {number} [pageSize] Number of items per page
|
|
80517
|
+
* @param {string} [orderBy] Field to order by
|
|
80518
|
+
* @param {string} [search] Search query
|
|
80519
|
+
* @param {*} [options] Override http request option.
|
|
80520
|
+
* @throws {RequiredError}
|
|
80521
|
+
*/
|
|
80522
|
+
getThreadStorageFiles(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFiles200Response>>;
|
|
80523
|
+
/**
|
|
80524
|
+
* Get Thread Storage Images endpoint
|
|
80525
|
+
* @summary Get Thread Storage Images
|
|
80526
|
+
* @param {string} threadId The thread identifier
|
|
80527
|
+
* @param {number} [page] Page number
|
|
80528
|
+
* @param {number} [pageSize] Number of items per page
|
|
80529
|
+
* @param {string} [orderBy] Field to order by
|
|
80530
|
+
* @param {string} [search] Search query
|
|
80531
|
+
* @param {*} [options] Override http request option.
|
|
80532
|
+
* @throws {RequiredError}
|
|
80533
|
+
*/
|
|
80534
|
+
getThreadStorageImages(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPageImages200Response>>;
|
|
80535
|
+
/**
|
|
80536
|
+
* Get Thread Storage Videos endpoint
|
|
80537
|
+
* @summary Get Thread Storage Videos
|
|
80538
|
+
* @param {string} threadId The thread identifier
|
|
80539
|
+
* @param {number} [page] Page number
|
|
80540
|
+
* @param {number} [pageSize] Number of items per page
|
|
80541
|
+
* @param {string} [orderBy] Field to order by
|
|
80542
|
+
* @param {string} [search] Search query
|
|
80543
|
+
* @param {*} [options] Override http request option.
|
|
80544
|
+
* @throws {RequiredError}
|
|
80545
|
+
*/
|
|
80546
|
+
getThreadStorageVideos(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStreamVideos200Response>>;
|
|
80547
|
+
};
|
|
80548
|
+
/**
|
|
80549
|
+
* ThreadsStorageApi - factory interface
|
|
80550
|
+
*/
|
|
80551
|
+
export declare const ThreadsStorageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
80552
|
+
/**
|
|
80553
|
+
* Get Thread Storage Files endpoint
|
|
80554
|
+
* @summary Get Thread Storage Files
|
|
80555
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
80556
|
+
* @param {*} [options] Override http request option.
|
|
80557
|
+
* @throws {RequiredError}
|
|
80558
|
+
*/
|
|
80559
|
+
getThreadStorageFiles(requestParameters: ThreadsStorageApiGetThreadStorageFilesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFiles200Response>;
|
|
80560
|
+
/**
|
|
80561
|
+
* Get Thread Storage Images endpoint
|
|
80562
|
+
* @summary Get Thread Storage Images
|
|
80563
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
80564
|
+
* @param {*} [options] Override http request option.
|
|
80565
|
+
* @throws {RequiredError}
|
|
80566
|
+
*/
|
|
80567
|
+
getThreadStorageImages(requestParameters: ThreadsStorageApiGetThreadStorageImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPageImages200Response>;
|
|
80568
|
+
/**
|
|
80569
|
+
* Get Thread Storage Videos endpoint
|
|
80570
|
+
* @summary Get Thread Storage Videos
|
|
80571
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
80572
|
+
* @param {*} [options] Override http request option.
|
|
80573
|
+
* @throws {RequiredError}
|
|
80574
|
+
*/
|
|
80575
|
+
getThreadStorageVideos(requestParameters: ThreadsStorageApiGetThreadStorageVideosRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetStreamVideos200Response>;
|
|
80576
|
+
};
|
|
80577
|
+
/**
|
|
80578
|
+
* Request parameters for getThreadStorageFiles operation in ThreadsStorageApi.
|
|
80579
|
+
*/
|
|
80580
|
+
export interface ThreadsStorageApiGetThreadStorageFilesRequest {
|
|
80581
|
+
/**
|
|
80582
|
+
* The thread identifier
|
|
80583
|
+
*/
|
|
80584
|
+
readonly threadId: string;
|
|
80585
|
+
/**
|
|
80586
|
+
* Page number
|
|
80587
|
+
*/
|
|
80588
|
+
readonly page?: number;
|
|
80589
|
+
/**
|
|
80590
|
+
* Number of items per page
|
|
80591
|
+
*/
|
|
80592
|
+
readonly pageSize?: number;
|
|
80593
|
+
/**
|
|
80594
|
+
* Field to order by
|
|
80595
|
+
*/
|
|
80596
|
+
readonly orderBy?: string;
|
|
80597
|
+
/**
|
|
80598
|
+
* Search query
|
|
80599
|
+
*/
|
|
80600
|
+
readonly search?: string;
|
|
80601
|
+
}
|
|
80602
|
+
/**
|
|
80603
|
+
* Request parameters for getThreadStorageImages operation in ThreadsStorageApi.
|
|
80604
|
+
*/
|
|
80605
|
+
export interface ThreadsStorageApiGetThreadStorageImagesRequest {
|
|
80606
|
+
/**
|
|
80607
|
+
* The thread identifier
|
|
80608
|
+
*/
|
|
80609
|
+
readonly threadId: string;
|
|
80610
|
+
/**
|
|
80611
|
+
* Page number
|
|
80612
|
+
*/
|
|
80613
|
+
readonly page?: number;
|
|
80614
|
+
/**
|
|
80615
|
+
* Number of items per page
|
|
80616
|
+
*/
|
|
80617
|
+
readonly pageSize?: number;
|
|
80618
|
+
/**
|
|
80619
|
+
* Field to order by
|
|
80620
|
+
*/
|
|
80621
|
+
readonly orderBy?: string;
|
|
80622
|
+
/**
|
|
80623
|
+
* Search query
|
|
80624
|
+
*/
|
|
80625
|
+
readonly search?: string;
|
|
80626
|
+
}
|
|
80627
|
+
/**
|
|
80628
|
+
* Request parameters for getThreadStorageVideos operation in ThreadsStorageApi.
|
|
80629
|
+
*/
|
|
80630
|
+
export interface ThreadsStorageApiGetThreadStorageVideosRequest {
|
|
80631
|
+
/**
|
|
80632
|
+
* The thread identifier
|
|
80633
|
+
*/
|
|
80634
|
+
readonly threadId: string;
|
|
80635
|
+
/**
|
|
80636
|
+
* Page number
|
|
80637
|
+
*/
|
|
80638
|
+
readonly page?: number;
|
|
80639
|
+
/**
|
|
80640
|
+
* Number of items per page
|
|
80641
|
+
*/
|
|
80642
|
+
readonly pageSize?: number;
|
|
80643
|
+
/**
|
|
80644
|
+
* Field to order by
|
|
80645
|
+
*/
|
|
80646
|
+
readonly orderBy?: string;
|
|
80647
|
+
/**
|
|
80648
|
+
* Search query
|
|
80649
|
+
*/
|
|
80650
|
+
readonly search?: string;
|
|
80651
|
+
}
|
|
80652
|
+
/**
|
|
80653
|
+
* ThreadsStorageApi - object-oriented interface
|
|
80654
|
+
*/
|
|
80655
|
+
export declare class ThreadsStorageApi extends BaseAPI {
|
|
80656
|
+
/**
|
|
80657
|
+
* Get Thread Storage Files endpoint
|
|
80658
|
+
* @summary Get Thread Storage Files
|
|
80659
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
80660
|
+
* @param {*} [options] Override http request option.
|
|
80661
|
+
* @throws {RequiredError}
|
|
80662
|
+
*/
|
|
80663
|
+
getThreadStorageFiles(requestParameters: ThreadsStorageApiGetThreadStorageFilesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFiles200Response, any, {}>>;
|
|
80664
|
+
/**
|
|
80665
|
+
* Get Thread Storage Images endpoint
|
|
80666
|
+
* @summary Get Thread Storage Images
|
|
80667
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
80668
|
+
* @param {*} [options] Override http request option.
|
|
80669
|
+
* @throws {RequiredError}
|
|
80670
|
+
*/
|
|
80671
|
+
getThreadStorageImages(requestParameters: ThreadsStorageApiGetThreadStorageImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPageImages200Response, any, {}>>;
|
|
80672
|
+
/**
|
|
80673
|
+
* Get Thread Storage Videos endpoint
|
|
80674
|
+
* @summary Get Thread Storage Videos
|
|
80675
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
80676
|
+
* @param {*} [options] Override http request option.
|
|
80677
|
+
* @throws {RequiredError}
|
|
80678
|
+
*/
|
|
80679
|
+
getThreadStorageVideos(requestParameters: ThreadsStorageApiGetThreadStorageVideosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStreamVideos200Response, any, {}>>;
|
|
80680
|
+
}
|
|
80465
80681
|
/**
|
|
80466
80682
|
* TiersApi - axios parameter creator
|
|
80467
80683
|
*/
|
package/dist/api.js
CHANGED
|
@@ -48,7 +48,7 @@ exports.OrganizationUsersApiFp = exports.OrganizationUsersApiAxiosParamCreator =
|
|
|
48
48
|
exports.SeriesApi = exports.SeriesApiFactory = exports.SeriesApiFp = exports.SeriesApiAxiosParamCreator = exports.SelfImagesApi = exports.SelfImagesApiFactory = exports.SelfImagesApiFp = exports.SelfImagesApiAxiosParamCreator = exports.SelfApikeysApi = exports.SelfApikeysApiFactory = exports.SelfApikeysApiFp = exports.SelfApikeysApiAxiosParamCreator = exports.SelfApi = exports.SelfApiFactory = exports.SelfApiFp = exports.SelfApiAxiosParamCreator = exports.SearchlistsValuesApi = exports.SearchlistsValuesApiFactory = exports.SearchlistsValuesApiFp = exports.SearchlistsValuesApiAxiosParamCreator = exports.SearchlistsApi = exports.SearchlistsApiFactory = exports.SearchlistsApiFp = exports.SearchlistsApiAxiosParamCreator = exports.ReportsUsersApi = exports.ReportsUsersApiFactory = exports.ReportsUsersApiFp = exports.ReportsUsersApiAxiosParamCreator = exports.ReportsApi = exports.ReportsApiFactory = exports.ReportsApiFp = exports.ReportsApiAxiosParamCreator = exports.PushDevicesApi = exports.PushDevicesApiFactory = exports.PushDevicesApiFp = exports.PushDevicesApiAxiosParamCreator = exports.PreferencesApi = exports.PreferencesApiFactory = exports.PreferencesApiFp = exports.PreferencesApiAxiosParamCreator = exports.PaymentsApi = exports.PaymentsApiFactory = exports.PaymentsApiFp = exports.PaymentsApiAxiosParamCreator = exports.OrganizationWebhooksApi = exports.OrganizationWebhooksApiFactory = exports.OrganizationWebhooksApiFp = exports.OrganizationWebhooksApiAxiosParamCreator = exports.OrganizationUsersApi = exports.OrganizationUsersApiFactory = void 0;
|
|
49
49
|
exports.StreamsApiAxiosParamCreator = exports.StorageVideosCaptionsApi = exports.StorageVideosCaptionsApiFactory = exports.StorageVideosCaptionsApiFp = exports.StorageVideosCaptionsApiAxiosParamCreator = exports.StorageVideosApi = exports.StorageVideosApiFactory = exports.StorageVideosApiFp = exports.StorageVideosApiAxiosParamCreator = exports.StorageImagesApi = exports.StorageImagesApiFactory = exports.StorageImagesApiFp = exports.StorageImagesApiAxiosParamCreator = exports.UploadFileSourceEnum = exports.StorageFilesApi = exports.StorageFilesApiFactory = exports.StorageFilesApiFp = exports.StorageFilesApiAxiosParamCreator = exports.SponsorsTranslationsApi = exports.SponsorsTranslationsApiFactory = exports.SponsorsTranslationsApiFp = exports.SponsorsTranslationsApiAxiosParamCreator = exports.SponsorsAccountsApi = exports.SponsorsAccountsApiFactory = exports.SponsorsAccountsApiFp = exports.SponsorsAccountsApiAxiosParamCreator = exports.SponsorsApi = exports.SponsorsApiFactory = exports.SponsorsApiFp = exports.SponsorsApiAxiosParamCreator = exports.SeriesTranslationsApi = exports.SeriesTranslationsApiFactory = exports.SeriesTranslationsApiFp = exports.SeriesTranslationsApiAxiosParamCreator = exports.SeriesRegistrationsApi = exports.SeriesRegistrationsApiFactory = exports.SeriesRegistrationsApiFp = exports.SeriesRegistrationsApiAxiosParamCreator = exports.SeriesQuestionsTranslationsApi = exports.SeriesQuestionsTranslationsApiFactory = exports.SeriesQuestionsTranslationsApiFp = exports.SeriesQuestionsTranslationsApiAxiosParamCreator = exports.SeriesQuestionsChoicesApi = exports.SeriesQuestionsChoicesApiFactory = exports.SeriesQuestionsChoicesApiFp = exports.SeriesQuestionsChoicesApiAxiosParamCreator = exports.SeriesQuestionsApi = exports.SeriesQuestionsApiFactory = exports.SeriesQuestionsApiFp = exports.SeriesQuestionsApiAxiosParamCreator = void 0;
|
|
50
50
|
exports.SurveysSubmissionsApiFp = exports.SurveysSubmissionsApiAxiosParamCreator = exports.SurveysSessionsApi = exports.SurveysSessionsApiFactory = exports.SurveysSessionsApiFp = exports.SurveysSessionsApiAxiosParamCreator = exports.SurveysSectionsTranslationsApi = exports.SurveysSectionsTranslationsApiFactory = exports.SurveysSectionsTranslationsApiFp = exports.SurveysSectionsTranslationsApiAxiosParamCreator = exports.SurveysSectionsApi = exports.SurveysSectionsApiFactory = exports.SurveysSectionsApiFp = exports.SurveysSectionsApiAxiosParamCreator = exports.SurveysQuestionsTranslationsApi = exports.SurveysQuestionsTranslationsApiFactory = exports.SurveysQuestionsTranslationsApiFp = exports.SurveysQuestionsTranslationsApiAxiosParamCreator = exports.SurveysQuestionsApi = exports.SurveysQuestionsApiFactory = exports.SurveysQuestionsApiFp = exports.SurveysQuestionsApiAxiosParamCreator = exports.SurveysApi = exports.SurveysApiFactory = exports.SurveysApiFp = exports.SurveysApiAxiosParamCreator = exports.SupportNotesApi = exports.SupportNotesApiFactory = exports.SupportNotesApiFp = exports.SupportNotesApiAxiosParamCreator = exports.SupportMessagesApi = exports.SupportMessagesApiFactory = exports.SupportMessagesApiFp = exports.SupportMessagesApiAxiosParamCreator = exports.GetSupportTicketsAssignmentEnum = exports.SupportApi = exports.SupportApiFactory = exports.SupportApiFp = exports.SupportApiAxiosParamCreator = exports.StreamsSessionsApi = exports.StreamsSessionsApiFactory = exports.StreamsSessionsApiFp = exports.StreamsSessionsApiAxiosParamCreator = exports.StreamsOutputsApi = exports.StreamsOutputsApiFactory = exports.StreamsOutputsApiFp = exports.StreamsOutputsApiAxiosParamCreator = exports.StreamsApi = exports.StreamsApiFactory = exports.StreamsApiFp = void 0;
|
|
51
|
-
exports.GetTiersTypeEnum = exports.TiersApi = exports.TiersApiFactory = exports.TiersApiFp = exports.TiersApiAxiosParamCreator = exports.ThreadsMessagesVideosApi = exports.ThreadsMessagesVideosApiFactory = exports.ThreadsMessagesVideosApiFp = exports.ThreadsMessagesVideosApiAxiosParamCreator = exports.ThreadsMessagesReactionsApi = exports.ThreadsMessagesReactionsApiFactory = exports.ThreadsMessagesReactionsApiFp = exports.ThreadsMessagesReactionsApiAxiosParamCreator = exports.ThreadsMessagesImagesApi = exports.ThreadsMessagesImagesApiFactory = exports.ThreadsMessagesImagesApiFp = exports.ThreadsMessagesImagesApiAxiosParamCreator = exports.ThreadsMessagesFilesApi = exports.ThreadsMessagesFilesApiFactory = exports.ThreadsMessagesFilesApiFp = exports.ThreadsMessagesFilesApiAxiosParamCreator = exports.ThreadsMessagesApi = exports.ThreadsMessagesApiFactory = exports.ThreadsMessagesApiFp = exports.ThreadsMessagesApiAxiosParamCreator = exports.ThreadsAccountsApi = exports.ThreadsAccountsApiFactory = exports.ThreadsAccountsApiFp = exports.ThreadsAccountsApiAxiosParamCreator = exports.ThreadsApi = exports.ThreadsApiFactory = exports.ThreadsApiFp = exports.ThreadsApiAxiosParamCreator = exports.SurveysTranslationsApi = exports.SurveysTranslationsApiFactory = exports.SurveysTranslationsApiFp = exports.SurveysTranslationsApiAxiosParamCreator = exports.SurveysSubmissionsApi = exports.SurveysSubmissionsApiFactory = void 0;
|
|
51
|
+
exports.GetTiersTypeEnum = exports.TiersApi = exports.TiersApiFactory = exports.TiersApiFp = exports.TiersApiAxiosParamCreator = exports.ThreadsStorageApi = exports.ThreadsStorageApiFactory = exports.ThreadsStorageApiFp = exports.ThreadsStorageApiAxiosParamCreator = exports.ThreadsMessagesVideosApi = exports.ThreadsMessagesVideosApiFactory = exports.ThreadsMessagesVideosApiFp = exports.ThreadsMessagesVideosApiAxiosParamCreator = exports.ThreadsMessagesReactionsApi = exports.ThreadsMessagesReactionsApiFactory = exports.ThreadsMessagesReactionsApiFp = exports.ThreadsMessagesReactionsApiAxiosParamCreator = exports.ThreadsMessagesImagesApi = exports.ThreadsMessagesImagesApiFactory = exports.ThreadsMessagesImagesApiFp = exports.ThreadsMessagesImagesApiAxiosParamCreator = exports.ThreadsMessagesFilesApi = exports.ThreadsMessagesFilesApiFactory = exports.ThreadsMessagesFilesApiFp = exports.ThreadsMessagesFilesApiAxiosParamCreator = exports.ThreadsMessagesApi = exports.ThreadsMessagesApiFactory = exports.ThreadsMessagesApiFp = exports.ThreadsMessagesApiAxiosParamCreator = exports.ThreadsAccountsApi = exports.ThreadsAccountsApiFactory = exports.ThreadsAccountsApiFp = exports.ThreadsAccountsApiAxiosParamCreator = exports.ThreadsApi = exports.ThreadsApiFactory = exports.ThreadsApiFp = exports.ThreadsApiAxiosParamCreator = exports.SurveysTranslationsApi = exports.SurveysTranslationsApiFactory = exports.SurveysTranslationsApiFp = exports.SurveysTranslationsApiAxiosParamCreator = exports.SurveysSubmissionsApi = exports.SurveysSubmissionsApiFactory = void 0;
|
|
52
52
|
const axios_1 = require("axios");
|
|
53
53
|
// Some imports not used depending on template conditions
|
|
54
54
|
// @ts-ignore
|
|
@@ -2674,6 +2674,7 @@ var VideoSource;
|
|
|
2674
2674
|
VideoSource["Admin"] = "admin";
|
|
2675
2675
|
VideoSource["Activity"] = "activity";
|
|
2676
2676
|
VideoSource["Content"] = "content";
|
|
2677
|
+
VideoSource["Thread"] = "thread";
|
|
2677
2678
|
})(VideoSource || (exports.VideoSource = VideoSource = {}));
|
|
2678
2679
|
var VideoStatus;
|
|
2679
2680
|
(function (VideoStatus) {
|
|
@@ -105881,6 +105882,308 @@ class ThreadsMessagesVideosApi extends base_1.BaseAPI {
|
|
|
105881
105882
|
}
|
|
105882
105883
|
}
|
|
105883
105884
|
exports.ThreadsMessagesVideosApi = ThreadsMessagesVideosApi;
|
|
105885
|
+
/**
|
|
105886
|
+
* ThreadsStorageApi - axios parameter creator
|
|
105887
|
+
*/
|
|
105888
|
+
const ThreadsStorageApiAxiosParamCreator = function (configuration) {
|
|
105889
|
+
return {
|
|
105890
|
+
/**
|
|
105891
|
+
* Get Thread Storage Files endpoint
|
|
105892
|
+
* @summary Get Thread Storage Files
|
|
105893
|
+
* @param {string} threadId The thread identifier
|
|
105894
|
+
* @param {number} [page] Page number
|
|
105895
|
+
* @param {number} [pageSize] Number of items per page
|
|
105896
|
+
* @param {string} [orderBy] Field to order by
|
|
105897
|
+
* @param {string} [search] Search query
|
|
105898
|
+
* @param {*} [options] Override http request option.
|
|
105899
|
+
* @throws {RequiredError}
|
|
105900
|
+
*/
|
|
105901
|
+
getThreadStorageFiles: (threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (threadId, page, pageSize, orderBy, search, options = {}) {
|
|
105902
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
105903
|
+
(0, common_1.assertParamExists)('getThreadStorageFiles', 'threadId', threadId);
|
|
105904
|
+
const localVarPath = `/threads/{threadId}/storage/files`
|
|
105905
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
105906
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
105907
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
105908
|
+
let baseOptions;
|
|
105909
|
+
if (configuration) {
|
|
105910
|
+
baseOptions = configuration.baseOptions;
|
|
105911
|
+
}
|
|
105912
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
105913
|
+
const localVarHeaderParameter = {};
|
|
105914
|
+
const localVarQueryParameter = {};
|
|
105915
|
+
// authentication ApiKeyAuth required
|
|
105916
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
105917
|
+
// authentication OrganizationId required
|
|
105918
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
105919
|
+
if (page !== undefined) {
|
|
105920
|
+
localVarQueryParameter['page'] = page;
|
|
105921
|
+
}
|
|
105922
|
+
if (pageSize !== undefined) {
|
|
105923
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
105924
|
+
}
|
|
105925
|
+
if (orderBy !== undefined) {
|
|
105926
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
105927
|
+
}
|
|
105928
|
+
if (search !== undefined) {
|
|
105929
|
+
localVarQueryParameter['search'] = search;
|
|
105930
|
+
}
|
|
105931
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
105932
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
105933
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105934
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
105935
|
+
return {
|
|
105936
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
105937
|
+
options: localVarRequestOptions,
|
|
105938
|
+
};
|
|
105939
|
+
}),
|
|
105940
|
+
/**
|
|
105941
|
+
* Get Thread Storage Images endpoint
|
|
105942
|
+
* @summary Get Thread Storage Images
|
|
105943
|
+
* @param {string} threadId The thread identifier
|
|
105944
|
+
* @param {number} [page] Page number
|
|
105945
|
+
* @param {number} [pageSize] Number of items per page
|
|
105946
|
+
* @param {string} [orderBy] Field to order by
|
|
105947
|
+
* @param {string} [search] Search query
|
|
105948
|
+
* @param {*} [options] Override http request option.
|
|
105949
|
+
* @throws {RequiredError}
|
|
105950
|
+
*/
|
|
105951
|
+
getThreadStorageImages: (threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (threadId, page, pageSize, orderBy, search, options = {}) {
|
|
105952
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
105953
|
+
(0, common_1.assertParamExists)('getThreadStorageImages', 'threadId', threadId);
|
|
105954
|
+
const localVarPath = `/threads/{threadId}/storage/images`
|
|
105955
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
105956
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
105957
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
105958
|
+
let baseOptions;
|
|
105959
|
+
if (configuration) {
|
|
105960
|
+
baseOptions = configuration.baseOptions;
|
|
105961
|
+
}
|
|
105962
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
105963
|
+
const localVarHeaderParameter = {};
|
|
105964
|
+
const localVarQueryParameter = {};
|
|
105965
|
+
// authentication ApiKeyAuth required
|
|
105966
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
105967
|
+
// authentication OrganizationId required
|
|
105968
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
105969
|
+
if (page !== undefined) {
|
|
105970
|
+
localVarQueryParameter['page'] = page;
|
|
105971
|
+
}
|
|
105972
|
+
if (pageSize !== undefined) {
|
|
105973
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
105974
|
+
}
|
|
105975
|
+
if (orderBy !== undefined) {
|
|
105976
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
105977
|
+
}
|
|
105978
|
+
if (search !== undefined) {
|
|
105979
|
+
localVarQueryParameter['search'] = search;
|
|
105980
|
+
}
|
|
105981
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
105982
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
105983
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105984
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
105985
|
+
return {
|
|
105986
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
105987
|
+
options: localVarRequestOptions,
|
|
105988
|
+
};
|
|
105989
|
+
}),
|
|
105990
|
+
/**
|
|
105991
|
+
* Get Thread Storage Videos endpoint
|
|
105992
|
+
* @summary Get Thread Storage Videos
|
|
105993
|
+
* @param {string} threadId The thread identifier
|
|
105994
|
+
* @param {number} [page] Page number
|
|
105995
|
+
* @param {number} [pageSize] Number of items per page
|
|
105996
|
+
* @param {string} [orderBy] Field to order by
|
|
105997
|
+
* @param {string} [search] Search query
|
|
105998
|
+
* @param {*} [options] Override http request option.
|
|
105999
|
+
* @throws {RequiredError}
|
|
106000
|
+
*/
|
|
106001
|
+
getThreadStorageVideos: (threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [threadId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (threadId, page, pageSize, orderBy, search, options = {}) {
|
|
106002
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
106003
|
+
(0, common_1.assertParamExists)('getThreadStorageVideos', 'threadId', threadId);
|
|
106004
|
+
const localVarPath = `/threads/{threadId}/storage/videos`
|
|
106005
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
106006
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106007
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
106008
|
+
let baseOptions;
|
|
106009
|
+
if (configuration) {
|
|
106010
|
+
baseOptions = configuration.baseOptions;
|
|
106011
|
+
}
|
|
106012
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
106013
|
+
const localVarHeaderParameter = {};
|
|
106014
|
+
const localVarQueryParameter = {};
|
|
106015
|
+
// authentication ApiKeyAuth required
|
|
106016
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
106017
|
+
// authentication OrganizationId required
|
|
106018
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
106019
|
+
if (page !== undefined) {
|
|
106020
|
+
localVarQueryParameter['page'] = page;
|
|
106021
|
+
}
|
|
106022
|
+
if (pageSize !== undefined) {
|
|
106023
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
106024
|
+
}
|
|
106025
|
+
if (orderBy !== undefined) {
|
|
106026
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
106027
|
+
}
|
|
106028
|
+
if (search !== undefined) {
|
|
106029
|
+
localVarQueryParameter['search'] = search;
|
|
106030
|
+
}
|
|
106031
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
106032
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
106033
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
106034
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
106035
|
+
return {
|
|
106036
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
106037
|
+
options: localVarRequestOptions,
|
|
106038
|
+
};
|
|
106039
|
+
}),
|
|
106040
|
+
};
|
|
106041
|
+
};
|
|
106042
|
+
exports.ThreadsStorageApiAxiosParamCreator = ThreadsStorageApiAxiosParamCreator;
|
|
106043
|
+
/**
|
|
106044
|
+
* ThreadsStorageApi - functional programming interface
|
|
106045
|
+
*/
|
|
106046
|
+
const ThreadsStorageApiFp = function (configuration) {
|
|
106047
|
+
const localVarAxiosParamCreator = (0, exports.ThreadsStorageApiAxiosParamCreator)(configuration);
|
|
106048
|
+
return {
|
|
106049
|
+
/**
|
|
106050
|
+
* Get Thread Storage Files endpoint
|
|
106051
|
+
* @summary Get Thread Storage Files
|
|
106052
|
+
* @param {string} threadId The thread identifier
|
|
106053
|
+
* @param {number} [page] Page number
|
|
106054
|
+
* @param {number} [pageSize] Number of items per page
|
|
106055
|
+
* @param {string} [orderBy] Field to order by
|
|
106056
|
+
* @param {string} [search] Search query
|
|
106057
|
+
* @param {*} [options] Override http request option.
|
|
106058
|
+
* @throws {RequiredError}
|
|
106059
|
+
*/
|
|
106060
|
+
getThreadStorageFiles(threadId, page, pageSize, orderBy, search, options) {
|
|
106061
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106062
|
+
var _a, _b, _c;
|
|
106063
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageFiles(threadId, page, pageSize, orderBy, search, options);
|
|
106064
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106065
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ThreadsStorageApi.getThreadStorageFiles']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
106066
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106067
|
+
});
|
|
106068
|
+
},
|
|
106069
|
+
/**
|
|
106070
|
+
* Get Thread Storage Images endpoint
|
|
106071
|
+
* @summary Get Thread Storage Images
|
|
106072
|
+
* @param {string} threadId The thread identifier
|
|
106073
|
+
* @param {number} [page] Page number
|
|
106074
|
+
* @param {number} [pageSize] Number of items per page
|
|
106075
|
+
* @param {string} [orderBy] Field to order by
|
|
106076
|
+
* @param {string} [search] Search query
|
|
106077
|
+
* @param {*} [options] Override http request option.
|
|
106078
|
+
* @throws {RequiredError}
|
|
106079
|
+
*/
|
|
106080
|
+
getThreadStorageImages(threadId, page, pageSize, orderBy, search, options) {
|
|
106081
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106082
|
+
var _a, _b, _c;
|
|
106083
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageImages(threadId, page, pageSize, orderBy, search, options);
|
|
106084
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106085
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ThreadsStorageApi.getThreadStorageImages']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
106086
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106087
|
+
});
|
|
106088
|
+
},
|
|
106089
|
+
/**
|
|
106090
|
+
* Get Thread Storage Videos endpoint
|
|
106091
|
+
* @summary Get Thread Storage Videos
|
|
106092
|
+
* @param {string} threadId The thread identifier
|
|
106093
|
+
* @param {number} [page] Page number
|
|
106094
|
+
* @param {number} [pageSize] Number of items per page
|
|
106095
|
+
* @param {string} [orderBy] Field to order by
|
|
106096
|
+
* @param {string} [search] Search query
|
|
106097
|
+
* @param {*} [options] Override http request option.
|
|
106098
|
+
* @throws {RequiredError}
|
|
106099
|
+
*/
|
|
106100
|
+
getThreadStorageVideos(threadId, page, pageSize, orderBy, search, options) {
|
|
106101
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106102
|
+
var _a, _b, _c;
|
|
106103
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageVideos(threadId, page, pageSize, orderBy, search, options);
|
|
106104
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106105
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ThreadsStorageApi.getThreadStorageVideos']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
106106
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106107
|
+
});
|
|
106108
|
+
},
|
|
106109
|
+
};
|
|
106110
|
+
};
|
|
106111
|
+
exports.ThreadsStorageApiFp = ThreadsStorageApiFp;
|
|
106112
|
+
/**
|
|
106113
|
+
* ThreadsStorageApi - factory interface
|
|
106114
|
+
*/
|
|
106115
|
+
const ThreadsStorageApiFactory = function (configuration, basePath, axios) {
|
|
106116
|
+
const localVarFp = (0, exports.ThreadsStorageApiFp)(configuration);
|
|
106117
|
+
return {
|
|
106118
|
+
/**
|
|
106119
|
+
* Get Thread Storage Files endpoint
|
|
106120
|
+
* @summary Get Thread Storage Files
|
|
106121
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
106122
|
+
* @param {*} [options] Override http request option.
|
|
106123
|
+
* @throws {RequiredError}
|
|
106124
|
+
*/
|
|
106125
|
+
getThreadStorageFiles(requestParameters, options) {
|
|
106126
|
+
return localVarFp.getThreadStorageFiles(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106127
|
+
},
|
|
106128
|
+
/**
|
|
106129
|
+
* Get Thread Storage Images endpoint
|
|
106130
|
+
* @summary Get Thread Storage Images
|
|
106131
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
106132
|
+
* @param {*} [options] Override http request option.
|
|
106133
|
+
* @throws {RequiredError}
|
|
106134
|
+
*/
|
|
106135
|
+
getThreadStorageImages(requestParameters, options) {
|
|
106136
|
+
return localVarFp.getThreadStorageImages(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106137
|
+
},
|
|
106138
|
+
/**
|
|
106139
|
+
* Get Thread Storage Videos endpoint
|
|
106140
|
+
* @summary Get Thread Storage Videos
|
|
106141
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
106142
|
+
* @param {*} [options] Override http request option.
|
|
106143
|
+
* @throws {RequiredError}
|
|
106144
|
+
*/
|
|
106145
|
+
getThreadStorageVideos(requestParameters, options) {
|
|
106146
|
+
return localVarFp.getThreadStorageVideos(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106147
|
+
},
|
|
106148
|
+
};
|
|
106149
|
+
};
|
|
106150
|
+
exports.ThreadsStorageApiFactory = ThreadsStorageApiFactory;
|
|
106151
|
+
/**
|
|
106152
|
+
* ThreadsStorageApi - object-oriented interface
|
|
106153
|
+
*/
|
|
106154
|
+
class ThreadsStorageApi extends base_1.BaseAPI {
|
|
106155
|
+
/**
|
|
106156
|
+
* Get Thread Storage Files endpoint
|
|
106157
|
+
* @summary Get Thread Storage Files
|
|
106158
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
106159
|
+
* @param {*} [options] Override http request option.
|
|
106160
|
+
* @throws {RequiredError}
|
|
106161
|
+
*/
|
|
106162
|
+
getThreadStorageFiles(requestParameters, options) {
|
|
106163
|
+
return (0, exports.ThreadsStorageApiFp)(this.configuration).getThreadStorageFiles(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
106164
|
+
}
|
|
106165
|
+
/**
|
|
106166
|
+
* Get Thread Storage Images endpoint
|
|
106167
|
+
* @summary Get Thread Storage Images
|
|
106168
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
106169
|
+
* @param {*} [options] Override http request option.
|
|
106170
|
+
* @throws {RequiredError}
|
|
106171
|
+
*/
|
|
106172
|
+
getThreadStorageImages(requestParameters, options) {
|
|
106173
|
+
return (0, exports.ThreadsStorageApiFp)(this.configuration).getThreadStorageImages(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
106174
|
+
}
|
|
106175
|
+
/**
|
|
106176
|
+
* Get Thread Storage Videos endpoint
|
|
106177
|
+
* @summary Get Thread Storage Videos
|
|
106178
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
106179
|
+
* @param {*} [options] Override http request option.
|
|
106180
|
+
* @throws {RequiredError}
|
|
106181
|
+
*/
|
|
106182
|
+
getThreadStorageVideos(requestParameters, options) {
|
|
106183
|
+
return (0, exports.ThreadsStorageApiFp)(this.configuration).getThreadStorageVideos(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
106184
|
+
}
|
|
106185
|
+
}
|
|
106186
|
+
exports.ThreadsStorageApi = ThreadsStorageApi;
|
|
105884
106187
|
/**
|
|
105885
106188
|
* TiersApi - axios parameter creator
|
|
105886
106189
|
*/
|
package/dist/esm/AdminApi.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* const accounts = await adminApi.accounts.getAccounts();
|
|
10
10
|
* const eventsPasses = await adminApi.eventsPasses.getEventPasses();
|
|
11
11
|
*/
|
|
12
|
-
import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, TiersApi } from "./api";
|
|
12
|
+
import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, ThreadsStorageApi, TiersApi } from "./api";
|
|
13
13
|
export interface AdminApiConfig {
|
|
14
14
|
/** Your API key for authentication */
|
|
15
15
|
apiKey: string;
|
|
@@ -211,6 +211,7 @@ export declare class AdminApi {
|
|
|
211
211
|
readonly threadsMessagesImages: ThreadsMessagesImagesApi;
|
|
212
212
|
readonly threadsMessagesReactions: ThreadsMessagesReactionsApi;
|
|
213
213
|
readonly threadsMessagesVideos: ThreadsMessagesVideosApi;
|
|
214
|
+
readonly threadsStorage: ThreadsStorageApi;
|
|
214
215
|
readonly tiers: TiersApi;
|
|
215
216
|
constructor(config: AdminApiConfig);
|
|
216
217
|
/**
|
package/dist/esm/AdminApi.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* const eventsPasses = await adminApi.eventsPasses.getEventPasses();
|
|
13
13
|
*/
|
|
14
14
|
import { Configuration } from "./configuration";
|
|
15
|
-
import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, TiersApi, } from "./api";
|
|
15
|
+
import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, ThreadsStorageApi, TiersApi, } from "./api";
|
|
16
16
|
export class AdminApi {
|
|
17
17
|
constructor(config) {
|
|
18
18
|
var _a;
|
|
@@ -216,6 +216,7 @@ export class AdminApi {
|
|
|
216
216
|
this.threadsMessagesImages = new ThreadsMessagesImagesApi(this.config);
|
|
217
217
|
this.threadsMessagesReactions = new ThreadsMessagesReactionsApi(this.config);
|
|
218
218
|
this.threadsMessagesVideos = new ThreadsMessagesVideosApi(this.config);
|
|
219
|
+
this.threadsStorage = new ThreadsStorageApi(this.config);
|
|
219
220
|
this.tiers = new TiersApi(this.config);
|
|
220
221
|
}
|
|
221
222
|
/**
|