@seekora-ai/admin-api 1.1.37 → 1.1.39

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.
@@ -1195,6 +1195,129 @@ export class AccountSettingsApi extends BaseAPI {
1195
1195
  return AccountSettingsApiFp(this.configuration).accountSettingsSetPasswordPut(dataTypesSetPasswordRequest, options).then((request) => request(this.axios, this.basePath));
1196
1196
  }
1197
1197
  }
1198
+ /**
1199
+ * ActivityLogsApi - axios parameter creator
1200
+ * @export
1201
+ */
1202
+ export const ActivityLogsApiAxiosParamCreator = function (configuration) {
1203
+ return {
1204
+ /**
1205
+ * Retrieve user activity logs from ClickHouse system_events table with filtering and pagination.
1206
+ * @summary Get Activity Logs
1207
+ * @param {string} [startDate] Start date (ISO 8601 format)
1208
+ * @param {string} [endDate] End date (ISO 8601 format)
1209
+ * @param {number} [page] Page number (default: 1)
1210
+ * @param {number} [perPage] Results per page (default: 50, max: 1000)
1211
+ * @param {*} [options] Override http request option.
1212
+ * @throws {RequiredError}
1213
+ */
1214
+ analyticsActivityLogsGet: (startDate_1, endDate_1, page_1, perPage_1, ...args_1) => __awaiter(this, [startDate_1, endDate_1, page_1, perPage_1, ...args_1], void 0, function* (startDate, endDate, page, perPage, options = {}) {
1215
+ const localVarPath = `/analytics/activity-logs`;
1216
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1217
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1218
+ let baseOptions;
1219
+ if (configuration) {
1220
+ baseOptions = configuration.baseOptions;
1221
+ }
1222
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1223
+ const localVarHeaderParameter = {};
1224
+ const localVarQueryParameter = {};
1225
+ // authentication BearerAuth required
1226
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1227
+ if (startDate !== undefined) {
1228
+ localVarQueryParameter['start_date'] = startDate;
1229
+ }
1230
+ if (endDate !== undefined) {
1231
+ localVarQueryParameter['end_date'] = endDate;
1232
+ }
1233
+ if (page !== undefined) {
1234
+ localVarQueryParameter['page'] = page;
1235
+ }
1236
+ if (perPage !== undefined) {
1237
+ localVarQueryParameter['per_page'] = perPage;
1238
+ }
1239
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1240
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1241
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1242
+ return {
1243
+ url: toPathString(localVarUrlObj),
1244
+ options: localVarRequestOptions,
1245
+ };
1246
+ }),
1247
+ };
1248
+ };
1249
+ /**
1250
+ * ActivityLogsApi - functional programming interface
1251
+ * @export
1252
+ */
1253
+ export const ActivityLogsApiFp = function (configuration) {
1254
+ const localVarAxiosParamCreator = ActivityLogsApiAxiosParamCreator(configuration);
1255
+ return {
1256
+ /**
1257
+ * Retrieve user activity logs from ClickHouse system_events table with filtering and pagination.
1258
+ * @summary Get Activity Logs
1259
+ * @param {string} [startDate] Start date (ISO 8601 format)
1260
+ * @param {string} [endDate] End date (ISO 8601 format)
1261
+ * @param {number} [page] Page number (default: 1)
1262
+ * @param {number} [perPage] Results per page (default: 50, max: 1000)
1263
+ * @param {*} [options] Override http request option.
1264
+ * @throws {RequiredError}
1265
+ */
1266
+ analyticsActivityLogsGet(startDate, endDate, page, perPage, options) {
1267
+ return __awaiter(this, void 0, void 0, function* () {
1268
+ var _a, _b, _c;
1269
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.analyticsActivityLogsGet(startDate, endDate, page, perPage, options);
1270
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1271
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ActivityLogsApi.analyticsActivityLogsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1272
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1273
+ });
1274
+ },
1275
+ };
1276
+ };
1277
+ /**
1278
+ * ActivityLogsApi - factory interface
1279
+ * @export
1280
+ */
1281
+ export const ActivityLogsApiFactory = function (configuration, basePath, axios) {
1282
+ const localVarFp = ActivityLogsApiFp(configuration);
1283
+ return {
1284
+ /**
1285
+ * Retrieve user activity logs from ClickHouse system_events table with filtering and pagination.
1286
+ * @summary Get Activity Logs
1287
+ * @param {string} [startDate] Start date (ISO 8601 format)
1288
+ * @param {string} [endDate] End date (ISO 8601 format)
1289
+ * @param {number} [page] Page number (default: 1)
1290
+ * @param {number} [perPage] Results per page (default: 50, max: 1000)
1291
+ * @param {*} [options] Override http request option.
1292
+ * @throws {RequiredError}
1293
+ */
1294
+ analyticsActivityLogsGet(startDate, endDate, page, perPage, options) {
1295
+ return localVarFp.analyticsActivityLogsGet(startDate, endDate, page, perPage, options).then((request) => request(axios, basePath));
1296
+ },
1297
+ };
1298
+ };
1299
+ /**
1300
+ * ActivityLogsApi - object-oriented interface
1301
+ * @export
1302
+ * @class ActivityLogsApi
1303
+ * @extends {BaseAPI}
1304
+ */
1305
+ export class ActivityLogsApi extends BaseAPI {
1306
+ /**
1307
+ * Retrieve user activity logs from ClickHouse system_events table with filtering and pagination.
1308
+ * @summary Get Activity Logs
1309
+ * @param {string} [startDate] Start date (ISO 8601 format)
1310
+ * @param {string} [endDate] End date (ISO 8601 format)
1311
+ * @param {number} [page] Page number (default: 1)
1312
+ * @param {number} [perPage] Results per page (default: 50, max: 1000)
1313
+ * @param {*} [options] Override http request option.
1314
+ * @throws {RequiredError}
1315
+ * @memberof ActivityLogsApi
1316
+ */
1317
+ analyticsActivityLogsGet(startDate, endDate, page, perPage, options) {
1318
+ return ActivityLogsApiFp(this.configuration).analyticsActivityLogsGet(startDate, endDate, page, perPage, options).then((request) => request(this.axios, this.basePath));
1319
+ }
1320
+ }
1198
1321
  /**
1199
1322
  * AdminAnalyticsApi - axios parameter creator
1200
1323
  * @export
@@ -6793,7 +6916,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6793
6916
  };
6794
6917
  }),
6795
6918
  /**
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.
6919
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
6797
6920
  * @summary Create Analytics Rule
6798
6921
  * @param {string} authorization Bearer JWT token
6799
6922
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -6830,43 +6953,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6830
6953
  options: localVarRequestOptions,
6831
6954
  };
6832
6955
  }),
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
6956
  /**
6871
6957
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
6872
6958
  * @summary Get Analytics Rule
@@ -6905,7 +6991,7 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
6905
6991
  };
6906
6992
  }),
6907
6993
  /**
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.
6994
+ * 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
6995
  * @summary Update Analytics Rule
6910
6996
  * @param {string} authorization Bearer JWT token
6911
6997
  * @param {string} ruleId Rule ID
@@ -7145,10 +7231,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7145
7231
  };
7146
7232
  }),
7147
7233
  /**
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.
7234
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7149
7235
  * @summary Create Analytics Rule
7150
7236
  * @param {string} authorization Bearer JWT token
7151
- * @param {string} xstoreid Store ID (for store-specific routes)
7237
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7152
7238
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7153
7239
  * @param {*} [options] Override http request option.
7154
7240
  * @throws {RequiredError}
@@ -7186,47 +7272,6 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7186
7272
  options: localVarRequestOptions,
7187
7273
  };
7188
7274
  }),
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
7275
  /**
7231
7276
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7232
7277
  * @summary Get Analytics Rule
@@ -7269,10 +7314,10 @@ export const AnalyticsRulesApiAxiosParamCreator = function (configuration) {
7269
7314
  };
7270
7315
  }),
7271
7316
  /**
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.
7317
+ * 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
7318
  * @summary Update Analytics Rule
7274
7319
  * @param {string} authorization Bearer JWT token
7275
- * @param {string} xstoreid Store ID (for store-specific routes)
7320
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7276
7321
  * @param {string} ruleId Rule ID
7277
7322
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7278
7323
  * @param {*} [options] Override http request option.
@@ -7392,7 +7437,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7392
7437
  });
7393
7438
  },
7394
7439
  /**
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.
7440
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7396
7441
  * @summary Create Analytics Rule
7397
7442
  * @param {string} authorization Bearer JWT token
7398
7443
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7408,23 +7453,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7408
7453
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7409
7454
  });
7410
7455
  },
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
7456
  /**
7429
7457
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7430
7458
  * @summary Get Analytics Rule
@@ -7443,7 +7471,7 @@ export const AnalyticsRulesApiFp = function (configuration) {
7443
7471
  });
7444
7472
  },
7445
7473
  /**
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.
7474
+ * 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
7475
  * @summary Update Analytics Rule
7448
7476
  * @param {string} authorization Bearer JWT token
7449
7477
  * @param {string} ruleId Rule ID
@@ -7541,10 +7569,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7541
7569
  });
7542
7570
  },
7543
7571
  /**
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.
7572
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7545
7573
  * @summary Create Analytics Rule
7546
7574
  * @param {string} authorization Bearer JWT token
7547
- * @param {string} xstoreid Store ID (for store-specific routes)
7575
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7548
7576
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7549
7577
  * @param {*} [options] Override http request option.
7550
7578
  * @throws {RequiredError}
@@ -7558,24 +7586,6 @@ export const AnalyticsRulesApiFp = function (configuration) {
7558
7586
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7559
7587
  });
7560
7588
  },
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
7589
  /**
7580
7590
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7581
7591
  * @summary Get Analytics Rule
@@ -7595,10 +7605,10 @@ export const AnalyticsRulesApiFp = function (configuration) {
7595
7605
  });
7596
7606
  },
7597
7607
  /**
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.
7608
+ * 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
7609
  * @summary Update Analytics Rule
7600
7610
  * @param {string} authorization Bearer JWT token
7601
- * @param {string} xstoreid Store ID (for store-specific routes)
7611
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7602
7612
  * @param {string} ruleId Rule ID
7603
7613
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7604
7614
  * @param {*} [options] Override http request option.
@@ -7661,7 +7671,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7661
7671
  return localVarFp.adminV1AnalyticsRulesGet(authorization, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7662
7672
  },
7663
7673
  /**
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.
7674
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7665
7675
  * @summary Create Analytics Rule
7666
7676
  * @param {string} authorization Bearer JWT token
7667
7677
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7671,17 +7681,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7671
7681
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7672
7682
  return localVarFp.adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7673
7683
  },
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
7684
  /**
7686
7685
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7687
7686
  * @summary Get Analytics Rule
@@ -7694,7 +7693,7 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7694
7693
  return localVarFp.adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(axios, basePath));
7695
7694
  },
7696
7695
  /**
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.
7696
+ * 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
7697
  * @summary Update Analytics Rule
7699
7698
  * @param {string} authorization Bearer JWT token
7700
7699
  * @param {string} ruleId Rule ID
@@ -7762,10 +7761,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7762
7761
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesGet(authorization, xstoreid, storeId, collectionName, isActive, page, pageSize, limit, offset, sortBy, sortOrder, searchQuery, options).then((request) => request(axios, basePath));
7763
7762
  },
7764
7763
  /**
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.
7764
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7766
7765
  * @summary Create Analytics Rule
7767
7766
  * @param {string} authorization Bearer JWT token
7768
- * @param {string} xstoreid Store ID (for store-specific routes)
7767
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7769
7768
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7770
7769
  * @param {*} [options] Override http request option.
7771
7770
  * @throws {RequiredError}
@@ -7773,18 +7772,6 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7773
7772
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7774
7773
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(axios, basePath));
7775
7774
  },
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
7775
  /**
7789
7776
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7790
7777
  * @summary Get Analytics Rule
@@ -7798,10 +7785,10 @@ export const AnalyticsRulesApiFactory = function (configuration, basePath, axios
7798
7785
  return localVarFp.adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(axios, basePath));
7799
7786
  },
7800
7787
  /**
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.
7788
+ * 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
7789
  * @summary Update Analytics Rule
7803
7790
  * @param {string} authorization Bearer JWT token
7804
- * @param {string} xstoreid Store ID (for store-specific routes)
7791
+ * @param {string} xstoreid Store ID (only required for store-specific route)
7805
7792
  * @param {string} ruleId Rule ID
7806
7793
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
7807
7794
  * @param {*} [options] Override http request option.
@@ -7853,7 +7840,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7853
7840
  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
7841
  }
7855
7842
  /**
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.
7843
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7857
7844
  * @summary Create Analytics Rule
7858
7845
  * @param {string} authorization Bearer JWT token
7859
7846
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
@@ -7864,18 +7851,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7864
7851
  adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options) {
7865
7852
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesPost(authorization, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7866
7853
  }
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
7854
  /**
7880
7855
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7881
7856
  * @summary Get Analytics Rule
@@ -7889,7 +7864,7 @@ export class AnalyticsRulesApi extends BaseAPI {
7889
7864
  return AnalyticsRulesApiFp(this.configuration).adminV1AnalyticsRulesRuleIdGet(authorization, ruleId, options).then((request) => request(this.axios, this.basePath));
7890
7865
  }
7891
7866
  /**
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.
7867
+ * 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
7868
  * @summary Update Analytics Rule
7894
7869
  * @param {string} authorization Bearer JWT token
7895
7870
  * @param {string} ruleId Rule ID
@@ -7962,10 +7937,10 @@ export class AnalyticsRulesApi extends BaseAPI {
7962
7937
  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
7938
  }
7964
7939
  /**
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.
7940
+ * Create a new analytics rule for Typesense curation. Rules modify search results (promote, hide, filter, sort) based on given conditions.
7966
7941
  * @summary Create Analytics Rule
7967
7942
  * @param {string} authorization Bearer JWT token
7968
- * @param {string} xstoreid Store ID (for store-specific routes)
7943
+ * @param {string} xstoreid Store ID (only for store-specific routes)
7969
7944
  * @param {DataTypesCreateAnalyticsRuleRequest} dataTypesCreateAnalyticsRuleRequest Analytics rule configuration
7970
7945
  * @param {*} [options] Override http request option.
7971
7946
  * @throws {RequiredError}
@@ -7974,19 +7949,6 @@ export class AnalyticsRulesApi extends BaseAPI {
7974
7949
  adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options) {
7975
7950
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesPost(authorization, xstoreid, dataTypesCreateAnalyticsRuleRequest, options).then((request) => request(this.axios, this.basePath));
7976
7951
  }
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
7952
  /**
7991
7953
  * Retrieve a specific analytics rule by its ID. Returns the complete rule configuration including Typesense override actions.
7992
7954
  * @summary Get Analytics Rule
@@ -8001,10 +7963,10 @@ export class AnalyticsRulesApi extends BaseAPI {
8001
7963
  return AnalyticsRulesApiFp(this.configuration).adminV1StoresXstoreidAnalyticsRulesRuleIdGet(authorization, xstoreid, ruleId, options).then((request) => request(this.axios, this.basePath));
8002
7964
  }
8003
7965
  /**
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.
7966
+ * 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
7967
  * @summary Update Analytics Rule
8006
7968
  * @param {string} authorization Bearer JWT token
8007
- * @param {string} xstoreid Store ID (for store-specific routes)
7969
+ * @param {string} xstoreid Store ID (only required for store-specific route)
8008
7970
  * @param {string} ruleId Rule ID
8009
7971
  * @param {DataTypesUpdateAnalyticsRuleRequest} dataTypesUpdateAnalyticsRuleRequest Updated rule configuration (partial update supported)
8010
7972
  * @param {*} [options] Override http request option.
@@ -8962,7 +8924,7 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
8962
8924
  };
8963
8925
  }),
8964
8926
  /**
8965
- * Updates an existing billing alert configuration
8927
+ * Updates an existing billing alert configuration AND records activity logs
8966
8928
  * @summary Update billing alert
8967
8929
  * @param {number} id Alert ID
8968
8930
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10232,7 +10194,7 @@ export const BillingDashboardApiFp = function (configuration) {
10232
10194
  });
10233
10195
  },
10234
10196
  /**
10235
- * Updates an existing billing alert configuration
10197
+ * Updates an existing billing alert configuration AND records activity logs
10236
10198
  * @summary Update billing alert
10237
10199
  * @param {number} id Alert ID
10238
10200
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -10819,7 +10781,7 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
10819
10781
  return localVarFp.adminBillingAlertsIdDelete(id, options).then((request) => request(axios, basePath));
10820
10782
  },
10821
10783
  /**
10822
- * Updates an existing billing alert configuration
10784
+ * Updates an existing billing alert configuration AND records activity logs
10823
10785
  * @summary Update billing alert
10824
10786
  * @param {number} id Alert ID
10825
10787
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -11228,7 +11190,7 @@ export class BillingDashboardApi extends BaseAPI {
11228
11190
  return BillingDashboardApiFp(this.configuration).adminBillingAlertsIdDelete(id, options).then((request) => request(this.axios, this.basePath));
11229
11191
  }
11230
11192
  /**
11231
- * Updates an existing billing alert configuration
11193
+ * Updates an existing billing alert configuration AND records activity logs
11232
11194
  * @summary Update billing alert
11233
11195
  * @param {number} id Alert ID
11234
11196
  * @param {DataTypesBillingAlertRequest} dataTypesBillingAlertRequest Updated alert configuration
@@ -13908,7 +13870,7 @@ export const CustomStopwordsApiAxiosParamCreator = function (configuration) {
13908
13870
  };
13909
13871
  }),
13910
13872
  /**
13911
- * Updates a custom word list
13873
+ *
13912
13874
  * @summary Update custom word list
13913
13875
  * @param {string} xStoreID X-Store ID
13914
13876
  * @param {number} customWordListID Custom Word List ID
@@ -14154,7 +14116,7 @@ export const CustomStopwordsApiFp = function (configuration) {
14154
14116
  });
14155
14117
  },
14156
14118
  /**
14157
- * Updates a custom word list
14119
+ *
14158
14120
  * @summary Update custom word list
14159
14121
  * @param {string} xStoreID X-Store ID
14160
14122
  * @param {number} customWordListID Custom Word List ID
@@ -14276,7 +14238,7 @@ export const CustomStopwordsApiFactory = function (configuration, basePath, axio
14276
14238
  return localVarFp.adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(axios, basePath));
14277
14239
  },
14278
14240
  /**
14279
- * Updates a custom word list
14241
+ *
14280
14242
  * @summary Update custom word list
14281
14243
  * @param {string} xStoreID X-Store ID
14282
14244
  * @param {number} customWordListID Custom Word List ID
@@ -14370,7 +14332,7 @@ export class CustomStopwordsApi extends BaseAPI {
14370
14332
  return CustomStopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsCustomWordlistsCustomWordListIDGet(xStoreID, customWordListID, options).then((request) => request(this.axios, this.basePath));
14371
14333
  }
14372
14334
  /**
14373
- * Updates a custom word list
14335
+ *
14374
14336
  * @summary Update custom word list
14375
14337
  * @param {string} xStoreID X-Store ID
14376
14338
  * @param {number} customWordListID Custom Word List ID
@@ -14614,10 +14576,10 @@ export class DefaultMenuManagementApi extends BaseAPI {
14614
14576
  export const DocumentsApiAxiosParamCreator = function (configuration) {
14615
14577
  return {
14616
14578
  /**
14617
- * Uploads a document to the specified store
14579
+ * Uploads one or more documents to the specified store and logs activity
14618
14580
  * @summary Upload a document
14619
14581
  * @param {string} xStoreID X-Store ID
14620
- * @param {File} file Document file
14582
+ * @param {File} file Document files (supports multiple)
14621
14583
  * @param {*} [options] Override http request option.
14622
14584
  * @throws {RequiredError}
14623
14585
  */
