@seekora-ai/admin-api 1.1.36 → 1.1.38

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
@@ -182,6 +182,19 @@ export const DataTypesUpdateWordStatusRequestWordTypeEnum = {
182
182
  StoreLanguage: 'store_language',
183
183
  Custom: 'custom'
184
184
  };
185
+ export const MenuRoutesAddMenuRequestMenuLevelEnum = {
186
+ Org: 'org',
187
+ Store: 'store'
188
+ };
189
+ export const MenuRoutesAddMenuRequestMenuLocationEnum = {
190
+ Navbar: 'navbar',
191
+ ProfileDropdown: 'profile_dropdown'
192
+ };
193
+ export const MenuRoutesAddMenuRequestModuleTypeEnum = {
194
+ Admin: 'Admin',
195
+ Search: 'Search',
196
+ Billing: 'Billing'
197
+ };
185
198
  /**
186
199
  *
187
200
  * @export
@@ -713,7 +726,7 @@ export const AccountSettingsApiAxiosParamCreator = function (configuration) {
713
726
  };
714
727
  }),
715
728
  /**
716
- * Updates the organization details of the currently logged-in user
729
+ * Updates the organization details of the currently logged-in user and logs the activity
717
730
  * @summary Update user\'s organization
718
731
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
719
732
  * @param {*} [options] Override http request option.
@@ -923,7 +936,7 @@ export const AccountSettingsApiFp = function (configuration) {
923
936
  });
924
937
  },
925
938
  /**
926
- * Updates the organization details of the currently logged-in user
939
+ * Updates the organization details of the currently logged-in user and logs the activity
927
940
  * @summary Update user\'s organization
928
941
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
929
942
  * @param {*} [options] Override http request option.
@@ -1039,7 +1052,7 @@ export const AccountSettingsApiFactory = function (configuration, basePath, axio
1039
1052
  return localVarFp.accountSettingsOrganizationLogoPut(logo, options).then((request) => request(axios, basePath));
1040
1053
  },
1041
1054
  /**
1042
- * Updates the organization details of the currently logged-in user
1055
+ * Updates the organization details of the currently logged-in user and logs the activity
1043
1056
  * @summary Update user\'s organization
1044
1057
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
1045
1058
  * @param {*} [options] Override http request option.
@@ -1128,7 +1141,7 @@ export class AccountSettingsApi extends BaseAPI {
1128
1141
  return AccountSettingsApiFp(this.configuration).accountSettingsOrganizationLogoPut(logo, options).then((request) => request(this.axios, this.basePath));
1129
1142
  }
1130
1143
  /**
1131
- * Updates the organization details of the currently logged-in user
1144
+ * Updates the organization details of the currently logged-in user and logs the activity
1132
1145
  * @summary Update user\'s organization
1133
1146
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
1134
1147
  * @param {*} [options] Override http request option.
@@ -6780,7 +6793,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6780
6793
  };
6781
6794
  }),
6782
6795
  /**
6783
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
6796
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
6784
6797
  * @summary Create Analytics Rule
6785
6798
  * @param {string} authorization Bearer JWT token
6786
6799
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -6817,43 +6830,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6817
6830
  options: localVarRequestOptions,
6818
6831
  };
6819
6832
  }),
6820
- /**
6821
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
6822
- * @summary Delete Analytics Rule
6823
- * @param {string} authorization Bearer JWT token
6824
- * @param {string} ruleId Rule ID
6825
- * @param {*} [options] Override http request option.
6826
- * @throws {RequiredError}
6827
- */
6828
- adminV1AnalyticsRulesRuleIdDelete: (authorization_1, ruleId_1, ...args_1) => __awaiter(this, [authorization_1, ruleId_1, ...args_1], void 0, function* (authorization, ruleId, options = {}) {
6829
- // verify required parameter 'authorization' is not null or undefined
6830
- assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'authorization', authorization);
6831
- // verify required parameter 'ruleId' is not null or undefined
6832
- assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'ruleId', ruleId);
6833
- const localVarPath = `/admin/v1/analytics/rules/{ruleId}`
6834
- .replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
6835
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
6836
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6837
- let baseOptions;
6838
- if (configuration) {
6839
- baseOptions = configuration.baseOptions;
6840
- }
6841
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
6842
- const localVarHeaderParameter = {};
6843
- const localVarQueryParameter = {};
6844
- // authentication BearerAuth required
6845
- yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
6846
- if (authorization != null) {
6847
- localVarHeaderParameter['Authorization'] = String(authorization);
6848
- }
6849
- setSearchParams(localVarUrlObj, localVarQueryParameter);
6850
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6851
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
6852
- return {
6853
- url: toPathString(localVarUrlObj),
6854
- options: localVarRequestOptions,
6855
- };
6856
- }),
6857
6833
  /**
6858
6834
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
6859
6835
  * @summary Get Analytics Rule
@@ -6892,7 +6868,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6892
6868
  };
6893
6869
  }),
6894
6870
  /**
6895
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
6871
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
6896
6872
  * @summary Update Analytics Rule
6897
6873
  * @param {string} authorization Bearer JWT token
6898
6874
  * @param {string} ruleId Rule ID
@@ -7132,10 +7108,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7132
7108
  };
7133
7109
  }),
7134
7110
  /**
7135
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7111
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7136
7112
  * @summary Create Analytics Rule
7137
7113
  * @param {string} authorization Bearer JWT token
7138
- * @param {string} xstoreid Store ID (for store-specific routes)
7114
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7139
7115
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7140
7116
  * @param {*} [options] Override http request option.
7141
7117
  * @throws {RequiredError}
@@ -7173,47 +7149,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7173
7149
  options: localVarRequestOptions,
7174
7150
  };
7175
7151
  }),
7176
- /**
7177
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7178
- * @summary Delete Analytics Rule
7179
- * @param {string} authorization Bearer JWT token
7180
- * @param {string} xstoreid Store ID (for store-specific routes)
7181
- * @param {string} ruleId Rule ID
7182
- * @param {*} [options] Override http request option.
7183
- * @throws {RequiredError}
7184
- */
7185
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete: (authorization_1, xstoreid_1, ruleId_1, ...args_1) => __awaiter(this, [authorization_1, xstoreid_1, ruleId_1, ...args_1], void 0, function* (authorization, xstoreid, ruleId, options = {}) {
7186
- // verify required parameter 'authorization' is not null or undefined
7187
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'authorization', authorization);
7188
- // verify required parameter 'xstoreid' is not null or undefined
7189
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'xstoreid', xstoreid);
7190
- // verify required parameter 'ruleId' is not null or undefined
7191
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'ruleId', ruleId);
7192
- const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/{ruleId}`
7193
- .replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)))
7194
- .replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
7195
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
7196
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7197
- let baseOptions;
7198
- if (configuration) {
7199
- baseOptions = configuration.baseOptions;
7200
- }
7201
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
7202
- const localVarHeaderParameter = {};
7203
- const localVarQueryParameter = {};
7204
- // authentication BearerAuth required
7205
- yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
7206
- if (authorization != null) {
7207
- localVarHeaderParameter['Authorization'] = String(authorization);
7208
- }
7209
- setSearchParams(localVarUrlObj, localVarQueryParameter);
7210
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7211
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
7212
- return {
7213
- url: toPathString(localVarUrlObj),
7214
- options: localVarRequestOptions,
7215
- };
7216
- }),
7217
7152
  /**
7218
7153
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7219
7154
  * @summary Get Analytics Rule
@@ -7256,10 +7191,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7256
7191
  };
7257
7192
  }),
7258
7193
  /**
7259
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7194
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7260
7195
  * @summary Update Analytics Rule
7261
7196
  * @param {string} authorization Bearer JWT token
7262
- * @param {string} xstoreid Store ID (for store-specific routes)
7197
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7263
7198
  * @param {string} ruleId Rule ID
7264
7199
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7265
7200
  * @param {*} [options] Override http request option.
@@ -7379,7 +7314,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7379
7314
  });
7380
7315
  },
7381
7316
  /**
7382
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7317
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7383
7318
  * @summary Create Analytics Rule
7384
7319
  * @param {string} authorization Bearer JWT token
7385
7320
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7395,23 +7330,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7395
7330
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7396
7331
  });
7397
7332
  },
7398
- /**
7399
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7400
- * @summary Delete Analytics Rule
7401
- * @param {string} authorization Bearer JWT token
7402
- * @param {string} ruleId Rule ID
7403
- * @param {*} [options] Override http request option.
7404
- * @throws {RequiredError}
7405
- */
7406
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7407
- return __awaiter(this, void 0, void 0, function* () {
7408
- var _a, _b, _c;
7409
- const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options);
7410
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7411
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesRuleIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7412
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7413
- });
7414
- },
7415
7333
  /**
7416
7334
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7417
7335
  * @summary Get Analytics Rule
@@ -7430,7 +7348,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7430
7348
  });
7431
7349
  },
7432
7350
  /**
7433
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7351
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7434
7352
  * @summary Update Analytics Rule
7435
7353
  * @param {string} authorization Bearer JWT token
7436
7354
  * @param {string} ruleId Rule ID
@@ -7528,10 +7446,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7528
7446
  });
7529
7447
  },
7530
7448
  /**
7531
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7449
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7532
7450
  * @summary Create Analytics Rule
7533
7451
  * @param {string} authorization Bearer JWT token
7534
- * @param {string} xstoreid Store ID (for store-specific routes)
7452
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7535
7453
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7536
7454
  * @param {*} [options] Override http request option.
7537
7455
  * @throws {RequiredError}
@@ -7545,24 +7463,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7545
7463
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7546
7464
  });
7547
7465
  },
7548
- /**
7549
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7550
- * @summary Delete Analytics Rule
7551
- * @param {string} authorization Bearer JWT token
7552
- * @param {string} xstoreid Store ID (for store-specific routes)
7553
- * @param {string} ruleId Rule ID
7554
- * @param {*} [options] Override http request option.
7555
- * @throws {RequiredError}
7556
- */
7557
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7558
- return __awaiter(this, void 0, void 0, function* () {
7559
- var _a, _b, _c;
7560
- const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options);
7561
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7562
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7563
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7564
- });
7565
- },
7566
7466
  /**
7567
7467
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7568
7468
  * @summary Get Analytics Rule
@@ -7582,10 +7482,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7582
7482
  });
7583
7483
  },
7584
7484
  /**
7585
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7485
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7586
7486
  * @summary Update Analytics Rule
7587
7487
  * @param {string} authorization Bearer JWT token
7588
- * @param {string} xstoreid Store ID (for store-specific routes)
7488
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7589
7489
  * @param {string} ruleId Rule ID
7590
7490
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7591
7491
  * @param {*} [options] Override http request option.
@@ -7648,7 +7548,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7648
7548
  return localVarFp.adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7649
7549
  },
7650
7550
  /**
7651
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7551
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7652
7552
  * @summary Create Analytics Rule
7653
7553
  * @param {string} authorization Bearer JWT token
7654
7554
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7658,17 +7558,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7658
7558
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7659
7559
  return localVarFp.adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7660
7560
  },
7661
- /**
7662
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7663
- * @summary Delete Analytics Rule
7664
- * @param {string} authorization Bearer JWT token
7665
- * @param {string} ruleId Rule ID
7666
- * @param {*} [options] Override http request option.
7667
- * @throws {RequiredError}
7668
- */
7669
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7670
- return localVarFp.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(axios, basePath));
7671
- },
7672
7561
  /**
7673
7562
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7674
7563
  * @summary Get Analytics Rule
@@ -7681,7 +7570,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7681
7570
  return localVarFp.adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(axios, basePath));
7682
7571
  },
7683
7572
  /**
7684
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7573
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7685
7574
  * @summary Update Analytics Rule
7686
7575
  * @param {string} authorization Bearer JWT token
7687
7576
  * @param {string} ruleId Rule ID
@@ -7749,10 +7638,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7749
7638
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7750
7639
  },
7751
7640
  /**
7752
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7641
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7753
7642
  * @summary Create Analytics Rule
7754
7643
  * @param {string} authorization Bearer JWT token
7755
- * @param {string} xstoreid Store ID (for store-specific routes)
7644
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7756
7645
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7757
7646
  * @param {*} [options] Override http request option.
7758
7647
  * @throws {RequiredError}
@@ -7760,18 +7649,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7760
7649
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7761
7650
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7762
7651
  },
7763
- /**
7764
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7765
- * @summary Delete Analytics Rule
7766
- * @param {string} authorization Bearer JWT token
7767
- * @param {string} xstoreid Store ID (for store-specific routes)
7768
- * @param {string} ruleId Rule ID
7769
- * @param {*} [options] Override http request option.
7770
- * @throws {RequiredError}
7771
- */
7772
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7773
- return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
7774
- },
7775
7652
  /**
7776
7653
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7777
7654
  * @summary Get Analytics Rule
@@ -7785,10 +7662,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7785
7662
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
7786
7663
  },
7787
7664
  /**
7788
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7665
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7789
7666
  * @summary Update Analytics Rule
7790
7667
  * @param {string} authorization Bearer JWT token
7791
- * @param {string} xstoreid Store ID (for store-specific routes)
7668
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7792
7669
  * @param {string} ruleId Rule ID
7793
7670
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7794
7671
  * @param {*} [options] Override http request option.
@@ -7840,7 +7717,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7840
7717
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(this.axios, this.basePath));
7841
7718
  }
7842
7719
  /**
7843
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7720
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7844
7721
  * @summary Create Analytics Rule
7845
7722
  * @param {string} authorization Bearer JWT token
7846
7723
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7851,18 +7728,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7851
7728
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7852
7729
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7853
7730
  }
7854
- /**
7855
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7856
- * @summary Delete Analytics Rule
7857
- * @param {string} authorization Bearer JWT token
7858
- * @param {string} ruleId Rule ID
7859
- * @param {*} [options] Override http request option.
7860
- * @throws {RequiredError}
7861
- * @memberof AnalyticsRulesApi
7862
- */
7863
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7864
- return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
7865
- }
7866
7731
  /**
7867
7732
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7868
7733
  * @summary Get Analytics Rule
@@ -7876,7 +7741,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7876
7741
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
7877
7742
  }
7878
7743
  /**
7879
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7744
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7880
7745
  * @summary Update Analytics Rule
7881
7746
  * @param {string} authorization Bearer JWT token
7882
7747
  * @param {string} ruleId Rule ID
@@ -7949,10 +7814,10 @@ export class AnalyticsRulesApi extends BaseAPI {
7949
7814
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(this.axios, this.basePath));
7950
7815
  }
7951
7816
  /**
7952
- * Create a new analytics rule for Typesense curation. Rules define how search results should be modified (promoted, hidden, filtered, sorted) based on query conditions.
7817
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7953
7818
  * @summary Create Analytics Rule
7954
7819
  * @param {string} authorization Bearer JWT token
7955
- * @param {string} xstoreid Store ID (for store-specific routes)
7820
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7956
7821
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7957
7822
  * @param {*} [options] Override http request option.
7958
7823
  * @throws {RequiredError}
@@ -7961,19 +7826,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7961
7826
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7962
7827
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7963
7828
  }
7964
- /**
7965
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7966
- * @summary Delete Analytics Rule
7967
- * @param {string} authorization Bearer JWT token
7968
- * @param {string} xstoreid Store ID (for store-specific routes)
7969
- * @param {string} ruleId Rule ID
7970
- * @param {*} [options] Override http request option.
7971
- * @throws {RequiredError}
7972
- * @memberof AnalyticsRulesApi
7973
- */
7974
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7975
- return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
7976
- }
7977
7829
  /**
7978
7830
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7979
7831
  * @summary Get Analytics Rule
@@ -7988,10 +7840,10 @@ export class AnalyticsRulesApi extends BaseAPI {
7988
7840
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
7989
7841
  }
7990
7842
  /**
7991
- * Update an existing analytics rule. Supports partial updates. When is_active is set to false, the rule is removed from Typesense. When is_active is set to true, the rule is synced to Typesense.
7843
+ * Update an existing analytics rule. Supports partial updates. - If is_active = false rule will be removed from Typesense. - If is_active = true rule will be synced to Typesense.
7992
7844
  * @summary Update Analytics Rule
7993
7845
  * @param {string} authorization Bearer JWT token
7994
- * @param {string} xstoreid Store ID (for store-specific routes)
7846
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7995
7847
  * @param {string} ruleId Rule ID
7996
7848
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7997
7849
  * @param {*} [options] Override http request option.
@@ -8949,7 +8801,7 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
8949
8801
  };
8950
8802
  }),
8951
8803
  /**
8952
- * Updates an existing billing alert configuration
8804
+ * Updates an existing billing alert configuration AND records activity logs
8953
8805
  * @summary Update billing alert
8954
8806
  * @param {number} id Alert ID
8955
8807
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10219,7 +10071,7 @@ export const BillingDashboardApiFp = function (configuration) {
10219
10071
  });
10220
10072
  },
10221
10073
  /**
10222
- * Updates an existing billing alert configuration
10074
+ * Updates an existing billing alert configuration AND records activity logs
10223
10075
  * @summary Update billing alert
10224
10076
  * @param {number} id Alert ID
10225
10077
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10806,7 +10658,7 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
10806
10658
  return localVarFp.adminBillingAlertsIdDelete(id, options).then((request) => request(axios, basePath));
10807
10659
  },
10808
10660
  /**
10809
- * Updates an existing billing alert configuration
10661
+ * Updates an existing billing alert configuration AND records activity logs
10810
10662
  * @summary Update billing alert
10811
10663
  * @param {number} id Alert ID
10812
10664
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -11215,7 +11067,7 @@ export class BillingDashboardApi extends BaseAPI {
11215
11067
  return BillingDashboardApiFp(this.configuration).adminBillingAlertsIdDelete(id, options).then((request) => request(this.axios, this.basePath));
11216
11068
  }
11217
11069
  /**
11218
- * Updates an existing billing alert configuration
11070
+ * Updates an existing billing alert configuration AND records activity logs
11219
11071
  * @summary Update billing alert
11220
11072
  * @param {number} id Alert ID
11221
11073
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -13895,7 +13747,7 @@ export const CustomStopwordsApiAxiosParamCreator = function (configuration) {
13895
13747
  };
13896
13748
  }),
13897
13749
  /**
13898
- * Updates a custom word list
13750
+ *
13899
13751
  * @summary Update custom word list
13900
13752
  * @param {string} xStoreID X-Store ID
13901
13753
  * @param {number} customWordListID Custom Word List ID
@@ -14141,7 +13993,7 @@ export const CustomStopwordsApiFp = function (configuration) {
14141
13993
  });
14142
13994
  },
14143
13995
  /**
14144
- * Updates a custom word list
13996
+ *
14145
13997
  * @summary Update custom word list
14146
13998
  * @param {string} xStoreID X-Store ID
14147
13999
  * @param {number} customWordListID Custom Word List ID
@@ -14263,7 +14115,7 @@ export const CustomStopwordsApiFactory = function (configuration, basePath, axio
14263
14115
  return localVarFp.adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(axios, basePath));
14264
14116
  },
14265
14117
  /**
14266
- * Updates a custom word list
14118
+ *
14267
14119
  * @summary Update custom word list
14268
14120
  * @param {string} xStoreID X-Store ID
14269
14121
  * @param {number} customWordListID Custom Word List ID
@@ -14357,7 +14209,7 @@ export class CustomStopwordsApi extends BaseAPI {
14357
14209
  return CustomStopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(this.axios, this.basePath));
14358
14210
  }
14359
14211
  /**
14360
- * Updates a custom word list
14212
+ *
14361
14213
  * @summary Update custom word list
14362
14214
  * @param {string} xStoreID X-Store ID
14363
14215
  * @param {number} customWordListID Custom Word List ID
@@ -14423,6 +14275,177 @@ export class CustomStopwordsApi extends BaseAPI {
14423
14275
  return CustomStopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsCustomWordlistsPost(xStoreID, dataTypesCreateCustomWordListRequest, options).then((request) => request(this.axios, this.basePath));
14424
14276
  }
14425
14277
  }
14278
+ /**
14279
+ * DefaultMenuManagementApi - axios parameter creator
14280
+ * @export
14281
+ */
14282
+ export const DefaultMenuManagementApiAxiosParamCreator = function (configuration) {
14283
+ return {
14284
+ /**
14285
+ * Retrieve all default menus with their global visibility settings
14286
+ * @summary Get all default menus with visibility flags
14287
+ * @param {string} [menuLevel] Filter by menu level (org/store)
14288
+ * @param {*} [options] Override http request option.
14289
+ * @throws {RequiredError}
14290
+ */
14291
+ adminDefaultMenusGet: (menuLevel_1, ...args_1) => __awaiter(this, [menuLevel_1, ...args_1], void 0, function* (menuLevel, options = {}) {
14292
+ const localVarPath = `/admin/default-menus`;
14293
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
14294
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14295
+ let baseOptions;
14296
+ if (configuration) {
14297
+ baseOptions = configuration.baseOptions;
14298
+ }
14299
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
14300
+ const localVarHeaderParameter = {};
14301
+ const localVarQueryParameter = {};
14302
+ // authentication BearerAuth required
14303
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
14304
+ if (menuLevel !== undefined) {
14305
+ localVarQueryParameter['menuLevel'] = menuLevel;
14306
+ }
14307
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
14308
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14309
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
14310
+ return {
14311
+ url: toPathString(localVarUrlObj),
14312
+ options: localVarRequestOptions,
14313
+ };
14314
+ }),
14315
+ /**
14316
+ * Update the global visibility flag for a default menu
14317
+ * @summary Update menu global visibility
14318
+ * @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
14319
+ * @param {*} [options] Override http request option.
14320
+ * @throws {RequiredError}
14321
+ */
14322
+ adminDefaultMenusVisibilityPut: (defaultMenuRoutesUpdateMenuVisibilityRequest_1, ...args_1) => __awaiter(this, [defaultMenuRoutesUpdateMenuVisibilityRequest_1, ...args_1], void 0, function* (defaultMenuRoutesUpdateMenuVisibilityRequest, options = {}) {
14323
+ // verify required parameter 'defaultMenuRoutesUpdateMenuVisibilityRequest' is not null or undefined
14324
+ assertParamExists('adminDefaultMenusVisibilityPut', 'defaultMenuRoutesUpdateMenuVisibilityRequest', defaultMenuRoutesUpdateMenuVisibilityRequest);
14325
+ const localVarPath = `/admin/default-menus/visibility`;
14326
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
14327
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14328
+ let baseOptions;
14329
+ if (configuration) {
14330
+ baseOptions = configuration.baseOptions;
14331
+ }
14332
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
14333
+ const localVarHeaderParameter = {};
14334
+ const localVarQueryParameter = {};
14335
+ // authentication BearerAuth required
14336
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
14337
+ localVarHeaderParameter['Content-Type'] = 'application/json';
14338
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
14339
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14340
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
14341
+ localVarRequestOptions.data = serializeDataIfNeeded(defaultMenuRoutesUpdateMenuVisibilityRequest, localVarRequestOptions, configuration);
14342
+ return {
14343
+ url: toPathString(localVarUrlObj),
14344
+ options: localVarRequestOptions,
14345
+ };
14346
+ }),
14347
+ };
14348
+ };
14349
+ /**
14350
+ * DefaultMenuManagementApi - functional programming interface
14351
+ * @export
14352
+ */
14353
+ export const DefaultMenuManagementApiFp = function (configuration) {
14354
+ const localVarAxiosParamCreator = DefaultMenuManagementApiAxiosParamCreator(configuration);
14355
+ return {
14356
+ /**
14357
+ * Retrieve all default menus with their global visibility settings
14358
+ * @summary Get all default menus with visibility flags
14359
+ * @param {string} [menuLevel] Filter by menu level (org/store)
14360
+ * @param {*} [options] Override http request option.
14361
+ * @throws {RequiredError}
14362
+ */
14363
+ adminDefaultMenusGet(menuLevel, options) {
14364
+ return __awaiter(this, void 0, void 0, function* () {
14365
+ var _a, _b, _c;
14366
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminDefaultMenusGet(menuLevel, options);
14367
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
14368
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DefaultMenuManagementApi.adminDefaultMenusGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
14369
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14370
+ });
14371
+ },
14372
+ /**
14373
+ * Update the global visibility flag for a default menu
14374
+ * @summary Update menu global visibility
14375
+ * @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
14376
+ * @param {*} [options] Override http request option.
14377
+ * @throws {RequiredError}
14378
+ */
14379
+ adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options) {
14380
+ return __awaiter(this, void 0, void 0, function* () {
14381
+ var _a, _b, _c;
14382
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options);
14383
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
14384
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DefaultMenuManagementApi.adminDefaultMenusVisibilityPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
14385
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14386
+ });
14387
+ },
14388
+ };
14389
+ };
14390
+ /**
14391
+ * DefaultMenuManagementApi - factory interface
14392
+ * @export
14393
+ */
14394
+ export const DefaultMenuManagementApiFactory = function (configuration, basePath, axios) {
14395
+ const localVarFp = DefaultMenuManagementApiFp(configuration);
14396
+ return {
14397
+ /**
14398
+ * Retrieve all default menus with their global visibility settings
14399
+ * @summary Get all default menus with visibility flags
14400
+ * @param {string} [menuLevel] Filter by menu level (org/store)
14401
+ * @param {*} [options] Override http request option.
14402
+ * @throws {RequiredError}
14403
+ */
14404
+ adminDefaultMenusGet(menuLevel, options) {
14405
+ return localVarFp.adminDefaultMenusGet(menuLevel, options).then((request) => request(axios, basePath));
14406
+ },
14407
+ /**
14408
+ * Update the global visibility flag for a default menu
14409
+ * @summary Update menu global visibility
14410
+ * @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
14411
+ * @param {*} [options] Override http request option.
14412
+ * @throws {RequiredError}
14413
+ */
14414
+ adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options) {
14415
+ return localVarFp.adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options).then((request) => request(axios, basePath));
14416
+ },
14417
+ };
14418
+ };
14419
+ /**
14420
+ * DefaultMenuManagementApi - object-oriented interface
14421
+ * @export
14422
+ * @class DefaultMenuManagementApi
14423
+ * @extends {BaseAPI}
14424
+ */
14425
+ export class DefaultMenuManagementApi extends BaseAPI {
14426
+ /**
14427
+ * Retrieve all default menus with their global visibility settings
14428
+ * @summary Get all default menus with visibility flags
14429
+ * @param {string} [menuLevel] Filter by menu level (org/store)
14430
+ * @param {*} [options] Override http request option.
14431
+ * @throws {RequiredError}
14432
+ * @memberof DefaultMenuManagementApi
14433
+ */
14434
+ adminDefaultMenusGet(menuLevel, options) {
14435
+ return DefaultMenuManagementApiFp(this.configuration).adminDefaultMenusGet(menuLevel, options).then((request) => request(this.axios, this.basePath));
14436
+ }
14437
+ /**
14438
+ * Update the global visibility flag for a default menu
14439
+ * @summary Update menu global visibility
14440
+ * @param {DefaultMenuRoutesUpdateMenuVisibilityRequest} defaultMenuRoutesUpdateMenuVisibilityRequest Visibility update details
14441
+ * @param {*} [options] Override http request option.
14442
+ * @throws {RequiredError}
14443
+ * @memberof DefaultMenuManagementApi
14444
+ */
14445
+ adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options) {
14446
+ return DefaultMenuManagementApiFp(this.configuration).adminDefaultMenusVisibilityPut(defaultMenuRoutesUpdateMenuVisibilityRequest, options).then((request) => request(this.axios, this.basePath));
14447
+ }
14448
+ }
14426
14449
  /**
14427
14450
  * DocumentsApi - axios parameter creator
14428
14451
  * @export
@@ -14430,10 +14453,10 @@ export class CustomStopwordsApi extends BaseAPI {
14430
14453
  export const DocumentsApiAxiosParamCreator = function (configuration) {
14431
14454
  return {
14432
14455
  /**
14433
- * Uploads a document to the specified store
14456
+ * Uploads one or more documents to the specified store and logs activity
14434
14457
  * @summary Upload a document
14435
14458
  * @param {string} xStoreID X-Store ID
14436
- * @param {File} file Document file
14459
+ * @param {File} file Document files (supports multiple)
14437
14460
  * @param {*} [options] Override http request option.
14438
14461
  * @throws {RequiredError}
14439
14462
  */
@@ -14479,10 +14502,10 @@ export const DocumentsApiFp = function (configuration) {
14479
14502
  const localVarAxiosParamCreator = DocumentsApiAxiosParamCreator(configuration);
14480
14503
  return {
14481
14504
  /**
14482
- * Uploads a document to the specified store
14505
+ * Uploads one or more documents to the specified store and logs activity
14483
14506
  * @summary Upload a document
14484
14507
  * @param {string} xStoreID X-Store ID
14485
- * @param {File} file Document file
14508
+ * @param {File} file Document files (supports multiple)
14486
14509
  * @param {*} [options] Override http request option.
14487
14510
  * @throws {RequiredError}
14488
14511
  */
@@ -14505,10 +14528,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14505
14528
  const localVarFp = DocumentsApiFp(configuration);
14506
14529
  return {
14507
14530
  /**
14508
- * Uploads a document to the specified store
14531
+ * Uploads one or more documents to the specified store and logs activity
14509
14532
  * @summary Upload a document
14510
14533
  * @param {string} xStoreID X-Store ID
14511
- * @param {File} file Document file
14534
+ * @param {File} file Document files (supports multiple)
14512
14535
  * @param {*} [options] Override http request option.
14513
14536
  * @throws {RequiredError}
14514
14537
  */
@@ -14525,10 +14548,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14525
14548
  */
14526
14549
  export class DocumentsApi extends BaseAPI {
14527
14550
  /**
14528
- * Uploads a document to the specified store
14551
+ * Uploads one or more documents to the specified store and logs activity
14529
14552
  * @summary Upload a document
14530
14553
  * @param {string} xStoreID X-Store ID
14531
- * @param {File} file Document file
14554
+ * @param {File} file Document files (supports multiple)
14532
14555
  * @param {*} [options] Override http request option.
14533
14556
  * @throws {RequiredError}
14534
14557
  * @memberof DocumentsApi
@@ -17195,6 +17218,178 @@ export class LimitsApi extends BaseAPI {
17195
17218
  return LimitsApiFp(this.configuration).miscLimitsPost(dataTypesCreateLimitRequestDto, options).then((request) => request(this.axios, this.basePath));
17196
17219
  }
17197
17220
  }
17221
+ /**
17222
+ * MenuManagementApi - axios parameter creator
17223
+ * @export
17224
+ */
17225
+ export const MenuManagementApiAxiosParamCreator = function (configuration) {
17226
+ return {
17227
+ /**
17228
+ * Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
17229
+ * @summary Add new menu with permissions
17230
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17231
+ * @param {*} [options] Override http request option.
17232
+ * @throws {RequiredError}
17233
+ */
17234
+ adminMenusAddPost: (menuRoutesAddMenuRequest_1, ...args_1) => __awaiter(this, [menuRoutesAddMenuRequest_1, ...args_1], void 0, function* (menuRoutesAddMenuRequest, options = {}) {
17235
+ // verify required parameter 'menuRoutesAddMenuRequest' is not null or undefined
17236
+ assertParamExists('adminMenusAddPost', 'menuRoutesAddMenuRequest', menuRoutesAddMenuRequest);
17237
+ const localVarPath = `/admin/menus/add`;
17238
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
17239
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17240
+ let baseOptions;
17241
+ if (configuration) {
17242
+ baseOptions = configuration.baseOptions;
17243
+ }
17244
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
17245
+ const localVarHeaderParameter = {};
17246
+ const localVarQueryParameter = {};
17247
+ // authentication BearerAuth required
17248
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
17249
+ localVarHeaderParameter['Content-Type'] = 'application/json';
17250
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
17251
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17252
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
17253
+ localVarRequestOptions.data = serializeDataIfNeeded(menuRoutesAddMenuRequest, localVarRequestOptions, configuration);
17254
+ return {
17255
+ url: toPathString(localVarUrlObj),
17256
+ options: localVarRequestOptions,
17257
+ };
17258
+ }),
17259
+ /**
17260
+ * Preview what would happen when adding a menu (dry run)
17261
+ * @summary Get menu addition preview
17262
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17263
+ * @param {*} [options] Override http request option.
17264
+ * @throws {RequiredError}
17265
+ */
17266
+ adminMenusPreviewPost: (menuRoutesAddMenuRequest_1, ...args_1) => __awaiter(this, [menuRoutesAddMenuRequest_1, ...args_1], void 0, function* (menuRoutesAddMenuRequest, options = {}) {
17267
+ // verify required parameter 'menuRoutesAddMenuRequest' is not null or undefined
17268
+ assertParamExists('adminMenusPreviewPost', 'menuRoutesAddMenuRequest', menuRoutesAddMenuRequest);
17269
+ const localVarPath = `/admin/menus/preview`;
17270
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
17271
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17272
+ let baseOptions;
17273
+ if (configuration) {
17274
+ baseOptions = configuration.baseOptions;
17275
+ }
17276
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
17277
+ const localVarHeaderParameter = {};
17278
+ const localVarQueryParameter = {};
17279
+ // authentication BearerAuth required
17280
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
17281
+ localVarHeaderParameter['Content-Type'] = 'application/json';
17282
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
17283
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17284
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
17285
+ localVarRequestOptions.data = serializeDataIfNeeded(menuRoutesAddMenuRequest, localVarRequestOptions, configuration);
17286
+ return {
17287
+ url: toPathString(localVarUrlObj),
17288
+ options: localVarRequestOptions,
17289
+ };
17290
+ }),
17291
+ };
17292
+ };
17293
+ /**
17294
+ * MenuManagementApi - functional programming interface
17295
+ * @export
17296
+ */
17297
+ export const MenuManagementApiFp = function (configuration) {
17298
+ const localVarAxiosParamCreator = MenuManagementApiAxiosParamCreator(configuration);
17299
+ return {
17300
+ /**
17301
+ * Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
17302
+ * @summary Add new menu with permissions
17303
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17304
+ * @param {*} [options] Override http request option.
17305
+ * @throws {RequiredError}
17306
+ */
17307
+ adminMenusAddPost(menuRoutesAddMenuRequest, options) {
17308
+ return __awaiter(this, void 0, void 0, function* () {
17309
+ var _a, _b, _c;
17310
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminMenusAddPost(menuRoutesAddMenuRequest, options);
17311
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17312
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenuManagementApi.adminMenusAddPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17313
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17314
+ });
17315
+ },
17316
+ /**
17317
+ * Preview what would happen when adding a menu (dry run)
17318
+ * @summary Get menu addition preview
17319
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17320
+ * @param {*} [options] Override http request option.
17321
+ * @throws {RequiredError}
17322
+ */
17323
+ adminMenusPreviewPost(menuRoutesAddMenuRequest, options) {
17324
+ return __awaiter(this, void 0, void 0, function* () {
17325
+ var _a, _b, _c;
17326
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminMenusPreviewPost(menuRoutesAddMenuRequest, options);
17327
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17328
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenuManagementApi.adminMenusPreviewPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17329
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17330
+ });
17331
+ },
17332
+ };
17333
+ };
17334
+ /**
17335
+ * MenuManagementApi - factory interface
17336
+ * @export
17337
+ */
17338
+ export const MenuManagementApiFactory = function (configuration, basePath, axios) {
17339
+ const localVarFp = MenuManagementApiFp(configuration);
17340
+ return {
17341
+ /**
17342
+ * Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
17343
+ * @summary Add new menu with permissions
17344
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17345
+ * @param {*} [options] Override http request option.
17346
+ * @throws {RequiredError}
17347
+ */
17348
+ adminMenusAddPost(menuRoutesAddMenuRequest, options) {
17349
+ return localVarFp.adminMenusAddPost(menuRoutesAddMenuRequest, options).then((request) => request(axios, basePath));
17350
+ },
17351
+ /**
17352
+ * Preview what would happen when adding a menu (dry run)
17353
+ * @summary Get menu addition preview
17354
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17355
+ * @param {*} [options] Override http request option.
17356
+ * @throws {RequiredError}
17357
+ */
17358
+ adminMenusPreviewPost(menuRoutesAddMenuRequest, options) {
17359
+ return localVarFp.adminMenusPreviewPost(menuRoutesAddMenuRequest, options).then((request) => request(axios, basePath));
17360
+ },
17361
+ };
17362
+ };
17363
+ /**
17364
+ * MenuManagementApi - object-oriented interface
17365
+ * @export
17366
+ * @class MenuManagementApi
17367
+ * @extends {BaseAPI}
17368
+ */
17369
+ export class MenuManagementApi extends BaseAPI {
17370
+ /**
17371
+ * Safely adds a new menu to default configuration and retroactively applies to existing users/orgs/stores
17372
+ * @summary Add new menu with permissions
17373
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17374
+ * @param {*} [options] Override http request option.
17375
+ * @throws {RequiredError}
17376
+ * @memberof MenuManagementApi
17377
+ */
17378
+ adminMenusAddPost(menuRoutesAddMenuRequest, options) {
17379
+ return MenuManagementApiFp(this.configuration).adminMenusAddPost(menuRoutesAddMenuRequest, options).then((request) => request(this.axios, this.basePath));
17380
+ }
17381
+ /**
17382
+ * Preview what would happen when adding a menu (dry run)
17383
+ * @summary Get menu addition preview
17384
+ * @param {MenuRoutesAddMenuRequest} menuRoutesAddMenuRequest Menu details
17385
+ * @param {*} [options] Override http request option.
17386
+ * @throws {RequiredError}
17387
+ * @memberof MenuManagementApi
17388
+ */
17389
+ adminMenusPreviewPost(menuRoutesAddMenuRequest, options) {
17390
+ return MenuManagementApiFp(this.configuration).adminMenusPreviewPost(menuRoutesAddMenuRequest, options).then((request) => request(this.axios, this.basePath));
17391
+ }
17392
+ }
17198
17393
  /**
17199
17394
  * MenuRouteMetricsApi - axios parameter creator
17200
17395
  * @export
@@ -21235,8 +21430,8 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21235
21430
  };
21236
21431
  }),
21237
21432
  /**
21238
- * Updates Orgnization information by ID.
21239
- * @summary Update an existing Orgnization
21433
+ * Updates Organization information by ID and logs the update activity.
21434
+ * @summary Update an existing Organization
21240
21435
  * @param {number} id Org Id
21241
21436
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21242
21437
  * @param {*} [options] Override http request option.
@@ -21302,9 +21497,9 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21302
21497
  };
21303
21498
  }),
21304
21499
  /**
21305
- * Adds a new Orgnization
21306
- * @summary Creates a new Orgnization
21307
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21500
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21501
+ * @summary Creates a new Organization
21502
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21308
21503
  * @param {*} [options] Override http request option.
21309
21504
  * @throws {RequiredError}
21310
21505
  */
@@ -21334,10 +21529,10 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21334
21529
  };
21335
21530
  }),
21336
21531
  /**
21337
- * Deletes a Orgnization from the system by ID.
21338
- * @summary Delete a Orgnization
21339
- * @param {number} id Org ID
21340
- * @param {boolean} status status
21532
+ * Updates the deletion status of an Organization by ID.
21533
+ * @summary Delete an Organization (soft delete / status update)
21534
+ * @param {number} id Organization ID
21535
+ * @param {boolean} status Delete status: true = delete, false = restore
21341
21536
  * @param {*} [options] Override http request option.
21342
21537
  * @throws {RequiredError}
21343
21538
  */
@@ -21393,8 +21588,8 @@ export const OrganizationsApiFp = function (configuration) {
21393
21588
  });
21394
21589
  },
21395
21590
  /**
21396
- * Updates Orgnization information by ID.
21397
- * @summary Update an existing Orgnization
21591
+ * Updates Organization information by ID and logs the update activity.
21592
+ * @summary Update an existing Organization
21398
21593
  * @param {number} id Org Id
21399
21594
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21400
21595
  * @param {*} [options] Override http request option.
@@ -21426,9 +21621,9 @@ export const OrganizationsApiFp = function (configuration) {
21426
21621
  });
21427
21622
  },
21428
21623
  /**
21429
- * Adds a new Orgnization
21430
- * @summary Creates a new Orgnization
21431
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21624
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21625
+ * @summary Creates a new Organization
21626
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21432
21627
  * @param {*} [options] Override http request option.
21433
21628
  * @throws {RequiredError}
21434
21629
  */
@@ -21442,10 +21637,10 @@ export const OrganizationsApiFp = function (configuration) {
21442
21637
  });
21443
21638
  },
21444
21639
  /**
21445
- * Deletes a Orgnization from the system by ID.
21446
- * @summary Delete a Orgnization
21447
- * @param {number} id Org ID
21448
- * @param {boolean} status status
21640
+ * Updates the deletion status of an Organization by ID.
21641
+ * @summary Delete an Organization (soft delete / status update)
21642
+ * @param {number} id Organization ID
21643
+ * @param {boolean} status Delete status: true = delete, false = restore
21449
21644
  * @param {*} [options] Override http request option.
21450
21645
  * @throws {RequiredError}
21451
21646
  */
@@ -21477,8 +21672,8 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21477
21672
  return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
21478
21673
  },
21479
21674
  /**
21480
- * Updates Orgnization information by ID.
21481
- * @summary Update an existing Orgnization
21675
+ * Updates Organization information by ID and logs the update activity.
21676
+ * @summary Update an existing Organization
21482
21677
  * @param {number} id Org Id
21483
21678
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21484
21679
  * @param {*} [options] Override http request option.
@@ -21498,9 +21693,9 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21498
21693
  return localVarFp.adminOrganizationsOrgIdGet(orgId, options).then((request) => request(axios, basePath));
21499
21694
  },
21500
21695
  /**
21501
- * Adds a new Orgnization
21502
- * @summary Creates a new Orgnization
21503
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21696
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21697
+ * @summary Creates a new Organization
21698
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21504
21699
  * @param {*} [options] Override http request option.
21505
21700
  * @throws {RequiredError}
21506
21701
  */
@@ -21508,10 +21703,10 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21508
21703
  return localVarFp.adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(axios, basePath));
21509
21704
  },
21510
21705
  /**
21511
- * Deletes a Orgnization from the system by ID.
21512
- * @summary Delete a Orgnization
21513
- * @param {number} id Org ID
21514
- * @param {boolean} status status
21706
+ * Updates the deletion status of an Organization by ID.
21707
+ * @summary Delete an Organization (soft delete / status update)
21708
+ * @param {number} id Organization ID
21709
+ * @param {boolean} status Delete status: true = delete, false = restore
21515
21710
  * @param {*} [options] Override http request option.
21516
21711
  * @throws {RequiredError}
21517
21712
  */
@@ -21538,8 +21733,8 @@ export class OrganizationsApi extends BaseAPI {
21538
21733
  return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
21539
21734
  }
21540
21735
  /**
21541
- * Updates Orgnization information by ID.
21542
- * @summary Update an existing Orgnization
21736
+ * Updates Organization information by ID and logs the update activity.
21737
+ * @summary Update an existing Organization
21543
21738
  * @param {number} id Org Id
21544
21739
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21545
21740
  * @param {*} [options] Override http request option.
@@ -21561,9 +21756,9 @@ export class OrganizationsApi extends BaseAPI {
21561
21756
  return OrganizationsApiFp(this.configuration).adminOrganizationsOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
21562
21757
  }
21563
21758
  /**
21564
- * Adds a new Orgnization
21565
- * @summary Creates a new Orgnization
21566
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21759
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21760
+ * @summary Creates a new Organization
21761
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21567
21762
  * @param {*} [options] Override http request option.
21568
21763
  * @throws {RequiredError}
21569
21764
  * @memberof OrganizationsApi
@@ -21572,10 +21767,10 @@ export class OrganizationsApi extends BaseAPI {
21572
21767
  return OrganizationsApiFp(this.configuration).adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(this.axios, this.basePath));
21573
21768
  }
21574
21769
  /**
21575
- * Deletes a Orgnization from the system by ID.
21576
- * @summary Delete a Orgnization
21577
- * @param {number} id Org ID
21578
- * @param {boolean} status status
21770
+ * Updates the deletion status of an Organization by ID.
21771
+ * @summary Delete an Organization (soft delete / status update)
21772
+ * @param {number} id Organization ID
21773
+ * @param {boolean} status Delete status: true = delete, false = restore
21579
21774
  * @param {*} [options] Override http request option.
21580
21775
  * @throws {RequiredError}
21581
21776
  * @memberof OrganizationsApi
@@ -21967,9 +22162,9 @@ export class ParentMenusApi extends BaseAPI {
21967
22162
  export const PaymentGatewayApiAxiosParamCreator = function (configuration) {
21968
22163
  return {
21969
22164
  /**
21970
- * Creates a payment order using specified or default payment gateway
22165
+ * Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
21971
22166
  * @summary Create a new payment order
21972
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
22167
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
21973
22168
  * @param {*} [options] Override http request option.
21974
22169
  * @throws {RequiredError}
21975
22170
  */
@@ -22419,9 +22614,9 @@ export const PaymentGatewayApiFp = function (configuration) {
22419
22614
  const localVarAxiosParamCreator = PaymentGatewayApiAxiosParamCreator(configuration);
22420
22615
  return {
22421
22616
  /**
22422
- * Creates a payment order using specified or default payment gateway
22617
+ * Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
22423
22618
  * @summary Create a new payment order
22424
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
22619
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
22425
22620
  * @param {*} [options] Override http request option.
22426
22621
  * @throws {RequiredError}
22427
22622
  */
@@ -22647,9 +22842,9 @@ export const PaymentGatewayApiFactory = function (configuration, basePath, axios
22647
22842
  const localVarFp = PaymentGatewayApiFp(configuration);
22648
22843
  return {
22649
22844
  /**
22650
- * Creates a payment order using specified or default payment gateway
22845
+ * Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
22651
22846
  * @summary Create a new payment order
22652
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
22847
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
22653
22848
  * @param {*} [options] Override http request option.
22654
22849
  * @throws {RequiredError}
22655
22850
  */
@@ -22797,9 +22992,9 @@ export const PaymentGatewayApiFactory = function (configuration, basePath, axios
22797
22992
  */
22798
22993
  export class PaymentGatewayApi extends BaseAPI {
22799
22994
  /**
22800
- * Creates a payment order using specified or default payment gateway
22995
+ * Creates a payment order using specified or default payment gateway. Organization ID is automatically extracted from JWT token.
22801
22996
  * @summary Create a new payment order
22802
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
22997
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details (org_id will be auto-populated from JWT)
22803
22998
  * @param {*} [options] Override http request option.
22804
22999
  * @throws {RequiredError}
22805
23000
  * @memberof PaymentGatewayApi
@@ -23816,7 +24011,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
23816
24011
  };
23817
24012
  }),
23818
24013
  /**
23819
- * Bulk upload plural/declension groups from JSON array
24014
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
23820
24015
  * @summary Bulk upload plural/declension groups
23821
24016
  * @param {string} xStoreID X-Store ID
23822
24017
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -23942,7 +24137,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
23942
24137
  };
23943
24138
  }),
23944
24139
  /**
23945
- * Deletes a plural/declension group (soft delete)
24140
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
23946
24141
  * @summary Delete plural/declension group
23947
24142
  * @param {string} xStoreID X-Store ID
23948
24143
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24088,7 +24283,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24088
24283
  };
24089
24284
  }),
24090
24285
  /**
24091
- * Upload plural/declension groups from CSV file
24286
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24092
24287
  * @summary Upload plural/declension groups from CSV file
24093
24288
  * @param {string} xStoreID X-Store ID
24094
24289
  * @param {File} file CSV file to upload
@@ -24128,7 +24323,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24128
24323
  };
24129
24324
  }),
24130
24325
  /**
24131
- * Upload plural/declension groups from JSON file
24326
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24132
24327
  * @summary Upload plural/declension groups from JSON file
24133
24328
  * @param {string} xStoreID X-Store ID
24134
24329
  * @param {File} file JSON file to upload
@@ -24228,7 +24423,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24228
24423
  });
24229
24424
  },
24230
24425
  /**
24231
- * Bulk upload plural/declension groups from JSON array
24426
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24232
24427
  * @summary Bulk upload plural/declension groups
24233
24428
  * @param {string} xStoreID X-Store ID
24234
24429
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24284,7 +24479,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24284
24479
  });
24285
24480
  },
24286
24481
  /**
24287
- * Deletes a plural/declension group (soft delete)
24482
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24288
24483
  * @summary Delete plural/declension group
24289
24484
  * @param {string} xStoreID X-Store ID
24290
24485
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24353,7 +24548,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24353
24548
  });
24354
24549
  },
24355
24550
  /**
24356
- * Upload plural/declension groups from CSV file
24551
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24357
24552
  * @summary Upload plural/declension groups from CSV file
24358
24553
  * @param {string} xStoreID X-Store ID
24359
24554
  * @param {File} file CSV file to upload
@@ -24370,7 +24565,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24370
24565
  });
24371
24566
  },
24372
24567
  /**
24373
- * Upload plural/declension groups from JSON file
24568
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24374
24569
  * @summary Upload plural/declension groups from JSON file
24375
24570
  * @param {string} xStoreID X-Store ID
24376
24571
  * @param {File} file JSON file to upload
@@ -24429,7 +24624,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24429
24624
  return localVarFp.adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(axios, basePath));
24430
24625
  },
24431
24626
  /**
24432
- * Bulk upload plural/declension groups from JSON array
24627
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24433
24628
  * @summary Bulk upload plural/declension groups
24434
24629
  * @param {string} xStoreID X-Store ID
24435
24630
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24467,7 +24662,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24467
24662
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(axios, basePath));
24468
24663
  },
24469
24664
  /**
24470
- * Deletes a plural/declension group (soft delete)
24665
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24471
24666
  * @summary Delete plural/declension group
24472
24667
  * @param {string} xStoreID X-Store ID
24473
24668
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24512,7 +24707,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24512
24707
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(axios, basePath));
24513
24708
  },
24514
24709
  /**
24515
- * Upload plural/declension groups from CSV file
24710
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24516
24711
  * @summary Upload plural/declension groups from CSV file
24517
24712
  * @param {string} xStoreID X-Store ID
24518
24713
  * @param {File} file CSV file to upload
@@ -24523,7 +24718,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24523
24718
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(axios, basePath));
24524
24719
  },
24525
24720
  /**
24526
- * Upload plural/declension groups from JSON file
24721
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24527
24722
  * @summary Upload plural/declension groups from JSON file
24528
24723
  * @param {string} xStoreID X-Store ID
24529
24724
  * @param {File} file JSON file to upload
@@ -24579,7 +24774,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24579
24774
  return PluralsDeclensionsApiFp(this.configuration).adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(this.axios, this.basePath));
24580
24775
  }
24581
24776
  /**
24582
- * Bulk upload plural/declension groups from JSON array
24777
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24583
24778
  * @summary Bulk upload plural/declension groups
24584
24779
  * @param {string} xStoreID X-Store ID
24585
24780
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24620,7 +24815,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24620
24815
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
24621
24816
  }
24622
24817
  /**
24623
- * Deletes a plural/declension group (soft delete)
24818
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24624
24819
  * @summary Delete plural/declension group
24625
24820
  * @param {string} xStoreID X-Store ID
24626
24821
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24669,7 +24864,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24669
24864
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(this.axios, this.basePath));
24670
24865
  }
24671
24866
  /**
24672
- * Upload plural/declension groups from CSV file
24867
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24673
24868
  * @summary Upload plural/declension groups from CSV file
24674
24869
  * @param {string} xStoreID X-Store ID
24675
24870
  * @param {File} file CSV file to upload
@@ -24681,7 +24876,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24681
24876
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(this.axios, this.basePath));
24682
24877
  }
24683
24878
  /**
24684
- * Upload plural/declension groups from JSON file
24879
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24685
24880
  * @summary Upload plural/declension groups from JSON file
24686
24881
  * @param {string} xStoreID X-Store ID
24687
24882
  * @param {File} file JSON file to upload
@@ -25022,7 +25217,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25022
25217
  };
25023
25218
  }),
25024
25219
  /**
25025
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
25220
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
25026
25221
  * @summary Apply Suggestion Filters
25027
25222
  * @param {string} xStoreID Store ID
25028
25223
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -25093,7 +25288,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25093
25288
  };
25094
25289
  }),
25095
25290
  /**
25096
- * Update an existing banned expression
25291
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
25097
25292
  * @summary Update Banned Expression
25098
25293
  * @param {string} xStoreID Store ID
25099
25294
  * @param {string} expressionID Banned Expression ID
@@ -25164,10 +25359,10 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25164
25359
  };
25165
25360
  }),
25166
25361
  /**
25167
- * Create a new banned expression with specified matching type
25362
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
25168
25363
  * @summary Create Banned Expression
25169
25364
  * @param {string} xStoreID Store ID
25170
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
25365
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
25171
25366
  * @param {*} [options] Override http request option.
25172
25367
  * @throws {RequiredError}
25173
25368
  */
@@ -25467,7 +25662,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25467
25662
  };
25468
25663
  }),
25469
25664
  /**
25470
- * Import query suggestions from JSON data
25665
+ * Import query suggestions from JSON data (Activity Logged)
25471
25666
  * @summary Import Query Suggestions
25472
25667
  * @param {string} xStoreID Store ID
25473
25668
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -25503,7 +25698,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25503
25698
  };
25504
25699
  }),
25505
25700
  /**
25506
- * Delete manually added query suggestions for a store
25701
+ * Deletes manually added query suggestions for a store and records Activity Logs.
25507
25702
  * @summary Delete Manual Query Suggestions
25508
25703
  * @param {string} xStoreID Store ID
25509
25704
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -25539,7 +25734,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25539
25734
  };
25540
25735
  }),
25541
25736
  /**
25542
- * Add a manually created query suggestion for a store
25737
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
25543
25738
  * @summary Add Manual Query Suggestion
25544
25739
  * @param {string} xStoreID Store ID
25545
25740
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -25575,7 +25770,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25575
25770
  };
25576
25771
  }),
25577
25772
  /**
25578
- * Migrate existing search analytics data to the new query suggestions management system
25773
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
25579
25774
  * @summary Migrate Existing Analytics Data
25580
25775
  * @param {string} xStoreID Store ID
25581
25776
  * @param {number} [daysBack] Number of days back to migrate data
@@ -25614,7 +25809,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25614
25809
  };
25615
25810
  }),
25616
25811
  /**
25617
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
25812
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
25618
25813
  * @summary Promote ALL Cached Suggestions to Management Table
25619
25814
  * @param {string} xStoreID Store ID
25620
25815
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -25649,7 +25844,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25649
25844
  };
25650
25845
  }),
25651
25846
  /**
25652
- * Move selected auto-generated suggestions from cache to the management table
25847
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
25653
25848
  * @summary Promote Cached Suggestions to Management Table
25654
25849
  * @param {string} xStoreID Store ID
25655
25850
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -25685,7 +25880,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25685
25880
  };
25686
25881
  }),
25687
25882
  /**
25688
- * Refresh auto-generated suggestions from search analytics data
25883
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
25689
25884
  * @summary Refresh Auto-Generated Suggestions
25690
25885
  * @param {string} xStoreID Store ID
25691
25886
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -25786,7 +25981,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25786
25981
  };
25787
25982
  }),
25788
25983
  /**
25789
- * Delete a single query suggestion by its ID
25984
+ * Delete a single query suggestion by its ID and record an Activity Log.
25790
25985
  * @summary Delete Query Suggestion by ID
25791
25986
  * @param {string} xStoreID Store ID
25792
25987
  * @param {string} suggestionID Suggestion ID
@@ -25856,11 +26051,11 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25856
26051
  };
25857
26052
  }),
25858
26053
  /**
25859
- * Update a single query suggestion by its ID
26054
+ *
25860
26055
  * @summary Update Query Suggestion by ID
25861
26056
  * @param {string} xStoreID Store ID
25862
26057
  * @param {string} suggestionID Suggestion ID
25863
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26058
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
25864
26059
  * @param {*} [options] Override http request option.
25865
26060
  * @throws {RequiredError}
25866
26061
  */
@@ -25937,7 +26132,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25937
26132
  };
25938
26133
  }),
25939
26134
  /**
25940
- * Sync enabled query suggestions to Typesense collection for public API usage
26135
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
25941
26136
  * @summary Sync Suggestions to Typesense
25942
26137
  * @param {string} xStoreID Store ID
25943
26138
  * @param {*} [options] Override http request option.
@@ -26104,7 +26299,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26104
26299
  });
26105
26300
  },
26106
26301
  /**
26107
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
26302
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
26108
26303
  * @summary Apply Suggestion Filters
26109
26304
  * @param {string} xStoreID Store ID
26110
26305
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -26138,7 +26333,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26138
26333
  });
26139
26334
  },
26140
26335
  /**
26141
- * Update an existing banned expression
26336
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
26142
26337
  * @summary Update Banned Expression
26143
26338
  * @param {string} xStoreID Store ID
26144
26339
  * @param {string} expressionID Banned Expression ID
@@ -26172,10 +26367,10 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26172
26367
  });
26173
26368
  },
26174
26369
  /**
26175
- * Create a new banned expression with specified matching type
26370
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
26176
26371
  * @summary Create Banned Expression
26177
26372
  * @param {string} xStoreID Store ID
26178
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26373
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
26179
26374
  * @param {*} [options] Override http request option.
26180
26375
  * @throws {RequiredError}
26181
26376
  */
@@ -26313,7 +26508,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26313
26508
  });
26314
26509
  },
26315
26510
  /**
26316
- * Import query suggestions from JSON data
26511
+ * Import query suggestions from JSON data (Activity Logged)
26317
26512
  * @summary Import Query Suggestions
26318
26513
  * @param {string} xStoreID Store ID
26319
26514
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -26330,7 +26525,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26330
26525
  });
26331
26526
  },
26332
26527
  /**
26333
- * Delete manually added query suggestions for a store
26528
+ * Deletes manually added query suggestions for a store and records Activity Logs.
26334
26529
  * @summary Delete Manual Query Suggestions
26335
26530
  * @param {string} xStoreID Store ID
26336
26531
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -26347,7 +26542,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26347
26542
  });
26348
26543
  },
26349
26544
  /**
26350
- * Add a manually created query suggestion for a store
26545
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
26351
26546
  * @summary Add Manual Query Suggestion
26352
26547
  * @param {string} xStoreID Store ID
26353
26548
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -26364,7 +26559,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26364
26559
  });
26365
26560
  },
26366
26561
  /**
26367
- * Migrate existing search analytics data to the new query suggestions management system
26562
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
26368
26563
  * @summary Migrate Existing Analytics Data
26369
26564
  * @param {string} xStoreID Store ID
26370
26565
  * @param {number} [daysBack] Number of days back to migrate data
@@ -26382,7 +26577,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26382
26577
  });
26383
26578
  },
26384
26579
  /**
26385
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
26580
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
26386
26581
  * @summary Promote ALL Cached Suggestions to Management Table
26387
26582
  * @param {string} xStoreID Store ID
26388
26583
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26399,7 +26594,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26399
26594
  });
26400
26595
  },
26401
26596
  /**
26402
- * Move selected auto-generated suggestions from cache to the management table
26597
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
26403
26598
  * @summary Promote Cached Suggestions to Management Table
26404
26599
  * @param {string} xStoreID Store ID
26405
26600
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26416,7 +26611,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26416
26611
  });
26417
26612
  },
26418
26613
  /**
26419
- * Refresh auto-generated suggestions from search analytics data
26614
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26420
26615
  * @summary Refresh Auto-Generated Suggestions
26421
26616
  * @param {string} xStoreID Store ID
26422
26617
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26466,7 +26661,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26466
26661
  });
26467
26662
  },
26468
26663
  /**
26469
- * Delete a single query suggestion by its ID
26664
+ * Delete a single query suggestion by its ID and record an Activity Log.
26470
26665
  * @summary Delete Query Suggestion by ID
26471
26666
  * @param {string} xStoreID Store ID
26472
26667
  * @param {string} suggestionID Suggestion ID
@@ -26500,11 +26695,11 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26500
26695
  });
26501
26696
  },
26502
26697
  /**
26503
- * Update a single query suggestion by its ID
26698
+ *
26504
26699
  * @summary Update Query Suggestion by ID
26505
26700
  * @param {string} xStoreID Store ID
26506
26701
  * @param {string} suggestionID Suggestion ID
26507
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26702
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26508
26703
  * @param {*} [options] Override http request option.
26509
26704
  * @throws {RequiredError}
26510
26705
  */
@@ -26536,7 +26731,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26536
26731
  });
26537
26732
  },
26538
26733
  /**
26539
- * Sync enabled query suggestions to Typesense collection for public API usage
26734
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
26540
26735
  * @summary Sync Suggestions to Typesense
26541
26736
  * @param {string} xStoreID Store ID
26542
26737
  * @param {*} [options] Override http request option.
@@ -26624,7 +26819,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26624
26819
  return localVarFp.adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(axios, basePath));
26625
26820
  },
26626
26821
  /**
26627
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
26822
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
26628
26823
  * @summary Apply Suggestion Filters
26629
26824
  * @param {string} xStoreID Store ID
26630
26825
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -26646,7 +26841,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26646
26841
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(axios, basePath));
26647
26842
  },
26648
26843
  /**
26649
- * Update an existing banned expression
26844
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
26650
26845
  * @summary Update Banned Expression
26651
26846
  * @param {string} xStoreID Store ID
26652
26847
  * @param {string} expressionID Banned Expression ID
@@ -26668,10 +26863,10 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26668
26863
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(axios, basePath));
26669
26864
  },
26670
26865
  /**
26671
- * Create a new banned expression with specified matching type
26866
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
26672
26867
  * @summary Create Banned Expression
26673
26868
  * @param {string} xStoreID Store ID
26674
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26869
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
26675
26870
  * @param {*} [options] Override http request option.
26676
26871
  * @throws {RequiredError}
26677
26872
  */
@@ -26761,7 +26956,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26761
26956
  return localVarFp.adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(axios, basePath));
26762
26957
  },
26763
26958
  /**
26764
- * Import query suggestions from JSON data
26959
+ * Import query suggestions from JSON data (Activity Logged)
26765
26960
  * @summary Import Query Suggestions
26766
26961
  * @param {string} xStoreID Store ID
26767
26962
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -26772,7 +26967,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26772
26967
  return localVarFp.adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(axios, basePath));
26773
26968
  },
26774
26969
  /**
26775
- * Delete manually added query suggestions for a store
26970
+ * Deletes manually added query suggestions for a store and records Activity Logs.
26776
26971
  * @summary Delete Manual Query Suggestions
26777
26972
  * @param {string} xStoreID Store ID
26778
26973
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -26783,7 +26978,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26783
26978
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(axios, basePath));
26784
26979
  },
26785
26980
  /**
26786
- * Add a manually created query suggestion for a store
26981
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
26787
26982
  * @summary Add Manual Query Suggestion
26788
26983
  * @param {string} xStoreID Store ID
26789
26984
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -26794,7 +26989,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26794
26989
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(axios, basePath));
26795
26990
  },
26796
26991
  /**
26797
- * Migrate existing search analytics data to the new query suggestions management system
26992
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
26798
26993
  * @summary Migrate Existing Analytics Data
26799
26994
  * @param {string} xStoreID Store ID
26800
26995
  * @param {number} [daysBack] Number of days back to migrate data
@@ -26806,7 +27001,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26806
27001
  return localVarFp.adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(axios, basePath));
26807
27002
  },
26808
27003
  /**
26809
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
27004
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
26810
27005
  * @summary Promote ALL Cached Suggestions to Management Table
26811
27006
  * @param {string} xStoreID Store ID
26812
27007
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26817,7 +27012,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26817
27012
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(axios, basePath));
26818
27013
  },
26819
27014
  /**
26820
- * Move selected auto-generated suggestions from cache to the management table
27015
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
26821
27016
  * @summary Promote Cached Suggestions to Management Table
26822
27017
  * @param {string} xStoreID Store ID
26823
27018
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26828,7 +27023,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26828
27023
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(axios, basePath));
26829
27024
  },
26830
27025
  /**
26831
- * Refresh auto-generated suggestions from search analytics data
27026
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26832
27027
  * @summary Refresh Auto-Generated Suggestions
26833
27028
  * @param {string} xStoreID Store ID
26834
27029
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26860,7 +27055,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26860
27055
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(axios, basePath));
26861
27056
  },
26862
27057
  /**
26863
- * Delete a single query suggestion by its ID
27058
+ * Delete a single query suggestion by its ID and record an Activity Log.
26864
27059
  * @summary Delete Query Suggestion by ID
26865
27060
  * @param {string} xStoreID Store ID
26866
27061
  * @param {string} suggestionID Suggestion ID
@@ -26882,11 +27077,11 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26882
27077
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(axios, basePath));
26883
27078
  },
26884
27079
  /**
26885
- * Update a single query suggestion by its ID
27080
+ *
26886
27081
  * @summary Update Query Suggestion by ID
26887
27082
  * @param {string} xStoreID Store ID
26888
27083
  * @param {string} suggestionID Suggestion ID
26889
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27084
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26890
27085
  * @param {*} [options] Override http request option.
26891
27086
  * @throws {RequiredError}
26892
27087
  */
@@ -26906,7 +27101,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26906
27101
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(axios, basePath));
26907
27102
  },
26908
27103
  /**
26909
- * Sync enabled query suggestions to Typesense collection for public API usage
27104
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
26910
27105
  * @summary Sync Suggestions to Typesense
26911
27106
  * @param {string} xStoreID Store ID
26912
27107
  * @param {*} [options] Override http request option.
@@ -26971,7 +27166,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
26971
27166
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
26972
27167
  }
26973
27168
  /**
26974
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
27169
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
26975
27170
  * @summary Apply Suggestion Filters
26976
27171
  * @param {string} xStoreID Store ID
26977
27172
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -26995,7 +27190,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
26995
27190
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(this.axios, this.basePath));
26996
27191
  }
26997
27192
  /**
26998
- * Update an existing banned expression
27193
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
26999
27194
  * @summary Update Banned Expression
27000
27195
  * @param {string} xStoreID Store ID
27001
27196
  * @param {string} expressionID Banned Expression ID
@@ -27019,10 +27214,10 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27019
27214
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27020
27215
  }
27021
27216
  /**
27022
- * Create a new banned expression with specified matching type
27217
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
27023
27218
  * @summary Create Banned Expression
27024
27219
  * @param {string} xStoreID Store ID
27025
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
27220
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
27026
27221
  * @param {*} [options] Override http request option.
27027
27222
  * @throws {RequiredError}
27028
27223
  * @memberof QuerySuggestionsManagementApi
@@ -27120,7 +27315,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27120
27315
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(this.axios, this.basePath));
27121
27316
  }
27122
27317
  /**
27123
- * Import query suggestions from JSON data
27318
+ * Import query suggestions from JSON data (Activity Logged)
27124
27319
  * @summary Import Query Suggestions
27125
27320
  * @param {string} xStoreID Store ID
27126
27321
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -27132,7 +27327,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27132
27327
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27133
27328
  }
27134
27329
  /**
27135
- * Delete manually added query suggestions for a store
27330
+ * Deletes manually added query suggestions for a store and records Activity Logs.
27136
27331
  * @summary Delete Manual Query Suggestions
27137
27332
  * @param {string} xStoreID Store ID
27138
27333
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -27144,7 +27339,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27144
27339
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27145
27340
  }
27146
27341
  /**
27147
- * Add a manually created query suggestion for a store
27342
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
27148
27343
  * @summary Add Manual Query Suggestion
27149
27344
  * @param {string} xStoreID Store ID
27150
27345
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -27156,7 +27351,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27156
27351
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(this.axios, this.basePath));
27157
27352
  }
27158
27353
  /**
27159
- * Migrate existing search analytics data to the new query suggestions management system
27354
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
27160
27355
  * @summary Migrate Existing Analytics Data
27161
27356
  * @param {string} xStoreID Store ID
27162
27357
  * @param {number} [daysBack] Number of days back to migrate data
@@ -27169,7 +27364,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27169
27364
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
27170
27365
  }
27171
27366
  /**
27172
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
27367
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
27173
27368
  * @summary Promote ALL Cached Suggestions to Management Table
27174
27369
  * @param {string} xStoreID Store ID
27175
27370
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -27181,7 +27376,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27181
27376
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(this.axios, this.basePath));
27182
27377
  }
27183
27378
  /**
27184
- * Move selected auto-generated suggestions from cache to the management table
27379
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
27185
27380
  * @summary Promote Cached Suggestions to Management Table
27186
27381
  * @param {string} xStoreID Store ID
27187
27382
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -27193,7 +27388,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27193
27388
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27194
27389
  }
27195
27390
  /**
27196
- * Refresh auto-generated suggestions from search analytics data
27391
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
27197
27392
  * @summary Refresh Auto-Generated Suggestions
27198
27393
  * @param {string} xStoreID Store ID
27199
27394
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -27228,7 +27423,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27228
27423
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27229
27424
  }
27230
27425
  /**
27231
- * Delete a single query suggestion by its ID
27426
+ * Delete a single query suggestion by its ID and record an Activity Log.
27232
27427
  * @summary Delete Query Suggestion by ID
27233
27428
  * @param {string} xStoreID Store ID
27234
27429
  * @param {string} suggestionID Suggestion ID
@@ -27252,11 +27447,11 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27252
27447
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(this.axios, this.basePath));
27253
27448
  }
27254
27449
  /**
27255
- * Update a single query suggestion by its ID
27450
+ *
27256
27451
  * @summary Update Query Suggestion by ID
27257
27452
  * @param {string} xStoreID Store ID
27258
27453
  * @param {string} suggestionID Suggestion ID
27259
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27454
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
27260
27455
  * @param {*} [options] Override http request option.
27261
27456
  * @throws {RequiredError}
27262
27457
  * @memberof QuerySuggestionsManagementApi
@@ -27278,7 +27473,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27278
27473
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(this.axios, this.basePath));
27279
27474
  }
27280
27475
  /**
27281
- * Sync enabled query suggestions to Typesense collection for public API usage
27476
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
27282
27477
  * @summary Sync Suggestions to Typesense
27283
27478
  * @param {string} xStoreID Store ID
27284
27479
  * @param {*} [options] Override http request option.
@@ -30653,7 +30848,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
30653
30848
  };
30654
30849
  }),
30655
30850
  /**
30656
- * Removes store-specific words from a language word list
30851
+ * Removes store-specific words from a language word list ## 🔎 Activity Logs Generated This operation **records an Activity Log entry** with: - **Action:** update - **Resource Type:** stopword_list - **Resource ID:** xStoreID - **Description:** Includes number of words removed & details - **State Before:** `{ removed_words: [..], count: N }` - **State After:** `{ removed_words: [], count: 0 }` - **Changed Fields:** `[ \"words_removed(N)\" ]` ---
30657
30852
  * @summary Remove words from language word list
30658
30853
  * @param {string} xStoreID X-Store ID
30659
30854
  * @param {number} wordListID Word List ID
@@ -30693,7 +30888,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
30693
30888
  };
