@seekora-ai/admin-api 1.1.37 → 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
@@ -726,7 +726,7 @@ export const AccountSettingsApiAxiosParamCreator = function (configuration) {
726
726
  };
727
727
  }),
728
728
  /**
729
- * 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
730
730
  * @summary Update user\'s organization
731
731
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
732
732
  * @param {*} [options] Override http request option.
@@ -936,7 +936,7 @@ export const AccountSettingsApiFp = function (configuration) {
936
936
  });
937
937
  },
938
938
  /**
939
- * 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
940
940
  * @summary Update user\'s organization
941
941
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
942
942
  * @param {*} [options] Override http request option.
@@ -1052,7 +1052,7 @@ export const AccountSettingsApiFactory = function (configuration, basePath, axio
1052
1052
  return localVarFp.accountSettingsOrganizationLogoPut(logo, options).then((request) => request(axios, basePath));
1053
1053
  },
1054
1054
  /**
1055
- * 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
1056
1056
  * @summary Update user\'s organization
1057
1057
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
1058
1058
  * @param {*} [options] Override http request option.
@@ -1141,7 +1141,7 @@ export class AccountSettingsApi extends BaseAPI {
1141
1141
  return AccountSettingsApiFp(this.configuration).accountSettingsOrganizationLogoPut(logo, options).then((request) => request(this.axios, this.basePath));
1142
1142
  }
1143
1143
  /**
1144
- * 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
1145
1145
  * @summary Update user\'s organization
1146
1146
  * @param {DataTypesUpdateOrganizationRequest} dataTypesUpdateOrganizationRequest Organization update request
1147
1147
  * @param {*} [options] Override http request option.
@@ -6793,7 +6793,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6793
6793
  };
6794
6794
  }),
6795
6795
  /**
6796
- * 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.
6797
6797
  * @summary Create Analytics Rule
6798
6798
  * @param {string} authorization Bearer JWT token
6799
6799
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -6830,43 +6830,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6830
6830
  options: localVarRequestOptions,
6831
6831
  };
6832
6832
  }),
6833
- /**
6834
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
6835
- * @summary Delete Analytics Rule
6836
- * @param {string} authorization Bearer JWT token
6837
- * @param {string} ruleId Rule ID
6838
- * @param {*} [options] Override http request option.
6839
- * @throws {RequiredError}
6840
- */
6841
- adminV1AnalyticsRulesRuleIdDelete: (authorization_1, ruleId_1, ...args_1) => __awaiter(this, [authorization_1, ruleId_1, ...args_1], void 0, function* (authorization, ruleId, options = {}) {
6842
- // verify required parameter 'authorization' is not null or undefined
6843
- assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'authorization', authorization);
6844
- // verify required parameter 'ruleId' is not null or undefined
6845
- assertParamExists('adminV1AnalyticsRulesRuleIdDelete', 'ruleId', ruleId);
6846
- const localVarPath = `/admin/v1/analytics/rules/{ruleId}`
6847
- .replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
6848
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
6849
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6850
- let baseOptions;
6851
- if (configuration) {
6852
- baseOptions = configuration.baseOptions;
6853
- }
6854
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
6855
- const localVarHeaderParameter = {};
6856
- const localVarQueryParameter = {};
6857
- // authentication BearerAuth required
6858
- yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
6859
- if (authorization != null) {
6860
- localVarHeaderParameter['Authorization'] = String(authorization);
6861
- }
6862
- setSearchParams(localVarUrlObj, localVarQueryParameter);
6863
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
6864
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
6865
- return {
6866
- url: toPathString(localVarUrlObj),
6867
- options: localVarRequestOptions,
6868
- };
6869
- }),
6870
6833
  /**
6871
6834
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
6872
6835
  * @summary Get Analytics Rule
@@ -6905,7 +6868,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6905
6868
  };
6906
6869
  }),
6907
6870
  /**
6908
- * 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.
6909
6872
  * @summary Update Analytics Rule
6910
6873
  * @param {string} authorization Bearer JWT token
6911
6874
  * @param {string} ruleId Rule ID
@@ -7145,10 +7108,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7145
7108
  };
7146
7109
  }),
7147
7110
  /**
7148
- * 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.
7149
7112
  * @summary Create Analytics Rule
7150
7113
  * @param {string} authorization Bearer JWT token
7151
- * @param {string} xstoreid Store ID (for store-specific routes)
7114
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7152
7115
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7153
7116
  * @param {*} [options] Override http request option.
7154
7117
  * @throws {RequiredError}
@@ -7186,47 +7149,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7186
7149
  options: localVarRequestOptions,
7187
7150
  };
7188
7151
  }),
7189
- /**
7190
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7191
- * @summary Delete Analytics Rule
7192
- * @param {string} authorization Bearer JWT token
7193
- * @param {string} xstoreid Store ID (for store-specific routes)
7194
- * @param {string} ruleId Rule ID
7195
- * @param {*} [options] Override http request option.
7196
- * @throws {RequiredError}
7197
- */
7198
- 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 = {}) {
7199
- // verify required parameter 'authorization' is not null or undefined
7200
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'authorization', authorization);
7201
- // verify required parameter 'xstoreid' is not null or undefined
7202
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'xstoreid', xstoreid);
7203
- // verify required parameter 'ruleId' is not null or undefined
7204
- assertParamExists('adminV1StoresXstoreidAnalyticsRulesRuleIdDelete', 'ruleId', ruleId);
7205
- const localVarPath = `/admin/v1/stores/{xstoreid}/analytics/rules/{ruleId}`
7206
- .replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)))
7207
- .replace(`{${"ruleId"}}`, encodeURIComponent(String(ruleId)));
7208
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
7209
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7210
- let baseOptions;
7211
- if (configuration) {
7212
- baseOptions = configuration.baseOptions;
7213
- }
7214
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
7215
- const localVarHeaderParameter = {};
7216
- const localVarQueryParameter = {};
7217
- // authentication BearerAuth required
7218
- yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
7219
- if (authorization != null) {
7220
- localVarHeaderParameter['Authorization'] = String(authorization);
7221
- }
7222
- setSearchParams(localVarUrlObj, localVarQueryParameter);
7223
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7224
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
7225
- return {
7226
- url: toPathString(localVarUrlObj),
7227
- options: localVarRequestOptions,
7228
- };
7229
- }),
7230
7152
  /**
7231
7153
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7232
7154
  * @summary Get Analytics Rule
@@ -7269,10 +7191,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7269
7191
  };
7270
7192
  }),
7271
7193
  /**
7272
- * 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.
7273
7195
  * @summary Update Analytics Rule
7274
7196
  * @param {string} authorization Bearer JWT token
7275
- * @param {string} xstoreid Store ID (for store-specific routes)
7197
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7276
7198
  * @param {string} ruleId Rule ID
7277
7199
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7278
7200
  * @param {*} [options] Override http request option.
@@ -7392,7 +7314,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7392
7314
  });
7393
7315
  },
7394
7316
  /**
7395
- * 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.
7396
7318
  * @summary Create Analytics Rule
7397
7319
  * @param {string} authorization Bearer JWT token
7398
7320
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7408,23 +7330,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7408
7330
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7409
7331
  });
7410
7332
  },
7411
- /**
7412
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7413
- * @summary Delete Analytics Rule
7414
- * @param {string} authorization Bearer JWT token
7415
- * @param {string} ruleId Rule ID
7416
- * @param {*} [options] Override http request option.
7417
- * @throws {RequiredError}
7418
- */
7419
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7420
- return __awaiter(this, void 0, void 0, function* () {
7421
- var _a, _b, _c;
7422
- const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options);
7423
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7424
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsRulesApi.adminV1AnalyticsRulesRuleIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7425
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7426
- });
7427
- },
7428
7333
  /**
7429
7334
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7430
7335
  * @summary Get Analytics Rule
@@ -7443,7 +7348,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7443
7348
  });
7444
7349
  },
7445
7350
  /**
7446
- * 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.
7447
7352
  * @summary Update Analytics Rule
7448
7353
  * @param {string} authorization Bearer JWT token
7449
7354
  * @param {string} ruleId Rule ID
@@ -7541,10 +7446,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7541
7446
  });
7542
7447
  },
7543
7448
  /**
7544
- * 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.
7545
7450
  * @summary Create Analytics Rule
7546
7451
  * @param {string} authorization Bearer JWT token
7547
- * @param {string} xstoreid Store ID (for store-specific routes)
7452
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7548
7453
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7549
7454
  * @param {*} [options] Override http request option.
7550
7455
  * @throws {RequiredError}
@@ -7558,24 +7463,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7558
7463
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7559
7464
  });
7560
7465
  },
7561
- /**
7562
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7563
- * @summary Delete Analytics Rule
7564
- * @param {string} authorization Bearer JWT token
7565
- * @param {string} xstoreid Store ID (for store-specific routes)
7566
- * @param {string} ruleId Rule ID
7567
- * @param {*} [options] Override http request option.
7568
- * @throws {RequiredError}
7569
- */
7570
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7571
- return __awaiter(this, void 0, void 0, function* () {
7572
- var _a, _b, _c;
7573
- const localVarAxiosArgs = yield localVarAxiosParamCreator.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options);
7574
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
7575
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsRulesApi.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
7576
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7577
- });
7578
- },
7579
7466
  /**
7580
7467
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7581
7468
  * @summary Get Analytics Rule
@@ -7595,10 +7482,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7595
7482
  });
7596
7483
  },
7597
7484
  /**
7598
- * 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.
7599
7486
  * @summary Update Analytics Rule
7600
7487
  * @param {string} authorization Bearer JWT token
7601
- * @param {string} xstoreid Store ID (for store-specific routes)
7488
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7602
7489
  * @param {string} ruleId Rule ID
7603
7490
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7604
7491
  * @param {*} [options] Override http request option.
@@ -7661,7 +7548,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7661
7548
  return localVarFp.adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7662
7549
  },
7663
7550
  /**
7664
- * 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.
7665
7552
  * @summary Create Analytics Rule
7666
7553
  * @param {string} authorization Bearer JWT token
7667
7554
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7671,17 +7558,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7671
7558
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7672
7559
  return localVarFp.adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7673
7560
  },
7674
- /**
7675
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7676
- * @summary Delete Analytics Rule
7677
- * @param {string} authorization Bearer JWT token
7678
- * @param {string} ruleId Rule ID
7679
- * @param {*} [options] Override http request option.
7680
- * @throws {RequiredError}
7681
- */
7682
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7683
- return localVarFp.adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(axios, basePath));
7684
- },
7685
7561
  /**
7686
7562
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7687
7563
  * @summary Get Analytics Rule
@@ -7694,7 +7570,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7694
7570
  return localVarFp.adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(axios, basePath));
7695
7571
  },
7696
7572
  /**
7697
- * 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.
7698
7574
  * @summary Update Analytics Rule
7699
7575
  * @param {string} authorization Bearer JWT token
7700
7576
  * @param {string} ruleId Rule ID
@@ -7762,10 +7638,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7762
7638
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7763
7639
  },
7764
7640
  /**
7765
- * 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.
7766
7642
  * @summary Create Analytics Rule
7767
7643
  * @param {string} authorization Bearer JWT token
7768
- * @param {string} xstoreid Store ID (for store-specific routes)
7644
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7769
7645
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7770
7646
  * @param {*} [options] Override http request option.
7771
7647
  * @throws {RequiredError}
@@ -7773,18 +7649,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7773
7649
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7774
7650
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7775
7651
  },
7776
- /**
7777
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7778
- * @summary Delete Analytics Rule
7779
- * @param {string} authorization Bearer JWT token
7780
- * @param {string} xstoreid Store ID (for store-specific routes)
7781
- * @param {string} ruleId Rule ID
7782
- * @param {*} [options] Override http request option.
7783
- * @throws {RequiredError}
7784
- */
7785
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7786
- return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
7787
- },
7788
7652
  /**
7789
7653
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7790
7654
  * @summary Get Analytics Rule
@@ -7798,10 +7662,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7798
7662
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
7799
7663
  },
7800
7664
  /**
7801
- * 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.
7802
7666
  * @summary Update Analytics Rule
7803
7667
  * @param {string} authorization Bearer JWT token
7804
- * @param {string} xstoreid Store ID (for store-specific routes)
7668
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7805
7669
  * @param {string} ruleId Rule ID
7806
7670
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7807
7671
  * @param {*} [options] Override http request option.
@@ -7853,7 +7717,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7853
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));
7854
7718
  }
7855
7719
  /**
7856
- * 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.
7857
7721
  * @summary Create Analytics Rule
7858
7722
  * @param {string} authorization Bearer JWT token
7859
7723
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7864,18 +7728,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7864
7728
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7865
7729
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7866
7730
  }
7867
- /**
7868
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7869
- * @summary Delete Analytics Rule
7870
- * @param {string} authorization Bearer JWT token
7871
- * @param {string} ruleId Rule ID
7872
- * @param {*} [options] Override http request option.
7873
- * @throws {RequiredError}
7874
- * @memberof AnalyticsRulesApi
7875
- */
7876
- adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options) {
7877
- return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdDelete(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
7878
- }
7879
7731
  /**
7880
7732
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7881
7733
  * @summary Get Analytics Rule
@@ -7889,7 +7741,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7889
7741
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
7890
7742
  }
7891
7743
  /**
7892
- * 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.
7893
7745
  * @summary Update Analytics Rule
7894
7746
  * @param {string} authorization Bearer JWT token
7895
7747
  * @param {string} ruleId Rule ID
@@ -7962,10 +7814,10 @@ export class AnalyticsRulesApi extends BaseAPI {
7962
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));
7963
7815
  }
7964
7816
  /**
7965
- * 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.
7966
7818
  * @summary Create Analytics Rule
7967
7819
  * @param {string} authorization Bearer JWT token
7968
- * @param {string} xstoreid Store ID (for store-specific routes)
7820
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7969
7821
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7970
7822
  * @param {*} [options] Override http request option.
7971
7823
  * @throws {RequiredError}
@@ -7974,19 +7826,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7974
7826
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7975
7827
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7976
7828
  }
7977
- /**
7978
- * Permanently delete an analytics rule from both the database and Typesense. This operation cannot be undone.
7979
- * @summary Delete Analytics Rule
7980
- * @param {string} authorization Bearer JWT token
7981
- * @param {string} xstoreid Store ID (for store-specific routes)
7982
- * @param {string} ruleId Rule ID
7983
- * @param {*} [options] Override http request option.
7984
- * @throws {RequiredError}
7985
- * @memberof AnalyticsRulesApi
7986
- */
7987
- adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options) {
7988
- return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdDelete(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
7989
- }
7990
7829
  /**
7991
7830
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7992
7831
  * @summary Get Analytics Rule
@@ -8001,10 +7840,10 @@ export class AnalyticsRulesApi extends BaseAPI {
8001
7840
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
8002
7841
  }
8003
7842
  /**
8004
- * 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.
8005
7844
  * @summary Update Analytics Rule
8006
7845
  * @param {string} authorization Bearer JWT token
8007
- * @param {string} xstoreid Store ID (for store-specific routes)
7846
+ * @param {string} xstoreid Store ID (only required for store-specific route)
8008
7847
  * @param {string} ruleId Rule ID
8009
7848
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
8010
7849
  * @param {*} [options] Override http request option.
@@ -8962,7 +8801,7 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
8962
8801
  };
8963
8802
  }),
8964
8803
  /**
8965
- * Updates an existing billing alert configuration
8804
+ * Updates an existing billing alert configuration AND records activity logs
8966
8805
  * @summary Update billing alert
8967
8806
  * @param {number} id Alert ID
8968
8807
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10232,7 +10071,7 @@ export const BillingDashboardApiFp = function (configuration) {
10232
10071
  });
10233
10072
  },
10234
10073
  /**
10235
- * Updates an existing billing alert configuration
10074
+ * Updates an existing billing alert configuration AND records activity logs
10236
10075
  * @summary Update billing alert
10237
10076
  * @param {number} id Alert ID
10238
10077
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10819,7 +10658,7 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
10819
10658
  return localVarFp.adminBillingAlertsIdDelete(id, options).then((request) => request(axios, basePath));
10820
10659
  },
10821
10660
  /**
10822
- * Updates an existing billing alert configuration
10661
+ * Updates an existing billing alert configuration AND records activity logs
10823
10662
  * @summary Update billing alert
10824
10663
  * @param {number} id Alert ID
10825
10664
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -11228,7 +11067,7 @@ export class BillingDashboardApi extends BaseAPI {
11228
11067
  return BillingDashboardApiFp(this.configuration).adminBillingAlertsIdDelete(id, options).then((request) => request(this.axios, this.basePath));
11229
11068
  }
11230
11069
  /**
11231
- * Updates an existing billing alert configuration
11070
+ * Updates an existing billing alert configuration AND records activity logs
11232
11071
  * @summary Update billing alert
11233
11072
  * @param {number} id Alert ID
11234
11073
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -13908,7 +13747,7 @@ export const CustomStopwordsApiAxiosParamCreator = function (configuration) {
13908
13747
  };
13909
13748
  }),
13910
13749
  /**
13911
- * Updates a custom word list
13750
+ *
13912
13751
  * @summary Update custom word list
13913
13752
  * @param {string} xStoreID X-Store ID
13914
13753
  * @param {number} customWordListID Custom Word List ID
@@ -14154,7 +13993,7 @@ export const CustomStopwordsApiFp = function (configuration) {
14154
13993
  });
14155
13994
  },
14156
13995
  /**
14157
- * Updates a custom word list
13996
+ *
14158
13997
  * @summary Update custom word list
14159
13998
  * @param {string} xStoreID X-Store ID
14160
13999
  * @param {number} customWordListID Custom Word List ID
@@ -14276,7 +14115,7 @@ export const CustomStopwordsApiFactory = function (configuration, basePath, axio
14276
14115
  return localVarFp.adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(axios, basePath));
14277
14116
  },
14278
14117
  /**
14279
- * Updates a custom word list
14118
+ *
14280
14119
  * @summary Update custom word list
14281
14120
  * @param {string} xStoreID X-Store ID
14282
14121
  * @param {number} customWordListID Custom Word List ID
@@ -14370,7 +14209,7 @@ export class CustomStopwordsApi extends BaseAPI {
14370
14209
  return CustomStopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(this.axios, this.basePath));
14371
14210
  }
14372
14211
  /**
14373
- * Updates a custom word list
14212
+ *
14374
14213
  * @summary Update custom word list
14375
14214
  * @param {string} xStoreID X-Store ID
14376
14215
  * @param {number} customWordListID Custom Word List ID
@@ -14614,10 +14453,10 @@ export class DefaultMenuManagementApi extends BaseAPI {
14614
14453
  export const DocumentsApiAxiosParamCreator = function (configuration) {
14615
14454
  return {
14616
14455
  /**
14617
- * Uploads a document to the specified store
14456
+ * Uploads one or more documents to the specified store and logs activity
14618
14457
  * @summary Upload a document
14619
14458
  * @param {string} xStoreID X-Store ID
14620
- * @param {File} file Document file
14459
+ * @param {File} file Document files (supports multiple)
14621
14460
  * @param {*} [options] Override http request option.
14622
14461
  * @throws {RequiredError}
14623
14462
  */
@@ -14663,10 +14502,10 @@ export const DocumentsApiFp = function (configuration) {
14663
14502
  const localVarAxiosParamCreator = DocumentsApiAxiosParamCreator(configuration);
14664
14503
  return {
14665
14504
  /**
14666
- * Uploads a document to the specified store
14505
+ * Uploads one or more documents to the specified store and logs activity
14667
14506
  * @summary Upload a document
14668
14507
  * @param {string} xStoreID X-Store ID
14669
- * @param {File} file Document file
14508
+ * @param {File} file Document files (supports multiple)
14670
14509
  * @param {*} [options] Override http request option.
14671
14510
  * @throws {RequiredError}
14672
14511
  */
@@ -14689,10 +14528,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14689
14528
  const localVarFp = DocumentsApiFp(configuration);
14690
14529
  return {
14691
14530
  /**
14692
- * Uploads a document to the specified store
14531
+ * Uploads one or more documents to the specified store and logs activity
14693
14532
  * @summary Upload a document
14694
14533
  * @param {string} xStoreID X-Store ID
14695
- * @param {File} file Document file
14534
+ * @param {File} file Document files (supports multiple)
14696
14535
  * @param {*} [options] Override http request option.
14697
14536
  * @throws {RequiredError}
14698
14537
  */
@@ -14709,10 +14548,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14709
14548
  */
14710
14549
  export class DocumentsApi extends BaseAPI {
14711
14550
  /**
14712
- * Uploads a document to the specified store
14551
+ * Uploads one or more documents to the specified store and logs activity
14713
14552
  * @summary Upload a document
14714
14553
  * @param {string} xStoreID X-Store ID
14715
- * @param {File} file Document file
14554
+ * @param {File} file Document files (supports multiple)
14716
14555
  * @param {*} [options] Override http request option.
14717
14556
  * @throws {RequiredError}
14718
14557
  * @memberof DocumentsApi
@@ -21591,8 +21430,8 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21591
21430
  };
21592
21431
  }),
21593
21432
  /**
21594
- * Updates Orgnization information by ID.
21595
- * @summary Update an existing Orgnization
21433
+ * Updates Organization information by ID and logs the update activity.
21434
+ * @summary Update an existing Organization
21596
21435
  * @param {number} id Org Id
21597
21436
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21598
21437
  * @param {*} [options] Override http request option.
@@ -21658,9 +21497,9 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21658
21497
  };
21659
21498
  }),
21660
21499
  /**
21661
- * Adds a new Orgnization
21662
- * @summary Creates a new Orgnization
21663
- * @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
21664
21503
  * @param {*} [options] Override http request option.
21665
21504
  * @throws {RequiredError}
21666
21505
  */
@@ -21690,10 +21529,10 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21690
21529
  };
21691
21530
  }),
21692
21531
  /**
21693
- * Deletes a Orgnization from the system by ID.
21694
- * @summary Delete a Orgnization
21695
- * @param {number} id Org ID
21696
- * @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
21697
21536
  * @param {*} [options] Override http request option.
21698
21537
  * @throws {RequiredError}
21699
21538
  */
@@ -21749,8 +21588,8 @@ export const OrganizationsApiFp = function (configuration) {
21749
21588
  });
21750
21589
  },
