@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/esm/api.js CHANGED
@@ -14392,6 +14392,33 @@ export const LimitsApiAxiosParamCreator = function (configuration) {
14392
14392
  options: localVarRequestOptions,
14393
14393
  };
14394
14394
  }),
14395
+ /**
14396
+ * Fetches list of all limits
14397
+ * @summary Fetches list of all limits
14398
+ * @param {*} [options] Override http request option.
14399
+ * @throws {RequiredError}
14400
+ */
14401
+ miscLimitsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
14402
+ const localVarPath = `/misc/limits`;
14403
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
14404
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14405
+ let baseOptions;
14406
+ if (configuration) {
14407
+ baseOptions = configuration.baseOptions;
14408
+ }
14409
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
14410
+ const localVarHeaderParameter = {};
14411
+ const localVarQueryParameter = {};
14412
+ // authentication BearerAuth required
14413
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
14414
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
14415
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14416
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
14417
+ return {
14418
+ url: toPathString(localVarUrlObj),
14419
+ options: localVarRequestOptions,
14420
+ };
14421
+ }),
14395
14422
  /**
14396
14423
  * Fetches limit by id
14397
14424
  * @summary Fetches limit by id
@@ -14517,6 +14544,21 @@ export const LimitsApiFp = function (configuration) {
14517
14544
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14518
14545
  });
14519
14546
  },
14547
+ /**
14548
+ * Fetches list of all limits
14549
+ * @summary Fetches list of all limits
14550
+ * @param {*} [options] Override http request option.
14551
+ * @throws {RequiredError}
14552
+ */
14553
+ miscLimitsGet(options) {
14554
+ return __awaiter(this, void 0, void 0, function* () {
14555
+ var _a, _b, _c;
14556
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscLimitsGet(options);
14557
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
14558
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['LimitsApi.miscLimitsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
14559
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14560
+ });
14561
+ },
14520
14562
  /**
14521
14563
  * Fetches limit by id
14522
14564
  * @summary Fetches limit by id
@@ -14586,6 +14628,15 @@ export const LimitsApiFactory = function (configuration, basePath, axios) {
14586
14628
  miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options) {
14587
14629
  return localVarFp.miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(axios, basePath));
14588
14630
  },
14631
+ /**
14632
+ * Fetches list of all limits
14633
+ * @summary Fetches list of all limits
14634
+ * @param {*} [options] Override http request option.
14635
+ * @throws {RequiredError}
14636
+ */
14637
+ miscLimitsGet(options) {
14638
+ return localVarFp.miscLimitsGet(options).then((request) => request(axios, basePath));
14639
+ },
14589
14640
  /**
14590
14641
  * Fetches limit by id
14591
14642
  * @summary Fetches limit by id
@@ -14638,6 +14689,16 @@ export class LimitsApi extends BaseAPI {
14638
14689
  miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options) {
14639
14690
  return LimitsApiFp(this.configuration).miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(this.axios, this.basePath));
14640
14691
  }
14692
+ /**
14693
+ * Fetches list of all limits
14694
+ * @summary Fetches list of all limits
14695
+ * @param {*} [options] Override http request option.
14696
+ * @throws {RequiredError}
14697
+ * @memberof LimitsApi
14698
+ */
14699
+ miscLimitsGet(options) {
14700
+ return LimitsApiFp(this.configuration).miscLimitsGet(options).then((request) => request(this.axios, this.basePath));
14701
+ }
14641
14702
  /**
14642
14703
  * Fetches limit by id
14643
14704
  * @summary Fetches limit by id
@@ -14679,6 +14740,33 @@ export class LimitsApi extends BaseAPI {
14679
14740
  */
14680
14741
  export const MenusApiAxiosParamCreator = function (configuration) {
14681
14742
  return {
14743
+ /**
14744
+ * Fetches list of all menus
14745
+ * @summary Fetches list of all menus
14746
+ * @param {*} [options] Override http request option.
14747
+ * @throws {RequiredError}
14748
+ */
14749
+ miscMenusGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
14750
+ const localVarPath = `/misc/menus`;
14751
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
14752
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14753
+ let baseOptions;
14754
+ if (configuration) {
14755
+ baseOptions = configuration.baseOptions;
14756
+ }
14757
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
14758
+ const localVarHeaderParameter = {};
14759
+ const localVarQueryParameter = {};
14760
+ // authentication BearerAuth required
14761
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
14762
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
14763
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14764
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
14765
+ return {
14766
+ url: toPathString(localVarUrlObj),
14767
+ options: localVarRequestOptions,
14768
+ };
14769
+ }),
14682
14770
  /**
14683
14771
  * Deletes a menu from the system by ID.
14684
14772
  * @summary Delete a menu
@@ -15129,6 +15217,21 @@ export const MenusApiAxiosParamCreator = function (configuration) {
15129
15217
  export const MenusApiFp = function (configuration) {
15130
15218
  const localVarAxiosParamCreator = MenusApiAxiosParamCreator(configuration);
15131
15219
  return {
15220
+ /**
15221
+ * Fetches list of all menus
15222
+ * @summary Fetches list of all menus
15223
+ * @param {*} [options] Override http request option.
15224
+ * @throws {RequiredError}
15225
+ */
15226
+ miscMenusGet(options) {
15227
+ return __awaiter(this, void 0, void 0, function* () {
15228
+ var _a, _b, _c;
15229
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscMenusGet(options);
15230
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
15231
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenusApi.miscMenusGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
15232
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15233
+ });
15234
+ },
15132
15235
  /**
15133
15236
  * Deletes a menu from the system by ID.
15134
15237
  * @summary Delete a menu
@@ -15354,6 +15457,15 @@ export const MenusApiFp = function (configuration) {
15354
15457
  export const MenusApiFactory = function (configuration, basePath, axios) {
15355
15458
  const localVarFp = MenusApiFp(configuration);
15356
15459
  return {
15460
+ /**
15461
+ * Fetches list of all menus
15462
+ * @summary Fetches list of all menus
15463
+ * @param {*} [options] Override http request option.
15464
+ * @throws {RequiredError}
15465
+ */
15466
+ miscMenusGet(options) {
15467
+ return localVarFp.miscMenusGet(options).then((request) => request(axios, basePath));
15468
+ },
15357
15469
  /**
15358
15470
  * Deletes a menu from the system by ID.
15359
15471
  * @summary Delete a menu
@@ -15501,6 +15613,16 @@ export const MenusApiFactory = function (configuration, basePath, axios) {
15501
15613
  * @extends {BaseAPI}
15502
15614
  */
15503
15615
  export class MenusApi extends BaseAPI {
15616
+ /**
15617
+ * Fetches list of all menus
15618
+ * @summary Fetches list of all menus
15619
+ * @param {*} [options] Override http request option.
15620
+ * @throws {RequiredError}
15621
+ * @memberof MenusApi
15622
+ */
15623
+ miscMenusGet(options) {
15624
+ return MenusApiFp(this.configuration).miscMenusGet(options).then((request) => request(this.axios, this.basePath));
15625
+ }
15504
15626
  /**
15505
15627
  * Deletes a menu from the system by ID.
15506
15628
  * @summary Delete a menu
@@ -16472,6 +16594,33 @@ export class MongoDbApi extends BaseAPI {
16472
16594
  */
16473
16595
  export const NewsLettersApiAxiosParamCreator = function (configuration) {
16474
16596
  return {
16597
+ /**
16598
+ * Fetches list of all NewsLetterSubscription
16599
+ * @summary Fetches list of all NewsLetterSubscription
16600
+ * @param {*} [options] Override http request option.
16601
+ * @throws {RequiredError}
16602
+ */
16603
+ miscNewsLettersGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
16604
+ const localVarPath = `/misc/NewsLetters`;
16605
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16606
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16607
+ let baseOptions;
16608
+ if (configuration) {
16609
+ baseOptions = configuration.baseOptions;
16610
+ }
16611
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
16612
+ const localVarHeaderParameter = {};
16613
+ const localVarQueryParameter = {};
16614
+ // authentication BearerAuth required
16615
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
16616
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16617
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16618
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
16619
+ return {
16620
+ url: toPathString(localVarUrlObj),
16621
+ options: localVarRequestOptions,
16622
+ };
16623
+ }),
16475
16624
  /**
16476
16625
  * Fetches NewsLetterSubscription by id
16477
16626
  * @summary Fetches NewsLetterSubscription by id
@@ -16615,6 +16764,21 @@ export const NewsLettersApiAxiosParamCreator = function (configuration) {
16615
16764
  export const NewsLettersApiFp = function (configuration) {
16616
16765
  const localVarAxiosParamCreator = NewsLettersApiAxiosParamCreator(configuration);
16617
16766
  return {
16767
+ /**
16768
+ * Fetches list of all NewsLetterSubscription
16769
+ * @summary Fetches list of all NewsLetterSubscription
16770
+ * @param {*} [options] Override http request option.
16771
+ * @throws {RequiredError}
16772
+ */
16773
+ miscNewsLettersGet(options) {
16774
+ return __awaiter(this, void 0, void 0, function* () {
16775
+ var _a, _b, _c;
16776
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscNewsLettersGet(options);
16777
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
16778
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['NewsLettersApi.miscNewsLettersGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
16779
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16780
+ });
16781
+ },
16618
16782
  /**
16619
16783
  * Fetches NewsLetterSubscription by id
16620
16784
  * @summary Fetches NewsLetterSubscription by id
@@ -16690,6 +16854,15 @@ export const NewsLettersApiFp = function (configuration) {
16690
16854
  export const NewsLettersApiFactory = function (configuration, basePath, axios) {
16691
16855
  const localVarFp = NewsLettersApiFp(configuration);
16692
16856
  return {
16857
+ /**
16858
+ * Fetches list of all NewsLetterSubscription
16859
+ * @summary Fetches list of all NewsLetterSubscription
16860
+ * @param {*} [options] Override http request option.
16861
+ * @throws {RequiredError}
16862
+ */
16863
+ miscNewsLettersGet(options) {
16864
+ return localVarFp.miscNewsLettersGet(options).then((request) => request(axios, basePath));
16865
+ },
16693
16866
  /**
16694
16867
  * Fetches NewsLetterSubscription by id
16695
16868
  * @summary Fetches NewsLetterSubscription by id
@@ -16741,6 +16914,16 @@ export const NewsLettersApiFactory = function (configuration, basePath, axios) {
16741
16914
  * @extends {BaseAPI}
16742
16915
  */
16743
16916
  export class NewsLettersApi extends BaseAPI {
16917
+ /**
16918
+ * Fetches list of all NewsLetterSubscription
16919
+ * @summary Fetches list of all NewsLetterSubscription
16920
+ * @param {*} [options] Override http request option.
16921
+ * @throws {RequiredError}
16922
+ * @memberof NewsLettersApi
16923
+ */
16924
+ miscNewsLettersGet(options) {
16925
+ return NewsLettersApiFp(this.configuration).miscNewsLettersGet(options).then((request) => request(this.axios, this.basePath));
16926
+ }
16744
16927
  /**
16745
16928
  * Fetches NewsLetterSubscription by id
16746
16929
  * @summary Fetches NewsLetterSubscription by id
@@ -17425,6 +17608,33 @@ export class OnboardingApi extends BaseAPI {
17425
17608
  */
17426
17609
  export const OrganizationsApiAxiosParamCreator = function (configuration) {
17427
17610
  return {
17611
+ /**
17612
+ * Fetches list of all Organizations
17613
+ * @summary Fetches list of all Organizations
17614
+ * @param {*} [options] Override http request option.
17615
+ * @throws {RequiredError}
17616
+ */
17617
+ adminOrganizationsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
17618
+ const localVarPath = `/admin/Organizations`;
17619
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
17620
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17621
+ let baseOptions;
17622
+ if (configuration) {
17623
+ baseOptions = configuration.baseOptions;
17624
+ }
17625
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
17626
+ const localVarHeaderParameter = {};
17627
+ const localVarQueryParameter = {};
17628
+ // authentication BearerAuth required
17629
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
17630
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
17631
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17632
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
17633
+ return {
17634
+ url: toPathString(localVarUrlObj),
17635
+ options: localVarRequestOptions,
17636
+ };
17637
+ }),
17428
17638
  /**
17429
17639
  * Updates Orgnization information by ID.
17430
17640
  * @summary Update an existing Orgnization
@@ -17568,6 +17778,21 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
17568
17778
  export const OrganizationsApiFp = function (configuration) {
17569
17779
  const localVarAxiosParamCreator = OrganizationsApiAxiosParamCreator(configuration);
17570
17780
  return {
17781
+ /**
17782
+ * Fetches list of all Organizations
17783
+ * @summary Fetches list of all Organizations
17784
+ * @param {*} [options] Override http request option.
17785
+ * @throws {RequiredError}
17786
+ */
17787
+ adminOrganizationsGet(options) {
17788
+ return __awaiter(this, void 0, void 0, function* () {
17789
+ var _a, _b, _c;
17790
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminOrganizationsGet(options);
17791
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17792
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrganizationsApi.adminOrganizationsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17793
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17794
+ });
17795
+ },
17571
17796
  /**
17572
17797
  * Updates Orgnization information by ID.
17573
17798
  * @summary Update an existing Orgnization
@@ -17643,6 +17868,15 @@ export const OrganizationsApiFp = function (configuration) {
17643
17868
  export const OrganizationsApiFactory = function (configuration, basePath, axios) {
17644
17869
  const localVarFp = OrganizationsApiFp(configuration);
17645
17870
  return {
17871
+ /**
17872
+ * Fetches list of all Organizations
17873
+ * @summary Fetches list of all Organizations
17874
+ * @param {*} [options] Override http request option.
17875
+ * @throws {RequiredError}
17876
+ */
17877
+ adminOrganizationsGet(options) {
17878
+ return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
17879
+ },
17646
17880
  /**
17647
17881
  * Updates Orgnization information by ID.
17648
17882
  * @summary Update an existing Orgnization
@@ -17694,6 +17928,16 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
17694
17928
  * @extends {BaseAPI}
17695
17929
  */
17696
17930
  export class OrganizationsApi extends BaseAPI {
17931
+ /**
17932
+ * Fetches list of all Organizations
17933
+ * @summary Fetches list of all Organizations
17934
+ * @param {*} [options] Override http request option.
17935
+ * @throws {RequiredError}
17936
+ * @memberof OrganizationsApi
17937
+ */
17938
+ adminOrganizationsGet(options) {
17939
+ return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
17940
+ }
17697
17941
  /**
17698
17942
  * Updates Orgnization information by ID.
17699
17943
  * @summary Update an existing Orgnization
@@ -19114,6 +19358,33 @@ export class PaymentGatewayApi extends BaseAPI {
19114
19358
  */
19115
19359
  export const PaymentsApiAxiosParamCreator = function (configuration) {
19116
19360
  return {
19361
+ /**
19362
+ * Fetches list of all payments
19363
+ * @summary Fetches list of all payments
19364
+ * @param {*} [options] Override http request option.
19365
+ * @throws {RequiredError}
19366
+ */
19367
+ adminPaymentsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
19368
+ const localVarPath = `/admin/payments/`;
19369
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
19370
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
19371
+ let baseOptions;
19372
+ if (configuration) {
19373
+ baseOptions = configuration.baseOptions;
19374
+ }
19375
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
19376
+ const localVarHeaderParameter = {};
19377
+ const localVarQueryParameter = {};
19378
+ // authentication BearerAuth required
19379
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
19380
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
19381
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
19382
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
19383
+ return {
19384
+ url: toPathString(localVarUrlObj),
19385
+ options: localVarRequestOptions,
19386
+ };
19387
+ }),
19117
19388
  /**
19118
19389
  * Deletes a payment from the system by ID.
19119
19390
  * @summary Delete a payment
@@ -19253,6 +19524,21 @@ export const PaymentsApiAxiosParamCreator = function (configuration) {
19253
19524
  export const PaymentsApiFp = function (configuration) {
19254
19525
  const localVarAxiosParamCreator = PaymentsApiAxiosParamCreator(configuration);
19255
19526
  return {
19527
+ /**
19528
+ * Fetches list of all payments
19529
+ * @summary Fetches list of all payments
19530
+ * @param {*} [options] Override http request option.
19531
+ * @throws {RequiredError}
19532
+ */
19533
+ adminPaymentsGet(options) {
19534
+ return __awaiter(this, void 0, void 0, function* () {
19535
+ var _a, _b, _c;
19536
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminPaymentsGet(options);
19537
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
19538
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PaymentsApi.adminPaymentsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
19539
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
19540
+ });
19541
+ },
19256
19542
  /**
19257
19543
  * Deletes a payment from the system by ID.
19258
19544
  * @summary Delete a payment
@@ -19327,6 +19613,15 @@ export const PaymentsApiFp = function (configuration) {
19327
19613
  export const PaymentsApiFactory = function (configuration, basePath, axios) {
19328
19614
  const localVarFp = PaymentsApiFp(configuration);
19329
19615
  return {
19616
+ /**
19617
+ * Fetches list of all payments
19618
+ * @summary Fetches list of all payments
19619
+ * @param {*} [options] Override http request option.
19620
+ * @throws {RequiredError}
19621
+ */
19622
+ adminPaymentsGet(options) {
19623
+ return localVarFp.adminPaymentsGet(options).then((request) => request(axios, basePath));
19624
+ },
19330
19625
  /**
19331
19626
  * Deletes a payment from the system by ID.
19332
19627
  * @summary Delete a payment
@@ -19377,6 +19672,16 @@ export const PaymentsApiFactory = function (configuration, basePath, axios) {
19377
19672
  * @extends {BaseAPI}
19378
19673
  */
19379
19674
  export class PaymentsApi extends BaseAPI {
19675
+ /**
19676
+ * Fetches list of all payments
19677
+ * @summary Fetches list of all payments
19678
+ * @param {*} [options] Override http request option.
19679
+ * @throws {RequiredError}
19680
+ * @memberof PaymentsApi
19681
+ */
19682
+ adminPaymentsGet(options) {
19683
+ return PaymentsApiFp(this.configuration).adminPaymentsGet(options).then((request) => request(this.axios, this.basePath));
19684
+ }
19380
19685
  /**
19381
19686
  * Deletes a payment from the system by ID.
19382
19687
  * @summary Delete a payment
@@ -19429,6 +19734,33 @@ export class PaymentsApi extends BaseAPI {
19429
19734
  */
19430
19735
  export const PlansApiAxiosParamCreator = function (configuration) {
19431
19736
  return {
19737
+ /**
19738
+ * Fetches list of all Plans
19739
+ * @summary Fetches list of all Plans
19740
+ * @param {*} [options] Override http request option.
19741
+ * @throws {RequiredError}
19742
+ */
19743
+ miscPlansGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
19744
+ const localVarPath = `/misc/Plans`;
19745
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
19746
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
19747
+ let baseOptions;
19748
+ if (configuration) {
19749
+ baseOptions = configuration.baseOptions;
19750
+ }
19751
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
19752
+ const localVarHeaderParameter = {};
19753
+ const localVarQueryParameter = {};
19754
+ // authentication BearerAuth required
19755
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
19756
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
19757
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
19758
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
19759
+ return {
19760
+ url: toPathString(localVarUrlObj),
19761
+ options: localVarRequestOptions,
19762
+ };
19763
+ }),
19432
19764
  /**
19433
19765
  * Fetches plan by id
19434
19766
  * @summary Fetches plan by id
@@ -19572,6 +19904,21 @@ export const PlansApiAxiosParamCreator = function (configuration) {
19572
19904
  export const PlansApiFp = function (configuration) {
19573
19905
  const localVarAxiosParamCreator = PlansApiAxiosParamCreator(configuration);
19574
19906
  return {
19907
+ /**
19908
+ * Fetches list of all Plans
19909
+ * @summary Fetches list of all Plans
19910
+ * @param {*} [options] Override http request option.
19911
+ * @throws {RequiredError}
19912
+ */
19913
+ miscPlansGet(options) {
19914
+ return __awaiter(this, void 0, void 0, function* () {
19915
+ var _a, _b, _c;
19916
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscPlansGet(options);
19917
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
19918
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PlansApi.miscPlansGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
19919
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
19920
+ });
19921
+ },
19575
19922
  /**
19576
19923
  * Fetches plan by id
19577
19924
  * @summary Fetches plan by id
@@ -19647,6 +19994,15 @@ export const PlansApiFp = function (configuration) {
19647
19994
  export const PlansApiFactory = function (configuration, basePath, axios) {
19648
19995
  const localVarFp = PlansApiFp(configuration);
19649
19996
  return {
19997
+ /**
19998
+ * Fetches list of all Plans
19999
+ * @summary Fetches list of all Plans
20000
+ * @param {*} [options] Override http request option.
20001
+ * @throws {RequiredError}
20002
+ */
20003
+ miscPlansGet(options) {
20004
+ return localVarFp.miscPlansGet(options).then((request) => request(axios, basePath));
20005
+ },
19650
20006
  /**
19651
20007
  * Fetches plan by id
19652
20008
  * @summary Fetches plan by id
@@ -19698,6 +20054,16 @@ export const PlansApiFactory = function (configuration, basePath, axios) {
19698
20054
  * @extends {BaseAPI}
19699
20055
  */
19700
20056
  export class PlansApi extends BaseAPI {
20057
+ /**
20058
+ * Fetches list of all Plans
20059
+ * @summary Fetches list of all Plans
20060
+ * @param {*} [options] Override http request option.
20061
+ * @throws {RequiredError}
20062
+ * @memberof PlansApi
20063
+ */
20064
+ miscPlansGet(options) {
20065
+ return PlansApiFp(this.configuration).miscPlansGet(options).then((request) => request(this.axios, this.basePath));
20066
+ }
19701
20067
  /**
19702
20068
  * Fetches plan by id
19703
20069
  * @summary Fetches plan by id
@@ -24278,6 +24644,33 @@ export class RegisterApi extends BaseAPI {
24278
24644
  */
24279
24645
  export const RequestsApiAxiosParamCreator = function (configuration) {
24280
24646
  return {
24647
+ /**
24648
+ * Fetches list of all ServiceRequest
24649
+ * @summary Fetches list of all ServiceRequest
24650
+ * @param {*} [options] Override http request option.
24651
+ * @throws {RequiredError}
24652
+ */
24653
+ miscRequestsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
24654
+ const localVarPath = `/misc/Requests`;
24655
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
24656
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
24657
+ let baseOptions;
24658
+ if (configuration) {
24659
+ baseOptions = configuration.baseOptions;
24660
+ }
24661
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
24662
+ const localVarHeaderParameter = {};
24663
+ const localVarQueryParameter = {};
24664
+ // authentication BearerAuth required
24665
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
24666
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
24667
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
24668
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
24669
+ return {
24670
+ url: toPathString(localVarUrlObj),
24671
+ options: localVarRequestOptions,
24672
+ };
24673
+ }),
24281
24674
  /**
24282
24675
  * Updates ServiceRequest information by ID.
24283
24676
  * @summary Deletes an existing ServiceRequest
@@ -24452,6 +24845,21 @@ export const RequestsApiAxiosParamCreator = function (configuration) {
24452
24845
  export const RequestsApiFp = function (configuration) {
24453
24846
  const localVarAxiosParamCreator = RequestsApiAxiosParamCreator(configuration);
24454
24847
  return {
24848
+ /**
24849
+ * Fetches list of all ServiceRequest
24850
+ * @summary Fetches list of all ServiceRequest
24851
+ * @param {*} [options] Override http request option.
24852
+ * @throws {RequiredError}
24853
+ */
24854
+ miscRequestsGet(options) {
24855
+ return __awaiter(this, void 0, void 0, function* () {
24856
+ var _a, _b, _c;
24857
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscRequestsGet(options);
24858
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
24859
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RequestsApi.miscRequestsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
24860
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
24861
+ });
24862
+ },
24455
24863
  /**
24456
24864
  * Updates ServiceRequest information by ID.
24457
24865
  * @summary Deletes an existing ServiceRequest
@@ -24543,6 +24951,15 @@ export const RequestsApiFp = function (configuration) {
24543
24951
  export const RequestsApiFactory = function (configuration, basePath, axios) {
24544
24952
  const localVarFp = RequestsApiFp(configuration);
24545
24953
  return {
24954
+ /**
24955
+ * Fetches list of all ServiceRequest
24956
+ * @summary Fetches list of all ServiceRequest
24957
+ * @param {*} [options] Override http request option.
24958
+ * @throws {RequiredError}
24959
+ */
24960
+ miscRequestsGet(options) {
24961
+ return localVarFp.miscRequestsGet(options).then((request) => request(axios, basePath));
24962
+ },
24546
24963
  /**
24547
24964
  * Updates ServiceRequest information by ID.
24548
24965
  * @summary Deletes an existing ServiceRequest
@@ -24604,6 +25021,16 @@ export const RequestsApiFactory = function (configuration, basePath, axios) {
24604
25021
  * @extends {BaseAPI}
24605
25022
  */
24606
25023
  export class RequestsApi extends BaseAPI {
25024
+ /**
25025
+ * Fetches list of all ServiceRequest
25026
+ * @summary Fetches list of all ServiceRequest
25027
+ * @param {*} [options] Override http request option.
25028
+ * @throws {RequiredError}
25029
+ * @memberof RequestsApi
25030
+ */
25031
+ miscRequestsGet(options) {
25032
+ return RequestsApiFp(this.configuration).miscRequestsGet(options).then((request) => request(this.axios, this.basePath));
25033
+ }
24607
25034
  /**
24608
25035
  * Updates ServiceRequest information by ID.
24609
25036
  * @summary Deletes an existing ServiceRequest
@@ -24700,6 +25127,33 @@ export const RoleRightsApiAxiosParamCreator = function (configuration) {
24700
25127
  options: localVarRequestOptions,
24701
25128
  };
24702
25129
  }),
25130
+ /**
25131
+ * Fetches list of all roleright
25132
+ * @summary Fetches list of all roleright
25133
+ * @param {*} [options] Override http request option.
25134
+ * @throws {RequiredError}
25135
+ */
25136
+ adminRolerightsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
25137
+ const localVarPath = `/admin/rolerights`;
25138
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
25139
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25140
+ let baseOptions;
25141
+ if (configuration) {
25142
+ baseOptions = configuration.baseOptions;
25143
+ }
25144
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
25145
+ const localVarHeaderParameter = {};
25146
+ const localVarQueryParameter = {};
25147
+ // authentication BearerAuth required
25148
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
25149
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
25150
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25151
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
25152
+ return {
25153
+ url: toPathString(localVarUrlObj),
25154
+ options: localVarRequestOptions,
25155
+ };
25156
+ }),
24703
25157
  /**
24704
25158
  * Fetches roleright by role id
24705
25159
  * @summary Fetches roleright by role id
@@ -24917,6 +25371,21 @@ export const RoleRightsApiFp = function (configuration) {
24917
25371
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
24918
25372
  });
24919
25373
  },
25374
+ /**
25375
+ * Fetches list of all roleright
25376
+ * @summary Fetches list of all roleright
25377
+ * @param {*} [options] Override http request option.
25378
+ * @throws {RequiredError}
25379
+ */
25380
+ adminRolerightsGet(options) {
25381
+ return __awaiter(this, void 0, void 0, function* () {
25382
+ var _a, _b, _c;
25383
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminRolerightsGet(options);
25384
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25385
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RoleRightsApi.adminRolerightsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25386
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25387
+ });
25388
+ },
24920
25389
  /**
24921
25390
  * Fetches roleright by role id
24922
25391
  * @summary Fetches roleright by role id
@@ -25033,6 +25502,15 @@ export const RoleRightsApiFactory = function (configuration, basePath, axios) {
25033
25502
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options) {
25034
25503
  return localVarFp.adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(axios, basePath));
25035
25504
  },
25505
+ /**
25506
+ * Fetches list of all roleright
25507
+ * @summary Fetches list of all roleright
25508
+ * @param {*} [options] Override http request option.
25509
+ * @throws {RequiredError}
25510
+ */
25511
+ adminRolerightsGet(options) {
25512
+ return localVarFp.adminRolerightsGet(options).then((request) => request(axios, basePath));
25513
+ },
25036
25514
  /**
25037
25515
  * Fetches roleright by role id
25038
25516
  * @summary Fetches roleright by role id
@@ -25114,6 +25592,16 @@ export class RoleRightsApi extends BaseAPI {
25114
25592
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options) {
25115
25593
  return RoleRightsApiFp(this.configuration).adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(this.axios, this.basePath));
25116
25594
  }
25595
+ /**
25596
+ * Fetches list of all roleright
25597
+ * @summary Fetches list of all roleright
25598
+ * @param {*} [options] Override http request option.
25599
+ * @throws {RequiredError}
25600
+ * @memberof RoleRightsApi
25601
+ */
25602
+ adminRolerightsGet(options) {
25603
+ return RoleRightsApiFp(this.configuration).adminRolerightsGet(options).then((request) => request(this.axios, this.basePath));
25604
+ }
25117
25605
  /**
25118
25606
  * Fetches roleright by role id
25119
25607
  * @summary Fetches roleright by role id
@@ -25255,6 +25743,37 @@ export const RolesApiAxiosParamCreator = function (configuration) {
25255
25743
  options: localVarRequestOptions,
25256
25744
  };
25257
25745
  }),
25746
+ /**
25747
+ * Fetches list of all roles
25748
+ * @summary Fetches list of all roles
25749
+ * @param {number} orgId Org ID
25750
+ * @param {*} [options] Override http request option.
25751
+ * @throws {RequiredError}
25752
+ */
25753
+ adminRolesOrgIdGet: (orgId_1, ...args_1) => __awaiter(this, [orgId_1, ...args_1], void 0, function* (orgId, options = {}) {
25754
+ // verify required parameter 'orgId' is not null or undefined
25755
+ assertParamExists('adminRolesOrgIdGet', 'orgId', orgId);
25756
+ const localVarPath = `/admin/roles/{OrgId}`
25757
+ .replace(`{${"OrgId"}}`, encodeURIComponent(String(orgId)));
25758
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
25759
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25760
+ let baseOptions;
25761
+ if (configuration) {
25762
+ baseOptions = configuration.baseOptions;
25763
+ }
25764
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
25765
+ const localVarHeaderParameter = {};
25766
+ const localVarQueryParameter = {};
25767
+ // authentication BearerAuth required
25768
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
25769
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
25770
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25771
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
25772
+ return {
25773
+ url: toPathString(localVarUrlObj),
25774
+ options: localVarRequestOptions,
25775
+ };
25776
+ }),
25258
25777
  /**
25259
25778
  * Fetches role by id
25260
25779
  * @summary Fetches role by id
@@ -25364,6 +25883,22 @@ export const RolesApiFp = function (configuration) {
25364
25883
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25365
25884
  });
25366
25885
  },
25886
+ /**
25887
+ * Fetches list of all roles
25888
+ * @summary Fetches list of all roles
25889
+ * @param {number} orgId Org ID
25890
+ * @param {*} [options] Override http request option.
25891
+ * @throws {RequiredError}
25892
+ */
25893
+ adminRolesOrgIdGet(orgId, options) {
25894
+ return __awaiter(this, void 0, void 0, function* () {
25895
+ var _a, _b, _c;
25896
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminRolesOrgIdGet(orgId, options);
25897
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25898
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RolesApi.adminRolesOrgIdGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25899
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25900
+ });
25901
+ },
25367
25902
  /**
25368
25903
  * Fetches role by id
25369
25904
  * @summary Fetches role by id
@@ -25427,6 +25962,16 @@ export const RolesApiFactory = function (configuration, basePath, axios) {
25427
25962
  adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options) {
25428
25963
  return localVarFp.adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(axios, basePath));
25429
25964
  },
25965
+ /**
25966
+ * Fetches list of all roles
25967
+ * @summary Fetches list of all roles
25968
+ * @param {number} orgId Org ID
25969
+ * @param {*} [options] Override http request option.
25970
+ * @throws {RequiredError}
25971
+ */
25972
+ adminRolesOrgIdGet(orgId, options) {
25973
+ return localVarFp.adminRolesOrgIdGet(orgId, options).then((request) => request(axios, basePath));
25974
+ },
25430
25975
  /**
25431
25976
  * Fetches role by id
25432
25977
  * @summary Fetches role by id
@@ -25480,6 +26025,17 @@ export class RolesApi extends BaseAPI {
25480
26025
  adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options) {
25481
26026
  return RolesApiFp(this.configuration).adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(this.axios, this.basePath));
25482
26027
  }
26028
+ /**
26029
+ * Fetches list of all roles
26030
+ * @summary Fetches list of all roles
26031
+ * @param {number} orgId Org ID
26032
+ * @param {*} [options] Override http request option.
26033
+ * @throws {RequiredError}
26034
+ * @memberof RolesApi
26035
+ */
26036
+ adminRolesOrgIdGet(orgId, options) {
26037
+ return RolesApiFp(this.configuration).adminRolesOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
26038
+ }
25483
26039
  /**
25484
26040
  * Fetches role by id
25485
26041
  * @summary Fetches role by id
@@ -25705,6 +26261,48 @@ export const SearchApiAxiosParamCreator = function (configuration) {
25705
26261
  options: localVarRequestOptions,
25706
26262
  };
25707
26263
  }),
26264
+ /**
26265
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26266
+ * @summary Public Search API
26267
+ * @param {string} xStoreid Store ID
26268
+ * @param {string} xStoresecret Store Secret
26269
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26270
+ * @param {*} [options] Override http request option.
26271
+ * @throws {RequiredError}
26272
+ */
26273
+ v1SearchPost: (xStoreid_1, xStoresecret_1, dataTypesPublicSearchRequest_1, ...args_1) => __awaiter(this, [xStoreid_1, xStoresecret_1, dataTypesPublicSearchRequest_1, ...args_1], void 0, function* (xStoreid, xStoresecret, dataTypesPublicSearchRequest, options = {}) {
26274
+ // verify required parameter 'xStoreid' is not null or undefined
26275
+ assertParamExists('v1SearchPost', 'xStoreid', xStoreid);
26276
+ // verify required parameter 'xStoresecret' is not null or undefined
26277
+ assertParamExists('v1SearchPost', 'xStoresecret', xStoresecret);
26278
+ // verify required parameter 'dataTypesPublicSearchRequest' is not null or undefined
26279
+ assertParamExists('v1SearchPost', 'dataTypesPublicSearchRequest', dataTypesPublicSearchRequest);
26280
+ const localVarPath = `/v1/search`;
26281
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26282
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26283
+ let baseOptions;
26284
+ if (configuration) {
26285
+ baseOptions = configuration.baseOptions;
26286
+ }
26287
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
26288
+ const localVarHeaderParameter = {};
26289
+ const localVarQueryParameter = {};
26290
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26291
+ if (xStoreid != null) {
26292
+ localVarHeaderParameter['x-storeid'] = String(xStoreid);
26293
+ }
26294
+ if (xStoresecret != null) {
26295
+ localVarHeaderParameter['x-storesecret'] = String(xStoresecret);
26296
+ }
26297
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26298
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26299
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
26300
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicSearchRequest, localVarRequestOptions, configuration);
26301
+ return {
26302
+ url: toPathString(localVarUrlObj),
26303
+ options: localVarRequestOptions,
26304
+ };
26305
+ }),
25708
26306
  };
25709
26307
  };
25710
26308
  /**
@@ -25814,6 +26412,24 @@ export const SearchApiFp = function (configuration) {
25814
26412
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25815
26413
  });
25816
26414
  },
26415
+ /**
26416
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26417
+ * @summary Public Search API
26418
+ * @param {string} xStoreid Store ID
26419
+ * @param {string} xStoresecret Store Secret
26420
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26421
+ * @param {*} [options] Override http request option.
26422
+ * @throws {RequiredError}
26423
+ */
26424
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26425
+ return __awaiter(this, void 0, void 0, function* () {
26426
+ var _a, _b, _c;
26427
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options);
26428
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
26429
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SearchApi.v1SearchPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
26430
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
26431
+ });
26432
+ },
25817
26433
  };
