@seekora-ai/admin-api 1.1.13 → 1.1.15

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
@@ -6751,6 +6751,12 @@ export interface DataTypesBillingAlertRequest {
6751
6751
  * @memberof DataTypesBillingAlertRequest
6752
6752
  */
6753
6753
  'threshold_value'?: number;
6754
+ /**
6755
+ * Alternative to store_id - will be converted to store_id
6756
+ * @type {string}
6757
+ * @memberof DataTypesBillingAlertRequest
6758
+ */
6759
+ 'xstoreid'?: string;
6754
6760
  }
6755
6761
  export declare const DataTypesBillingAlertRequestAlertTypeEnum: {
6756
6762
  readonly LowBalance: "low_balance";
@@ -11681,6 +11687,31 @@ export interface DataTypesLimitResponse {
11681
11687
  */
11682
11688
  'status'?: number;
11683
11689
  }
11690
+ /**
11691
+ *
11692
+ * @export
11693
+ * @interface DataTypesLimitsListResponse
11694
+ */
11695
+ export interface DataTypesLimitsListResponse {
11696
+ /**
11697
+ *
11698
+ * @type {Array<DataTypesLimit>}
11699
+ * @memberof DataTypesLimitsListResponse
11700
+ */
11701
+ 'data'?: Array<DataTypesLimit>;
11702
+ /**
11703
+ *
11704
+ * @type {string}
11705
+ * @memberof DataTypesLimitsListResponse
11706
+ */
11707
+ 'message'?: string;
11708
+ /**
11709
+ *
11710
+ * @type {number}
11711
+ * @memberof DataTypesLimitsListResponse
11712
+ */
11713
+ 'status'?: number;
11714
+ }
11684
11715
  /**
11685
11716
  *
11686
11717
  * @export
@@ -12510,6 +12541,31 @@ export interface DataTypesNewsLetterRequestResponse {
12510
12541
  */
12511
12542
  'status'?: number;
12512
12543
  }
12544
+ /**
12545
+ *
12546
+ * @export
12547
+ * @interface DataTypesNewsLetterRequestsListResponse
12548
+ */
12549
+ export interface DataTypesNewsLetterRequestsListResponse {
12550
+ /**
12551
+ *
12552
+ * @type {Array<DataTypesNewsLetterRequest>}
12553
+ * @memberof DataTypesNewsLetterRequestsListResponse
12554
+ */
12555
+ 'data'?: Array<DataTypesNewsLetterRequest>;
12556
+ /**
12557
+ *
12558
+ * @type {string}
12559
+ * @memberof DataTypesNewsLetterRequestsListResponse
12560
+ */
12561
+ 'message'?: string;
12562
+ /**
12563
+ *
12564
+ * @type {number}
12565
+ * @memberof DataTypesNewsLetterRequestsListResponse
12566
+ */
12567
+ 'status'?: number;
12568
+ }
12513
12569
  /**
12514
12570
  *
12515
12571
  * @export
@@ -12548,6 +12604,109 @@ export interface DataTypesOTPPayload {
12548
12604
  */
12549
12605
  'otp'?: string;
12550
12606
  }
12607
+ /**
12608
+ *
12609
+ * @export
12610
+ * @interface DataTypesOfficialSearchResponse
12611
+ */
12612
+ export interface DataTypesOfficialSearchResponse {
12613
+ /**
12614
+ *
12615
+ * @type {any}
12616
+ * @memberof DataTypesOfficialSearchResponse
12617
+ */
12618
+ 'facets'?: any;
12619
+ /**
12620
+ *
12621
+ * @type {number}
12622
+ * @memberof DataTypesOfficialSearchResponse
12623
+ */
12624
+ 'page'?: number;
12625
+ /**
12626
+ *
12627
+ * @type {number}
12628
+ * @memberof DataTypesOfficialSearchResponse
12629
+ */
12630
+ 'per_page'?: number;
12631
+ /**
12632
+ *
12633
+ * @type {Array<DataTypesOfficialSearchResult>}
12634
+ * @memberof DataTypesOfficialSearchResponse
12635
+ */
12636
+ 'results'?: Array<DataTypesOfficialSearchResult>;
12637
+ /**
12638
+ *
12639
+ * @type {Array<DataTypesAutocompleteSuggestion>}
12640
+ * @memberof DataTypesOfficialSearchResponse
12641
+ */
12642
+ 'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
12643
+ /**
12644
+ *
12645
+ * @type {number}
12646
+ * @memberof DataTypesOfficialSearchResponse
12647
+ */
12648
+ 'total_results'?: number;
12649
+ }
12650
+ /**
12651
+ *
12652
+ * @export
12653
+ * @interface DataTypesOfficialSearchResponseWrapper
12654
+ */
12655
+ export interface DataTypesOfficialSearchResponseWrapper {
12656
+ /**
12657
+ *
12658
+ * @type {DataTypesOfficialSearchResponse}
12659
+ * @memberof DataTypesOfficialSearchResponseWrapper
12660
+ */
12661
+ 'data'?: DataTypesOfficialSearchResponse;
12662
+ /**
12663
+ *
12664
+ * @type {string}
12665
+ * @memberof DataTypesOfficialSearchResponseWrapper
12666
+ */
12667
+ 'message'?: string;
12668
+ /**
12669
+ *
12670
+ * @type {number}
12671
+ * @memberof DataTypesOfficialSearchResponseWrapper
12672
+ */
12673
+ 'status'?: number;
12674
+ }
12675
+ /**
12676
+ *
12677
+ * @export
12678
+ * @interface DataTypesOfficialSearchResult
12679
+ */
12680
+ export interface DataTypesOfficialSearchResult {
12681
+ /**
12682
+ *
12683
+ * @type {{ [key: string]: any; }}
12684
+ * @memberof DataTypesOfficialSearchResult
12685
+ */
12686
+ 'document'?: {
12687
+ [key: string]: any;
12688
+ };
12689
+ /**
12690
+ *
12691
+ * @type {{ [key: string]: any; }}
12692
+ * @memberof DataTypesOfficialSearchResult
12693
+ */
12694
+ 'highlight'?: {
12695
+ [key: string]: any;
12696
+ };
12697
+ /**
12698
+ *
12699
+ * @type {string}
12700
+ * @memberof DataTypesOfficialSearchResult
12701
+ */
12702
+ 'id'?: string;
12703
+ /**
12704
+ *
12705
+ * @type {number}
12706
+ * @memberof DataTypesOfficialSearchResult
12707
+ */
12708
+ 'score'?: number;
12709
+ }
12551
12710
  /**
12552
12711
  *
12553
12712
  * @export
@@ -13565,6 +13724,31 @@ export interface DataTypesOrganizationTaxDetails {
13565
13724
  [key: string]: any;
13566
13725
  };
13567
13726
  }
13727
+ /**
13728
+ *
13729
+ * @export
13730
+ * @interface DataTypesOrganizationsListResponse
13731
+ */
13732
+ export interface DataTypesOrganizationsListResponse {
13733
+ /**
13734
+ *
13735
+ * @type {Array<DataTypesOrganization>}
13736
+ * @memberof DataTypesOrganizationsListResponse
13737
+ */
13738
+ 'data'?: Array<DataTypesOrganization>;
13739
+ /**
13740
+ *
13741
+ * @type {string}
13742
+ * @memberof DataTypesOrganizationsListResponse
13743
+ */
13744
+ 'message'?: string;
13745
+ /**
13746
+ *
13747
+ * @type {number}
13748
+ * @memberof DataTypesOrganizationsListResponse
13749
+ */
13750
+ 'status'?: number;
13751
+ }
13568
13752
  /**
13569
13753
  * Defines what happens when a rule is triggered (promote/hide documents, apply filters, etc.)
13570
13754
  * @export
@@ -14077,6 +14261,31 @@ export interface DataTypesPaymentStatusPollResponse {
14077
14261
  */