21751
21590
  /**
21752
- * Updates Orgnization information by ID.
21753
- * @summary Update an existing Orgnization
21591
+ * Updates Organization information by ID and logs the update activity.
21592
+ * @summary Update an existing Organization
21754
21593
  * @param {number} id Org Id
21755
21594
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21756
21595
  * @param {*} [options] Override http request option.
@@ -21782,9 +21621,9 @@ export const OrganizationsApiFp = function (configuration) {
21782
21621
  });
21783
21622
  },
21784
21623
  /**
21785
- * Adds a new Orgnization
21786
- * @summary Creates a new Orgnization
21787
- * @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
21788
21627
  * @param {*} [options] Override http request option.
21789
21628
  * @throws {RequiredError}
21790
21629
  */
@@ -21798,10 +21637,10 @@ export const OrganizationsApiFp = function (configuration) {
21798
21637
  });
21799
21638
  },
21800
21639
  /**
21801
- * Deletes a Orgnization from the system by ID.
21802
- * @summary Delete a Orgnization
21803
- * @param {number} id Org ID
21804
- * @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
21805
21644
  * @param {*} [options] Override http request option.
21806
21645
  * @throws {RequiredError}
21807
21646
  */
@@ -21833,8 +21672,8 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21833
21672
  return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
21834
21673
  },
