@connectedxm/admin-sdk 7.0.0 → 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/dist/api.d.ts CHANGED
@@ -8670,6 +8670,15 @@ export interface GetTaxLogs200Response {
8670
8670
  export declare enum GetTaxLogs200ResponseStatusEnum {
8671
8671
  Ok = "ok"
8672
8672
  }
8673
+ export interface GetThreadAccounts200Response {
8674
+ 'status': GetThreadAccounts200ResponseStatusEnum;
8675
+ 'message': string;
8676
+ 'data': Array<ThreadAccount>;
8677
+ 'count'?: number;
8678
+ }
8679
+ export declare enum GetThreadAccounts200ResponseStatusEnum {
8680
+ Ok = "ok"
8681
+ }
8673
8682
  export interface GetThreadMessageFiles200Response {
8674
8683
  'status': GetThreadMessageFiles200ResponseStatusEnum;
8675
8684
  'message': string;
@@ -79337,7 +79346,7 @@ export declare const ThreadsAccountsApiFp: (configuration?: Configuration) => {
79337
79346
  * @param {*} [options] Override http request option.
79338
79347
  * @throws {RequiredError}
79339
79348
  */
79340
- getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
79349
+ getThreadAccounts(threadId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetThreadAccounts200Response>>;
79341
79350
  /**
79342
79351
  * Update Thread Account endpoint
79343
79352
  * @summary Update Thread Account
@@ -79368,7 +79377,7 @@ export declare const ThreadsAccountsApiFactory: (configuration?: Configuration,
79368
79377
  * @param {*} [options] Override http request option.
79369
79378
  * @throws {RequiredError}
79370
79379
  */
79371
- getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
79380
+ getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetThreadAccounts200Response>;
79372
79381
  /**
79373
79382
  * Update Thread Account endpoint
79374
79383
  * @summary Update Thread Account
@@ -79449,7 +79458,7 @@ export declare class ThreadsAccountsApi extends BaseAPI {
79449
79458
  * @param {*} [options] Override http request option.
79450
79459
  * @throws {RequiredError}
79451
79460
  */
79452
- getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
79461
+ getThreadAccounts(requestParameters: ThreadsAccountsApiGetThreadAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadAccounts200Response, any, {}>>;
79453
79462
  /**
79454
79463
  * Update Thread Account endpoint
79455
79464
  * @summary Update Thread Account
@@ -80453,6 +80462,221 @@ export declare class ThreadsMessagesVideosApi extends BaseAPI {
80453
80462
  */
80454
80463
  getThreadMessageVideos(requestParameters: ThreadsMessagesVideosApiGetThreadMessageVideosRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetThreadMessageVideos200Response, any, {}>>;
80455
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
+ }
80456
80680
  /**
80457
80681
  * TiersApi - axios parameter creator
80458
80682
  */