@@ -14663,10 +14625,10 @@ export const DocumentsApiFp = function (configuration) {
14663
14625
  const localVarAxiosParamCreator = DocumentsApiAxiosParamCreator(configuration);
14664
14626
  return {
14665
14627
  /**
14666
- * Uploads a document to the specified store
14628
+ * Uploads one or more documents to the specified store and logs activity
14667
14629
  * @summary Upload a document
14668
14630
  * @param {string} xStoreID X-Store ID
14669
- * @param {File} file Document file
14631
+ * @param {File} file Document files (supports multiple)
14670
14632
  * @param {*} [options] Override http request option.
14671
14633
  * @throws {RequiredError}
14672
14634
  */
@@ -14689,10 +14651,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14689
14651
  const localVarFp = DocumentsApiFp(configuration);
14690
14652
  return {
14691
14653
  /**
14692
- * Uploads a document to the specified store
14654
+ * Uploads one or more documents to the specified store and logs activity
14693
14655
  * @summary Upload a document
14694
14656
  * @param {string} xStoreID X-Store ID
14695
- * @param {File} file Document file
14657
+ * @param {File} file Document files (supports multiple)
14696
14658
  * @param {*} [options] Override http request option.
14697
14659
  * @throws {RequiredError}
14698
14660
  */
@@ -14709,10 +14671,10 @@ export const DocumentsApiFactory = function (configuration, basePath, axios) {
14709
14671
  */
14710
14672
  export class DocumentsApi extends BaseAPI {
14711
14673
  /**
14712
- * Uploads a document to the specified store
14674
+ * Uploads one or more documents to the specified store and logs activity
14713
14675
  * @summary Upload a document
14714
14676
  * @param {string} xStoreID X-Store ID
14715
- * @param {File} file Document file
14677
+ * @param {File} file Document files (supports multiple)
14716
14678
  * @param {*} [options] Override http request option.
14717
14679
  * @throws {RequiredError}
14718
14680
  * @memberof DocumentsApi
@@ -21591,8 +21553,8 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21591
21553
  };
21592
21554
  }),
21593
21555
  /**
21594
- * Updates Orgnization information by ID.
21595
- * @summary Update an existing Orgnization
21556
+ * Updates Organization information by ID and logs the update activity.
21557
+ * @summary Update an existing Organization
21596
21558
  * @param {number} id Org Id
21597
21559
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21598
21560
  * @param {*} [options] Override http request option.
@@ -21658,9 +21620,9 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21658
21620
  };
21659
21621
  }),
21660
21622
  /**
21661
- * Adds a new Orgnization
21662
- * @summary Creates a new Orgnization
21663
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21623
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21624
+ * @summary Creates a new Organization
21625
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21664
21626
  * @param {*} [options] Override http request option.
21665
21627
  * @throws {RequiredError}
21666
21628
  */
@@ -21690,10 +21652,10 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
21690
21652
  };
21691
21653
  }),
21692
21654
  /**
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
21655
+ * Updates the deletion status of an Organization by ID.
21656
+ * @summary Delete an Organization (soft delete / status update)
21657
+ * @param {number} id Organization ID
21658
+ * @param {boolean} status Delete status: true = delete, false = restore
21697
21659
  * @param {*} [options] Override http request option.
21698
21660
  * @throws {RequiredError}
21699
21661
  */
@@ -21749,8 +21711,8 @@ export const OrganizationsApiFp = function (configuration) {
21749
21711
  });
21750
21712
  },