21835
21674
  /**
21836
- * Updates Orgnization information by ID.
21837
- * @summary Update an existing Orgnization
21675
+ * Updates Organization information by ID and logs the update activity.
21676
+ * @summary Update an existing Organization
21838
21677
  * @param {number} id Org Id
21839
21678
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21840
21679
  * @param {*} [options] Override http request option.
@@ -21854,9 +21693,9 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21854
21693
  return localVarFp.adminOrganizationsOrgIdGet(orgId, options).then((request) => request(axios, basePath));
21855
21694
  },
21856
21695
  /**
21857
- * Adds a new Orgnization
21858
- * @summary Creates a new Orgnization
21859
- * @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
21860
21699
  * @param {*} [options] Override http request option.
21861
21700
  * @throws {RequiredError}
21862
21701
  */
@@ -21864,10 +21703,10 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21864
21703
  return localVarFp.adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(axios, basePath));
21865
21704
  },
21866
21705
  /**
21867
- * Deletes a Orgnization from the system by ID.
21868
- * @summary Delete a Orgnization
21869
- * @param {number} id Org ID
21870
- * @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
21871
21710
  * @param {*} [options] Override http request option.
21872
21711
  * @throws {RequiredError}
21873
21712
  */
@@ -21894,8 +21733,8 @@ export class OrganizationsApi extends BaseAPI {
21894
21733
  return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
21895
21734
  }