25818
26434
  };
25819
26435
  /**
@@ -25887,6 +26503,18 @@ export const SearchApiFactory = function (configuration, basePath, axios) {
25887
26503
  v1IndexIndexnameDefaultsGet(indexname, options) {
25888
26504
  return localVarFp.v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(axios, basePath));
25889
26505
  },
26506
+ /**
26507
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26508
+ * @summary Public Search API
26509
+ * @param {string} xStoreid Store ID
26510
+ * @param {string} xStoresecret Store Secret
26511
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26512
+ * @param {*} [options] Override http request option.
26513
+ * @throws {RequiredError}
26514
+ */
26515
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26516
+ return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(axios, basePath));
26517
+ },
25890
26518
  };
25891
26519
  };
25892
26520
  /**
@@ -25966,6 +26594,19 @@ export class SearchApi extends BaseAPI {
25966
26594
  v1IndexIndexnameDefaultsGet(indexname, options) {
25967
26595
  return SearchApiFp(this.configuration).v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(this.axios, this.basePath));
25968
26596
  }
26597
+ /**
26598
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26599
+ * @summary Public Search API
26600
+ * @param {string} xStoreid Store ID
26601
+ * @param {string} xStoresecret Store Secret
26602
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26603
+ * @param {*} [options] Override http request option.
26604
+ * @throws {RequiredError}
26605
+ * @memberof SearchApi
26606
+ */
26607
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26608
+ return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(this.axios, this.basePath));
26609
+ }
25969
26610
  }