14078
14262
  'updated_at'?: string;
14079
14263
  }
14264
+ /**
14265
+ *
14266
+ * @export
14267
+ * @interface DataTypesPaymentsListResponse
14268
+ */
14269
+ export interface DataTypesPaymentsListResponse {
14270
+ /**
14271
+ *
14272
+ * @type {Array<DataTypesPayment>}
14273
+ * @memberof DataTypesPaymentsListResponse
14274
+ */
14275
+ 'data'?: Array<DataTypesPayment>;
14276
+ /**
14277
+ *
14278
+ * @type {string}
14279
+ * @memberof DataTypesPaymentsListResponse
14280
+ */
14281
+ 'message'?: string;
14282
+ /**
14283
+ *
14284
+ * @type {number}
14285
+ * @memberof DataTypesPaymentsListResponse
14286
+ */
14287
+ 'status'?: number;
14288
+ }
14080
14289
  /**
14081
14290
  *
14082
14291
  * @export
@@ -14198,6 +14407,31 @@ export interface DataTypesPlanResponse {
14198
14407
  */
14199
14408
  'status'?: number;
14200
14409
  }
14410
+ /**
14411
+ *
14412
+ * @export
14413
+ * @interface DataTypesPlansListResponse
14414
+ */
14415
+ export interface DataTypesPlansListResponse {
14416
+ /**
14417
+ *
14418
+ * @type {Array<DataTypesPlan>}
14419
+ * @memberof DataTypesPlansListResponse
14420
+ */
14421
+ 'data'?: Array<DataTypesPlan>;
14422
+ /**
14423
+ *
14424
+ * @type {string}
14425
+ * @memberof DataTypesPlansListResponse
14426
+ */
14427
+ 'message'?: string;
14428
+ /**
14429
+ *
14430
+ * @type {number}
14431
+ * @memberof DataTypesPlansListResponse
14432
+ */
14433
+ 'status'?: number;
14434
+ }
14201
14435
  /**
14202
14436
  *
14203
14437
  * @export
@@ -14513,6 +14747,91 @@ export interface DataTypesProfileResponseWrapper {
14513
14747
  */
14514
14748
  'status'?: number;
14515
14749
  }