21896
21735
  /**
21897
- * Updates Orgnization information by ID.
21898
- * @summary Update an existing Orgnization
21736
+ * Updates Organization information by ID and logs the update activity.
21737
+ * @summary Update an existing Organization
21899
21738
  * @param {number} id Org Id
21900
21739
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21901
21740
  * @param {*} [options] Override http request option.
@@ -21917,9 +21756,9 @@ export class OrganizationsApi extends BaseAPI {
21917
21756
  return OrganizationsApiFp(this.configuration).adminOrganizationsOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
21918
21757
  }
21919
21758
  /**
21920
- * Adds a new Orgnization
21921
- * @summary Creates a new Orgnization
21922
- * @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
21923
21762
  * @param {*} [options] Override http request option.
21924
21763
  * @throws {RequiredError}
21925
21764
  * @memberof OrganizationsApi
@@ -21928,10 +21767,10 @@ export class OrganizationsApi extends BaseAPI {
21928
21767
  return OrganizationsApiFp(this.configuration).adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(this.axios, this.basePath));
21929
21768
  }
21930
21769
  /**
21931
- * Deletes a Orgnization from the system by ID.
21932
- * @summary Delete a Orgnization
21933
- * @param {number} id Org ID
21934
- * @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
21935
21774
  * @param {*} [options] Override http request option.
21936
21775
  * @throws {RequiredError}
21937
21776
  * @memberof OrganizationsApi
@@ -24172,7 +24011,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24172
24011
  };
24173
24012
  }),
24174
24013
  /**
24175
- * 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.
24176
24015
  * @summary Bulk upload plural/declension groups
24177
24016
  * @param {string} xStoreID X-Store ID
24178
24017
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24298,7 +24137,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24298
24137
  };
24299
24138
  }),
24300
24139
  /**
24301
- * 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.
24302
24141
  * @summary Delete plural/declension group
24303
24142
  * @param {string} xStoreID X-Store ID
24304
24143
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24444,7 +24283,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24444
24283
  };
24445
24284
  }),
24446
24285
  /**
24447
- * 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.
24448
24287
  * @summary Upload plural/declension groups from CSV file
24449
24288
  * @param {string} xStoreID X-Store ID
24450
24289
  * @param {File} file CSV file to upload
@@ -24484,7 +24323,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24484
24323
  };
24485
24324
  }),
24486
24325
  /**
24487
- * 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.
24488
24327
  * @summary Upload plural/declension groups from JSON file
24489
24328
  * @param {string} xStoreID X-Store ID
24490
24329
  * @param {File} file JSON file to upload
@@ -24584,7 +24423,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24584
24423
  });
24585
24424
  },
24586
24425
  /**
24587
- * 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.
24588
24427
  * @summary Bulk upload plural/declension groups
24589
24428
  * @param {string} xStoreID X-Store ID
24590
24429
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24640,7 +24479,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24640
24479
  });
24641
24480
  },
24642
24481
  /**
24643
- * 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.
24644
24483
  * @summary Delete plural/declension group
24645
24484
  * @param {string} xStoreID X-Store ID
24646
24485
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24709,7 +24548,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24709
24548
  });
24710
24549
  },
24711
24550
  /**
24712
- * 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.
24713
24552
  * @summary Upload plural/declension groups from CSV file
24714
24553
  * @param {string} xStoreID X-Store ID
24715
24554
  * @param {File} file CSV file to upload
@@ -24726,7 +24565,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24726
24565
  });
24727
24566
  },
24728
24567
  /**
24729
- * 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.
24730
24569
  * @summary Upload plural/declension groups from JSON file
24731
24570
  * @param {string} xStoreID X-Store ID
24732
24571
  * @param {File} file JSON file to upload
@@ -24785,7 +24624,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24785
24624
  return localVarFp.adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(axios, basePath));
24786
24625
  },
24787
24626
  /**
24788
- * 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.
24789
24628
  * @summary Bulk upload plural/declension groups
24790
24629
  * @param {string} xStoreID X-Store ID
24791
24630
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24823,7 +24662,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24823
24662
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(axios, basePath));
24824
24663
  },
24825
24664
  /**
24826
- * 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.
24827
24666
  * @summary Delete plural/declension group
24828
24667
  * @param {string} xStoreID X-Store ID
24829
24668
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24868,7 +24707,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24868
24707
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(axios, basePath));
24869
24708
  },
24870
24709
  /**
24871
- * 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.
24872
24711
  * @summary Upload plural/declension groups from CSV file
24873
24712
  * @param {string} xStoreID X-Store ID
24874
24713
  * @param {File} file CSV file to upload
@@ -24879,7 +24718,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24879
24718
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(axios, basePath));
24880
24719
  },
24881
24720
  /**
24882
- * 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.
24883
24722
  * @summary Upload plural/declension groups from JSON file
24884
24723
  * @param {string} xStoreID X-Store ID
24885
24724
  * @param {File} file JSON file to upload
@@ -24935,7 +24774,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24935
24774
  return PluralsDeclensionsApiFp(this.configuration).adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(this.axios, this.basePath));
24936
24775
  }
24937
24776
  /**
24938
- * 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.
24939
24778
  * @summary Bulk upload plural/declension groups
24940
24779
  * @param {string} xStoreID X-Store ID
24941
24780
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24976,7 +24815,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24976
24815
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
24977
24816
  }
24978
24817
  /**
24979
- * 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.
24980
24819
  * @summary Delete plural/declension group
24981
24820
  * @param {string} xStoreID X-Store ID
24982
24821
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -25025,7 +24864,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
25025
24864
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(this.axios, this.basePath));
25026
24865
  }
25027
24866
  /**
25028
- * 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.
25029
24868
  * @summary Upload plural/declension groups from CSV file
25030
24869
  * @param {string} xStoreID X-Store ID
25031
24870
  * @param {File} file CSV file to upload
@@ -25037,7 +24876,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
25037
24876
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(this.axios, this.basePath));
25038
24877
  }
25039
24878
  /**
25040
- * 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.
25041
24880
  * @summary Upload plural/declension groups from JSON file
25042
24881
  * @param {string} xStoreID X-Store ID
25043
24882
  * @param {File} file JSON file to upload
@@ -25378,7 +25217,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25378
25217
  };
25379
25218
  }),
25380
25219
  /**
25381
- * 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)
25382
25221
  * @summary Apply Suggestion Filters
25383
25222
  * @param {string} xStoreID Store ID
25384
25223
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -25449,7 +25288,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25449
25288
  };
25450
25289
  }),
25451
25290
  /**
25452
- * Update an existing banned expression
25291
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
25453
25292
  * @summary Update Banned Expression
25454
25293
  * @param {string} xStoreID Store ID
25455
25294
  * @param {string} expressionID Banned Expression ID
@@ -25520,10 +25359,10 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25520
25359
  };
25521
25360
  }),
25522
25361
  /**
25523
- * 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).
25524
25363
  * @summary Create Banned Expression
25525
25364
  * @param {string} xStoreID Store ID
25526
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
25365
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
25527
25366
  * @param {*} [options] Override http request option.
25528
25367
  * @throws {RequiredError}
25529
25368
  */