30694
30889
  }),
30695
30890
  /**
30696
- * Adds words directly to a language word list for a specific store
30891
+ * Adds one or more words to a language-based stopword list for a store. Also records Activity Logs capturing before/after state and changed fields.
30697
30892
  * @summary Add words to language word list
30698
30893
  * @param {string} xStoreID X-Store ID
30699
30894
  * @param {number} wordListID Word List ID
@@ -30818,7 +31013,7 @@ export const StopwordsApiFp = function (configuration) {
30818
31013
  });
30819
31014
  },
30820
31015
  /**
30821
- * Removes store-specific words from a language word list
31016
+ * Removes store-specific words from a language word list ## 🔎 Activity Logs Generated This operation **records an Activity Log entry** with: - **Action:** update - **Resource Type:** stopword_list - **Resource ID:** xStoreID - **Description:** Includes number of words removed & details - **State Before:** `{ removed_words: [..], count: N }` - **State After:** `{ removed_words: [], count: 0 }` - **Changed Fields:** `[ \"words_removed(N)\" ]` ---
30822
31017
  * @summary Remove words from language word list
30823
31018
  * @param {string} xStoreID X-Store ID
30824
31019
  * @param {number} wordListID Word List ID
@@ -30836,7 +31031,7 @@ export const StopwordsApiFp = function (configuration) {
30836
31031
  });
30837
31032
  },
30838
31033
  /**
30839
- * Adds words directly to a language word list for a specific store
31034
+ * Adds one or more words to a language-based stopword list for a store. Also records Activity Logs capturing before/after state and changed fields.
30840
31035
  * @summary Add words to language word list
30841
31036
  * @param {string} xStoreID X-Store ID
30842
31037
  * @param {number} wordListID Word List ID
@@ -30915,7 +31110,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
30915
31110
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(axios, basePath));
30916
31111
  },
30917
31112
  /**
30918
- * Removes store-specific words from a language word list
31113
+ * Removes store-specific words from a language word list ## 🔎 Activity Logs Generated This operation **records an Activity Log entry** with: - **Action:** update - **Resource Type:** stopword_list - **Resource ID:** xStoreID - **Description:** Includes number of words removed & details - **State Before:** `{ removed_words: [..], count: N }` - **State After:** `{ removed_words: [], count: 0 }` - **Changed Fields:** `[ \"words_removed(N)\" ]` ---
30919
31114
  * @summary Remove words from language word list
30920
31115
  * @param {string} xStoreID X-Store ID
30921
31116
  * @param {number} wordListID Word List ID
@@ -30927,7 +31122,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
30927
31122
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(axios, basePath));
30928
31123
  },
30929
31124
  /**
30930
- * Adds words directly to a language word list for a specific store
31125
+ * Adds one or more words to a language-based stopword list for a store. Also records Activity Logs capturing before/after state and changed fields.
30931
31126
  * @summary Add words to language word list
30932
31127
  * @param {string} xStoreID X-Store ID
30933
31128
  * @param {number} wordListID Word List ID
@@ -31004,7 +31199,7 @@ export class StopwordsApi extends BaseAPI {
31004
31199
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
31005
31200
  }
31006
31201
  /**
31007
- * Removes store-specific words from a language word list
31202
+ * Removes store-specific words from a language word list ## 🔎 Activity Logs Generated This operation **records an Activity Log entry** with: - **Action:** update - **Resource Type:** stopword_list - **Resource ID:** xStoreID - **Description:** Includes number of words removed & details - **State Before:** `{ removed_words: [..], count: N }` - **State After:** `{ removed_words: [], count: 0 }` - **Changed Fields:** `[ \"words_removed(N)\" ]` ---
31008
31203
  * @summary Remove words from language word list
31009
31204
  * @param {string} xStoreID X-Store ID
31010
31205
  * @param {number} wordListID Word List ID
@@ -31017,7 +31212,7 @@ export class StopwordsApi extends BaseAPI {
31017
31212
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(this.axios, this.basePath));
31018
31213
  }
31019
31214
  /**
31020
- * Adds words directly to a language word list for a specific store
31215
+ * Adds one or more words to a language-based stopword list for a store. Also records Activity Logs capturing before/after state and changed fields.
31021
31216
  * @summary Add words to language word list
31022
31217
  * @param {string} xStoreID X-Store ID
31023
31218
  * @param {number} wordListID Word List ID
@@ -31627,7 +31822,7 @@ export class StoreCreationApi extends BaseAPI {
31627
31822
  export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
31628
31823
  return {
31629
31824
  /**
31630
- * Performs bulk insert, update, upsert, or delete operations on documents. Each document can specify its own action. If same hash is generated for multiple documents, they will be treated as the same document.
31825
+ *
31631
31826
  * @summary Bulk document operations
31632
31827
  * @param {string} xStoreID X-Store ID
31633
31828
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -31733,7 +31928,7 @@ export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
31733
31928
  };
31734
31929
  }),
31735
31930
  /**
31736
- * Updates an existing document by ID. The document ID will not change even if document properties change.
31931
+ *
31737
31932
  * @summary Update document
31738
31933
  * @param {string} xStoreID X-Store ID
31739
31934
  * @param {string} documentID Document ID
@@ -31869,7 +32064,7 @@ export const StoreDocumentsApiFp = function (configuration) {
31869
32064
  const localVarAxiosParamCreator = StoreDocumentsApiAxiosParamCreator(configuration);
31870
32065
  return {
31871
32066
  /**
31872
- * Performs bulk insert, update, upsert, or delete operations on documents. Each document can specify its own action. If same hash is generated for multiple documents, they will be treated as the same document.
32067
+ *
31873
32068
  * @summary Bulk document operations
31874
32069
  * @param {string} xStoreID X-Store ID
31875
32070
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -31920,7 +32115,7 @@ export const StoreDocumentsApiFp = function (configuration) {
31920
32115
  });
31921
32116
  },
31922
32117
  /**
31923
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32118
+ *
31924
32119
  * @summary Update document
31925
32120
  * @param {string} xStoreID X-Store ID
31926
32121
  * @param {string} documentID Document ID
@@ -31985,7 +32180,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
31985
32180
  const localVarFp = StoreDocumentsApiFp(configuration);
31986
32181
  return {
31987
32182
  /**
31988
- * Performs bulk insert, update, upsert, or delete operations on documents. Each document can specify its own action. If same hash is generated for multiple documents, they will be treated as the same document.
32183
+ *
31989
32184
  * @summary Bulk document operations
31990
32185
  * @param {string} xStoreID X-Store ID
31991
32186
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32018,7 +32213,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32018
32213
  return localVarFp.adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(axios, basePath));
32019
32214
  },
32020
32215
  /**
32021
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32216
+ *
32022
32217
  * @summary Update document
32023
32218
  * @param {string} xStoreID X-Store ID
32024
32219
  * @param {string} documentID Document ID
@@ -32065,7 +32260,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32065
32260
  */