25970
26611
  /**
25971
26612
  * StopwordsApi - axios parameter creator
@@ -29174,6 +29815,33 @@ export const SubscriptionsApiAxiosParamCreator = function (configuration) {
29174
29815
  options: localVarRequestOptions,
29175
29816
  };
29176
29817
  }),
29818
+ /**
29819
+ * Fetches list of all Subscription
29820
+ * @summary Fetches list of all Subscription
29821
+ * @param {*} [options] Override http request option.
29822
+ * @throws {RequiredError}
29823
+ */
29824
+ miscSubscriptionsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
29825
+ const localVarPath = `/misc/subscriptions`;
29826
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
29827
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
29828
+ let baseOptions;
29829
+ if (configuration) {
29830
+ baseOptions = configuration.baseOptions;
29831
+ }
29832
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
29833
+ const localVarHeaderParameter = {};
29834
+ const localVarQueryParameter = {};
29835
+ // authentication BearerAuth required
29836
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
29837
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
29838
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
29839
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
29840
+ return {
29841
+ url: toPathString(localVarUrlObj),
29842
+ options: localVarRequestOptions,
29843
+ };
29844
+ }),
29177
29845
  /**
29178
29846
  * Adds a new Subscription to the system
29179
29847
  * @summary Creates a new Subscription
@@ -29312,6 +29980,21 @@ export const SubscriptionsApiFp = function (configuration) {
29312
29980
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
29313
29981
  });
29314
29982
  },
29983
+ /**
29984
+ * Fetches list of all Subscription
29985
+ * @summary Fetches list of all Subscription
29986
+ * @param {*} [options] Override http request option.
29987
+ * @throws {RequiredError}
29988
+ */
29989
+ miscSubscriptionsGet(options) {
29990
+ return __awaiter(this, void 0, void 0, function* () {
29991
+ var _a, _b, _c;
29992
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscSubscriptionsGet(options);
29993
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
29994
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SubscriptionsApi.miscSubscriptionsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
29995
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
29996
+ });
29997
+ },
29315
29998
  /**
29316
29999
  * Adds a new Subscription to the system
29317
30000
  * @summary Creates a new Subscription
@@ -29395,6 +30078,15 @@ export const SubscriptionsApiFactory = function (configuration, basePath, axios)
29395
30078
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options) {
29396
30079
  return localVarFp.adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(axios, basePath));
29397
30080
  },
30081
+ /**
30082
+ * Fetches list of all Subscription
30083
+ * @summary Fetches list of all Subscription
30084
+ * @param {*} [options] Override http request option.
30085
+ * @throws {RequiredError}
30086
+ */
30087
+ miscSubscriptionsGet(options) {
30088
+ return localVarFp.miscSubscriptionsGet(options).then((request) => request(axios, basePath));
30089
+ },
29398
30090
  /**
29399
30091
  * Adds a new Subscription to the system
29400
30092
  * @summary Creates a new Subscription
@@ -29470,6 +30162,16 @@ export class SubscriptionsApi extends BaseAPI {
29470
30162
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options) {
29471
30163
  return SubscriptionsApiFp(this.configuration).adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(this.axios, this.basePath));
29472
30164
  }
30165
+ /**
30166
+ * Fetches list of all Subscription
30167
+ * @summary Fetches list of all Subscription
30168
+ * @param {*} [options] Override http request option.
30169
+ * @throws {RequiredError}
30170
+ * @memberof SubscriptionsApi
30171
+ */
30172
+ miscSubscriptionsGet(options) {
30173
+ return SubscriptionsApiFp(this.configuration).miscSubscriptionsGet(options).then((request) => request(this.axios, this.basePath));
30174
+ }
29473
30175
  /**
29474
30176
  * Adds a new Subscription to the system
29475
30177
  * @summary Creates a new Subscription