@@ -25823,7 +25662,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25823
25662
  };
25824
25663
  }),
25825
25664
  /**
25826
- * Import query suggestions from JSON data
25665
+ * Import query suggestions from JSON data (Activity Logged)
25827
25666
  * @summary Import Query Suggestions
25828
25667
  * @param {string} xStoreID Store ID
25829
25668
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -25859,7 +25698,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25859
25698
  };
25860
25699
  }),
25861
25700
  /**
25862
- * Delete manually added query suggestions for a store
25701
+ * Deletes manually added query suggestions for a store and records Activity Logs.
25863
25702
  * @summary Delete Manual Query Suggestions
25864
25703
  * @param {string} xStoreID Store ID
25865
25704
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -25895,7 +25734,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25895
25734
  };
25896
25735
  }),
25897
25736
  /**
25898
- * 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).
25899
25738
  * @summary Add Manual Query Suggestion
25900
25739
  * @param {string} xStoreID Store ID
25901
25740
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -25931,7 +25770,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25931
25770
  };
25932
25771
  }),
25933
25772
  /**
25934
- * 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)
25935
25774
  * @summary Migrate Existing Analytics Data
25936
25775
  * @param {string} xStoreID Store ID
25937
25776
  * @param {number} [daysBack] Number of days back to migrate data
@@ -25970,7 +25809,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25970
25809
  };
25971
25810
  }),
25972
25811
  /**
25973
- * 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)
25974
25813
  * @summary Promote ALL Cached Suggestions to Management Table
25975
25814
  * @param {string} xStoreID Store ID
25976
25815
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26005,7 +25844,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26005
25844
  };
26006
25845
  }),
26007
25846
  /**
26008
- * 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)
26009
25848
  * @summary Promote Cached Suggestions to Management Table
26010
25849
  * @param {string} xStoreID Store ID
26011
25850
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26041,7 +25880,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26041
25880
  };
26042
25881
  }),
26043
25882
  /**
26044
- * Refresh auto-generated suggestions from search analytics data
25883
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26045
25884
  * @summary Refresh Auto-Generated Suggestions
26046
25885
  * @param {string} xStoreID Store ID
26047
25886
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26142,7 +25981,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26142
25981
  };
26143
25982
  }),
26144
25983
  /**
26145
- * Delete a single query suggestion by its ID
25984
+ * Delete a single query suggestion by its ID and record an Activity Log.
26146
25985
  * @summary Delete Query Suggestion by ID
26147
25986
  * @param {string} xStoreID Store ID
26148
25987
  * @param {string} suggestionID Suggestion ID
@@ -26212,11 +26051,11 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26212
26051
  };
26213
26052
  }),
26214
26053
  /**
26215
- * Update a single query suggestion by its ID
26054
+ *
26216
26055
  * @summary Update Query Suggestion by ID
26217
26056
  * @param {string} xStoreID Store ID
26218
26057
  * @param {string} suggestionID Suggestion ID
26219
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26058
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26220
26059
  * @param {*} [options] Override http request option.
26221
26060
  * @throws {RequiredError}
26222
26061
  */
@@ -26293,7 +26132,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26293
26132
  };
26294
26133
  }),
26295
26134
  /**
26296
- * 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)
26297
26136
  * @summary Sync Suggestions to Typesense
26298
26137
  * @param {string} xStoreID Store ID
26299
26138
  * @param {*} [options] Override http request option.
@@ -26460,7 +26299,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26460
26299
  });
26461
26300
  },
26462
26301
  /**
26463
- * 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)
26464
26303
  * @summary Apply Suggestion Filters
26465
26304
  * @param {string} xStoreID Store ID
26466
26305
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -26494,7 +26333,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26494
26333
  });
26495
26334
  },
26496
26335
  /**
26497
- * Update an existing banned expression
26336
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
26498
26337
  * @summary Update Banned Expression
26499
26338
  * @param {string} xStoreID Store ID
26500
26339
  * @param {string} expressionID Banned Expression ID
@@ -26528,10 +26367,10 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26528
26367
  });
26529
26368
  },
26530
26369
  /**
26531
- * 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).
26532
26371
  * @summary Create Banned Expression
26533
26372
  * @param {string} xStoreID Store ID
26534
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26373
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
26535
26374
  * @param {*} [options] Override http request option.
26536
26375
  * @throws {RequiredError}
26537
26376
  */
@@ -26669,7 +26508,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26669
26508
  });
26670
26509
  },
26671
26510
  /**
26672
- * Import query suggestions from JSON data
26511
+ * Import query suggestions from JSON data (Activity Logged)
26673
26512
  * @summary Import Query Suggestions
26674
26513
  * @param {string} xStoreID Store ID
26675
26514
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -26686,7 +26525,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26686
26525
  });
26687
26526
  },
26688
26527
  /**
26689
- * Delete manually added query suggestions for a store
26528
+ * Deletes manually added query suggestions for a store and records Activity Logs.
26690
26529
  * @summary Delete Manual Query Suggestions
26691
26530
  * @param {string} xStoreID Store ID
26692
26531
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -26703,7 +26542,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26703
26542
  });
26704
26543
  },
26705
26544
  /**
26706
- * 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).
26707
26546
  * @summary Add Manual Query Suggestion
26708
26547
  * @param {string} xStoreID Store ID
26709
26548
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -26720,7 +26559,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26720
26559
  });
26721
26560
  },
26722
26561
  /**
26723
- * 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)
26724
26563
  * @summary Migrate Existing Analytics Data
26725
26564
  * @param {string} xStoreID Store ID
26726
26565
  * @param {number} [daysBack] Number of days back to migrate data
@@ -26738,7 +26577,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26738
26577
  });
26739
26578
  },
26740
26579
  /**
26741
- * 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)
26742
26581
  * @summary Promote ALL Cached Suggestions to Management Table
26743
26582
  * @param {string} xStoreID Store ID
26744
26583
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26755,7 +26594,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26755
26594
  });
26756
26595
  },
26757
26596
  /**
26758
- * 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)
26759
26598
  * @summary Promote Cached Suggestions to Management Table
26760
26599
  * @param {string} xStoreID Store ID
26761
26600
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26772,7 +26611,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26772
26611
  });
26773
26612
  },
26774
26613
  /**
26775
- * Refresh auto-generated suggestions from search analytics data
26614
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26776
26615
  * @summary Refresh Auto-Generated Suggestions
26777
26616
  * @param {string} xStoreID Store ID
26778
26617
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26822,7 +26661,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26822
26661
  });
26823
26662
  },
26824
26663
  /**
26825
- * Delete a single query suggestion by its ID
26664
+ * Delete a single query suggestion by its ID and record an Activity Log.
26826
26665
  * @summary Delete Query Suggestion by ID
26827
26666
  * @param {string} xStoreID Store ID
26828
26667
  * @param {string} suggestionID Suggestion ID
@@ -26856,11 +26695,11 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26856
26695
  });
26857
26696
  },
26858
26697
  /**
26859
- * Update a single query suggestion by its ID
26698
+ *
26860
26699
  * @summary Update Query Suggestion by ID
26861
26700
  * @param {string} xStoreID Store ID
26862
26701
  * @param {string} suggestionID Suggestion ID
26863
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26702
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26864
26703
  * @param {*} [options] Override http request option.
26865
26704
  * @throws {RequiredError}
26866
26705
  */