32066
32261
  export class StoreDocumentsApi extends BaseAPI {
32067
32262
  /**
32068
- * Performs bulk insert, update, upsert, or delete operations on documents. Each document can specify its own action. If same hash is generated for multiple documents, they will be treated as the same document.
32263
+ *
32069
32264
  * @summary Bulk document operations
32070
32265
  * @param {string} xStoreID X-Store ID
32071
32266
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32101,7 +32296,7 @@ export class StoreDocumentsApi extends BaseAPI {
32101
32296
  return StoreDocumentsApiFp(this.configuration).adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(this.axios, this.basePath));
32102
32297
  }
32103
32298
  /**
32104
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32299
+ *
32105
32300
  * @summary Update document
32106
32301
  * @param {string} xStoreID X-Store ID
32107
32302
  * @param {string} documentID Document ID
@@ -32275,10 +32470,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32275
32470
  };
32276
32471
  }),
32277
32472
  /**
32278
- * Updates StoreStatus information by ID.
32279
- * @summary Update an existing StoreStatus
32473
+ * Updates the active/inactive status of a store by its ID.
32474
+ * @summary Update Store Status
32280
32475
  * @param {number} id Store ID
32281
- * @param {boolean} status status
32476
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
32282
32477
  * @param {*} [options] Override http request option.
32283
32478
  * @throws {RequiredError}
32284
32479
  */
@@ -32515,10 +32710,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32515
32710
  };