21751
21713
  /**
21752
- * Updates Orgnization information by ID.
21753
- * @summary Update an existing Orgnization
21714
+ * Updates Organization information by ID and logs the update activity.
21715
+ * @summary Update an existing Organization
21754
21716
  * @param {number} id Org Id
21755
21717
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21756
21718
  * @param {*} [options] Override http request option.
@@ -21782,9 +21744,9 @@ export const OrganizationsApiFp = function (configuration) {
21782
21744
  });
21783
21745
  },
21784
21746
  /**
21785
- * Adds a new Orgnization
21786
- * @summary Creates a new Orgnization
21787
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21747
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21748
+ * @summary Creates a new Organization
21749
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21788
21750
  * @param {*} [options] Override http request option.
21789
21751
  * @throws {RequiredError}
21790
21752
  */
@@ -21798,10 +21760,10 @@ export const OrganizationsApiFp = function (configuration) {
21798
21760
  });
21799
21761
  },
21800
21762
  /**
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
21763
+ * Updates the deletion status of an Organization by ID.
21764
+ * @summary Delete an Organization (soft delete / status update)
21765
+ * @param {number} id Organization ID
21766
+ * @param {boolean} status Delete status: true = delete, false = restore
21805
21767
  * @param {*} [options] Override http request option.
21806
21768
  * @throws {RequiredError}
21807
21769
  */
@@ -21833,8 +21795,8 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21833
21795
  return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
21834
21796
  },
21835
21797
  /**
21836
- * Updates Orgnization information by ID.
21837
- * @summary Update an existing Orgnization
21798
+ * Updates Organization information by ID and logs the update activity.
21799
+ * @summary Update an existing Organization
21838
21800
  * @param {number} id Org Id
21839
21801
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21840
21802
  * @param {*} [options] Override http request option.
@@ -21854,9 +21816,9 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21854
21816
  return localVarFp.adminOrganizationsOrgIdGet(orgId, options).then((request) => request(axios, basePath));
21855
21817
  },
21856
21818
  /**
21857
- * Adds a new Orgnization
21858
- * @summary Creates a new Orgnization
21859
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21819
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21820
+ * @summary Creates a new Organization
21821
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21860
21822
  * @param {*} [options] Override http request option.
21861
21823
  * @throws {RequiredError}
21862
21824
  */
@@ -21864,10 +21826,10 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
21864
21826
  return localVarFp.adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(axios, basePath));
21865
21827
  },
21866
21828
  /**
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
21829
+ * Updates the deletion status of an Organization by ID.
21830
+ * @summary Delete an Organization (soft delete / status update)
21831
+ * @param {number} id Organization ID
21832
+ * @param {boolean} status Delete status: true = delete, false = restore
21871
21833
  * @param {*} [options] Override http request option.
21872
21834
  * @throws {RequiredError}
21873
21835
  */
@@ -21894,8 +21856,8 @@ export class OrganizationsApi extends BaseAPI {
21894
21856
  return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
21895
21857
  }