@@ -26892,7 +26731,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26892
26731
  });
26893
26732
  },
26894
26733
  /**
26895
- * 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)
26896
26735
  * @summary Sync Suggestions to Typesense
26897
26736
  * @param {string} xStoreID Store ID
26898
26737
  * @param {*} [options] Override http request option.
@@ -26980,7 +26819,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26980
26819
  return localVarFp.adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(axios, basePath));
26981
26820
  },
26982
26821
  /**
26983
- * 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)
26984
26823
  * @summary Apply Suggestion Filters
26985
26824
  * @param {string} xStoreID Store ID
26986
26825
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -27002,7 +26841,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27002
26841
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(axios, basePath));
27003
26842
  },
27004
26843
  /**
27005
- * Update an existing banned expression
26844
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
27006
26845
  * @summary Update Banned Expression
27007
26846
  * @param {string} xStoreID Store ID
27008
26847
  * @param {string} expressionID Banned Expression ID
@@ -27024,10 +26863,10 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27024
26863
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(axios, basePath));
27025
26864
  },
27026
26865
  /**
27027
- * 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).
27028
26867
  * @summary Create Banned Expression
27029
26868
  * @param {string} xStoreID Store ID
27030
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26869
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
27031
26870
  * @param {*} [options] Override http request option.
27032
26871
  * @throws {RequiredError}
27033
26872
  */
@@ -27117,7 +26956,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27117
26956
  return localVarFp.adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(axios, basePath));
27118
26957
  },
27119
26958
  /**
27120
- * Import query suggestions from JSON data
26959
+ * Import query suggestions from JSON data (Activity Logged)
27121
26960
  * @summary Import Query Suggestions
27122
26961
  * @param {string} xStoreID Store ID
27123
26962
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -27128,7 +26967,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27128
26967
  return localVarFp.adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(axios, basePath));
27129
26968
  },
27130
26969
  /**
27131
- * Delete manually added query suggestions for a store
26970
+ * Deletes manually added query suggestions for a store and records Activity Logs.
27132
26971
  * @summary Delete Manual Query Suggestions
27133
26972
  * @param {string} xStoreID Store ID
27134
26973
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -27139,7 +26978,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27139
26978
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(axios, basePath));
27140
26979
  },
27141
26980
  /**
27142
- * 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).
27143
26982
  * @summary Add Manual Query Suggestion
27144
26983
  * @param {string} xStoreID Store ID
27145
26984
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -27150,7 +26989,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27150
26989
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(axios, basePath));
27151
26990
  },
27152
26991
  /**
27153
- * 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)
27154
26993
  * @summary Migrate Existing Analytics Data
27155
26994
  * @param {string} xStoreID Store ID
27156
26995
  * @param {number} [daysBack] Number of days back to migrate data
@@ -27162,7 +27001,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27162
27001
  return localVarFp.adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(axios, basePath));
27163
27002
  },
27164
27003
  /**
27165
- * 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)
27166
27005
  * @summary Promote ALL Cached Suggestions to Management Table
27167
27006
  * @param {string} xStoreID Store ID
27168
27007
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -27173,7 +27012,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27173
27012
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(axios, basePath));
27174
27013
  },
27175
27014
  /**
27176
- * 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)
27177
27016
  * @summary Promote Cached Suggestions to Management Table
27178
27017
  * @param {string} xStoreID Store ID
27179
27018
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -27184,7 +27023,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27184
27023
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(axios, basePath));
27185
27024
  },
27186
27025
  /**
27187
- * Refresh auto-generated suggestions from search analytics data
27026
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
27188
27027
  * @summary Refresh Auto-Generated Suggestions
27189
27028
  * @param {string} xStoreID Store ID
27190
27029
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -27216,7 +27055,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27216
27055
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(axios, basePath));
27217
27056
  },
27218
27057
  /**
27219
- * Delete a single query suggestion by its ID
27058
+ * Delete a single query suggestion by its ID and record an Activity Log.
27220
27059
  * @summary Delete Query Suggestion by ID
27221
27060
  * @param {string} xStoreID Store ID
27222
27061
  * @param {string} suggestionID Suggestion ID
@@ -27238,11 +27077,11 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27238
27077
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(axios, basePath));
27239
27078
  },
27240
27079
  /**
27241
- * Update a single query suggestion by its ID
27080
+ *
27242
27081
  * @summary Update Query Suggestion by ID
27243
27082
  * @param {string} xStoreID Store ID
27244
27083
  * @param {string} suggestionID Suggestion ID
27245
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27084
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
27246
27085
  * @param {*} [options] Override http request option.
27247
27086
  * @throws {RequiredError}
27248
27087
  */
@@ -27262,7 +27101,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27262
27101
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(axios, basePath));
27263
27102
  },