32516
32711
  }),
32517
32712
  /**
32518
- * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
32713
+ *
32519
32714
  * @summary Update Store Config (Partial)
32520
32715
  * @param {string} xStoreID X-Store ID
32521
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
32716
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
32522
32717
  * @param {*} [options] Override http request option.
32523
32718
  * @throws {RequiredError}
32524
32719
  */
@@ -32758,24 +32953,24 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32758
32953
  };
32759
32954
  }),
32760
32955
  /**
32761
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
32956
+ *
32762
32957
  * @summary Regenerate X-Store Secret
32763
- * @param {string} xStoreID Current X-Store ID
32958
+ * @param {string} xstoreid Current X-Store ID
32764
32959
  * @param {*} [options] Override http request option.
32765
32960
  * @throws {RequiredError}
32766
32961
  */
32767
- xStoreIDRegenerateSecretPost: (xStoreID_1, ...args_1) => __awaiter(this, [xStoreID_1, ...args_1], void 0, function* (xStoreID, options = {}) {
32768
- // verify required parameter 'xStoreID' is not null or undefined
32769
- assertParamExists('xStoreIDRegenerateSecretPost', 'xStoreID', xStoreID);
32770
- const localVarPath = `/{xStoreID}/regenerate-secret`
32771
- .replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)));
32962
+ xstoreidRegenerateUidPut: (xstoreid_1, ...args_1) => __awaiter(this, [xstoreid_1, ...args_1], void 0, function* (xstoreid, options = {}) {
32963
+ // verify required parameter 'xstoreid' is not null or undefined
32964
+ assertParamExists('xstoreidRegenerateUidPut', 'xstoreid', xstoreid);
32965
+ const localVarPath = `/{xstoreid}/regenerate-uid`
32966
+ .replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)));
32772
32967
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
32773
32968
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
32774
32969
  let baseOptions;
