@connectedxm/admin-sdk 7.0.1 → 7.0.2
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 +417 -0
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +215 -0
- package/dist/api.js +303 -1
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +215 -0
- package/dist/esm/api.js +298 -0
- package/docs/ThreadsStorageApi.md +199 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -80462,6 +80462,221 @@ export declare class ThreadsMessagesVideosApi extends BaseAPI {
|
|
|
80462
80462
|
*/
|
|
80463
80463
|
getThreadMessageVideos(requestParameters: ThreadsMessagesVideosApiGetThreadMessageVideosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadMessageVideos200Response, any, {}>>;
|
|
80464
80464
|
}
|
|
80465
|
+
/**
|
|
80466
|
+
* ThreadsStorageApi - axios parameter creator
|
|
80467
|
+
*/
|
|
80468
|
+
export declare const ThreadsStorageApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
80469
|
+
/**
|
|
80470
|
+
* Get Thread Storage Files endpoint
|
|
80471
|
+
* @summary Get Thread Storage Files
|
|
80472
|
+
* @param {string} threadId The thread identifier
|
|
80473
|
+
* @param {number} [page] Page number
|
|
80474
|
+
* @param {number} [pageSize] Number of items per page
|
|
80475
|
+
* @param {string} [orderBy] Field to order by
|
|
80476
|
+
* @param {string} [search] Search query
|
|
80477
|
+
* @param {*} [options] Override http request option.
|
|
80478
|
+
* @throws {RequiredError}
|
|
80479
|
+
*/
|
|
80480
|
+
getThreadStorageFiles: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80481
|
+
/**
|
|
80482
|
+
* Get Thread Storage Images endpoint
|
|
80483
|
+
* @summary Get Thread Storage Images
|
|
80484
|
+
* @param {string} threadId The thread identifier
|
|
80485
|
+
* @param {number} [page] Page number
|
|
80486
|
+
* @param {number} [pageSize] Number of items per page
|
|
80487
|
+
* @param {string} [orderBy] Field to order by
|
|
80488
|
+
* @param {string} [search] Search query
|
|
80489
|
+
* @param {*} [options] Override http request option.
|
|
80490
|
+
* @throws {RequiredError}
|
|
80491
|
+
*/
|
|
80492
|
+
getThreadStorageImages: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80493
|
+
/**
|
|
80494
|
+
* Get Thread Storage Videos endpoint
|
|
80495
|
+
* @summary Get Thread Storage Videos
|
|
80496
|
+
* @param {string} threadId The thread identifier
|
|
80497
|
+
* @param {number} [page] Page number
|
|
80498
|
+
* @param {number} [pageSize] Number of items per page
|
|
80499
|
+
* @param {string} [orderBy] Field to order by
|
|
80500
|
+
* @param {string} [search] Search query
|
|
80501
|
+
* @param {*} [options] Override http request option.
|
|
80502
|
+
* @throws {RequiredError}
|
|
80503
|
+
*/
|
|
80504
|
+
getThreadStorageVideos: (threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
80505
|
+
};
|
|
80506
|
+
/**
|
|
80507
|
+
* ThreadsStorageApi - functional programming interface
|
|
80508
|
+
*/
|
|
80509
|
+
export declare const ThreadsStorageApiFp: (configuration?: Configuration) => {
|
|
80510
|
+
/**
|
|
80511
|
+
* Get Thread Storage Files endpoint
|
|
80512
|
+
* @summary Get Thread Storage Files
|
|
80513
|
+
* @param {string} threadId The thread identifier
|
|
80514
|
+
* @param {number} [page] Page number
|
|
80515
|
+
* @param {number} [pageSize] Number of items per page
|
|
80516
|
+
* @param {string} [orderBy] Field to order by
|
|
80517
|
+
* @param {string} [search] Search query
|
|
80518
|
+
* @param {*} [options] Override http request option.
|
|
80519
|
+
* @throws {RequiredError}
|
|
80520
|
+
*/
|
|
80521
|
+
getThreadStorageFiles(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFiles200Response>>;
|
|
80522
|
+
/**
|
|
80523
|
+
* Get Thread Storage Images endpoint
|
|
80524
|
+
* @summary Get Thread Storage Images
|
|
80525
|
+
* @param {string} threadId The thread identifier
|
|
80526
|
+
* @param {number} [page] Page number
|
|
80527
|
+
* @param {number} [pageSize] Number of items per page
|
|
80528
|
+
* @param {string} [orderBy] Field to order by
|
|
80529
|
+
* @param {string} [search] Search query
|
|
80530
|
+
* @param {*} [options] Override http request option.
|
|
80531
|
+
* @throws {RequiredError}
|
|
80532
|
+
*/
|
|
80533
|
+
getThreadStorageImages(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPageImages200Response>>;
|
|
80534
|
+
/**
|
|
80535
|
+
* Get Thread Storage Videos endpoint
|
|
80536
|
+
* @summary Get Thread Storage Videos
|
|
80537
|
+
* @param {string} threadId The thread identifier
|
|
80538
|
+
* @param {number} [page] Page number
|
|
80539
|
+
* @param {number} [pageSize] Number of items per page
|
|
80540
|
+
* @param {string} [orderBy] Field to order by
|
|
80541
|
+
* @param {string} [search] Search query
|
|
80542
|
+
* @param {*} [options] Override http request option.
|
|
80543
|
+
* @throws {RequiredError}
|
|
80544
|
+
*/
|
|
80545
|
+
getThreadStorageVideos(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStreamVideos200Response>>;
|
|
80546
|
+
};
|
|
80547
|
+
/**
|
|
80548
|
+
* ThreadsStorageApi - factory interface
|
|
80549
|
+
*/
|
|
80550
|
+
export declare const ThreadsStorageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
80551
|
+
/**
|
|
80552
|
+
* Get Thread Storage Files endpoint
|
|
80553
|
+
* @summary Get Thread Storage Files
|
|
80554
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
80555
|
+
* @param {*} [options] Override http request option.
|
|
80556
|
+
* @throws {RequiredError}
|
|
80557
|
+
*/
|
|
80558
|
+
getThreadStorageFiles(requestParameters: ThreadsStorageApiGetThreadStorageFilesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFiles200Response>;
|
|
80559
|
+
/**
|
|
80560
|
+
* Get Thread Storage Images endpoint
|
|
80561
|
+
* @summary Get Thread Storage Images
|
|
80562
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
80563
|
+
* @param {*} [options] Override http request option.
|
|
80564
|
+
* @throws {RequiredError}
|
|
80565
|
+
*/
|
|
80566
|
+
getThreadStorageImages(requestParameters: ThreadsStorageApiGetThreadStorageImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPageImages200Response>;
|
|
80567
|
+
/**
|
|
80568
|
+
* Get Thread Storage Videos endpoint
|
|
80569
|
+
* @summary Get Thread Storage Videos
|
|
80570
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
80571
|
+
* @param {*} [options] Override http request option.
|
|
80572
|
+
* @throws {RequiredError}
|
|
80573
|
+
*/
|
|
80574
|
+
getThreadStorageVideos(requestParameters: ThreadsStorageApiGetThreadStorageVideosRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetStreamVideos200Response>;
|
|
80575
|
+
};
|
|
80576
|
+
/**
|
|
80577
|
+
* Request parameters for getThreadStorageFiles operation in ThreadsStorageApi.
|
|
80578
|
+
*/
|
|
80579
|
+
export interface ThreadsStorageApiGetThreadStorageFilesRequest {
|
|
80580
|
+
/**
|
|
80581
|
+
* The thread identifier
|
|
80582
|
+
*/
|
|
80583
|
+
readonly threadId: string;
|
|
80584
|
+
/**
|
|
80585
|
+
* Page number
|
|
80586
|
+
*/
|
|
80587
|
+
readonly page?: number;
|
|
80588
|
+
/**
|
|
80589
|
+
* Number of items per page
|
|
80590
|
+
*/
|
|
80591
|
+
readonly pageSize?: number;
|
|
80592
|
+
/**
|
|
80593
|
+
* Field to order by
|
|
80594
|
+
*/
|
|
80595
|
+
readonly orderBy?: string;
|
|
80596
|
+
/**
|
|
80597
|
+
* Search query
|
|
80598
|
+
*/
|
|
80599
|
+
readonly search?: string;
|
|
80600
|
+
}
|
|
80601
|
+
/**
|
|
80602
|
+
* Request parameters for getThreadStorageImages operation in ThreadsStorageApi.
|
|
80603
|
+
*/
|
|
80604
|
+
export interface ThreadsStorageApiGetThreadStorageImagesRequest {
|
|
80605
|
+
/**
|
|
80606
|
+
* The thread identifier
|
|
80607
|
+
*/
|
|
80608
|
+
readonly threadId: string;
|
|
80609
|
+
/**
|
|
80610
|
+
* Page number
|
|
80611
|
+
*/
|
|
80612
|
+
readonly page?: number;
|
|
80613
|
+
/**
|
|
80614
|
+
* Number of items per page
|
|
80615
|
+
*/
|
|
80616
|
+
readonly pageSize?: number;
|
|
80617
|
+
/**
|
|
80618
|
+
* Field to order by
|
|
80619
|
+
*/
|
|
80620
|
+
readonly orderBy?: string;
|
|
80621
|
+
/**
|
|
80622
|
+
* Search query
|
|
80623
|
+
*/
|
|
80624
|
+
readonly search?: string;
|
|
80625
|
+
}
|
|
80626
|
+
/**
|
|
80627
|
+
* Request parameters for getThreadStorageVideos operation in ThreadsStorageApi.
|
|
80628
|
+
*/
|
|
80629
|
+
export interface ThreadsStorageApiGetThreadStorageVideosRequest {
|
|
80630
|
+
/**
|
|
80631
|
+
* The thread identifier
|
|
80632
|
+
*/
|
|
80633
|
+
readonly threadId: string;
|
|
80634
|
+
/**
|
|
80635
|
+
* Page number
|
|
80636
|
+
*/
|
|
80637
|
+
readonly page?: number;
|
|
80638
|
+
/**
|
|
80639
|
+
* Number of items per page
|
|
80640
|
+
*/
|
|
80641
|
+
readonly pageSize?: number;
|
|
80642
|
+
/**
|
|
80643
|
+
* Field to order by
|
|
80644
|
+
*/
|
|
80645
|
+
readonly orderBy?: string;
|
|
80646
|
+
/**
|
|
80647
|
+
* Search query
|
|
80648
|
+
*/
|
|
80649
|
+
readonly search?: string;
|
|
80650
|
+
}
|
|
80651
|
+
/**
|
|
80652
|
+
* ThreadsStorageApi - object-oriented interface
|
|
80653
|
+
*/
|
|
80654
|
+
export declare class ThreadsStorageApi extends BaseAPI {
|
|
80655
|
+
/**
|
|
80656
|
+
* Get Thread Storage Files endpoint
|
|
80657
|
+
* @summary Get Thread Storage Files
|
|
80658
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
80659
|
+
* @param {*} [options] Override http request option.
|
|
80660
|
+
* @throws {RequiredError}
|
|
80661
|
+
*/
|
|
80662
|
+
getThreadStorageFiles(requestParameters: ThreadsStorageApiGetThreadStorageFilesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFiles200Response, any, {}>>;
|
|
80663
|
+
/**
|
|
80664
|
+
* Get Thread Storage Images endpoint
|
|
80665
|
+
* @summary Get Thread Storage Images
|
|
80666
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
80667
|
+
* @param {*} [options] Override http request option.
|
|
80668
|
+
* @throws {RequiredError}
|
|
80669
|
+
*/
|
|
80670
|
+
getThreadStorageImages(requestParameters: ThreadsStorageApiGetThreadStorageImagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPageImages200Response, any, {}>>;
|
|
80671
|
+
/**
|
|
80672
|
+
* Get Thread Storage Videos endpoint
|
|
80673
|
+
* @summary Get Thread Storage Videos
|
|
80674
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
80675
|
+
* @param {*} [options] Override http request option.
|
|
80676
|
+
* @throws {RequiredError}
|
|
80677
|
+
*/
|
|
80678
|
+
getThreadStorageVideos(requestParameters: ThreadsStorageApiGetThreadStorageVideosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStreamVideos200Response, any, {}>>;
|
|
80679
|
+
}
|
|
80465
80680
|
/**
|
|
80466
80681
|
* TiersApi - axios parameter creator
|
|
80467
80682
|
*/
|
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
|
|
@@ -105881,6 +105881,308 @@ class ThreadsMessagesVideosApi extends base_1.BaseAPI {
|
|
|
105881
105881
|
}
|
|
105882
105882
|
}
|
|
105883
105883
|
exports.ThreadsMessagesVideosApi = ThreadsMessagesVideosApi;
|
|
105884
|
+
/**
|
|
105885
|
+
* ThreadsStorageApi - axios parameter creator
|
|
105886
|
+
*/
|
|
105887
|
+
const ThreadsStorageApiAxiosParamCreator = function (configuration) {
|
|
105888
|
+
return {
|
|
105889
|
+
/**
|
|
105890
|
+
* Get Thread Storage Files endpoint
|
|
105891
|
+
* @summary Get Thread Storage Files
|
|
105892
|
+
* @param {string} threadId The thread identifier
|
|
105893
|
+
* @param {number} [page] Page number
|
|
105894
|
+
* @param {number} [pageSize] Number of items per page
|
|
105895
|
+
* @param {string} [orderBy] Field to order by
|
|
105896
|
+
* @param {string} [search] Search query
|
|
105897
|
+
* @param {*} [options] Override http request option.
|
|
105898
|
+
* @throws {RequiredError}
|
|
105899
|
+
*/
|
|
105900
|
+
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 = {}) {
|
|
105901
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
105902
|
+
(0, common_1.assertParamExists)('getThreadStorageFiles', 'threadId', threadId);
|
|
105903
|
+
const localVarPath = `/threads/{threadId}/storage/files`
|
|
105904
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
105905
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
105906
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
105907
|
+
let baseOptions;
|
|
105908
|
+
if (configuration) {
|
|
105909
|
+
baseOptions = configuration.baseOptions;
|
|
105910
|
+
}
|
|
105911
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
105912
|
+
const localVarHeaderParameter = {};
|
|
105913
|
+
const localVarQueryParameter = {};
|
|
105914
|
+
// authentication ApiKeyAuth required
|
|
105915
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
105916
|
+
// authentication OrganizationId required
|
|
105917
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
105918
|
+
if (page !== undefined) {
|
|
105919
|
+
localVarQueryParameter['page'] = page;
|
|
105920
|
+
}
|
|
105921
|
+
if (pageSize !== undefined) {
|
|
105922
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
105923
|
+
}
|
|
105924
|
+
if (orderBy !== undefined) {
|
|
105925
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
105926
|
+
}
|
|
105927
|
+
if (search !== undefined) {
|
|
105928
|
+
localVarQueryParameter['search'] = search;
|
|
105929
|
+
}
|
|
105930
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
105931
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
105932
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105933
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
105934
|
+
return {
|
|
105935
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
105936
|
+
options: localVarRequestOptions,
|
|
105937
|
+
};
|
|
105938
|
+
}),
|
|
105939
|
+
/**
|
|
105940
|
+
* Get Thread Storage Images endpoint
|
|
105941
|
+
* @summary Get Thread Storage Images
|
|
105942
|
+
* @param {string} threadId The thread identifier
|
|
105943
|
+
* @param {number} [page] Page number
|
|
105944
|
+
* @param {number} [pageSize] Number of items per page
|
|
105945
|
+
* @param {string} [orderBy] Field to order by
|
|
105946
|
+
* @param {string} [search] Search query
|
|
105947
|
+
* @param {*} [options] Override http request option.
|
|
105948
|
+
* @throws {RequiredError}
|
|
105949
|
+
*/
|
|
105950
|
+
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 = {}) {
|
|
105951
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
105952
|
+
(0, common_1.assertParamExists)('getThreadStorageImages', 'threadId', threadId);
|
|
105953
|
+
const localVarPath = `/threads/{threadId}/storage/images`
|
|
105954
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
105955
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
105956
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
105957
|
+
let baseOptions;
|
|
105958
|
+
if (configuration) {
|
|
105959
|
+
baseOptions = configuration.baseOptions;
|
|
105960
|
+
}
|
|
105961
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
105962
|
+
const localVarHeaderParameter = {};
|
|
105963
|
+
const localVarQueryParameter = {};
|
|
105964
|
+
// authentication ApiKeyAuth required
|
|
105965
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
105966
|
+
// authentication OrganizationId required
|
|
105967
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
105968
|
+
if (page !== undefined) {
|
|
105969
|
+
localVarQueryParameter['page'] = page;
|
|
105970
|
+
}
|
|
105971
|
+
if (pageSize !== undefined) {
|
|
105972
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
105973
|
+
}
|
|
105974
|
+
if (orderBy !== undefined) {
|
|
105975
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
105976
|
+
}
|
|
105977
|
+
if (search !== undefined) {
|
|
105978
|
+
localVarQueryParameter['search'] = search;
|
|
105979
|
+
}
|
|
105980
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
105981
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
105982
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
105983
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
105984
|
+
return {
|
|
105985
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
105986
|
+
options: localVarRequestOptions,
|
|
105987
|
+
};
|
|
105988
|
+
}),
|
|
105989
|
+
/**
|
|
105990
|
+
* Get Thread Storage Videos endpoint
|
|
105991
|
+
* @summary Get Thread Storage Videos
|
|
105992
|
+
* @param {string} threadId The thread identifier
|
|
105993
|
+
* @param {number} [page] Page number
|
|
105994
|
+
* @param {number} [pageSize] Number of items per page
|
|
105995
|
+
* @param {string} [orderBy] Field to order by
|
|
105996
|
+
* @param {string} [search] Search query
|
|
105997
|
+
* @param {*} [options] Override http request option.
|
|
105998
|
+
* @throws {RequiredError}
|
|
105999
|
+
*/
|
|
106000
|
+
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 = {}) {
|
|
106001
|
+
// verify required parameter 'threadId' is not null or undefined
|
|
106002
|
+
(0, common_1.assertParamExists)('getThreadStorageVideos', 'threadId', threadId);
|
|
106003
|
+
const localVarPath = `/threads/{threadId}/storage/videos`
|
|
106004
|
+
.replace(`{${"threadId"}}`, encodeURIComponent(String(threadId)));
|
|
106005
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106006
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
106007
|
+
let baseOptions;
|
|
106008
|
+
if (configuration) {
|
|
106009
|
+
baseOptions = configuration.baseOptions;
|
|
106010
|
+
}
|
|
106011
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
106012
|
+
const localVarHeaderParameter = {};
|
|
106013
|
+
const localVarQueryParameter = {};
|
|
106014
|
+
// authentication ApiKeyAuth required
|
|
106015
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
106016
|
+
// authentication OrganizationId required
|
|
106017
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
106018
|
+
if (page !== undefined) {
|
|
106019
|
+
localVarQueryParameter['page'] = page;
|
|
106020
|
+
}
|
|
106021
|
+
if (pageSize !== undefined) {
|
|
106022
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
106023
|
+
}
|
|
106024
|
+
if (orderBy !== undefined) {
|
|
106025
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
106026
|
+
}
|
|
106027
|
+
if (search !== undefined) {
|
|
106028
|
+
localVarQueryParameter['search'] = search;
|
|
106029
|
+
}
|
|
106030
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
106031
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
106032
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
106033
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
106034
|
+
return {
|
|
106035
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
106036
|
+
options: localVarRequestOptions,
|
|
106037
|
+
};
|
|
106038
|
+
}),
|
|
106039
|
+
};
|
|
106040
|
+
};
|
|
106041
|
+
exports.ThreadsStorageApiAxiosParamCreator = ThreadsStorageApiAxiosParamCreator;
|
|
106042
|
+
/**
|
|
106043
|
+
* ThreadsStorageApi - functional programming interface
|
|
106044
|
+
*/
|
|
106045
|
+
const ThreadsStorageApiFp = function (configuration) {
|
|
106046
|
+
const localVarAxiosParamCreator = (0, exports.ThreadsStorageApiAxiosParamCreator)(configuration);
|
|
106047
|
+
return {
|
|
106048
|
+
/**
|
|
106049
|
+
* Get Thread Storage Files endpoint
|
|
106050
|
+
* @summary Get Thread Storage Files
|
|
106051
|
+
* @param {string} threadId The thread identifier
|
|
106052
|
+
* @param {number} [page] Page number
|
|
106053
|
+
* @param {number} [pageSize] Number of items per page
|
|
106054
|
+
* @param {string} [orderBy] Field to order by
|
|
106055
|
+
* @param {string} [search] Search query
|
|
106056
|
+
* @param {*} [options] Override http request option.
|
|
106057
|
+
* @throws {RequiredError}
|
|
106058
|
+
*/
|
|
106059
|
+
getThreadStorageFiles(threadId, page, pageSize, orderBy, search, options) {
|
|
106060
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106061
|
+
var _a, _b, _c;
|
|
106062
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageFiles(threadId, page, pageSize, orderBy, search, options);
|
|
106063
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106064
|
+
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;
|
|
106065
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106066
|
+
});
|
|
106067
|
+
},
|
|
106068
|
+
/**
|
|
106069
|
+
* Get Thread Storage Images endpoint
|
|
106070
|
+
* @summary Get Thread Storage Images
|
|
106071
|
+
* @param {string} threadId The thread identifier
|
|
106072
|
+
* @param {number} [page] Page number
|
|
106073
|
+
* @param {number} [pageSize] Number of items per page
|
|
106074
|
+
* @param {string} [orderBy] Field to order by
|
|
106075
|
+
* @param {string} [search] Search query
|
|
106076
|
+
* @param {*} [options] Override http request option.
|
|
106077
|
+
* @throws {RequiredError}
|
|
106078
|
+
*/
|
|
106079
|
+
getThreadStorageImages(threadId, page, pageSize, orderBy, search, options) {
|
|
106080
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106081
|
+
var _a, _b, _c;
|
|
106082
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageImages(threadId, page, pageSize, orderBy, search, options);
|
|
106083
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106084
|
+
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;
|
|
106085
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106086
|
+
});
|
|
106087
|
+
},
|
|
106088
|
+
/**
|
|
106089
|
+
* Get Thread Storage Videos endpoint
|
|
106090
|
+
* @summary Get Thread Storage Videos
|
|
106091
|
+
* @param {string} threadId The thread identifier
|
|
106092
|
+
* @param {number} [page] Page number
|
|
106093
|
+
* @param {number} [pageSize] Number of items per page
|
|
106094
|
+
* @param {string} [orderBy] Field to order by
|
|
106095
|
+
* @param {string} [search] Search query
|
|
106096
|
+
* @param {*} [options] Override http request option.
|
|
106097
|
+
* @throws {RequiredError}
|
|
106098
|
+
*/
|
|
106099
|
+
getThreadStorageVideos(threadId, page, pageSize, orderBy, search, options) {
|
|
106100
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
106101
|
+
var _a, _b, _c;
|
|
106102
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getThreadStorageVideos(threadId, page, pageSize, orderBy, search, options);
|
|
106103
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
106104
|
+
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;
|
|
106105
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
106106
|
+
});
|
|
106107
|
+
},
|
|
106108
|
+
};
|
|
106109
|
+
};
|
|
106110
|
+
exports.ThreadsStorageApiFp = ThreadsStorageApiFp;
|
|
106111
|
+
/**
|
|
106112
|
+
* ThreadsStorageApi - factory interface
|
|
106113
|
+
*/
|
|
106114
|
+
const ThreadsStorageApiFactory = function (configuration, basePath, axios) {
|
|
106115
|
+
const localVarFp = (0, exports.ThreadsStorageApiFp)(configuration);
|
|
106116
|
+
return {
|
|
106117
|
+
/**
|
|
106118
|
+
* Get Thread Storage Files endpoint
|
|
106119
|
+
* @summary Get Thread Storage Files
|
|
106120
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
106121
|
+
* @param {*} [options] Override http request option.
|
|
106122
|
+
* @throws {RequiredError}
|
|
106123
|
+
*/
|
|
106124
|
+
getThreadStorageFiles(requestParameters, options) {
|
|
106125
|
+
return localVarFp.getThreadStorageFiles(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106126
|
+
},
|
|
106127
|
+
/**
|
|
106128
|
+
* Get Thread Storage Images endpoint
|
|
106129
|
+
* @summary Get Thread Storage Images
|
|
106130
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
106131
|
+
* @param {*} [options] Override http request option.
|
|
106132
|
+
* @throws {RequiredError}
|
|
106133
|
+
*/
|
|
106134
|
+
getThreadStorageImages(requestParameters, options) {
|
|
106135
|
+
return localVarFp.getThreadStorageImages(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106136
|
+
},
|
|
106137
|
+
/**
|
|
106138
|
+
* Get Thread Storage Videos endpoint
|
|
106139
|
+
* @summary Get Thread Storage Videos
|
|
106140
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
106141
|
+
* @param {*} [options] Override http request option.
|
|
106142
|
+
* @throws {RequiredError}
|
|
106143
|
+
*/
|
|
106144
|
+
getThreadStorageVideos(requestParameters, options) {
|
|
106145
|
+
return localVarFp.getThreadStorageVideos(requestParameters.threadId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
106146
|
+
},
|
|
106147
|
+
};
|
|
106148
|
+
};
|
|
106149
|
+
exports.ThreadsStorageApiFactory = ThreadsStorageApiFactory;
|
|
106150
|
+
/**
|
|
106151
|
+
* ThreadsStorageApi - object-oriented interface
|
|
106152
|
+
*/
|
|
106153
|
+
class ThreadsStorageApi extends base_1.BaseAPI {
|
|
106154
|
+
/**
|
|
106155
|
+
* Get Thread Storage Files endpoint
|
|
106156
|
+
* @summary Get Thread Storage Files
|
|
106157
|
+
* @param {ThreadsStorageApiGetThreadStorageFilesRequest} requestParameters Request parameters.
|
|
106158
|
+
* @param {*} [options] Override http request option.
|
|
106159
|
+
* @throws {RequiredError}
|
|
106160
|
+
*/
|
|
106161
|
+
getThreadStorageFiles(requestParameters, options) {
|
|
106162
|
+
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));
|
|
106163
|
+
}
|
|
106164
|
+
/**
|
|
106165
|
+
* Get Thread Storage Images endpoint
|
|
106166
|
+
* @summary Get Thread Storage Images
|
|
106167
|
+
* @param {ThreadsStorageApiGetThreadStorageImagesRequest} requestParameters Request parameters.
|
|
106168
|
+
* @param {*} [options] Override http request option.
|
|
106169
|
+
* @throws {RequiredError}
|
|
106170
|
+
*/
|
|
106171
|
+
getThreadStorageImages(requestParameters, options) {
|
|
106172
|
+
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));
|
|
106173
|
+
}
|
|
106174
|
+
/**
|
|
106175
|
+
* Get Thread Storage Videos endpoint
|
|
106176
|
+
* @summary Get Thread Storage Videos
|
|
106177
|
+
* @param {ThreadsStorageApiGetThreadStorageVideosRequest} requestParameters Request parameters.
|
|
106178
|
+
* @param {*} [options] Override http request option.
|
|
106179
|
+
* @throws {RequiredError}
|
|
106180
|
+
*/
|
|
106181
|
+
getThreadStorageVideos(requestParameters, options) {
|
|
106182
|
+
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));
|
|
106183
|
+
}
|
|
106184
|
+
}
|
|
106185
|
+
exports.ThreadsStorageApi = ThreadsStorageApi;
|
|
105884
106186
|
/**
|
|
105885
106187
|
* TiersApi - axios parameter creator
|
|
105886
106188
|
*/
|
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
|
/**
|