27264
27103
  /**
27265
- * 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)
27266
27105
  * @summary Sync Suggestions to Typesense
27267
27106
  * @param {string} xStoreID Store ID
27268
27107
  * @param {*} [options] Override http request option.
@@ -27327,7 +27166,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27327
27166
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
27328
27167
  }
27329
27168
  /**
27330
- * 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)
27331
27170
  * @summary Apply Suggestion Filters
27332
27171
  * @param {string} xStoreID Store ID
27333
27172
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -27351,7 +27190,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27351
27190
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(this.axios, this.basePath));
27352
27191
  }
27353
27192
  /**
27354
- * Update an existing banned expression
27193
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
27355
27194
  * @summary Update Banned Expression
27356
27195
  * @param {string} xStoreID Store ID
27357
27196
  * @param {string} expressionID Banned Expression ID
@@ -27375,10 +27214,10 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27375
27214
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27376
27215
  }
27377
27216
  /**
27378
- * 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).
27379
27218
  * @summary Create Banned Expression
27380
27219
  * @param {string} xStoreID Store ID
27381
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
27220
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
27382
27221
  * @param {*} [options] Override http request option.
27383
27222
  * @throws {RequiredError}
27384
27223
  * @memberof QuerySuggestionsManagementApi
@@ -27476,7 +27315,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27476
27315
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(this.axios, this.basePath));
27477
27316
  }
27478
27317
  /**
27479
- * Import query suggestions from JSON data
27318
+ * Import query suggestions from JSON data (Activity Logged)
27480
27319
  * @summary Import Query Suggestions
27481
27320
  * @param {string} xStoreID Store ID
27482
27321
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -27488,7 +27327,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27488
27327
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27489
27328
  }
27490
27329
  /**
27491
- * Delete manually added query suggestions for a store
27330
+ * Deletes manually added query suggestions for a store and records Activity Logs.
27492
27331
  * @summary Delete Manual Query Suggestions
27493
27332
  * @param {string} xStoreID Store ID
27494
27333
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -27500,7 +27339,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27500
27339
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27501
27340
  }
27502
27341
  /**
27503
- * 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).
27504
27343
  * @summary Add Manual Query Suggestion
27505
27344
  * @param {string} xStoreID Store ID
27506
27345
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -27512,7 +27351,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27512
27351
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(this.axios, this.basePath));
27513
27352
  }
27514
27353
  /**
27515
- * 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)
27516
27355
  * @summary Migrate Existing Analytics Data
27517
27356
  * @param {string} xStoreID Store ID
27518
27357
  * @param {number} [daysBack] Number of days back to migrate data
@@ -27525,7 +27364,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27525
27364
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
27526
27365
  }
27527
27366
  /**
27528
- * 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)
27529
27368
  * @summary Promote ALL Cached Suggestions to Management Table
27530
27369
  * @param {string} xStoreID Store ID
27531
27370
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -27537,7 +27376,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27537
27376
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(this.axios, this.basePath));
27538
27377
  }
27539
27378
  /**
27540
- * 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)
27541
27380
  * @summary Promote Cached Suggestions to Management Table
27542
27381
  * @param {string} xStoreID Store ID
27543
27382
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -27549,7 +27388,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27549
27388
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27550
27389
  }
27551
27390
  /**
27552
- * Refresh auto-generated suggestions from search analytics data
27391
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
27553
27392
  * @summary Refresh Auto-Generated Suggestions
27554
27393
  * @param {string} xStoreID Store ID
27555
27394
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -27584,7 +27423,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27584
27423
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27585
27424
  }
27586
27425
  /**
27587
- * Delete a single query suggestion by its ID
27426
+ * Delete a single query suggestion by its ID and record an Activity Log.
27588
27427
  * @summary Delete Query Suggestion by ID
27589
27428
  * @param {string} xStoreID Store ID
27590
27429
  * @param {string} suggestionID Suggestion ID
@@ -27608,11 +27447,11 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27608
27447
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(this.axios, this.basePath));
27609
27448
  }
27610
27449
  /**
27611
- * Update a single query suggestion by its ID
27450
+ *
27612
27451
  * @summary Update Query Suggestion by ID
27613
27452
  * @param {string} xStoreID Store ID
27614
27453
  * @param {string} suggestionID Suggestion ID
27615
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27454
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
27616
27455
  * @param {*} [options] Override http request option.
27617
27456
  * @throws {RequiredError}
27618
27457
  * @memberof QuerySuggestionsManagementApi
@@ -27634,7 +27473,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27634
27473
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(this.axios, this.basePath));
27635
27474
  }
27636
27475
  /**
27637
- * 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)
27638
27477
  * @summary Sync Suggestions to Typesense
27639
27478
  * @param {string} xStoreID Store ID
27640
27479
  * @param {*} [options] Override http request option.
@@ -31009,7 +30848,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
31009
30848
  };
31010
30849
  }),
31011
30850
  /**
31012
- * 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)\" ]` ---
31013
30852
  * @summary Remove words from language word list
31014
30853
  * @param {string} xStoreID X-Store ID
31015
30854
  * @param {number} wordListID Word List ID
@@ -31049,7 +30888,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
31049
30888
  };
31050
30889
  }),
31051
30890
  /**
31052
- * 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.
31053
30892
  * @summary Add words to language word list
31054
30893
  * @param {string} xStoreID X-Store ID
31055
30894
  * @param {number} wordListID Word List ID
@@ -31174,7 +31013,7 @@ export const StopwordsApiFp = function (configuration) {
31174
31013
  });
31175
31014
  },
31176
31015
  /**
31177
- * 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)\" ]` ---
31178
31017
  * @summary Remove words from language word list
31179
31018
  * @param {string} xStoreID X-Store ID
31180
31019
  * @param {number} wordListID Word List ID
@@ -31192,7 +31031,7 @@ export const StopwordsApiFp = function (configuration) {
31192
31031
  });
31193
31032
  },
31194
31033
  /**
31195
- * 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.
31196
31035
  * @summary Add words to language word list
31197
31036
  * @param {string} xStoreID X-Store ID
31198
31037
  * @param {number} wordListID Word List ID
@@ -31271,7 +31110,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
31271
31110
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(axios, basePath));
31272
31111
  },
31273
31112
  /**
31274
- * 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)\" ]` ---
31275
31114
  * @summary Remove words from language word list
31276
31115
  * @param {string} xStoreID X-Store ID
31277
31116
  * @param {number} wordListID Word List ID
@@ -31283,7 +31122,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
31283
31122
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(axios, basePath));
31284
31123
  },
31285
31124
  /**
31286
- * 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.
31287
31126
  * @summary Add words to language word list
31288
31127
  * @param {string} xStoreID X-Store ID
31289
31128
  * @param {number} wordListID Word List ID
@@ -31360,7 +31199,7 @@ export class StopwordsApi extends BaseAPI {
31360
31199
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
31361
31200
  }
31362
31201
  /**
31363
- * 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)\" ]` ---
31364
31203
  * @summary Remove words from language word list
31365
31204
  * @param {string} xStoreID X-Store ID
31366
31205
  * @param {number} wordListID Word List ID
@@ -31373,7 +31212,7 @@ export class StopwordsApi extends BaseAPI {
31373
31212
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(this.axios, this.basePath));
31374
31213
  }
31375
31214
  /**
31376
- * 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.
31377
31216
  * @summary Add words to language word list
31378
31217
  * @param {string} xStoreID X-Store ID
31379
31218
  * @param {number} wordListID Word List ID
@@ -31983,7 +31822,7 @@ export class StoreCreationApi extends BaseAPI {
31983
31822
  export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
31984
31823
  return {
31985
31824
  /**
31986
- * 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
+ *
31987
31826
  * @summary Bulk document operations
31988
31827
  * @param {string} xStoreID X-Store ID
31989
31828
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32089,7 +31928,7 @@ export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
32089
31928
  };
32090
31929
  }),
32091
31930
  /**
32092
- * Updates an existing document by ID. The document ID will not change even if document properties change.
31931
+ *
32093
31932
  * @summary Update document
32094
31933
  * @param {string} xStoreID X-Store ID
32095
31934
  * @param {string} documentID Document ID
@@ -32225,7 +32064,7 @@ export const StoreDocumentsApiFp = function (configuration) {
32225
32064
  const localVarAxiosParamCreator = StoreDocumentsApiAxiosParamCreator(configuration);
32226
32065
  return {
32227
32066
  /**
32228
- * 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
+ *
32229
32068
  * @summary Bulk document operations
32230
32069
  * @param {string} xStoreID X-Store ID
32231
32070
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32276,7 +32115,7 @@ export const StoreDocumentsApiFp = function (configuration) {
32276
32115
  });
32277
32116
  },
32278
32117
  /**
32279
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32118
+ *
32280
32119
  * @summary Update document
32281
32120
  * @param {string} xStoreID X-Store ID
32282
32121
  * @param {string} documentID Document ID
@@ -32341,7 +32180,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32341
32180
  const localVarFp = StoreDocumentsApiFp(configuration);
32342
32181
  return {
32343
32182
  /**
32344
- * 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
+ *
32345
32184
  * @summary Bulk document operations
32346
32185
  * @param {string} xStoreID X-Store ID
32347
32186
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32374,7 +32213,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32374
32213
  return localVarFp.adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(axios, basePath));
32375
32214
  },
32376
32215
  /**
32377
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32216
+ *
32378
32217
  * @summary Update document
32379
32218
  * @param {string} xStoreID X-Store ID
32380
32219
  * @param {string} documentID Document ID
@@ -32421,7 +32260,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32421
32260
  */
32422
32261
  export class StoreDocumentsApi extends BaseAPI {
32423
32262
  /**
32424
- * 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
+ *
32425
32264
  * @summary Bulk document operations
32426
32265
  * @param {string} xStoreID X-Store ID
32427
32266
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32457,7 +32296,7 @@ export class StoreDocumentsApi extends BaseAPI {
32457
32296
  return StoreDocumentsApiFp(this.configuration).adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(this.axios, this.basePath));
32458
32297
  }
32459
32298
  /**
32460
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32299
+ *
32461
32300
  * @summary Update document
32462
32301
  * @param {string} xStoreID X-Store ID
32463
32302
  * @param {string} documentID Document ID
@@ -32631,10 +32470,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32631
32470
  };
32632
32471
  }),
32633
32472
  /**
32634
- * Updates StoreStatus information by ID.
32635
- * @summary Update an existing StoreStatus
32473
+ * Updates the active/inactive status of a store by its ID.
32474
+ * @summary Update Store Status
32636
32475
  * @param {number} id Store ID
32637
- * @param {boolean} status status
32476
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
32638
32477
  * @param {*} [options] Override http request option.
32639
32478
  * @throws {RequiredError}
32640
32479
  */
@@ -32871,10 +32710,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32871
32710
  };