21896
21858
  /**
21897
- * Updates Orgnization information by ID.
21898
- * @summary Update an existing Orgnization
21859
+ * Updates Organization information by ID and logs the update activity.
21860
+ * @summary Update an existing Organization
21899
21861
  * @param {number} id Org Id
21900
21862
  * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data to update
21901
21863
  * @param {*} [options] Override http request option.
@@ -21917,9 +21879,9 @@ export class OrganizationsApi extends BaseAPI {
21917
21879
  return OrganizationsApiFp(this.configuration).adminOrganizationsOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
21918
21880
  }
21919
21881
  /**
21920
- * Adds a new Orgnization
21921
- * @summary Creates a new Orgnization
21922
- * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest organzation data
21882
+ * Adds a new Organization. **Activity Logs Added:** Logs organization creation + default store creation.
21883
+ * @summary Creates a new Organization
21884
+ * @param {DataTypesCreateOrganizationRequest} dataTypesCreateOrganizationRequest Organization data
21923
21885
  * @param {*} [options] Override http request option.
21924
21886
  * @throws {RequiredError}
21925
21887
  * @memberof OrganizationsApi
@@ -21928,10 +21890,10 @@ export class OrganizationsApi extends BaseAPI {
21928
21890
  return OrganizationsApiFp(this.configuration).adminOrganizationsPost(dataTypesCreateOrganizationRequest, options).then((request) => request(this.axios, this.basePath));
21929
21891
  }
21930
21892
  /**
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
21893
+ * Updates the deletion status of an Organization by ID.
21894
+ * @summary Delete an Organization (soft delete / status update)
21895
+ * @param {number} id Organization ID
21896
+ * @param {boolean} status Delete status: true = delete, false = restore
21935
21897
  * @param {*} [options] Override http request option.
21936
21898
  * @throws {RequiredError}
21937
21899
  * @memberof OrganizationsApi
@@ -24172,7 +24134,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24172
24134
  };
24173
24135
  }),
24174
24136
  /**
24175
- * Bulk upload plural/declension groups from JSON array
24137
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24176
24138
  * @summary Bulk upload plural/declension groups
24177
24139
  * @param {string} xStoreID X-Store ID
24178
24140
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24298,7 +24260,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24298
24260
  };
24299
24261
  }),
24300
24262
  /**
24301
- * Deletes a plural/declension group (soft delete)
24263
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24302
24264
  * @summary Delete plural/declension group
24303
24265
  * @param {string} xStoreID X-Store ID
24304
24266
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24444,7 +24406,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24444
24406
  };
24445
24407
  }),
24446
24408
  /**
24447
- * Upload plural/declension groups from CSV file
24409
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24448
24410
  * @summary Upload plural/declension groups from CSV file
24449
24411
  * @param {string} xStoreID X-Store ID
24450
24412
  * @param {File} file CSV file to upload
@@ -24484,7 +24446,7 @@ export const PluralsDeclensionsApiAxiosParamCreator = function (configuration) {
24484
24446
  };
24485
24447
  }),
24486
24448
  /**
24487
- * Upload plural/declension groups from JSON file
24449
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24488
24450
  * @summary Upload plural/declension groups from JSON file
24489
24451
  * @param {string} xStoreID X-Store ID
24490
24452
  * @param {File} file JSON file to upload
@@ -24584,7 +24546,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24584
24546
  });
24585
24547
  },
24586
24548
  /**
24587
- * Bulk upload plural/declension groups from JSON array
24549
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24588
24550
  * @summary Bulk upload plural/declension groups
24589
24551
  * @param {string} xStoreID X-Store ID
24590
24552
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24640,7 +24602,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24640
24602
  });
24641
24603
  },
24642
24604
  /**
24643
- * Deletes a plural/declension group (soft delete)
24605
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24644
24606
  * @summary Delete plural/declension group
24645
24607
  * @param {string} xStoreID X-Store ID
24646
24608
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24709,7 +24671,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24709
24671
  });
24710
24672
  },
24711
24673
  /**
24712
- * Upload plural/declension groups from CSV file
24674
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24713
24675
  * @summary Upload plural/declension groups from CSV file
24714
24676
  * @param {string} xStoreID X-Store ID
24715
24677
  * @param {File} file CSV file to upload
@@ -24726,7 +24688,7 @@ export const PluralsDeclensionsApiFp = function (configuration) {
24726
24688
  });
24727
24689
  },
24728
24690
  /**
24729
- * Upload plural/declension groups from JSON file
24691
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24730
24692
  * @summary Upload plural/declension groups from JSON file
24731
24693
  * @param {string} xStoreID X-Store ID
24732
24694
  * @param {File} file JSON file to upload
@@ -24785,7 +24747,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24785
24747
  return localVarFp.adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(axios, basePath));
24786
24748
  },
24787
24749
  /**
24788
- * Bulk upload plural/declension groups from JSON array
24750
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24789
24751
  * @summary Bulk upload plural/declension groups
24790
24752
  * @param {string} xStoreID X-Store ID
24791
24753
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24823,7 +24785,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24823
24785
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(axios, basePath));
24824
24786
  },
24825
24787
  /**
24826
- * Deletes a plural/declension group (soft delete)
24788
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24827
24789
  * @summary Delete plural/declension group
24828
24790
  * @param {string} xStoreID X-Store ID
24829
24791
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -24868,7 +24830,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24868
24830
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(axios, basePath));
24869
24831
  },
24870
24832
  /**
24871
- * Upload plural/declension groups from CSV file
24833
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
24872
24834
  * @summary Upload plural/declension groups from CSV file
24873
24835
  * @param {string} xStoreID X-Store ID
24874
24836
  * @param {File} file CSV file to upload
@@ -24879,7 +24841,7 @@ export const PluralsDeclensionsApiFactory = function (configuration, basePath, a
24879
24841
  return localVarFp.adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(axios, basePath));
24880
24842
  },
24881
24843
  /**
24882
- * Upload plural/declension groups from JSON file
24844
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
24883
24845
  * @summary Upload plural/declension groups from JSON file
24884
24846
  * @param {string} xStoreID X-Store ID
24885
24847
  * @param {File} file JSON file to upload
@@ -24935,7 +24897,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24935
24897
  return PluralsDeclensionsApiFp(this.configuration).adminDefaultDeclensionsSearchGet(lang, category, search, page, limit, options).then((request) => request(this.axios, this.basePath));
24936
24898
  }
24937
24899
  /**
24938
- * Bulk upload plural/declension groups from JSON array
24900
+ * Bulk upload plural/declension groups from JSON array **Activity Logs Added:** Logs a bulk create action with count metadata.
24939
24901
  * @summary Bulk upload plural/declension groups
24940
24902
  * @param {string} xStoreID X-Store ID
24941
24903
  * @param {DataTypesBulkUploadPluralDeclensionRequest} dataTypesBulkUploadPluralDeclensionRequest Bulk upload request
@@ -24976,7 +24938,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
24976
24938
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsGet(xStoreID, language, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
24977
24939
  }
24978
24940
  /**
24979
- * Deletes a plural/declension group (soft delete)
24941
+ * Deletes a plural/declension group (soft delete) **Activity Logs Added:** Logs delete action with before/after state and changed fields.
24980
24942
  * @summary Delete plural/declension group
24981
24943
  * @param {string} xStoreID X-Store ID
24982
24944
  * @param {number} pluralDeclensionID Plural Declension ID
@@ -25025,7 +24987,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
25025
24987
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsPost(xStoreID, dataTypesCreatePluralDeclensionRequest, options).then((request) => request(this.axios, this.basePath));
25026
24988
  }
25027
24989
  /**
25028
- * Upload plural/declension groups from CSV file
24990
+ * Upload plural/declension groups from CSV file **Activity Logs Added:** Logs upload and creation of plural declensions from CSV.
25029
24991
  * @summary Upload plural/declension groups from CSV file
25030
24992
  * @param {string} xStoreID X-Store ID
25031
24993
  * @param {File} file CSV file to upload
@@ -25037,7 +24999,7 @@ export class PluralsDeclensionsApi extends BaseAPI {
25037
24999
  return PluralsDeclensionsApiFp(this.configuration).adminStoresXStoreIDPluralsDeclensionsUploadCsvPost(xStoreID, file, options).then((request) => request(this.axios, this.basePath));
25038
25000
  }
25039
25001
  /**
25040
- * Upload plural/declension groups from JSON file
25002
+ * Upload plural/declension groups from JSON file **Activity Logs Added:** Logs JSON upload of plural/declension groups.
25041
25003
  * @summary Upload plural/declension groups from JSON file
25042
25004
  * @param {string} xStoreID X-Store ID
25043
25005
  * @param {File} file JSON file to upload
@@ -25378,7 +25340,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25378
25340
  };
25379
25341
  }),
25380
25342
  /**
25381
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
25343
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
25382
25344
  * @summary Apply Suggestion Filters
25383
25345
  * @param {string} xStoreID Store ID
25384
25346
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -25449,7 +25411,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25449
25411
  };
25450
25412
  }),
25451
25413
  /**
25452
- * Update an existing banned expression
25414
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
25453
25415
  * @summary Update Banned Expression
25454
25416
  * @param {string} xStoreID Store ID
25455
25417
  * @param {string} expressionID Banned Expression ID
@@ -25520,10 +25482,10 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25520
25482
  };
25521
25483
  }),
25522
25484
  /**
25523
- * Create a new banned expression with specified matching type
25485
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
25524
25486
  * @summary Create Banned Expression
25525
25487
  * @param {string} xStoreID Store ID
25526
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
25488
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
25527
25489
  * @param {*} [options] Override http request option.
25528
25490
  * @throws {RequiredError}
25529
25491
  */
@@ -25823,7 +25785,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25823
25785
  };
25824
25786
  }),