32775
32970
  if (configuration) {
32776
32971
  baseOptions = configuration.baseOptions;
32777
32972
  }
32778
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
32973
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
32779
32974
  const localVarHeaderParameter = {};
32780
32975
  const localVarQueryParameter = {};
32781
32976
  // authentication BearerAuth required
@@ -32862,10 +33057,10 @@ export const StoresApiFp = function (configuration) {
32862
33057
  });
32863
33058
  },
32864
33059
  /**
32865
- * Updates StoreStatus information by ID.
32866
- * @summary Update an existing StoreStatus
33060
+ * Updates the active/inactive status of a store by its ID.
33061
+ * @summary Update Store Status
32867
33062
  * @param {number} id Store ID
32868
- * @param {boolean} status status
33063
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
32869
33064
  * @param {*} [options] Override http request option.
32870
33065
  * @throws {RequiredError}
32871
33066
  */
@@ -32971,10 +33166,10 @@ export const StoresApiFp = function (configuration) {
32971
33166
  });
32972
33167
  },
32973
33168
  /**
32974
- * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
33169
+ *
32975
33170
  * @summary Update Store Config (Partial)
32976
33171
  * @param {string} xStoreID X-Store ID
32977
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33172
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
32978
33173
  * @param {*} [options] Override http request option.
32979
33174
  * @throws {RequiredError}
32980
33175
  */