32872
32711
  }),
32873
32712
  /**
32874
- * 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
+ *
32875
32714
  * @summary Update Store Config (Partial)
32876
32715
  * @param {string} xStoreID X-Store ID
32877
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
32716
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
32878
32717
  * @param {*} [options] Override http request option.
32879
32718
  * @throws {RequiredError}
32880
32719
  */
@@ -33114,24 +32953,24 @@ export const StoresApiAxiosParamCreator = function (configuration) {
33114
32953
  };
33115
32954
  }),
33116
32955
  /**
33117
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
32956
+ *
33118
32957
  * @summary Regenerate X-Store Secret
33119
- * @param {string} xStoreID Current X-Store ID
32958
+ * @param {string} xstoreid Current X-Store ID
33120
32959
  * @param {*} [options] Override http request option.
33121
32960
  * @throws {RequiredError}
33122
32961
  */
33123
- xStoreIDRegenerateSecretPost: (xStoreID_1, ...args_1) => __awaiter(this, [xStoreID_1, ...args_1], void 0, function* (xStoreID, options = {}) {
33124
- // verify required parameter 'xStoreID' is not null or undefined
33125
- assertParamExists('xStoreIDRegenerateSecretPost', 'xStoreID', xStoreID);
33126
- const localVarPath = `/{xStoreID}/regenerate-secret`
33127
- .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)));
33128
32967
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
33129
32968
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
33130
32969
  let baseOptions;
33131
32970
  if (configuration) {
33132
32971
  baseOptions = configuration.baseOptions;
33133
32972
  }
33134
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
32973
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
33135
32974
  const localVarHeaderParameter = {};
33136
32975
  const localVarQueryParameter = {};
33137
32976
  // authentication BearerAuth required
@@ -33218,10 +33057,10 @@ export const StoresApiFp = function (configuration) {
33218
33057
  });
33219
33058
  },
33220
33059
  /**
33221
- * Updates StoreStatus information by ID.
33222
- * @summary Update an existing StoreStatus
33060
+ * Updates the active/inactive status of a store by its ID.
33061
+ * @summary Update Store Status
33223
33062
  * @param {number} id Store ID
33224
- * @param {boolean} status status
33063
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33225
33064
  * @param {*} [options] Override http request option.
33226
33065
  * @throws {RequiredError}
33227
33066
  */
@@ -33327,10 +33166,10 @@ export const StoresApiFp = function (configuration) {
33327
33166
  });
33328
33167
  },
33329
33168
  /**
33330
- * 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
+ *
33331
33170
  * @summary Update Store Config (Partial)
33332
33171
  * @param {string} xStoreID X-Store ID
33333
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33172
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33334
33173
  * @param {*} [options] Override http request option.
33335
33174
  * @throws {RequiredError}
33336
33175
  */
@@ -33445,18 +33284,18 @@ export const StoresApiFp = function (configuration) {
33445
33284
  });
33446
33285
  },
33447
33286
  /**
33448
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33287
+ *
33449
33288
  * @summary Regenerate X-Store Secret
33450
- * @param {string} xStoreID Current X-Store ID
33289
+ * @param {string} xstoreid Current X-Store ID
33451
33290
  * @param {*} [options] Override http request option.
33452
33291
  * @throws {RequiredError}
33453
33292
  */
33454
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33293
+ xstoreidRegenerateUidPut(xstoreid, options) {
33455
33294
  return __awaiter(this, void 0, void 0, function* () {
33456
33295
  var _a, _b, _c;
33457
- const localVarAxiosArgs = yield localVarAxiosParamCreator.xStoreIDRegenerateSecretPost(xStoreID, options);
33296
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.xstoreidRegenerateUidPut(xstoreid, options);
33458
33297
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
33459
- 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;
33460
33299
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
33461
33300
  });
33462
33301
  },
@@ -33510,10 +33349,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33510
33349
  return localVarFp.adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(axios, basePath));
33511
33350
  },
33512
33351
  /**
33513
- * Updates StoreStatus information by ID.
33514
- * @summary Update an existing StoreStatus
33352
+ * Updates the active/inactive status of a store by its ID.
33353
+ * @summary Update Store Status
33515
33354
  * @param {number} id Store ID
33516
- * @param {boolean} status status
33355
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33517
33356
  * @param {*} [options] Override http request option.
33518
33357
  * @throws {RequiredError}
33519
33358
  */
@@ -33583,10 +33422,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33583
33422
  return localVarFp.adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
33584
33423
  },
33585
33424
  /**
33586
- * 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
+ *
33587
33426
  * @summary Update Store Config (Partial)
33588
33427
  * @param {string} xStoreID X-Store ID
33589
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33428
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33590
33429
  * @param {*} [options] Override http request option.
33591
33430
  * @throws {RequiredError}
33592
33431
  */
@@ -33659,14 +33498,14 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33659
33498
  return localVarFp.adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(axios, basePath));
33660
33499
  },
33661
33500
  /**
33662
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33501
+ *
33663
33502
  * @summary Regenerate X-Store Secret
33664
- * @param {string} xStoreID Current X-Store ID
33503
+ * @param {string} xstoreid Current X-Store ID
33665
33504
  * @param {*} [options] Override http request option.
33666
33505
  * @throws {RequiredError}
33667
33506
  */
33668
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33669
- 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));
33670
33509
  },
33671
33510
  };
33672
33511
  };
@@ -33722,10 +33561,10 @@ export class StoresApi extends BaseAPI {
33722
33561
  return StoresApiFp(this.configuration).adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(this.axios, this.basePath));
33723
33562
  }
33724
33563
  /**
33725
- * Updates StoreStatus information by ID.
33726
- * @summary Update an existing StoreStatus
33564
+ * Updates the active/inactive status of a store by its ID.
33565
+ * @summary Update Store Status
33727
33566
  * @param {number} id Store ID
33728
- * @param {boolean} status status
33567
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33729
33568
  * @param {*} [options] Override http request option.
33730
33569
  * @throws {RequiredError}
33731
33570
  * @memberof StoresApi
@@ -33801,10 +33640,10 @@ export class StoresApi extends BaseAPI {
33801
33640
  return StoresApiFp(this.configuration).adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
33802
33641
  }
33803
33642
  /**
33804
- * 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
+ *
33805
33644
  * @summary Update Store Config (Partial)
33806
33645
  * @param {string} xStoreID X-Store ID
33807
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33646
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33808
33647
  * @param {*} [options] Override http request option.
33809
33648
  * @throws {RequiredError}
33810
33649
  * @memberof StoresApi
@@ -33884,15 +33723,15 @@ export class StoresApi extends BaseAPI {
33884
33723
  return StoresApiFp(this.configuration).adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(this.axios, this.basePath));
33885
33724
  }
33886
33725
  /**
33887
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33726
+ *
33888
33727
  * @summary Regenerate X-Store Secret
33889
- * @param {string} xStoreID Current X-Store ID
33728
+ * @param {string} xstoreid Current X-Store ID
33890
33729
  * @param {*} [options] Override http request option.
33891
33730
  * @throws {RequiredError}
33892
33731
  * @memberof StoresApi
33893
33732
  */
33894
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33895
- 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));
33896
33735
  }
33897
33736
  }
33898
33737
  /**