14750
+ /**
14751
+ *
14752
+ * @export
14753
+ * @interface DataTypesPublicSearchRequest
14754
+ */
14755
+ export interface DataTypesPublicSearchRequest {
14756
+ /**
14757
+ *
14758
+ * @type {Array<string>}
14759
+ * @memberof DataTypesPublicSearchRequest
14760
+ */
14761
+ 'analytics_tags'?: Array<string>;
14762
+ /**
14763
+ *
14764
+ * @type {string}
14765
+ * @memberof DataTypesPublicSearchRequest
14766
+ */
14767
+ 'facet_by'?: string;
14768
+ /**
14769
+ *
14770
+ * @type {string}
14771
+ * @memberof DataTypesPublicSearchRequest
14772
+ */
14773
+ 'filter'?: string;
14774
+ /**
14775
+ *
14776
+ * @type {boolean}
14777
+ * @memberof DataTypesPublicSearchRequest
14778
+ */
14779
+ 'include_suggestions'?: boolean;
14780
+ /**
14781
+ *
14782
+ * @type {number}
14783
+ * @memberof DataTypesPublicSearchRequest
14784
+ */
14785
+ 'max_facet_values'?: number;
14786
+ /**
14787
+ *
14788
+ * @type {number}
14789
+ * @memberof DataTypesPublicSearchRequest
14790
+ */
14791
+ 'page'?: number;
14792
+ /**
14793
+ *
14794
+ * @type {number}
14795
+ * @memberof DataTypesPublicSearchRequest
14796
+ */
14797
+ 'per_page'?: number;
14798
+ /**
14799
+ *
14800
+ * @type {string}
14801
+ * @memberof DataTypesPublicSearchRequest
14802
+ */
14803
+ 'q': string;
14804
+ /**
14805
+ *
14806
+ * @type {string}
14807
+ * @memberof DataTypesPublicSearchRequest
14808
+ */
14809
+ 'sort'?: string;
14810
+ /**
14811
+ * IDs of stopword sets to use
14812
+ * @type {Array<string>}
14813
+ * @memberof DataTypesPublicSearchRequest
14814
+ */
14815
+ 'stopword_sets'?: Array<string>;
14816
+ /**
14817
+ *
14818
+ * @type {number}
14819
+ * @memberof DataTypesPublicSearchRequest
14820
+ */
14821
+ 'suggestions_limit'?: number;
14822
+ /**
14823
+ * IDs of synonym sets to use
14824
+ * @type {Array<string>}
14825
+ * @memberof DataTypesPublicSearchRequest
14826
+ */
14827
+ 'synonym_sets'?: Array<string>;
14828
+ /**
14829
+ * If true, returns only display fields instead of full document (used in public API only)
14830
+ * @type {boolean}
14831
+ * @memberof DataTypesPublicSearchRequest
14832
+ */
14833
+ 'widget_mode'?: boolean;
14834
+ }
14516
14835
  /**
14517
14836
  *
14518
14837
  * @export
@@ -15529,6 +15848,31 @@ export interface DataTypesRoleRightsListResponse {
15529
15848
  */
15530
15849
  'status'?: number;
15531
15850
  }
15851
+ /**
15852
+ *
15853
+ * @export
15854
+ * @interface DataTypesRolesListResponse
15855
+ */
15856
+ export interface DataTypesRolesListResponse {
15857
+ /**
15858
+ *
15859
+ * @type {Array<DataTypesRole>}
15860
+ * @memberof DataTypesRolesListResponse
15861
+ */
15862
+ 'data'?: Array<DataTypesRole>;
15863
+ /**
15864
+ *
15865
+ * @type {string}
15866
+ * @memberof DataTypesRolesListResponse
15867
+ */
15868
+ 'message'?: string;
15869
+ /**
15870
+ *
15871
+ * @type {number}
15872
+ * @memberof DataTypesRolesListResponse
15873
+ */
15874
+ 'status'?: number;
15875
+ }
15532
15876
  /**
15533
15877
  * Defines the conditions that trigger a rule (query matching, filters, etc.)
15534
15878
  * @export
@@ -16088,6 +16432,31 @@ export interface DataTypesServiceRequestResponse {
16088
16432
  */
16089
16433
  'status'?: number;
16090
16434
  }
16435
+ /**
16436
+ *
16437
+ * @export
16438
+ * @interface DataTypesServiceRequestsListResponse
16439
+ */
16440
+ export interface DataTypesServiceRequestsListResponse {
16441
+ /**
16442
+ *
16443
+ * @type {Array<DataTypesServiceRequest>}
16444
+ * @memberof DataTypesServiceRequestsListResponse
16445
+ */
16446
+ 'data'?: Array<DataTypesServiceRequest>;
16447
+ /**
16448
+ *
16449
+ * @type {string}
16450
+ * @memberof DataTypesServiceRequestsListResponse
16451
+ */
16452
+ 'message'?: string;
16453
+ /**
16454
+ *
16455
+ * @type {number}
16456
+ * @memberof DataTypesServiceRequestsListResponse
16457
+ */
16458
+ 'status'?: number;
16459
+ }
16091
16460
  /**
16092
16461
  *
16093
16462
  * @export
@@ -16954,6 +17323,31 @@ export interface DataTypesSubscriptionResponse {
16954
17323
  */
16955
17324
  'status'?: number;
16956
17325
  }
17326
+ /**
17327
+ *
17328
+ * @export
17329
+ * @interface DataTypesSubscriptionsListResponse
17330
+ */
17331
+ export interface DataTypesSubscriptionsListResponse {
17332
+ /**
17333
+ *
17334
+ * @type {Array<DataTypesSubscription>}
17335
+ * @memberof DataTypesSubscriptionsListResponse
17336
+ */
17337
+ 'data'?: Array<DataTypesSubscription>;
17338
+ /**
17339
+ *
17340
+ * @type {string}
17341
+ * @memberof DataTypesSubscriptionsListResponse
17342
+ */
17343
+ 'message'?: string;
17344
+ /**
17345
+ *
17346
+ * @type {number}
17347
+ * @memberof DataTypesSubscriptionsListResponse
17348
+ */
17349
+ 'status'?: number;
17350
+ }
16957
17351
  /**
16958
17352
  *
16959
17353
  * @export
@@ -27974,6 +28368,13 @@ export declare const LimitsApiAxiosParamCreator: (configuration?: Configuration)
27974
28368
  * @throws {RequiredError}
27975
28369
  */