25825
25787
  /**
25826
- * Import query suggestions from JSON data
25788
+ * Import query suggestions from JSON data (Activity Logged)
25827
25789
  * @summary Import Query Suggestions
25828
25790
  * @param {string} xStoreID Store ID
25829
25791
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -25859,7 +25821,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25859
25821
  };
25860
25822
  }),
25861
25823
  /**
25862
- * Delete manually added query suggestions for a store
25824
+ * Deletes manually added query suggestions for a store and records Activity Logs.
25863
25825
  * @summary Delete Manual Query Suggestions
25864
25826
  * @param {string} xStoreID Store ID
25865
25827
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -25895,7 +25857,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25895
25857
  };
25896
25858
  }),
25897
25859
  /**
25898
- * Add a manually created query suggestion for a store
25860
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
25899
25861
  * @summary Add Manual Query Suggestion
25900
25862
  * @param {string} xStoreID Store ID
25901
25863
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -25931,7 +25893,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25931
25893
  };
25932
25894
  }),
25933
25895
  /**
25934
- * Migrate existing search analytics data to the new query suggestions management system
25896
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
25935
25897
  * @summary Migrate Existing Analytics Data
25936
25898
  * @param {string} xStoreID Store ID
25937
25899
  * @param {number} [daysBack] Number of days back to migrate data
@@ -25970,7 +25932,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
25970
25932
  };
25971
25933
  }),
25972
25934
  /**
25973
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
25935
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
25974
25936
  * @summary Promote ALL Cached Suggestions to Management Table
25975
25937
  * @param {string} xStoreID Store ID
25976
25938
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26005,7 +25967,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26005
25967
  };
26006
25968
  }),
26007
25969
  /**
26008
- * Move selected auto-generated suggestions from cache to the management table
25970
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
26009
25971
  * @summary Promote Cached Suggestions to Management Table
26010
25972
  * @param {string} xStoreID Store ID
26011
25973
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26041,7 +26003,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26041
26003
  };
26042
26004
  }),
26043
26005
  /**
26044
- * Refresh auto-generated suggestions from search analytics data
26006
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26045
26007
  * @summary Refresh Auto-Generated Suggestions
26046
26008
  * @param {string} xStoreID Store ID
26047
26009
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26142,7 +26104,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26142
26104
  };
26143
26105
  }),
26144
26106
  /**
26145
- * Delete a single query suggestion by its ID
26107
+ * Delete a single query suggestion by its ID and record an Activity Log.
26146
26108
  * @summary Delete Query Suggestion by ID
26147
26109
  * @param {string} xStoreID Store ID
26148
26110
  * @param {string} suggestionID Suggestion ID
@@ -26212,11 +26174,11 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26212
26174
  };
26213
26175
  }),
26214
26176
  /**
26215
- * Update a single query suggestion by its ID
26177
+ *
26216
26178
  * @summary Update Query Suggestion by ID
26217
26179
  * @param {string} xStoreID Store ID
26218
26180
  * @param {string} suggestionID Suggestion ID
26219
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26181
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26220
26182
  * @param {*} [options] Override http request option.
26221
26183
  * @throws {RequiredError}
26222
26184
  */
@@ -26293,7 +26255,7 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
26293
26255
  };
26294
26256
  }),
26295
26257
  /**
26296
- * Sync enabled query suggestions to Typesense collection for public API usage
26258
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
26297
26259
  * @summary Sync Suggestions to Typesense
26298
26260
  * @param {string} xStoreID Store ID
26299
26261
  * @param {*} [options] Override http request option.
@@ -26460,7 +26422,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26460
26422
  });
26461
26423
  },
26462
26424
  /**
26463
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
26425
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
26464
26426
  * @summary Apply Suggestion Filters
26465
26427
  * @param {string} xStoreID Store ID
26466
26428
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -26494,7 +26456,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26494
26456
  });
26495
26457
  },
26496
26458
  /**
26497
- * Update an existing banned expression
26459
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
26498
26460
  * @summary Update Banned Expression
26499
26461
  * @param {string} xStoreID Store ID
26500
26462
  * @param {string} expressionID Banned Expression ID
@@ -26528,10 +26490,10 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26528
26490
  });
26529
26491
  },
26530
26492
  /**
26531
- * Create a new banned expression with specified matching type
26493
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
26532
26494
  * @summary Create Banned Expression
26533
26495
  * @param {string} xStoreID Store ID
26534
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26496
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
26535
26497
  * @param {*} [options] Override http request option.
26536
26498
  * @throws {RequiredError}
26537
26499
  */
@@ -26669,7 +26631,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26669
26631
  });
26670
26632
  },
26671
26633
  /**
26672
- * Import query suggestions from JSON data
26634
+ * Import query suggestions from JSON data (Activity Logged)
26673
26635
  * @summary Import Query Suggestions
26674
26636
  * @param {string} xStoreID Store ID
26675
26637
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -26686,7 +26648,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26686
26648
  });
26687
26649
  },
26688
26650
  /**
26689
- * Delete manually added query suggestions for a store
26651
+ * Deletes manually added query suggestions for a store and records Activity Logs.
26690
26652
  * @summary Delete Manual Query Suggestions
26691
26653
  * @param {string} xStoreID Store ID
26692
26654
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -26703,7 +26665,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26703
26665
  });
26704
26666
  },
26705
26667
  /**
26706
- * Add a manually created query suggestion for a store
26668
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
26707
26669
  * @summary Add Manual Query Suggestion
26708
26670
  * @param {string} xStoreID Store ID
26709
26671
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -26720,7 +26682,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26720
26682
  });
26721
26683
  },
26722
26684
  /**
26723
- * Migrate existing search analytics data to the new query suggestions management system
26685
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
26724
26686
  * @summary Migrate Existing Analytics Data
26725
26687
  * @param {string} xStoreID Store ID
26726
26688
  * @param {number} [daysBack] Number of days back to migrate data
@@ -26738,7 +26700,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26738
26700
  });
26739
26701
  },
26740
26702
  /**
26741
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
26703
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
26742
26704
  * @summary Promote ALL Cached Suggestions to Management Table
26743
26705
  * @param {string} xStoreID Store ID
26744
26706
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -26755,7 +26717,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26755
26717
  });
26756
26718
  },
26757
26719
  /**
26758
- * Move selected auto-generated suggestions from cache to the management table
26720
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
26759
26721
  * @summary Promote Cached Suggestions to Management Table
26760
26722
  * @param {string} xStoreID Store ID
26761
26723
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -26772,7 +26734,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26772
26734
  });
26773
26735
  },
26774
26736
  /**
26775
- * Refresh auto-generated suggestions from search analytics data
26737
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
26776
26738
  * @summary Refresh Auto-Generated Suggestions
26777
26739
  * @param {string} xStoreID Store ID
26778
26740
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -26822,7 +26784,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26822
26784
  });
26823
26785
  },
26824
26786
  /**
26825
- * Delete a single query suggestion by its ID
26787
+ * Delete a single query suggestion by its ID and record an Activity Log.
26826
26788
  * @summary Delete Query Suggestion by ID
26827
26789
  * @param {string} xStoreID Store ID
26828
26790
  * @param {string} suggestionID Suggestion ID
@@ -26856,11 +26818,11 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26856
26818
  });
26857
26819
  },
26858
26820
  /**
26859
- * Update a single query suggestion by its ID
26821
+ *
26860
26822
  * @summary Update Query Suggestion by ID
26861
26823
  * @param {string} xStoreID Store ID
26862
26824
  * @param {string} suggestionID Suggestion ID
26863
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
26825
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
26864
26826
  * @param {*} [options] Override http request option.
26865
26827
  * @throws {RequiredError}
26866
26828
  */
@@ -26892,7 +26854,7 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
26892
26854
  });
26893
26855
  },
26894
26856
  /**
26895
- * Sync enabled query suggestions to Typesense collection for public API usage
26857
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
26896
26858
  * @summary Sync Suggestions to Typesense
26897
26859
  * @param {string} xStoreID Store ID
26898
26860
  * @param {*} [options] Override http request option.
@@ -26980,7 +26942,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
26980
26942
  return localVarFp.adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(axios, basePath));
26981
26943
  },
26982
26944
  /**
26983
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
26945
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
26984
26946
  * @summary Apply Suggestion Filters
26985
26947
  * @param {string} xStoreID Store ID
26986
26948
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -27002,7 +26964,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27002
26964
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(axios, basePath));
27003
26965
  },
27004
26966
  /**
27005
- * Update an existing banned expression
26967
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
27006
26968
  * @summary Update Banned Expression
27007
26969
  * @param {string} xStoreID Store ID
27008
26970
  * @param {string} expressionID Banned Expression ID
@@ -27024,10 +26986,10 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27024
26986
  return localVarFp.adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(axios, basePath));
27025
26987
  },
27026
26988
  /**
27027
- * Create a new banned expression with specified matching type
26989
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
27028
26990
  * @summary Create Banned Expression
27029
26991
  * @param {string} xStoreID Store ID
27030
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
26992
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
27031
26993
  * @param {*} [options] Override http request option.
27032
26994
  * @throws {RequiredError}
27033
26995
  */
@@ -27117,7 +27079,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27117
27079
  return localVarFp.adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(axios, basePath));
27118
27080
  },