@@ -33089,18 +33284,18 @@ export const StoresApiFp = function (configuration) {
33089
33284
  });
33090
33285
  },
33091
33286
  /**
33092
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33287
+ *
33093
33288
  * @summary Regenerate X-Store Secret
33094
- * @param {string} xStoreID Current X-Store ID
33289
+ * @param {string} xstoreid Current X-Store ID
33095
33290
  * @param {*} [options] Override http request option.
33096
33291
  * @throws {RequiredError}
33097
33292
  */
33098
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33293
+ xstoreidRegenerateUidPut(xstoreid, options) {
33099
33294
  return __awaiter(this, void 0, void 0, function* () {
33100
33295
  var _a, _b, _c;
33101
- const localVarAxiosArgs = yield localVarAxiosParamCreator.xStoreIDRegenerateSecretPost(xStoreID, options);
33296
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.xstoreidRegenerateUidPut(xstoreid, options);
33102
33297
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
33103
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StoresApi.xStoreIDRegenerateSecretPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
33298
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StoresApi.xstoreidRegenerateUidPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
33104
33299
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
33105
33300
  });
33106
33301
  },
@@ -33154,10 +33349,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33154
33349
  return localVarFp.adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(axios, basePath));
33155
33350
  },
33156
33351
  /**
33157
- * Updates StoreStatus information by ID.
33158
- * @summary Update an existing StoreStatus
33352
+ * Updates the active/inactive status of a store by its ID.
33353
+ * @summary Update Store Status
33159
33354
  * @param {number} id Store ID
33160
- * @param {boolean} status status
33355
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33161
33356
  * @param {*} [options] Override http request option.
33162
33357
  * @throws {RequiredError}
33163
33358
  */
@@ -33227,10 +33422,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33227
33422
  return localVarFp.adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
33228
33423
  },
33229
33424
  /**
33230
- * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
33425
+ *
33231
33426
  * @summary Update Store Config (Partial)
33232
33427
  * @param {string} xStoreID X-Store ID
33233
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33428
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33234
33429
  * @param {*} [options] Override http request option.
33235
33430
  * @throws {RequiredError}
33236
33431
  */
@@ -33303,14 +33498,14 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33303
33498
  return localVarFp.adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(axios, basePath));
33304
33499
  },
33305
33500
  /**
33306
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33501
+ *
33307
33502
  * @summary Regenerate X-Store Secret
33308
- * @param {string} xStoreID Current X-Store ID
33503
+ * @param {string} xstoreid Current X-Store ID
33309
33504
  * @param {*} [options] Override http request option.
33310
33505
  * @throws {RequiredError}
33311
33506
  */
33312
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33313
- return localVarFp.xStoreIDRegenerateSecretPost(xStoreID, options).then((request) => request(axios, basePath));
33507
+ xstoreidRegenerateUidPut(xstoreid, options) {
33508
+ return localVarFp.xstoreidRegenerateUidPut(xstoreid, options).then((request) => request(axios, basePath));
33314
33509
  },
33315
33510
  };
33316
33511
  };
@@ -33366,10 +33561,10 @@ export class StoresApi extends BaseAPI {
33366
33561
  return StoresApiFp(this.configuration).adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(this.axios, this.basePath));
33367
33562
  }
33368
33563
  /**
33369
- * Updates StoreStatus information by ID.
33370
- * @summary Update an existing StoreStatus
33564
+ * Updates the active/inactive status of a store by its ID.
33565
+ * @summary Update Store Status
33371
33566
  * @param {number} id Store ID
33372
- * @param {boolean} status status
33567
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33373
33568
  * @param {*} [options] Override http request option.
33374
33569
  * @throws {RequiredError}
33375
33570
  * @memberof StoresApi
@@ -33445,10 +33640,10 @@ export class StoresApi extends BaseAPI {
33445
33640
  return StoresApiFp(this.configuration).adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
33446
33641
  }
33447
33642
  /**
33448
- * Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
33643
+ *
33449
33644
  * @summary Update Store Config (Partial)
33450
33645
  * @param {string} xStoreID X-Store ID
33451
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33646
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33452
33647
  * @param {*} [options] Override http request option.
33453
33648
  * @throws {RequiredError}
33454
33649
  * @memberof StoresApi
@@ -33528,15 +33723,15 @@ export class StoresApi extends BaseAPI {
33528
33723
  return StoresApiFp(this.configuration).adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(this.axios, this.basePath));
33529
33724
  }
33530
33725
  /**
33531
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33726
+ *
33532
33727
  * @summary Regenerate X-Store Secret
33533
- * @param {string} xStoreID Current X-Store ID
33728
+ * @param {string} xstoreid Current X-Store ID
33534
33729
  * @param {*} [options] Override http request option.
33535
33730
  * @throws {RequiredError}
33536
33731
  * @memberof StoresApi
33537
33732
  */
33538
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33539
- return StoresApiFp(this.configuration).xStoreIDRegenerateSecretPost(xStoreID, options).then((request) => request(this.axios, this.basePath));
33733
+ xstoreidRegenerateUidPut(xstoreid, options) {
33734
+ return StoresApiFp(this.configuration).xstoreidRegenerateUidPut(xstoreid, options).then((request) => request(this.axios, this.basePath));
33540
33735
  }
33541
33736
  }
33542
33737
  /**
@@ -34375,10 +34570,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34375
34570
  * @param {*} [options] Override http request option.
34376
34571
  * @throws {RequiredError}
34377
34572
  */