27976
28370
  miscLimitsChangeStatusLimitIDIsActivePut: (limitID: number, isActive: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28371
+ /**
28372
+ * Fetches list of all limits
28373
+ * @summary Fetches list of all limits
28374
+ * @param {*} [options] Override http request option.
28375
+ * @throws {RequiredError}
28376
+ */
28377
+ miscLimitsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27977
28378
  /**
27978
28379
  * Fetches limit by id
27979
28380
  * @summary Fetches limit by id
@@ -28014,6 +28415,13 @@ export declare const LimitsApiFp: (configuration?: Configuration) => {
28014
28415
  * @throws {RequiredError}
28015
28416
  */
28016
28417
  miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
28418
+ /**
28419
+ * Fetches list of all limits
28420
+ * @summary Fetches list of all limits
28421
+ * @param {*} [options] Override http request option.
28422
+ * @throws {RequiredError}
28423
+ */
28424
+ miscLimitsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesLimitsListResponse>>;
28017
28425
  /**
28018
28426
  * Fetches limit by id
28019
28427
  * @summary Fetches limit by id
@@ -28054,6 +28462,13 @@ export declare const LimitsApiFactory: (configuration?: Configuration, basePath?
28054
28462
  * @throws {RequiredError}
28055
28463
  */
28056
28464
  miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
28465
+ /**
28466
+ * Fetches list of all limits
28467
+ * @summary Fetches list of all limits
28468
+ * @param {*} [options] Override http request option.
28469
+ * @throws {RequiredError}
28470
+ */
28471
+ miscLimitsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesLimitsListResponse>;
28057
28472
  /**
28058
28473
  * Fetches limit by id
28059
28474
  * @summary Fetches limit by id
@@ -28097,6 +28512,14 @@ export declare class LimitsApi extends BaseAPI {
28097
28512
  * @memberof LimitsApi
28098
28513
  */
28099
28514
  miscLimitsChangeStatusLimitIDIsActivePut(limitID: number, isActive: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
28515
+ /**
28516
+ * Fetches list of all limits
28517
+ * @summary Fetches list of all limits
28518
+ * @param {*} [options] Override http request option.
28519
+ * @throws {RequiredError}
28520
+ * @memberof LimitsApi
28521
+ */
28522
+ miscLimitsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesLimitsListResponse, any, {}>>;
28100
28523
  /**
28101
28524
  * Fetches limit by id
28102
28525
  * @summary Fetches limit by id
@@ -28131,6 +28554,13 @@ export declare class LimitsApi extends BaseAPI {
28131
28554
  * @export
28132
28555
  */
28133
28556
  export declare const MenusApiAxiosParamCreator: (configuration?: Configuration) => {
28557
+ /**
28558
+ * Fetches list of all menus
28559
+ * @summary Fetches list of all menus
28560
+ * @param {*} [options] Override http request option.
28561
+ * @throws {RequiredError}
28562
+ */
28563
+ miscMenusGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28134
28564
  /**
28135
28565
  * Deletes a menu from the system by ID.
28136
28566
  * @summary Delete a menu
@@ -28249,6 +28679,13 @@ export declare const MenusApiAxiosParamCreator: (configuration?: Configuration)
28249
28679
  * @export
28250
28680
  */
28251
28681
  export declare const MenusApiFp: (configuration?: Configuration) => {
28682
+ /**
28683
+ * Fetches list of all menus
28684
+ * @summary Fetches list of all menus
28685
+ * @param {*} [options] Override http request option.
28686
+ * @throws {RequiredError}
28687
+ */
28688
+ miscMenusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesMenusListResponse>>;
28252
28689
  /**
28253
28690
  * Deletes a menu from the system by ID.
28254
28691
  * @summary Delete a menu
@@ -28367,6 +28804,13 @@ export declare const MenusApiFp: (configuration?: Configuration) => {
28367
28804
  * @export
28368
28805
  */
28369
28806
  export declare const MenusApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
28807
+ /**
28808
+ * Fetches list of all menus
28809
+ * @summary Fetches list of all menus
28810
+ * @param {*} [options] Override http request option.
28811
+ * @throws {RequiredError}
28812
+ */
28813
+ miscMenusGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesMenusListResponse>;
28370
28814
  /**
28371
28815
  * Deletes a menu from the system by ID.
28372
28816
  * @summary Delete a menu
@@ -28487,6 +28931,14 @@ export declare const MenusApiFactory: (configuration?: Configuration, basePath?:
28487
28931
  * @extends {BaseAPI}
28488
28932
  */
28489
28933
  export declare class MenusApi extends BaseAPI {
28934
+ /**
28935
+ * Fetches list of all menus
28936
+ * @summary Fetches list of all menus
28937
+ * @param {*} [options] Override http request option.
28938
+ * @throws {RequiredError}
28939
+ * @memberof MenusApi
28940
+ */
28941
+ miscMenusGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenusListResponse, any, {}>>;
28490
28942
  /**
28491
28943
  * Deletes a menu from the system by ID.
28492
28944
  * @summary Delete a menu
@@ -29037,6 +29489,13 @@ export declare class MongoDbApi extends BaseAPI {
29037
29489
  * @export
29038
29490
  */
29039
29491
  export declare const NewsLettersApiAxiosParamCreator: (configuration?: Configuration) => {
29492
+ /**
29493
+ * Fetches list of all NewsLetterSubscription
29494
+ * @summary Fetches list of all NewsLetterSubscription
29495
+ * @param {*} [options] Override http request option.
29496
+ * @throws {RequiredError}
29497
+ */
29498
+ miscNewsLettersGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29040
29499
  /**
29041
29500
  * Fetches NewsLetterSubscription by id
29042
29501
  * @summary Fetches NewsLetterSubscription by id
@@ -29077,6 +29536,13 @@ export declare const NewsLettersApiAxiosParamCreator: (configuration?: Configura
29077
29536
  * @export
29078
29537
  */
29079
29538
  export declare const NewsLettersApiFp: (configuration?: Configuration) => {
29539
+ /**
29540
+ * Fetches list of all NewsLetterSubscription
29541
+ * @summary Fetches list of all NewsLetterSubscription
29542
+ * @param {*} [options] Override http request option.
29543
+ * @throws {RequiredError}
29544
+ */
29545
+ miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesNewsLetterRequestsListResponse>>;
29080
29546
  /**
29081
29547
  * Fetches NewsLetterSubscription by id
29082
29548
  * @summary Fetches NewsLetterSubscription by id
@@ -29117,6 +29583,13 @@ export declare const NewsLettersApiFp: (configuration?: Configuration) => {
29117
29583
  * @export
29118
29584
  */
29119
29585
  export declare const NewsLettersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
29586
+ /**
29587
+ * Fetches list of all NewsLetterSubscription
29588
+ * @summary Fetches list of all NewsLetterSubscription
29589
+ * @param {*} [options] Override http request option.
29590
+ * @throws {RequiredError}
29591
+ */
29592
+ miscNewsLettersGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesNewsLetterRequestsListResponse>;
29120
29593
  /**
29121
29594
  * Fetches NewsLetterSubscription by id
29122
29595
  * @summary Fetches NewsLetterSubscription by id
@@ -29159,6 +29632,14 @@ export declare const NewsLettersApiFactory: (configuration?: Configuration, base
29159
29632
  * @extends {BaseAPI}
29160
29633
  */
29161
29634
  export declare class NewsLettersApi extends BaseAPI {
29635
+ /**
29636
+ * Fetches list of all NewsLetterSubscription
29637
+ * @summary Fetches list of all NewsLetterSubscription
29638
+ * @param {*} [options] Override http request option.
29639
+ * @throws {RequiredError}
29640
+ * @memberof NewsLettersApi
29641
+ */
29642
+ miscNewsLettersGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesNewsLetterRequestsListResponse, any, {}>>;
29162
29643
  /**
29163
29644
  * Fetches NewsLetterSubscription by id
29164
29645
  * @summary Fetches NewsLetterSubscription by id
@@ -29510,6 +29991,13 @@ export declare class OnboardingApi extends BaseAPI {
29510
29991
  * @export
29511
29992
  */
29512
29993
  export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configuration) => {
29994
+ /**
29995
+ * Fetches list of all Organizations
29996
+ * @summary Fetches list of all Organizations
29997
+ * @param {*} [options] Override http request option.
29998
+ * @throws {RequiredError}
29999
+ */
30000
+ adminOrganizationsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29513
30001
  /**
29514
30002
  * Updates Orgnization information by ID.
29515
30003
  * @summary Update an existing Orgnization
@@ -29550,6 +30038,13 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
29550
30038
  * @export
29551
30039
  */
29552
30040
  export declare const OrganizationsApiFp: (configuration?: Configuration) => {
30041
+ /**
30042
+ * Fetches list of all Organizations
30043
+ * @summary Fetches list of all Organizations
30044
+ * @param {*} [options] Override http request option.
30045
+ * @throws {RequiredError}
30046
+ */
30047
+ adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOrganizationsListResponse>>;
29553
30048
  /**
29554
30049
  * Updates Orgnization information by ID.
29555
30050
  * @summary Update an existing Orgnization
@@ -29590,6 +30085,13 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
29590
30085
  * @export
29591
30086
  */
29592
30087
  export declare const OrganizationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
30088
+ /**
30089
+ * Fetches list of all Organizations
30090
+ * @summary Fetches list of all Organizations
30091
+ * @param {*} [options] Override http request option.
30092
+ * @throws {RequiredError}
30093
+ */
30094
+ adminOrganizationsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOrganizationsListResponse>;
29593
30095
  /**
29594
30096
  * Updates Orgnization information by ID.
29595
30097
  * @summary Update an existing Orgnization
@@ -29632,6 +30134,14 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
29632
30134
  * @extends {BaseAPI}
29633
30135
  */
29634
30136
  export declare class OrganizationsApi extends BaseAPI {
30137
+ /**
30138
+ * Fetches list of all Organizations
30139
+ * @summary Fetches list of all Organizations
30140
+ * @param {*} [options] Override http request option.
30141
+ * @throws {RequiredError}
30142
+ * @memberof OrganizationsApi
30143
+ */
30144
+ adminOrganizationsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOrganizationsListResponse, any, {}>>;
29635
30145
  /**
29636
30146
  * Updates Orgnization information by ID.
29637
30147
  * @summary Update an existing Orgnization
@@ -30378,6 +30888,13 @@ export declare class PaymentGatewayApi extends BaseAPI {
30378
30888
  * @export
30379
30889
  */
30380
30890
  export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
30891
+ /**
30892
+ * Fetches list of all payments
30893
+ * @summary Fetches list of all payments
30894
+ * @param {*} [options] Override http request option.
30895
+ * @throws {RequiredError}
30896
+ */
30897
+ adminPaymentsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30381
30898
  /**
30382
30899
  * Deletes a payment from the system by ID.
30383
30900
  * @summary Delete a payment
@@ -30417,6 +30934,13 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
30417
30934
  * @export
30418
30935
  */
30419
30936
  export declare const PaymentsApiFp: (configuration?: Configuration) => {
30937
+ /**
30938
+ * Fetches list of all payments
30939
+ * @summary Fetches list of all payments
30940
+ * @param {*} [options] Override http request option.
30941
+ * @throws {RequiredError}
30942
+ */
30943
+ adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentsListResponse>>;
30420
30944
  /**
30421
30945
  * Deletes a payment from the system by ID.
30422
30946
  * @summary Delete a payment
@@ -30456,6 +30980,13 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
30456
30980
  * @export
30457
30981
  */
30458
30982
  export declare const PaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
30983
+ /**
30984
+ * Fetches list of all payments
30985
+ * @summary Fetches list of all payments
30986
+ * @param {*} [options] Override http request option.
30987
+ * @throws {RequiredError}
30988
+ */
30989
+ adminPaymentsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentsListResponse>;
30459
30990
  /**
30460
30991
  * Deletes a payment from the system by ID.
30461
30992
  * @summary Delete a payment
@@ -30497,6 +31028,14 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
30497
31028
  * @extends {BaseAPI}
30498
31029
  */
30499
31030
  export declare class PaymentsApi extends BaseAPI {
31031
+ /**
31032
+ * Fetches list of all payments
31033
+ * @summary Fetches list of all payments
31034
+ * @param {*} [options] Override http request option.
31035
+ * @throws {RequiredError}
31036
+ * @memberof PaymentsApi
31037
+ */
31038
+ adminPaymentsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentsListResponse, any, {}>>;
30500
31039
  /**
30501
31040
  * Deletes a payment from the system by ID.
30502
31041
  * @summary Delete a payment
@@ -30540,6 +31079,13 @@ export declare class PaymentsApi extends BaseAPI {
30540
31079
  * @export
30541
31080
  */
30542
31081
  export declare const PlansApiAxiosParamCreator: (configuration?: Configuration) => {
31082
+ /**
31083
+ * Fetches list of all Plans
31084
+ * @summary Fetches list of all Plans
31085
+ * @param {*} [options] Override http request option.
31086
+ * @throws {RequiredError}
31087
+ */
31088
+ miscPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30543
31089
  /**
30544
31090
  * Fetches plan by id
30545
31091
  * @summary Fetches plan by id
@@ -30580,6 +31126,13 @@ export declare const PlansApiAxiosParamCreator: (configuration?: Configuration)
30580
31126
  * @export
30581
31127
  */
30582
31128
  export declare const PlansApiFp: (configuration?: Configuration) => {
31129
+ /**
31130
+ * Fetches list of all Plans
31131
+ * @summary Fetches list of all Plans
31132
+ * @param {*} [options] Override http request option.
31133
+ * @throws {RequiredError}
31134
+ */
31135
+ miscPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPlansListResponse>>;
30583
31136
  /**
30584
31137
  * Fetches plan by id
30585
31138
  * @summary Fetches plan by id
@@ -30620,6 +31173,13 @@ export declare const PlansApiFp: (configuration?: Configuration) => {
30620
31173
  * @export
30621
31174
  */
30622
31175
  export declare const PlansApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
31176
+ /**
31177
+ * Fetches list of all Plans
31178
+ * @summary Fetches list of all Plans
31179
+ * @param {*} [options] Override http request option.
31180
+ * @throws {RequiredError}
31181
+ */
31182
+ miscPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPlansListResponse>;
30623
31183
  /**
30624
31184
  * Fetches plan by id
30625
31185
  * @summary Fetches plan by id
@@ -30662,6 +31222,14 @@ export declare const PlansApiFactory: (configuration?: Configuration, basePath?:
30662
31222
  * @extends {BaseAPI}
30663
31223
  */
30664
31224
  export declare class PlansApi extends BaseAPI {
31225
+ /**
31226
+ * Fetches list of all Plans
31227
+ * @summary Fetches list of all Plans
31228
+ * @param {*} [options] Override http request option.
31229
+ * @throws {RequiredError}
31230
+ * @memberof PlansApi
31231
+ */
31232
+ miscPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPlansListResponse, any, {}>>;
30665
31233
  /**
30666
31234
  * Fetches plan by id
30667
31235
  * @summary Fetches plan by id
@@ -32996,6 +33564,13 @@ export declare class RegisterApi extends BaseAPI {
32996
33564
  * @export
32997
33565
  */
32998
33566
  export declare const RequestsApiAxiosParamCreator: (configuration?: Configuration) => {
33567
+ /**
33568
+ * Fetches list of all ServiceRequest
33569
+ * @summary Fetches list of all ServiceRequest
33570
+ * @param {*} [options] Override http request option.
33571
+ * @throws {RequiredError}
33572
+ */
33573
+ miscRequestsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32999
33574
  /**
33000
33575
  * Updates ServiceRequest information by ID.
33001
33576
  * @summary Deletes an existing ServiceRequest
@@ -33044,6 +33619,13 @@ export declare const RequestsApiAxiosParamCreator: (configuration?: Configuratio
33044
33619
  * @export
33045
33620
  */
33046
33621
  export declare const RequestsApiFp: (configuration?: Configuration) => {
33622
+ /**
33623
+ * Fetches list of all ServiceRequest
33624
+ * @summary Fetches list of all ServiceRequest
33625
+ * @param {*} [options] Override http request option.
33626
+ * @throws {RequiredError}
33627
+ */
33628
+ miscRequestsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesServiceRequestsListResponse>>;
33047
33629
  /**
33048
33630
  * Updates ServiceRequest information by ID.
33049
33631
  * @summary Deletes an existing ServiceRequest
@@ -33092,6 +33674,13 @@ export declare const RequestsApiFp: (configuration?: Configuration) => {
33092
33674
  * @export
33093
33675
  */
33094
33676
  export declare const RequestsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
33677
+ /**
33678
+ * Fetches list of all ServiceRequest
33679
+ * @summary Fetches list of all ServiceRequest
33680
+ * @param {*} [options] Override http request option.
33681
+ * @throws {RequiredError}
33682
+ */
33683
+ miscRequestsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesServiceRequestsListResponse>;
33095
33684
  /**
33096
33685
  * Updates ServiceRequest information by ID.
33097
33686
  * @summary Deletes an existing ServiceRequest
@@ -33142,6 +33731,14 @@ export declare const RequestsApiFactory: (configuration?: Configuration, basePat
33142
33731
  * @extends {BaseAPI}
33143
33732
  */
33144
33733
  export declare class RequestsApi extends BaseAPI {
33734
+ /**
33735
+ * Fetches list of all ServiceRequest
33736
+ * @summary Fetches list of all ServiceRequest
33737
+ * @param {*} [options] Override http request option.
33738
+ * @throws {RequiredError}
33739
+ * @memberof RequestsApi
33740
+ */
33741
+ miscRequestsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesServiceRequestsListResponse, any, {}>>;
33145
33742
  /**
33146
33743
  * Updates ServiceRequest information by ID.
33147
33744
  * @summary Deletes an existing ServiceRequest
@@ -33203,6 +33800,13 @@ export declare const RoleRightsApiAxiosParamCreator: (configuration?: Configurat
33203
33800
  * @throws {RequiredError}
33204
33801
  */
33205
33802
  adminRolerightsBulkPost: (dataTypesRoleRightRequestDto: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33803
+ /**
33804
+ * Fetches list of all roleright
33805
+ * @summary Fetches list of all roleright
33806
+ * @param {*} [options] Override http request option.
33807
+ * @throws {RequiredError}
33808
+ */
33809
+ adminRolerightsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33206
33810
  /**
33207
33811
  * Fetches roleright by role id
33208
33812
  * @summary Fetches roleright by role id
@@ -33266,6 +33870,13 @@ export declare const RoleRightsApiFp: (configuration?: Configuration) => {
33266
33870
  * @throws {RequiredError}
33267
33871
  */
33268
33872
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
33873
+ /**
33874
+ * Fetches list of all roleright
33875
+ * @summary Fetches list of all roleright
33876
+ * @param {*} [options] Override http request option.
33877
+ * @throws {RequiredError}
33878
+ */
33879
+ adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRoleRightsListResponse>>;
33269
33880
  /**
33270
33881
  * Fetches roleright by role id
33271
33882
  * @summary Fetches roleright by role id
@@ -33329,6 +33940,13 @@ export declare const RoleRightsApiFactory: (configuration?: Configuration, baseP
33329
33940
  * @throws {RequiredError}
33330
33941
  */
33331
33942
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
33943
+ /**
33944
+ * Fetches list of all roleright
33945
+ * @summary Fetches list of all roleright
33946
+ * @param {*} [options] Override http request option.
33947
+ * @throws {RequiredError}
33948
+ */
33949
+ adminRolerightsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRoleRightsListResponse>;
33332
33950
  /**
33333
33951
  * Fetches roleright by role id
33334
33952
  * @summary Fetches roleright by role id
@@ -33395,6 +34013,14 @@ export declare class RoleRightsApi extends BaseAPI {
33395
34013
  * @memberof RoleRightsApi
33396
34014
  */
33397
34015
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto: Array<DataTypesRoleRightRequestDto>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
34016
+ /**
34017
+ * Fetches list of all roleright
34018
+ * @summary Fetches list of all roleright
34019
+ * @param {*} [options] Override http request option.
34020
+ * @throws {RequiredError}
34021
+ * @memberof RoleRightsApi
34022
+ */
34023
+ adminRolerightsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRoleRightsListResponse, any, {}>>;
33398
34024
  /**
33399
34025
  * Fetches roleright by role id
33400
34026
  * @summary Fetches roleright by role id
@@ -33473,6 +34099,14 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
33473
34099
  * @throws {RequiredError}
33474
34100
  */
33475
34101
  adminRolesIdPut: (id: number, dataTypesCreateRoleRequestDto: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34102
+ /**
34103
+ * Fetches list of all roles
34104
+ * @summary Fetches list of all roles
34105
+ * @param {number} orgId Org ID
34106
+ * @param {*} [options] Override http request option.
34107
+ * @throws {RequiredError}
34108
+ */
34109
+ adminRolesOrgIdGet: (orgId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33476
34110
  /**
33477
34111
  * Fetches role by id
33478
34112
  * @summary Fetches role by id
@@ -33513,6 +34147,14 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
33513
34147
  * @throws {RequiredError}
33514
34148
  */
33515
34149
  adminRolesIdPut(id: number, dataTypesCreateRoleRequestDto: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
34150
+ /**
34151
+ * Fetches list of all roles
34152
+ * @summary Fetches list of all roles
34153
+ * @param {number} orgId Org ID
34154
+ * @param {*} [options] Override http request option.
34155
+ * @throws {RequiredError}
34156
+ */
34157
+ adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRolesListResponse>>;
33516
34158
  /**
33517
34159
  * Fetches role by id
33518
34160
  * @summary Fetches role by id
@@ -33553,6 +34195,14 @@ export declare const RolesApiFactory: (configuration?: Configuration, basePath?:
33553
34195
  * @throws {RequiredError}
33554
34196
  */
33555
34197
  adminRolesIdPut(id: number, dataTypesCreateRoleRequestDto: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
34198
+ /**
34199
+ * Fetches list of all roles
34200
+ * @summary Fetches list of all roles
34201
+ * @param {number} orgId Org ID
34202
+ * @param {*} [options] Override http request option.
34203
+ * @throws {RequiredError}
34204
+ */
34205
+ adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRolesListResponse>;
33556
34206
  /**
33557
34207
  * Fetches role by id
33558
34208
  * @summary Fetches role by id
@@ -33597,6 +34247,15 @@ export declare class RolesApi extends BaseAPI {
33597
34247
  * @memberof RolesApi
33598
34248
  */
33599
34249
  adminRolesIdPut(id: number, dataTypesCreateRoleRequestDto: DataTypesCreateRoleRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
34250
+ /**
34251
+ * Fetches list of all roles
34252
+ * @summary Fetches list of all roles
34253
+ * @param {number} orgId Org ID
34254
+ * @param {*} [options] Override http request option.
34255
+ * @throws {RequiredError}
34256
+ * @memberof RolesApi
34257
+ */
34258
+ adminRolesOrgIdGet(orgId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRolesListResponse, any, {}>>;
33600
34259
  /**
33601
34260
  * Fetches role by id
33602
34261
  * @summary Fetches role by id
@@ -33674,6 +34333,16 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
33674
34333
  * @throws {RequiredError}
33675
34334
  */
33676
34335
  v1IndexIndexnameDefaultsGet: (indexname: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34336
+ /**
34337
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
34338
+ * @summary Public Search API
34339
+ * @param {string} xStoreid Store ID
34340
+ * @param {string} xStoresecret Store Secret
34341
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
34342
+ * @param {*} [options] Override http request option.
34343
+ * @throws {RequiredError}
34344
+ */
34345
+ v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33677
34346
  };
33678
34347
  /**
33679
34348
  * SearchApi - functional programming interface
@@ -33732,6 +34401,16 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
33732
34401
  * @throws {RequiredError}
33733
34402
  */
33734
34403
  v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
34404
+ /**
34405
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
34406
+ * @summary Public Search API
34407
+ * @param {string} xStoreid Store ID
34408
+ * @param {string} xStoresecret Store Secret
34409
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
34410
+ * @param {*} [options] Override http request option.
34411
+ * @throws {RequiredError}
34412
+ */
34413
+ v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
33735
34414
  };
33736
34415
  /**
33737
34416
  * SearchApi - factory interface
@@ -33790,6 +34469,16 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
33790
34469
  * @throws {RequiredError}
33791
34470
  */
33792
34471
  v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
34472
+ /**
34473
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
34474
+ * @summary Public Search API
34475
+ * @param {string} xStoreid Store ID
34476
+ * @param {string} xStoresecret Store Secret
34477
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
34478
+ * @param {*} [options] Override http request option.
34479
+ * @throws {RequiredError}
34480
+ */
34481
+ v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
33793
34482
  };
33794
34483
  /**
33795
34484
  * SearchApi - object-oriented interface
@@ -33856,6 +34545,17 @@ export declare class SearchApi extends BaseAPI {
33856
34545
  * @memberof SearchApi
33857
34546
  */
33858
34547
  v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any, {}>>;
34548
+ /**
34549
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
34550
+ * @summary Public Search API
34551
+ * @param {string} xStoreid Store ID
34552
+ * @param {string} xStoresecret Store Secret
34553
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
34554
+ * @param {*} [options] Override http request option.
34555
+ * @throws {RequiredError}
34556
+ * @memberof SearchApi
34557
+ */
34558
+ v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any, {}>>;
33859
34559
  }
33860
34560
  /**
33861
34561
  * StopwordsApi - axios parameter creator
@@ -35438,6 +36138,13 @@ export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configu
35438
36138
  * @throws {RequiredError}
35439
36139
  */
35440
36140
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut: (subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36141
+ /**
36142
+ * Fetches list of all Subscription
36143
+ * @summary Fetches list of all Subscription
36144
+ * @param {*} [options] Override http request option.
36145
+ * @throws {RequiredError}
36146
+ */
36147
+ miscSubscriptionsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35441
36148
  /**
35442
36149
  * Adds a new Subscription to the system
35443
36150
  * @summary Creates a new Subscription
@@ -35494,6 +36201,13 @@ export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
35494
36201
  * @throws {RequiredError}
35495
36202
  */
35496
36203
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
36204
+ /**
36205
+ * Fetches list of all Subscription
36206
+ * @summary Fetches list of all Subscription
36207
+ * @param {*} [options] Override http request option.
36208
+ * @throws {RequiredError}
36209
+ */
36210
+ miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSubscriptionsListResponse>>;
35497
36211
  /**
35498
36212
  * Adds a new Subscription to the system
35499
36213
  * @summary Creates a new Subscription
@@ -35550,6 +36264,13 @@ export declare const SubscriptionsApiFactory: (configuration?: Configuration, ba
35550
36264
  * @throws {RequiredError}
35551
36265
  */
35552
36266
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
36267
+ /**
36268
+ * Fetches list of all Subscription
36269
+ * @summary Fetches list of all Subscription
36270
+ * @param {*} [options] Override http request option.
36271
+ * @throws {RequiredError}
36272
+ */
36273
+ miscSubscriptionsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSubscriptionsListResponse>;
35553
36274
  /**
35554
36275
  * Adds a new Subscription to the system
35555
36276
  * @summary Creates a new Subscription
@@ -35612,6 +36333,14 @@ export declare class SubscriptionsApi extends BaseAPI {
35612
36333
  * @memberof SubscriptionsApi
35613
36334
  */
35614
36335
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID: number, status: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
36336
+ /**
36337
+ * Fetches list of all Subscription
36338
+ * @summary Fetches list of all Subscription
36339
+ * @param {*} [options] Override http request option.
36340
+ * @throws {RequiredError}
36341
+ * @memberof SubscriptionsApi
36342
+ */
36343
+ miscSubscriptionsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSubscriptionsListResponse, any, {}>>;
35615
36344
  /**
35616
36345
  * Adds a new Subscription to the system
35617
36346
  * @summary Creates a new Subscription