27119
27081
  /**
27120
- * Import query suggestions from JSON data
27082
+ * Import query suggestions from JSON data (Activity Logged)
27121
27083
  * @summary Import Query Suggestions
27122
27084
  * @param {string} xStoreID Store ID
27123
27085
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -27128,7 +27090,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27128
27090
  return localVarFp.adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(axios, basePath));
27129
27091
  },
27130
27092
  /**
27131
- * Delete manually added query suggestions for a store
27093
+ * Deletes manually added query suggestions for a store and records Activity Logs.
27132
27094
  * @summary Delete Manual Query Suggestions
27133
27095
  * @param {string} xStoreID Store ID
27134
27096
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -27139,7 +27101,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27139
27101
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(axios, basePath));
27140
27102
  },
27141
27103
  /**
27142
- * Add a manually created query suggestion for a store
27104
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
27143
27105
  * @summary Add Manual Query Suggestion
27144
27106
  * @param {string} xStoreID Store ID
27145
27107
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -27150,7 +27112,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27150
27112
  return localVarFp.adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(axios, basePath));
27151
27113
  },
27152
27114
  /**
27153
- * Migrate existing search analytics data to the new query suggestions management system
27115
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
27154
27116
  * @summary Migrate Existing Analytics Data
27155
27117
  * @param {string} xStoreID Store ID
27156
27118
  * @param {number} [daysBack] Number of days back to migrate data
@@ -27162,7 +27124,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27162
27124
  return localVarFp.adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(axios, basePath));
27163
27125
  },
27164
27126
  /**
27165
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
27127
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
27166
27128
  * @summary Promote ALL Cached Suggestions to Management Table
27167
27129
  * @param {string} xStoreID Store ID
27168
27130
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -27173,7 +27135,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27173
27135
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(axios, basePath));
27174
27136
  },
27175
27137
  /**
27176
- * Move selected auto-generated suggestions from cache to the management table
27138
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
27177
27139
  * @summary Promote Cached Suggestions to Management Table
27178
27140
  * @param {string} xStoreID Store ID
27179
27141
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -27184,7 +27146,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27184
27146
  return localVarFp.adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(axios, basePath));
27185
27147
  },
27186
27148
  /**
27187
- * Refresh auto-generated suggestions from search analytics data
27149
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
27188
27150
  * @summary Refresh Auto-Generated Suggestions
27189
27151
  * @param {string} xStoreID Store ID
27190
27152
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -27216,7 +27178,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27216
27178
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(axios, basePath));
27217
27179
  },
27218
27180
  /**
27219
- * Delete a single query suggestion by its ID
27181
+ * Delete a single query suggestion by its ID and record an Activity Log.
27220
27182
  * @summary Delete Query Suggestion by ID
27221
27183
  * @param {string} xStoreID Store ID
27222
27184
  * @param {string} suggestionID Suggestion ID
@@ -27238,11 +27200,11 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27238
27200
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(axios, basePath));
27239
27201
  },
27240
27202
  /**
27241
- * Update a single query suggestion by its ID
27203
+ *
27242
27204
  * @summary Update Query Suggestion by ID
27243
27205
  * @param {string} xStoreID Store ID
27244
27206
  * @param {string} suggestionID Suggestion ID
27245
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27207
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
27246
27208
  * @param {*} [options] Override http request option.
27247
27209
  * @throws {RequiredError}
27248
27210
  */
@@ -27262,7 +27224,7 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
27262
27224
  return localVarFp.adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(axios, basePath));
27263
27225
  },