34378
- apiV1InvitationsInvitationIdDelete: (invitationId_1, ...args_1) => __awaiter(this, [invitationId_1, ...args_1], void 0, function* (invitationId, options = {}) {
34573
+ v1InvitationsInvitationIdDelete: (invitationId_1, ...args_1) => __awaiter(this, [invitationId_1, ...args_1], void 0, function* (invitationId, options = {}) {
34379
34574
  // verify required parameter 'invitationId' is not null or undefined
34380
- assertParamExists('apiV1InvitationsInvitationIdDelete', 'invitationId', invitationId);
34381
- const localVarPath = `/api/v1/invitations/{invitationId}`
34575
+ assertParamExists('v1InvitationsInvitationIdDelete', 'invitationId', invitationId);
34576
+ const localVarPath = `/v1/invitations/{invitationId}`
34382
34577
  .replace(`{${"invitationId"}}`, encodeURIComponent(String(invitationId)));
34383
34578
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34384
34579
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34406,10 +34601,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34406
34601
  * @param {*} [options] Override http request option.
34407
34602
  * @throws {RequiredError}
34408
34603
  */
34409
- apiV1InvitationsTokenAcceptPost: (token_1, ...args_1) => __awaiter(this, [token_1, ...args_1], void 0, function* (token, options = {}) {
34604
+ v1InvitationsTokenAcceptPost: (token_1, ...args_1) => __awaiter(this, [token_1, ...args_1], void 0, function* (token, options = {}) {
34410
34605
  // verify required parameter 'token' is not null or undefined
34411
- assertParamExists('apiV1InvitationsTokenAcceptPost', 'token', token);
34412
- const localVarPath = `/api/v1/invitations/{token}/accept`
34606
+ assertParamExists('v1InvitationsTokenAcceptPost', 'token', token);
34607
+ const localVarPath = `/v1/invitations/{token}/accept`
34413
34608
  .replace(`{${"token"}}`, encodeURIComponent(String(token)));
34414
34609
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34415
34610
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34437,10 +34632,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34437
34632
  * @param {*} [options] Override http request option.
34438
34633
  * @throws {RequiredError}
34439
34634
  */
34440
- apiV1StoresStoreIdAccessGet: (storeId_1, ...args_1) => __awaiter(this, [storeId_1, ...args_1], void 0, function* (storeId, options = {}) {
34635
+ v1StoresStoreIdAccessGet: (storeId_1, ...args_1) => __awaiter(this, [storeId_1, ...args_1], void 0, function* (storeId, options = {}) {
34441
34636
  // verify required parameter 'storeId' is not null or undefined
34442
- assertParamExists('apiV1StoresStoreIdAccessGet', 'storeId', storeId);
34443
- const localVarPath = `/api/v1/stores/{storeId}/access`
34637
+ assertParamExists('v1StoresStoreIdAccessGet', 'storeId', storeId);
34638
+ const localVarPath = `/v1/stores/{storeId}/access`
34444
34639
  .replace(`{${"storeId"}}`, encodeURIComponent(String(storeId)));
34445
34640
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34446
34641
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34469,12 +34664,12 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34469
34664
  * @param {*} [options] Override http request option.
34470
34665
  * @throws {RequiredError}
34471
34666
  */
34472
- apiV1StoresStoreIdAccessPost: (storeId_1, dataTypesGrantStoreAccessRequest_1, ...args_1) => __awaiter(this, [storeId_1, dataTypesGrantStoreAccessRequest_1, ...args_1], void 0, function* (storeId, dataTypesGrantStoreAccessRequest, options = {}) {
34667
+ v1StoresStoreIdAccessPost: (storeId_1, dataTypesGrantStoreAccessRequest_1, ...args_1) => __awaiter(this, [storeId_1, dataTypesGrantStoreAccessRequest_1, ...args_1], void 0, function* (storeId, dataTypesGrantStoreAccessRequest, options = {}) {
34473
34668
  // verify required parameter 'storeId' is not null or undefined
34474
- assertParamExists('apiV1StoresStoreIdAccessPost', 'storeId', storeId);
34669
+ assertParamExists('v1StoresStoreIdAccessPost', 'storeId', storeId);
34475
34670
  // verify required parameter 'dataTypesGrantStoreAccessRequest' is not null or undefined
34476
- assertParamExists('apiV1StoresStoreIdAccessPost', 'dataTypesGrantStoreAccessRequest', dataTypesGrantStoreAccessRequest);
34477
- const localVarPath = `/api/v1/stores/{storeId}/access`
34671
+ assertParamExists('v1StoresStoreIdAccessPost', 'dataTypesGrantStoreAccessRequest', dataTypesGrantStoreAccessRequest);
34672
+ const localVarPath = `/v1/stores/{storeId}/access`
34478
34673
  .replace(`{${"storeId"}}`, encodeURIComponent(String(storeId)));
34479
34674
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34480
34675
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34505,12 +34700,12 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34505
34700
  * @param {*} [options] Override http request option.
34506
34701
  * @throws {RequiredError}
34507
34702
  */
34508
- apiV1StoresStoreIdAccessUserIdDelete: (storeId_1, userId_1, ...args_1) => __awaiter(this, [storeId_1, userId_1, ...args_1], void 0, function* (storeId, userId, options = {}) {
34703
+ v1StoresStoreIdAccessUserIdDelete: (storeId_1, userId_1, ...args_1) => __awaiter(this, [storeId_1, userId_1, ...args_1], void 0, function* (storeId, userId, options = {}) {
34509
34704
  // verify required parameter 'storeId' is not null or undefined
34510
- assertParamExists('apiV1StoresStoreIdAccessUserIdDelete', 'storeId', storeId);
34705
+ assertParamExists('v1StoresStoreIdAccessUserIdDelete', 'storeId', storeId);
34511
34706
  // verify required parameter 'userId' is not null or undefined
34512
- assertParamExists('apiV1StoresStoreIdAccessUserIdDelete', 'userId', userId);
34513
- const localVarPath = `/api/v1/stores/{storeId}/access/{userId}`
34707
+ assertParamExists('v1StoresStoreIdAccessUserIdDelete', 'userId', userId);
34708
+ const localVarPath = `/v1/stores/{storeId}/access/{userId}`
34514
34709
  .replace(`{${"storeId"}}`, encodeURIComponent(String(storeId)))
34515
34710
  .replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
34516
34711
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -34541,14 +34736,14 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34541
34736
  * @param {*} [options] Override http request option.
34542
34737
  * @throws {RequiredError}
34543
34738
  */
34544
- apiV1StoresStoreIdAccessUserIdPut: (storeId_1, userId_1, dataTypesUpdateStoreAccessRequest_1, ...args_1) => __awaiter(this, [storeId_1, userId_1, dataTypesUpdateStoreAccessRequest_1, ...args_1], void 0, function* (storeId, userId, dataTypesUpdateStoreAccessRequest, options = {}) {
34739
+ v1StoresStoreIdAccessUserIdPut: (storeId_1, userId_1, dataTypesUpdateStoreAccessRequest_1, ...args_1) => __awaiter(this, [storeId_1, userId_1, dataTypesUpdateStoreAccessRequest_1, ...args_1], void 0, function* (storeId, userId, dataTypesUpdateStoreAccessRequest, options = {}) {
34545
34740
  // verify required parameter 'storeId' is not null or undefined
34546
- assertParamExists('apiV1StoresStoreIdAccessUserIdPut', 'storeId', storeId);
34741
+ assertParamExists('v1StoresStoreIdAccessUserIdPut', 'storeId', storeId);
34547
34742
  // verify required parameter 'userId' is not null or undefined
34548
- assertParamExists('apiV1StoresStoreIdAccessUserIdPut', 'userId', userId);
34743
+ assertParamExists('v1StoresStoreIdAccessUserIdPut', 'userId', userId);
34549
34744
  // verify required parameter 'dataTypesUpdateStoreAccessRequest' is not null or undefined
34550
- assertParamExists('apiV1StoresStoreIdAccessUserIdPut', 'dataTypesUpdateStoreAccessRequest', dataTypesUpdateStoreAccessRequest);
34551
- const localVarPath = `/api/v1/stores/{storeId}/access/{userId}`
34745
+ assertParamExists('v1StoresStoreIdAccessUserIdPut', 'dataTypesUpdateStoreAccessRequest', dataTypesUpdateStoreAccessRequest);
34746
+ const localVarPath = `/v1/stores/{storeId}/access/{userId}`
34552
34747
  .replace(`{${"storeId"}}`, encodeURIComponent(String(storeId)))
34553
34748
  .replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
34554
34749
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -34578,8 +34773,8 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34578
34773
  * @param {*} [options] Override http request option.
34579
34774
  * @throws {RequiredError}
34580
34775
  */
34581
- apiV1TeamInvitationsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
34582
- const localVarPath = `/api/v1/team/invitations`;
34776
+ v1TeamInvitationsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
34777
+ const localVarPath = `/v1/team/invitations`;
34583
34778
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34584
34779
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34585
34780
  let baseOptions;
@@ -34605,8 +34800,8 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34605
34800
  * @param {*} [options] Override http request option.
34606
34801
  * @throws {RequiredError}
34607
34802
  */
34608
- apiV1TeamMembersGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
34609
- const localVarPath = `/api/v1/team/members`;
34803
+ v1TeamMembersGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
34804
+ const localVarPath = `/v1/team/members`;
34610
34805
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34611
34806
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34612
34807
  let baseOptions;
@@ -34633,10 +34828,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34633
34828
  * @param {*} [options] Override http request option.
34634
34829
  * @throws {RequiredError}
34635
34830
  */
34636
- apiV1TeamMembersInvitePost: (dataTypesInviteMemberRequest_1, ...args_1) => __awaiter(this, [dataTypesInviteMemberRequest_1, ...args_1], void 0, function* (dataTypesInviteMemberRequest, options = {}) {
34831
+ v1TeamMembersInvitePost: (dataTypesInviteMemberRequest_1, ...args_1) => __awaiter(this, [dataTypesInviteMemberRequest_1, ...args_1], void 0, function* (dataTypesInviteMemberRequest, options = {}) {
34637
34832
  // verify required parameter 'dataTypesInviteMemberRequest' is not null or undefined
34638
- assertParamExists('apiV1TeamMembersInvitePost', 'dataTypesInviteMemberRequest', dataTypesInviteMemberRequest);
34639
- const localVarPath = `/api/v1/team/members/invite`;
34833
+ assertParamExists('v1TeamMembersInvitePost', 'dataTypesInviteMemberRequest', dataTypesInviteMemberRequest);
34834
+ const localVarPath = `/v1/team/members/invite`;
34640
34835
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34641
34836
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34642
34837
  let baseOptions;
@@ -34665,10 +34860,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34665
34860
  * @param {*} [options] Override http request option.
34666
34861
  * @throws {RequiredError}
34667
34862
  */
34668
- apiV1TeamMembersMemberIdDelete: (memberId_1, ...args_1) => __awaiter(this, [memberId_1, ...args_1], void 0, function* (memberId, options = {}) {
34863
+ v1TeamMembersMemberIdDelete: (memberId_1, ...args_1) => __awaiter(this, [memberId_1, ...args_1], void 0, function* (memberId, options = {}) {
34669
34864
  // verify required parameter 'memberId' is not null or undefined
34670
- assertParamExists('apiV1TeamMembersMemberIdDelete', 'memberId', memberId);
34671
- const localVarPath = `/api/v1/team/members/{memberId}`
34865
+ assertParamExists('v1TeamMembersMemberIdDelete', 'memberId', memberId);
34866
+ const localVarPath = `/v1/team/members/{memberId}`
34672
34867
  .replace(`{${"memberId"}}`, encodeURIComponent(String(memberId)));
34673
34868
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34674
34869
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34697,12 +34892,12 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34697
34892
  * @param {*} [options] Override http request option.
34698
34893
  * @throws {RequiredError}
34699
34894
  */
34700
- apiV1TeamMembersMemberIdRolePut: (memberId_1, dataTypesUpdateMemberRoleRequest_1, ...args_1) => __awaiter(this, [memberId_1, dataTypesUpdateMemberRoleRequest_1, ...args_1], void 0, function* (memberId, dataTypesUpdateMemberRoleRequest, options = {}) {
34895
+ v1TeamMembersMemberIdRolePut: (memberId_1, dataTypesUpdateMemberRoleRequest_1, ...args_1) => __awaiter(this, [memberId_1, dataTypesUpdateMemberRoleRequest_1, ...args_1], void 0, function* (memberId, dataTypesUpdateMemberRoleRequest, options = {}) {
34701
34896
  // verify required parameter 'memberId' is not null or undefined
34702
- assertParamExists('apiV1TeamMembersMemberIdRolePut', 'memberId', memberId);
34897
+ assertParamExists('v1TeamMembersMemberIdRolePut', 'memberId', memberId);
34703
34898
  // verify required parameter 'dataTypesUpdateMemberRoleRequest' is not null or undefined
34704
- assertParamExists('apiV1TeamMembersMemberIdRolePut', 'dataTypesUpdateMemberRoleRequest', dataTypesUpdateMemberRoleRequest);
34705
- const localVarPath = `/api/v1/team/members/{memberId}/role`
34899
+ assertParamExists('v1TeamMembersMemberIdRolePut', 'dataTypesUpdateMemberRoleRequest', dataTypesUpdateMemberRoleRequest);
34900
+ const localVarPath = `/v1/team/members/{memberId}/role`
34706
34901
  .replace(`{${"memberId"}}`, encodeURIComponent(String(memberId)));
34707
34902
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34708
34903
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34732,10 +34927,10 @@ export const TeamApiAxiosParamCreator = function (configuration) {
34732
34927
  * @param {*} [options] Override http request option.
34733
34928
  * @throws {RequiredError}
34734
34929
  */
34735
- apiV1UsersUserIdStoresGet: (userId_1, ...args_1) => __awaiter(this, [userId_1, ...args_1], void 0, function* (userId, options = {}) {
34930
+ v1UsersUserIdStoresGet: (userId_1, ...args_1) => __awaiter(this, [userId_1, ...args_1], void 0, function* (userId, options = {}) {
34736
34931
  // verify required parameter 'userId' is not null or undefined
34737
- assertParamExists('apiV1UsersUserIdStoresGet', 'userId', userId);
34738
- const localVarPath = `/api/v1/users/{userId}/stores`
34932
+ assertParamExists('v1UsersUserIdStoresGet', 'userId', userId);
34933
+ const localVarPath = `/v1/users/{userId}/stores`
34739
34934
  .replace(`{${"userId"}}`, encodeURIComponent(String(userId)));
34740
34935
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34741
34936
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34772,12 +34967,12 @@ export const TeamApiFp = function (configuration) {
34772
34967
  * @param {*} [options] Override http request option.
34773
34968
  * @throws {RequiredError}
34774
34969
  */
34775
- apiV1InvitationsInvitationIdDelete(invitationId, options) {
34970
+ v1InvitationsInvitationIdDelete(invitationId, options) {
34776
34971
  return __awaiter(this, void 0, void 0, function* () {
34777
34972
  var _a, _b, _c;
34778
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1InvitationsInvitationIdDelete(invitationId, options);
34973
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1InvitationsInvitationIdDelete(invitationId, options);
34779
34974
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34780
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1InvitationsInvitationIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34975
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1InvitationsInvitationIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34781
34976
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34782
34977
  });
34783
34978
  },
@@ -34788,12 +34983,12 @@ export const TeamApiFp = function (configuration) {
34788
34983
  * @param {*} [options] Override http request option.
34789
34984
  * @throws {RequiredError}
34790
34985
  */
34791
- apiV1InvitationsTokenAcceptPost(token, options) {
34986
+ v1InvitationsTokenAcceptPost(token, options) {
34792
34987
  return __awaiter(this, void 0, void 0, function* () {
34793
34988
  var _a, _b, _c;
34794
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1InvitationsTokenAcceptPost(token, options);
34989
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1InvitationsTokenAcceptPost(token, options);
34795
34990
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34796
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1InvitationsTokenAcceptPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34991
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1InvitationsTokenAcceptPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34797
34992
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34798
34993
  });
34799
34994
  },
@@ -34804,12 +34999,12 @@ export const TeamApiFp = function (configuration) {
34804
34999
  * @param {*} [options] Override http request option.
34805
35000
  * @throws {RequiredError}
34806
35001
  */
34807
- apiV1StoresStoreIdAccessGet(storeId, options) {
35002
+ v1StoresStoreIdAccessGet(storeId, options) {
34808
35003
  return __awaiter(this, void 0, void 0, function* () {
34809
35004
  var _a, _b, _c;
34810
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1StoresStoreIdAccessGet(storeId, options);
35005
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1StoresStoreIdAccessGet(storeId, options);
34811
35006
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34812
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1StoresStoreIdAccessGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35007
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1StoresStoreIdAccessGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34813
35008
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34814
35009
  });
34815
35010
  },
@@ -34821,12 +35016,12 @@ export const TeamApiFp = function (configuration) {
34821
35016
  * @param {*} [options] Override http request option.
34822
35017
  * @throws {RequiredError}
34823
35018
  */
34824
- apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
35019
+ v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
34825
35020
  return __awaiter(this, void 0, void 0, function* () {
34826
35021
  var _a, _b, _c;
34827
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options);
35022
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options);
34828
35023
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34829
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1StoresStoreIdAccessPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35024
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1StoresStoreIdAccessPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34830
35025
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34831
35026
  });
34832
35027
  },
@@ -34838,12 +35033,12 @@ export const TeamApiFp = function (configuration) {
34838
35033
  * @param {*} [options] Override http request option.
34839
35034
  * @throws {RequiredError}
34840
35035
  */
34841
- apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
35036
+ v1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
34842
35037
  return __awaiter(this, void 0, void 0, function* () {
34843
35038
  var _a, _b, _c;
34844
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options);
35039
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1StoresStoreIdAccessUserIdDelete(storeId, userId, options);
34845
35040
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34846
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1StoresStoreIdAccessUserIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35041
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1StoresStoreIdAccessUserIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34847
35042
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34848
35043
  });
34849
35044
  },
@@ -34856,12 +35051,12 @@ export const TeamApiFp = function (configuration) {
34856
35051
  * @param {*} [options] Override http request option.
34857
35052
  * @throws {RequiredError}
34858
35053
  */
34859
- apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
35054
+ v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
34860
35055
  return __awaiter(this, void 0, void 0, function* () {
34861
35056
  var _a, _b, _c;
34862
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options);
35057
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options);
34863
35058
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34864
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1StoresStoreIdAccessUserIdPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35059
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1StoresStoreIdAccessUserIdPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34865
35060
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34866
35061
  });
34867
35062
  },
@@ -34871,12 +35066,12 @@ export const TeamApiFp = function (configuration) {
34871
35066
  * @param {*} [options] Override http request option.
34872
35067
  * @throws {RequiredError}
34873
35068
  */
34874
- apiV1TeamInvitationsGet(options) {
35069
+ v1TeamInvitationsGet(options) {
34875
35070
  return __awaiter(this, void 0, void 0, function* () {
34876
35071
  var _a, _b, _c;
34877
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1TeamInvitationsGet(options);
35072
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1TeamInvitationsGet(options);
34878
35073
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34879
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1TeamInvitationsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35074
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1TeamInvitationsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34880
35075
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34881
35076
  });
34882
35077
  },
@@ -34886,12 +35081,12 @@ export const TeamApiFp = function (configuration) {
34886
35081
  * @param {*} [options] Override http request option.
34887
35082
  * @throws {RequiredError}
34888
35083
  */
34889
- apiV1TeamMembersGet(options) {
35084
+ v1TeamMembersGet(options) {
34890
35085
  return __awaiter(this, void 0, void 0, function* () {
34891
35086
  var _a, _b, _c;
34892
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1TeamMembersGet(options);
35087
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1TeamMembersGet(options);
34893
35088
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34894
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1TeamMembersGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35089
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1TeamMembersGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34895
35090
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34896
35091
  });
34897
35092
  },
@@ -34902,12 +35097,12 @@ export const TeamApiFp = function (configuration) {
34902
35097
  * @param {*} [options] Override http request option.
34903
35098
  * @throws {RequiredError}
34904
35099
  */
34905
- apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
35100
+ v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
34906
35101
  return __awaiter(this, void 0, void 0, function* () {
34907
35102
  var _a, _b, _c;
34908
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options);
35103
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options);
34909
35104
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34910
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1TeamMembersInvitePost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35105
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1TeamMembersInvitePost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34911
35106
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34912
35107
  });
34913
35108
  },
@@ -34918,12 +35113,12 @@ export const TeamApiFp = function (configuration) {
34918
35113
  * @param {*} [options] Override http request option.
34919
35114
  * @throws {RequiredError}
34920
35115
  */
34921
- apiV1TeamMembersMemberIdDelete(memberId, options) {
35116
+ v1TeamMembersMemberIdDelete(memberId, options) {
34922
35117
  return __awaiter(this, void 0, void 0, function* () {
34923
35118
  var _a, _b, _c;
34924
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1TeamMembersMemberIdDelete(memberId, options);
35119
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1TeamMembersMemberIdDelete(memberId, options);
34925
35120
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34926
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1TeamMembersMemberIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35121
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1TeamMembersMemberIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34927
35122
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34928
35123
  });
34929
35124
  },
@@ -34935,12 +35130,12 @@ export const TeamApiFp = function (configuration) {
34935
35130
  * @param {*} [options] Override http request option.
34936
35131
  * @throws {RequiredError}
34937
35132
  */
34938
- apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
35133
+ v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
34939
35134
  return __awaiter(this, void 0, void 0, function* () {
34940
35135
  var _a, _b, _c;
34941
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options);
35136
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options);
34942
35137
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34943
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1TeamMembersMemberIdRolePut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35138
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1TeamMembersMemberIdRolePut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34944
35139
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34945
35140
  });
34946
35141
  },
@@ -34951,12 +35146,12 @@ export const TeamApiFp = function (configuration) {
34951
35146
  * @param {*} [options] Override http request option.
34952
35147
  * @throws {RequiredError}
34953
35148
  */
34954
- apiV1UsersUserIdStoresGet(userId, options) {
35149
+ v1UsersUserIdStoresGet(userId, options) {
34955
35150
  return __awaiter(this, void 0, void 0, function* () {
34956
35151
  var _a, _b, _c;
34957
- const localVarAxiosArgs = yield localVarAxiosParamCreator.apiV1UsersUserIdStoresGet(userId, options);
35152
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1UsersUserIdStoresGet(userId, options);
34958
35153
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
34959
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.apiV1UsersUserIdStoresGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
35154
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['TeamApi.v1UsersUserIdStoresGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
34960
35155
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34961
35156
  });
34962
35157
  },
@@ -34976,8 +35171,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
34976
35171
  * @param {*} [options] Override http request option.
34977
35172
  * @throws {RequiredError}
34978
35173
  */
34979
- apiV1InvitationsInvitationIdDelete(invitationId, options) {
34980
- return localVarFp.apiV1InvitationsInvitationIdDelete(invitationId, options).then((request) => request(axios, basePath));
35174
+ v1InvitationsInvitationIdDelete(invitationId, options) {
35175
+ return localVarFp.v1InvitationsInvitationIdDelete(invitationId, options).then((request) => request(axios, basePath));
34981
35176
  },
34982
35177
  /**
34983
35178
  * Accepts a team invitation using token
@@ -34986,8 +35181,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
34986
35181
  * @param {*} [options] Override http request option.
34987
35182
  * @throws {RequiredError}
34988
35183
  */
34989
- apiV1InvitationsTokenAcceptPost(token, options) {
34990
- return localVarFp.apiV1InvitationsTokenAcceptPost(token, options).then((request) => request(axios, basePath));
35184
+ v1InvitationsTokenAcceptPost(token, options) {
35185
+ return localVarFp.v1InvitationsTokenAcceptPost(token, options).then((request) => request(axios, basePath));
34991
35186
  },
34992
35187
  /**
34993
35188
  * Retrieves all users with access to a store
@@ -34996,8 +35191,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
34996
35191
  * @param {*} [options] Override http request option.
34997
35192
  * @throws {RequiredError}
34998
35193
  */
34999
- apiV1StoresStoreIdAccessGet(storeId, options) {
35000
- return localVarFp.apiV1StoresStoreIdAccessGet(storeId, options).then((request) => request(axios, basePath));
35194
+ v1StoresStoreIdAccessGet(storeId, options) {
35195
+ return localVarFp.v1StoresStoreIdAccessGet(storeId, options).then((request) => request(axios, basePath));
35001
35196
  },
35002
35197
  /**
35003
35198
  * Grants a user access to a store
@@ -35007,8 +35202,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35007
35202
  * @param {*} [options] Override http request option.
35008
35203
  * @throws {RequiredError}
35009
35204
  */
35010
- apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
35011
- return localVarFp.apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options).then((request) => request(axios, basePath));
35205
+ v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
35206
+ return localVarFp.v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options).then((request) => request(axios, basePath));
35012
35207
  },
35013
35208
  /**
35014
35209
  * Revokes a user\'s access to a store
@@ -35018,8 +35213,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35018
35213
  * @param {*} [options] Override http request option.
35019
35214
  * @throws {RequiredError}
35020
35215
  */
35021
- apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
35022
- return localVarFp.apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options).then((request) => request(axios, basePath));
35216
+ v1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
35217
+ return localVarFp.v1StoresStoreIdAccessUserIdDelete(storeId, userId, options).then((request) => request(axios, basePath));
35023
35218
  },
35024
35219
  /**
35025
35220
  * Updates a user\'s access level to a store
@@ -35030,8 +35225,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35030
35225
  * @param {*} [options] Override http request option.
35031
35226
  * @throws {RequiredError}
35032
35227
  */
35033
- apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
35034
- return localVarFp.apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options).then((request) => request(axios, basePath));
35228
+ v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
35229
+ return localVarFp.v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options).then((request) => request(axios, basePath));
35035
35230
  },
35036
35231
  /**
35037
35232
  * Retrieves all pending invitations for the user\'s organization
@@ -35039,8 +35234,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35039
35234
  * @param {*} [options] Override http request option.
35040
35235
  * @throws {RequiredError}
35041
35236
  */
35042
- apiV1TeamInvitationsGet(options) {
35043
- return localVarFp.apiV1TeamInvitationsGet(options).then((request) => request(axios, basePath));
35237
+ v1TeamInvitationsGet(options) {
35238
+ return localVarFp.v1TeamInvitationsGet(options).then((request) => request(axios, basePath));
35044
35239
  },
35045
35240
  /**
35046
35241
  * Retrieves all members of the user\'s organization with their details
@@ -35048,8 +35243,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35048
35243
  * @param {*} [options] Override http request option.
35049
35244
  * @throws {RequiredError}
35050
35245
  */
35051
- apiV1TeamMembersGet(options) {
35052
- return localVarFp.apiV1TeamMembersGet(options).then((request) => request(axios, basePath));
35246
+ v1TeamMembersGet(options) {
35247
+ return localVarFp.v1TeamMembersGet(options).then((request) => request(axios, basePath));
35053
35248
  },
35054
35249
  /**
35055
35250
  * Sends an invitation to a user to join the user\'s organization
@@ -35058,8 +35253,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35058
35253
  * @param {*} [options] Override http request option.
35059
35254
  * @throws {RequiredError}
35060
35255
  */
35061
- apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
35062
- return localVarFp.apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options).then((request) => request(axios, basePath));
35256
+ v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
35257
+ return localVarFp.v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options).then((request) => request(axios, basePath));
35063
35258
  },
35064
35259
  /**
35065
35260
  * Removes a member from the user\'s organization
@@ -35068,8 +35263,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35068
35263
  * @param {*} [options] Override http request option.
35069
35264
  * @throws {RequiredError}
35070
35265
  */
35071
- apiV1TeamMembersMemberIdDelete(memberId, options) {
35072
- return localVarFp.apiV1TeamMembersMemberIdDelete(memberId, options).then((request) => request(axios, basePath));
35266
+ v1TeamMembersMemberIdDelete(memberId, options) {
35267
+ return localVarFp.v1TeamMembersMemberIdDelete(memberId, options).then((request) => request(axios, basePath));
35073
35268
  },
35074
35269
  /**
35075
35270
  * Updates the role of a member in the user\'s organization
@@ -35079,8 +35274,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35079
35274
  * @param {*} [options] Override http request option.
35080
35275
  * @throws {RequiredError}
35081
35276
  */
35082
- apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
35083
- return localVarFp.apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options).then((request) => request(axios, basePath));
35277
+ v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
35278
+ return localVarFp.v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options).then((request) => request(axios, basePath));
35084
35279
  },
35085
35280
  /**
35086
35281
  * Retrieves all stores accessible to a user
@@ -35089,8 +35284,8 @@ export const TeamApiFactory = function (configuration, basePath, axios) {
35089
35284
  * @param {*} [options] Override http request option.
35090
35285
  * @throws {RequiredError}
35091
35286
  */
35092
- apiV1UsersUserIdStoresGet(userId, options) {
35093
- return localVarFp.apiV1UsersUserIdStoresGet(userId, options).then((request) => request(axios, basePath));
35287
+ v1UsersUserIdStoresGet(userId, options) {
35288
+ return localVarFp.v1UsersUserIdStoresGet(userId, options).then((request) => request(axios, basePath));
35094
35289
  },
35095
35290
  };
35096
35291
  };
@@ -35109,8 +35304,8 @@ export class TeamApi extends BaseAPI {
35109
35304
  * @throws {RequiredError}
35110
35305
  * @memberof TeamApi
35111
35306
  */
35112
- apiV1InvitationsInvitationIdDelete(invitationId, options) {
35113
- return TeamApiFp(this.configuration).apiV1InvitationsInvitationIdDelete(invitationId, options).then((request) => request(this.axios, this.basePath));
35307
+ v1InvitationsInvitationIdDelete(invitationId, options) {
35308
+ return TeamApiFp(this.configuration).v1InvitationsInvitationIdDelete(invitationId, options).then((request) => request(this.axios, this.basePath));
35114
35309
  }
35115
35310
  /**
35116
35311
  * Accepts a team invitation using token
@@ -35120,8 +35315,8 @@ export class TeamApi extends BaseAPI {
35120
35315
  * @throws {RequiredError}
35121
35316
  * @memberof TeamApi
35122
35317
  */
35123
- apiV1InvitationsTokenAcceptPost(token, options) {
35124
- return TeamApiFp(this.configuration).apiV1InvitationsTokenAcceptPost(token, options).then((request) => request(this.axios, this.basePath));
35318
+ v1InvitationsTokenAcceptPost(token, options) {
35319
+ return TeamApiFp(this.configuration).v1InvitationsTokenAcceptPost(token, options).then((request) => request(this.axios, this.basePath));
35125
35320
  }
35126
35321
  /**
35127
35322
  * Retrieves all users with access to a store
@@ -35131,8 +35326,8 @@ export class TeamApi extends BaseAPI {
35131
35326
  * @throws {RequiredError}
35132
35327
  * @memberof TeamApi
35133
35328
  */
35134
- apiV1StoresStoreIdAccessGet(storeId, options) {
35135
- return TeamApiFp(this.configuration).apiV1StoresStoreIdAccessGet(storeId, options).then((request) => request(this.axios, this.basePath));
35329
+ v1StoresStoreIdAccessGet(storeId, options) {
35330
+ return TeamApiFp(this.configuration).v1StoresStoreIdAccessGet(storeId, options).then((request) => request(this.axios, this.basePath));
35136
35331
  }
35137
35332
  /**
35138
35333
  * Grants a user access to a store
@@ -35143,8 +35338,8 @@ export class TeamApi extends BaseAPI {
35143
35338
  * @throws {RequiredError}
35144
35339
  * @memberof TeamApi
35145
35340
  */
35146
- apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
35147
- return TeamApiFp(this.configuration).apiV1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options).then((request) => request(this.axios, this.basePath));
35341
+ v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options) {
35342
+ return TeamApiFp(this.configuration).v1StoresStoreIdAccessPost(storeId, dataTypesGrantStoreAccessRequest, options).then((request) => request(this.axios, this.basePath));
35148
35343
  }
35149
35344
  /**
35150
35345
  * Revokes a user\'s access to a store
@@ -35155,8 +35350,8 @@ export class TeamApi extends BaseAPI {
35155
35350
  * @throws {RequiredError}
35156
35351
  * @memberof TeamApi
35157
35352
  */
35158
- apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
35159
- return TeamApiFp(this.configuration).apiV1StoresStoreIdAccessUserIdDelete(storeId, userId, options).then((request) => request(this.axios, this.basePath));
35353
+ v1StoresStoreIdAccessUserIdDelete(storeId, userId, options) {
35354
+ return TeamApiFp(this.configuration).v1StoresStoreIdAccessUserIdDelete(storeId, userId, options).then((request) => request(this.axios, this.basePath));
35160
35355
  }
35161
35356
  /**
35162
35357
  * Updates a user\'s access level to a store
@@ -35168,8 +35363,8 @@ export class TeamApi extends BaseAPI {
35168
35363
  * @throws {RequiredError}
35169
35364
  * @memberof TeamApi
35170
35365
  */
35171
- apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
35172
- return TeamApiFp(this.configuration).apiV1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options).then((request) => request(this.axios, this.basePath));
35366
+ v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options) {
35367
+ return TeamApiFp(this.configuration).v1StoresStoreIdAccessUserIdPut(storeId, userId, dataTypesUpdateStoreAccessRequest, options).then((request) => request(this.axios, this.basePath));
35173
35368
  }
35174
35369
  /**
35175
35370
  * Retrieves all pending invitations for the user\'s organization
@@ -35178,8 +35373,8 @@ export class TeamApi extends BaseAPI {
35178
35373
  * @throws {RequiredError}
35179
35374
  * @memberof TeamApi
35180
35375
  */
35181
- apiV1TeamInvitationsGet(options) {
35182
- return TeamApiFp(this.configuration).apiV1TeamInvitationsGet(options).then((request) => request(this.axios, this.basePath));
35376
+ v1TeamInvitationsGet(options) {
35377
+ return TeamApiFp(this.configuration).v1TeamInvitationsGet(options).then((request) => request(this.axios, this.basePath));
35183
35378
  }
35184
35379
  /**
35185
35380
  * Retrieves all members of the user\'s organization with their details
@@ -35188,8 +35383,8 @@ export class TeamApi extends BaseAPI {
35188
35383
  * @throws {RequiredError}
35189
35384
  * @memberof TeamApi
35190
35385
  */
35191
- apiV1TeamMembersGet(options) {
35192
- return TeamApiFp(this.configuration).apiV1TeamMembersGet(options).then((request) => request(this.axios, this.basePath));
35386
+ v1TeamMembersGet(options) {
35387
+ return TeamApiFp(this.configuration).v1TeamMembersGet(options).then((request) => request(this.axios, this.basePath));
35193
35388
  }
35194
35389
  /**
35195
35390
  * Sends an invitation to a user to join the user\'s organization
@@ -35199,8 +35394,8 @@ export class TeamApi extends BaseAPI {
35199
35394
  * @throws {RequiredError}
35200
35395
  * @memberof TeamApi
35201
35396
  */
35202
- apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
35203
- return TeamApiFp(this.configuration).apiV1TeamMembersInvitePost(dataTypesInviteMemberRequest, options).then((request) => request(this.axios, this.basePath));
35397
+ v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options) {
35398
+ return TeamApiFp(this.configuration).v1TeamMembersInvitePost(dataTypesInviteMemberRequest, options).then((request) => request(this.axios, this.basePath));
35204
35399
  }
35205
35400
  /**
35206
35401
  * Removes a member from the user\'s organization
@@ -35210,8 +35405,8 @@ export class TeamApi extends BaseAPI {
35210
35405
  * @throws {RequiredError}
35211
35406
  * @memberof TeamApi
35212
35407
  */
35213
- apiV1TeamMembersMemberIdDelete(memberId, options) {
35214
- return TeamApiFp(this.configuration).apiV1TeamMembersMemberIdDelete(memberId, options).then((request) => request(this.axios, this.basePath));
35408
+ v1TeamMembersMemberIdDelete(memberId, options) {
35409
+ return TeamApiFp(this.configuration).v1TeamMembersMemberIdDelete(memberId, options).then((request) => request(this.axios, this.basePath));
35215
35410
  }
35216
35411
  /**
35217
35412
  * Updates the role of a member in the user\'s organization
@@ -35222,8 +35417,8 @@ export class TeamApi extends BaseAPI {
35222
35417
  * @throws {RequiredError}
35223
35418
  * @memberof TeamApi
35224
35419
  */
35225
- apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
35226
- return TeamApiFp(this.configuration).apiV1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options).then((request) => request(this.axios, this.basePath));
35420
+ v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options) {
35421
+ return TeamApiFp(this.configuration).v1TeamMembersMemberIdRolePut(memberId, dataTypesUpdateMemberRoleRequest, options).then((request) => request(this.axios, this.basePath));
35227
35422
  }
35228
35423
  /**
35229
35424
  * Retrieves all stores accessible to a user
@@ -35233,8 +35428,8 @@ export class TeamApi extends BaseAPI {
35233
35428
  * @throws {RequiredError}
35234
35429
  * @memberof TeamApi
35235
35430
  */
35236
- apiV1UsersUserIdStoresGet(userId, options) {
35237
- return TeamApiFp(this.configuration).apiV1UsersUserIdStoresGet(userId, options).then((request) => request(this.axios, this.basePath));
35431
+ v1UsersUserIdStoresGet(userId, options) {
35432
+ return TeamApiFp(this.configuration).v1UsersUserIdStoresGet(userId, options).then((request) => request(this.axios, this.basePath));
35238
35433
  }
35239
35434
  }
35240
35435
  /**