27264
27226
  /**
27265
- * Sync enabled query suggestions to Typesense collection for public API usage
27227
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
27266
27228
  * @summary Sync Suggestions to Typesense
27267
27229
  * @param {string} xStoreID Store ID
27268
27230
  * @param {*} [options] Override http request option.
@@ -27327,7 +27289,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27327
27289
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsMigrateAllPost(daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
27328
27290
  }
27329
27291
  /**
27330
- * Apply filters to remove duplicate or unhelpful suggestions based on configuration
27292
+ * Apply filters to remove duplicate or unhelpful suggestions based on configuration (Activity Logged)
27331
27293
  * @summary Apply Suggestion Filters
27332
27294
  * @param {string} xStoreID Store ID
27333
27295
  * @param {Array<QuerySuggestionsServiceQuerySuggestionRecord>} querySuggestionsServiceQuerySuggestionRecord Array of suggestions to filter
@@ -27351,7 +27313,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27351
27313
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsExpressionIDDelete(xStoreID, expressionID, options).then((request) => request(this.axios, this.basePath));
27352
27314
  }
27353
27315
  /**
27354
- * Update an existing banned expression
27316
+ * Update an existing banned expression. ✔ This API automatically generates Activity Log entries.
27355
27317
  * @summary Update Banned Expression
27356
27318
  * @param {string} xStoreID Store ID
27357
27319
  * @param {string} expressionID Banned Expression ID
@@ -27375,10 +27337,10 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27375
27337
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDBannedExpressionsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27376
27338
  }
27377
27339
  /**
27378
- * Create a new banned expression with specified matching type
27340
+ * Create a new banned expression with specified matching type. This action also generates an Activity Log entry (create → analytics → banned_expression).
27379
27341
  * @summary Create Banned Expression
27380
27342
  * @param {string} xStoreID Store ID
27381
- * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create
27343
+ * @param {QuerySuggestionsServiceBannedExpression} querySuggestionsServiceBannedExpression Banned expression to create (expression, match_type)
27382
27344
  * @param {*} [options] Override http request option.
27383
27345
  * @throws {RequiredError}
27384
27346
  * @memberof QuerySuggestionsManagementApi
@@ -27476,7 +27438,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27476
27438
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDGet(xStoreID, source, status, query, category, tag, page, pageSize, options).then((request) => request(this.axios, this.basePath));
27477
27439
  }
27478
27440
  /**
27479
- * Import query suggestions from JSON data
27441
+ * Import query suggestions from JSON data (Activity Logged)
27480
27442
  * @summary Import Query Suggestions
27481
27443
  * @param {string} xStoreID Store ID
27482
27444
  * @param {QuerySuggestionsServiceImportQuerySuggestionsRequest} querySuggestionsServiceImportQuerySuggestionsRequest Import suggestions request
@@ -27488,7 +27450,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27488
27450
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDImportPost(xStoreID, querySuggestionsServiceImportQuerySuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27489
27451
  }
27490
27452
  /**
27491
- * Delete manually added query suggestions for a store
27453
+ * Deletes manually added query suggestions for a store and records Activity Logs.
27492
27454
  * @summary Delete Manual Query Suggestions
27493
27455
  * @param {string} xStoreID Store ID
27494
27456
  * @param {QuerySuggestionsServiceDeleteManualSuggestionsRequest} querySuggestionsServiceDeleteManualSuggestionsRequest Delete request
@@ -27500,7 +27462,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27500
27462
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualDeleteDelete(xStoreID, querySuggestionsServiceDeleteManualSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27501
27463
  }
27502
27464
  /**
27503
- * Add a manually created query suggestion for a store
27465
+ * Add a manually created query suggestion for a store ✔ Automatically generates Activity Log entries (`create` event).
27504
27466
  * @summary Add Manual Query Suggestion
27505
27467
  * @param {string} xStoreID Store ID
27506
27468
  * @param {QuerySuggestionsServiceManualQuerySuggestionRequest} querySuggestionsServiceManualQuerySuggestionRequest Manual suggestion request
@@ -27512,7 +27474,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27512
27474
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDManualPost(xStoreID, querySuggestionsServiceManualQuerySuggestionRequest, options).then((request) => request(this.axios, this.basePath));
27513
27475
  }
27514
27476
  /**
27515
- * Migrate existing search analytics data to the new query suggestions management system
27477
+ * Migrate existing search analytics data to the new query suggestions management system (Activity Logged)
27516
27478
  * @summary Migrate Existing Analytics Data
27517
27479
  * @param {string} xStoreID Store ID
27518
27480
  * @param {number} [daysBack] Number of days back to migrate data
@@ -27525,7 +27487,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27525
27487
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDMigratePost(xStoreID, daysBack, minPopularity, options).then((request) => request(this.axios, this.basePath));
27526
27488
  }
27527
27489
  /**
27528
- * Move ALL auto-generated suggestions from cache to the management table that meet minimum popularity criteria
27490
+ * Promote all auto-generated cached suggestions to the management table (Activity Logged)
27529
27491
  * @summary Promote ALL Cached Suggestions to Management Table
27530
27492
  * @param {string} xStoreID Store ID
27531
27493
  * @param {number} [minPopularity] Minimum popularity threshold (default: 5)
@@ -27537,7 +27499,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27537
27499
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromoteAllPost(xStoreID, minPopularity, options).then((request) => request(this.axios, this.basePath));
27538
27500
  }
27539
27501
  /**
27540
- * Move selected auto-generated suggestions from cache to the management table
27502
+ * Move selected auto-generated suggestions from cache to the management table (Activity Logged)
27541
27503
  * @summary Promote Cached Suggestions to Management Table
27542
27504
  * @param {string} xStoreID Store ID
27543
27505
  * @param {QuerySuggestionsServicePromoteSuggestionsRequest} querySuggestionsServicePromoteSuggestionsRequest Promotion request
@@ -27549,7 +27511,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27549
27511
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDPromotePost(xStoreID, querySuggestionsServicePromoteSuggestionsRequest, options).then((request) => request(this.axios, this.basePath));
27550
27512
  }
27551
27513
  /**
27552
- * Refresh auto-generated suggestions from search analytics data
27514
+ * Refresh auto-generated suggestions from search analytics data (Activity Logged)
27553
27515
  * @summary Refresh Auto-Generated Suggestions
27554
27516
  * @param {string} xStoreID Store ID
27555
27517
  * @param {number} [minPopularity] Minimum popularity threshold
@@ -27584,7 +27546,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27584
27546
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
27585
27547
  }
27586
27548
  /**
27587
- * Delete a single query suggestion by its ID
27549
+ * Delete a single query suggestion by its ID and record an Activity Log.
27588
27550
  * @summary Delete Query Suggestion by ID
27589
27551
  * @param {string} xStoreID Store ID
27590
27552
  * @param {string} suggestionID Suggestion ID
@@ -27608,11 +27570,11 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27608
27570
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDGet(xStoreID, suggestionID, options).then((request) => request(this.axios, this.basePath));
27609
27571
  }
27610
27572
  /**
27611
- * Update a single query suggestion by its ID
27573
+ *
27612
27574
  * @summary Update Query Suggestion by ID
27613
27575
  * @param {string} xStoreID Store ID
27614
27576
  * @param {string} suggestionID Suggestion ID
27615
- * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update request
27577
+ * @param {QuerySuggestionsServiceUpdateSuggestionRequest} querySuggestionsServiceUpdateSuggestionRequest Update Suggestion Payload
27616
27578
  * @param {*} [options] Override http request option.
27617
27579
  * @throws {RequiredError}
27618
27580
  * @memberof QuerySuggestionsManagementApi
@@ -27634,7 +27596,7 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
27634
27596
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDSuggestionIDStatusPut(xStoreID, suggestionID, status, options).then((request) => request(this.axios, this.basePath));
27635
27597
  }
27636
27598
  /**
27637
- * Sync enabled query suggestions to Typesense collection for public API usage
27599
+ * Sync enabled query suggestions to Typesense collection for public API usage (Activity Logged)
27638
27600
  * @summary Sync Suggestions to Typesense
27639
27601
  * @param {string} xStoreID Store ID
27640
27602
  * @param {*} [options] Override http request option.
@@ -31009,7 +30971,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
31009
30971
  };
31010
30972
  }),
31011
30973
  /**
31012
- * Removes store-specific words from a language word list
30974
+ * 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
30975
  * @summary Remove words from language word list
31014
30976
  * @param {string} xStoreID X-Store ID
31015
30977
  * @param {number} wordListID Word List ID
@@ -31049,7 +31011,7 @@ export const StopwordsApiAxiosParamCreator = function (configuration) {
31049
31011
  };
31050
31012
  }),
31051
31013
  /**
31052
- * Adds words directly to a language word list for a specific store
31014
+ * 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
31015
  * @summary Add words to language word list
31054
31016
  * @param {string} xStoreID X-Store ID
31055
31017
  * @param {number} wordListID Word List ID
@@ -31174,7 +31136,7 @@ export const StopwordsApiFp = function (configuration) {
31174
31136
  });
31175
31137
  },
31176
31138
  /**
31177
- * Removes store-specific words from a language word list
31139
+ * 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
31140
  * @summary Remove words from language word list
31179
31141
  * @param {string} xStoreID X-Store ID
31180
31142
  * @param {number} wordListID Word List ID
@@ -31192,7 +31154,7 @@ export const StopwordsApiFp = function (configuration) {
31192
31154
  });
31193
31155
  },
31194
31156
  /**
31195
- * Adds words directly to a language word list for a specific store
31157
+ * 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
31158
  * @summary Add words to language word list
31197
31159
  * @param {string} xStoreID X-Store ID
31198
31160
  * @param {number} wordListID Word List ID
@@ -31271,7 +31233,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
31271
31233
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(axios, basePath));
31272
31234
  },
31273
31235
  /**
31274
- * Removes store-specific words from a language word list
31236
+ * 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
31237
  * @summary Remove words from language word list
31276
31238
  * @param {string} xStoreID X-Store ID
31277
31239
  * @param {number} wordListID Word List ID
@@ -31283,7 +31245,7 @@ export const StopwordsApiFactory = function (configuration, basePath, axios) {
31283
31245
  return localVarFp.adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(axios, basePath));
31284
31246
  },
31285
31247
  /**
31286
- * Adds words directly to a language word list for a specific store
31248
+ * 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
31249
  * @summary Add words to language word list
31288
31250
  * @param {string} xStoreID X-Store ID
31289
31251
  * @param {number} wordListID Word List ID
@@ -31360,7 +31322,7 @@ export class StopwordsApi extends BaseAPI {
31360
31322
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWithStoreWordsGet(xStoreID, lang, type, q, page, limit, options).then((request) => request(this.axios, this.basePath));
31361
31323
  }
31362
31324
  /**
31363
- * Removes store-specific words from a language word list
31325
+ * 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
31326
  * @summary Remove words from language word list
31365
31327
  * @param {string} xStoreID X-Store ID
31366
31328
  * @param {number} wordListID Word List ID
@@ -31373,7 +31335,7 @@ export class StopwordsApi extends BaseAPI {
31373
31335
  return StopwordsApiFp(this.configuration).adminStoresXStoreIDStopwordsWordlistsWordListIDWordsDelete(xStoreID, wordListID, dataTypesRemoveWordsFromLanguageListRequest, options).then((request) => request(this.axios, this.basePath));
31374
31336
  }
31375
31337
  /**
31376
- * Adds words directly to a language word list for a specific store
31338
+ * 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
31339
  * @summary Add words to language word list
31378
31340
  * @param {string} xStoreID X-Store ID
31379
31341
  * @param {number} wordListID Word List ID
@@ -31983,7 +31945,7 @@ export class StoreCreationApi extends BaseAPI {
31983
31945
  export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
31984
31946
  return {
31985
31947
  /**
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.
31948
+ *
31987
31949
  * @summary Bulk document operations
31988
31950
  * @param {string} xStoreID X-Store ID
31989
31951
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32089,7 +32051,7 @@ export const StoreDocumentsApiAxiosParamCreator = function (configuration) {
32089
32051
  };
32090
32052
  }),
32091
32053
  /**
32092
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32054
+ *
32093
32055
  * @summary Update document
32094
32056
  * @param {string} xStoreID X-Store ID
32095
32057
  * @param {string} documentID Document ID
@@ -32225,7 +32187,7 @@ export const StoreDocumentsApiFp = function (configuration) {
32225
32187
  const localVarAxiosParamCreator = StoreDocumentsApiAxiosParamCreator(configuration);
32226
32188
  return {
32227
32189
  /**
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.
32190
+ *
32229
32191
  * @summary Bulk document operations
32230
32192
  * @param {string} xStoreID X-Store ID
32231
32193
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32276,7 +32238,7 @@ export const StoreDocumentsApiFp = function (configuration) {
32276
32238
  });
32277
32239
  },
32278
32240
  /**
32279
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32241
+ *
32280
32242
  * @summary Update document
32281
32243
  * @param {string} xStoreID X-Store ID
32282
32244
  * @param {string} documentID Document ID
@@ -32341,7 +32303,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32341
32303
  const localVarFp = StoreDocumentsApiFp(configuration);
32342
32304
  return {
32343
32305
  /**
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.
32306
+ *
32345
32307
  * @summary Bulk document operations
32346
32308
  * @param {string} xStoreID X-Store ID
32347
32309
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32374,7 +32336,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32374
32336
  return localVarFp.adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(axios, basePath));
32375
32337
  },
32376
32338
  /**
32377
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32339
+ *
32378
32340
  * @summary Update document
32379
32341
  * @param {string} xStoreID X-Store ID
32380
32342
  * @param {string} documentID Document ID
@@ -32421,7 +32383,7 @@ export const StoreDocumentsApiFactory = function (configuration, basePath, axios
32421
32383
  */
32422
32384
  export class StoreDocumentsApi extends BaseAPI {
32423
32385
  /**
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.
32386
+ *
32425
32387
  * @summary Bulk document operations
32426
32388
  * @param {string} xStoreID X-Store ID
32427
32389
  * @param {DataTypesBulkDocumentRequest} dataTypesBulkDocumentRequest Bulk operation data
@@ -32457,7 +32419,7 @@ export class StoreDocumentsApi extends BaseAPI {
32457
32419
  return StoreDocumentsApiFp(this.configuration).adminStoresXStoreIDDocumentsDocumentIDGet(xStoreID, documentID, options).then((request) => request(this.axios, this.basePath));
32458
32420
  }
32459
32421
  /**
32460
- * Updates an existing document by ID. The document ID will not change even if document properties change.
32422
+ *
32461
32423
  * @summary Update document
32462
32424
  * @param {string} xStoreID X-Store ID
32463
32425
  * @param {string} documentID Document ID
@@ -32631,10 +32593,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32631
32593
  };
32632
32594
  }),
32633
32595
  /**
32634
- * Updates StoreStatus information by ID.
32635
- * @summary Update an existing StoreStatus
32596
+ * Updates the active/inactive status of a store by its ID.
32597
+ * @summary Update Store Status
32636
32598
  * @param {number} id Store ID
32637
- * @param {boolean} status status
32599
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
32638
32600
  * @param {*} [options] Override http request option.
32639
32601
  * @throws {RequiredError}
32640
32602
  */
@@ -32871,10 +32833,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
32871
32833
  };
32872
32834
  }),
32873
32835
  /**
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.
32836
+ *
32875
32837
  * @summary Update Store Config (Partial)
32876
32838
  * @param {string} xStoreID X-Store ID
32877
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
32839
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
32878
32840
  * @param {*} [options] Override http request option.
32879
32841
  * @throws {RequiredError}
32880
32842
  */
@@ -33114,24 +33076,24 @@ export const StoresApiAxiosParamCreator = function (configuration) {
33114
33076
  };
33115
33077
  }),
33116
33078
  /**
33117
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33079
+ *
33118
33080
  * @summary Regenerate X-Store Secret
33119
- * @param {string} xStoreID Current X-Store ID
33081
+ * @param {string} xstoreid Current X-Store ID
33120
33082
  * @param {*} [options] Override http request option.
33121
33083
  * @throws {RequiredError}
33122
33084
  */
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)));
33085
+ xstoreidRegenerateUidPut: (xstoreid_1, ...args_1) => __awaiter(this, [xstoreid_1, ...args_1], void 0, function* (xstoreid, options = {}) {
33086
+ // verify required parameter 'xstoreid' is not null or undefined
33087
+ assertParamExists('xstoreidRegenerateUidPut', 'xstoreid', xstoreid);
33088
+ const localVarPath = `/{xstoreid}/regenerate-uid`
33089
+ .replace(`{${"xstoreid"}}`, encodeURIComponent(String(xstoreid)));
33128
33090
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
33129
33091
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
33130
33092
  let baseOptions;
33131
33093
  if (configuration) {
33132
33094
  baseOptions = configuration.baseOptions;
33133
33095
  }
33134
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
33096
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
33135
33097
  const localVarHeaderParameter = {};
33136
33098
  const localVarQueryParameter = {};
33137
33099
  // authentication BearerAuth required
@@ -33218,10 +33180,10 @@ export const StoresApiFp = function (configuration) {
33218
33180
  });
33219
33181
  },
33220
33182
  /**
33221
- * Updates StoreStatus information by ID.
33222
- * @summary Update an existing StoreStatus
33183
+ * Updates the active/inactive status of a store by its ID.
33184
+ * @summary Update Store Status
33223
33185
  * @param {number} id Store ID
33224
- * @param {boolean} status status
33186
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33225
33187
  * @param {*} [options] Override http request option.
33226
33188
  * @throws {RequiredError}
33227
33189
  */
@@ -33327,10 +33289,10 @@ export const StoresApiFp = function (configuration) {
33327
33289
  });
33328
33290
  },
33329
33291
  /**
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.
33292
+ *
33331
33293
  * @summary Update Store Config (Partial)
33332
33294
  * @param {string} xStoreID X-Store ID
33333
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33295
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33334
33296
  * @param {*} [options] Override http request option.
33335
33297
  * @throws {RequiredError}
33336
33298
  */
@@ -33445,18 +33407,18 @@ export const StoresApiFp = function (configuration) {
33445
33407
  });
33446
33408
  },
33447
33409
  /**
33448
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33410
+ *
33449
33411
  * @summary Regenerate X-Store Secret
33450
- * @param {string} xStoreID Current X-Store ID
33412
+ * @param {string} xstoreid Current X-Store ID
33451
33413
  * @param {*} [options] Override http request option.
33452
33414
  * @throws {RequiredError}
33453
33415
  */
33454
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33416
+ xstoreidRegenerateUidPut(xstoreid, options) {
33455
33417
  return __awaiter(this, void 0, void 0, function* () {
33456
33418
  var _a, _b, _c;
33457
- const localVarAxiosArgs = yield localVarAxiosParamCreator.xStoreIDRegenerateSecretPost(xStoreID, options);
33419
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.xstoreidRegenerateUidPut(xstoreid, options);
33458
33420
  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;
33421
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StoresApi.xstoreidRegenerateUidPut']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
33460
33422
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
33461
33423
  });
33462
33424
  },
@@ -33510,10 +33472,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33510
33472
  return localVarFp.adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(axios, basePath));
33511
33473
  },
33512
33474
  /**
33513
- * Updates StoreStatus information by ID.
33514
- * @summary Update an existing StoreStatus
33475
+ * Updates the active/inactive status of a store by its ID.
33476
+ * @summary Update Store Status
33515
33477
  * @param {number} id Store ID
33516
- * @param {boolean} status status
33478
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33517
33479
  * @param {*} [options] Override http request option.
33518
33480
  * @throws {RequiredError}
33519
33481
  */
@@ -33583,10 +33545,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33583
33545
  return localVarFp.adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
33584
33546
  },
33585
33547
  /**
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.
33548
+ *
33587
33549
  * @summary Update Store Config (Partial)
33588
33550
  * @param {string} xStoreID X-Store ID
33589
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33551
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33590
33552
  * @param {*} [options] Override http request option.
33591
33553
  * @throws {RequiredError}
33592
33554
  */
@@ -33659,14 +33621,14 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
33659
33621
  return localVarFp.adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(axios, basePath));
33660
33622
  },
33661
33623
  /**
33662
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33624
+ *
33663
33625
  * @summary Regenerate X-Store Secret
33664
- * @param {string} xStoreID Current X-Store ID
33626
+ * @param {string} xstoreid Current X-Store ID
33665
33627
  * @param {*} [options] Override http request option.
33666
33628
  * @throws {RequiredError}
33667
33629
  */
33668
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33669
- return localVarFp.xStoreIDRegenerateSecretPost(xStoreID, options).then((request) => request(axios, basePath));
33630
+ xstoreidRegenerateUidPut(xstoreid, options) {
33631
+ return localVarFp.xstoreidRegenerateUidPut(xstoreid, options).then((request) => request(axios, basePath));
33670
33632
  },
33671
33633
  };
33672
33634
  };
@@ -33722,10 +33684,10 @@ export class StoresApi extends BaseAPI {
33722
33684
  return StoresApiFp(this.configuration).adminStoresStoreIDPut(storeID, dataTypesStoreRequestDto, options).then((request) => request(this.axios, this.basePath));
33723
33685
  }
33724
33686
  /**
33725
- * Updates StoreStatus information by ID.
33726
- * @summary Update an existing StoreStatus
33687
+ * Updates the active/inactive status of a store by its ID.
33688
+ * @summary Update Store Status
33727
33689
  * @param {number} id Store ID
33728
- * @param {boolean} status status
33690
+ * @param {boolean} status Store Status (true &#x3D; active, false &#x3D; inactive)
33729
33691
  * @param {*} [options] Override http request option.
33730
33692
  * @throws {RequiredError}
33731
33693
  * @memberof StoresApi
@@ -33801,10 +33763,10 @@ export class StoresApi extends BaseAPI {
33801
33763
  return StoresApiFp(this.configuration).adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
33802
33764
  }
33803
33765
  /**
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.
33766
+ *
33805
33767
  * @summary Update Store Config (Partial)
33806
33768
  * @param {string} xStoreID X-Store ID
33807
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported) including stopwords and synonyms
33769
+ * @param {DataTypesIndexConfig} dataTypesIndexConfig Store configuration (partial updates supported)
33808
33770
  * @param {*} [options] Override http request option.
33809
33771
  * @throws {RequiredError}
33810
33772
  * @memberof StoresApi
@@ -33884,15 +33846,15 @@ export class StoresApi extends BaseAPI {
33884
33846
  return StoresApiFp(this.configuration).adminStoresXStoreIDStepStepPut(xStoreID, step, body, options).then((request) => request(this.axios, this.basePath));
33885
33847
  }
33886
33848
  /**
33887
- * Generates and assigns a new X-Store Secret for an existing store, keeping the same X-Store ID.
33849
+ *
33888
33850
  * @summary Regenerate X-Store Secret
33889
- * @param {string} xStoreID Current X-Store ID
33851
+ * @param {string} xstoreid Current X-Store ID
33890
33852
  * @param {*} [options] Override http request option.
33891
33853
  * @throws {RequiredError}
33892
33854
  * @memberof StoresApi
33893
33855
  */
33894
- xStoreIDRegenerateSecretPost(xStoreID, options) {
33895
- return StoresApiFp(this.configuration).xStoreIDRegenerateSecretPost(xStoreID, options).then((request) => request(this.axios, this.basePath));
33856
+ xstoreidRegenerateUidPut(xstoreid, options) {
33857
+ return StoresApiFp(this.configuration).xstoreidRegenerateUidPut(xstoreid, options).then((request) => request(this.axios, this.basePath));
33896
33858
  }
33897
33859
  }
33898
33860
  /**