@seekora-ai/admin-api 1.1.14 → 1.1.16

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
@@ -2308,6 +2308,145 @@ export const AnalyticsApiAxiosParamCreator = function (configuration) {
2308
2308
  options: localVarRequestOptions,
2309
2309
  };
2310
2310
  }),
2311
+ /**
2312
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
2313
+ * @summary Get Query Insights
2314
+ * @param {string} xStoreID Store ID
2315
+ * @param {string} query Search query to analyze
2316
+ * @param {string} [startTime] Start time in RFC3339 format
2317
+ * @param {string} [endTime] End time in RFC3339 format
2318
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
2319
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
2320
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
2321
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
2322
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
2323
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
2324
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
2325
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
2326
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
2327
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
2328
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
2329
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
2330
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
2331
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
2332
+ * @param {number} [resultsPage] Page number for popular results pagination
2333
+ * @param {number} [resultsPageSize] Number of results per page for popular results
2334
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
2335
+ * @param {number} [filtersPage] Page number for popular filters pagination
2336
+ * @param {number} [filtersPageSize] Number of filters per page
2337
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
2338
+ * @param {number} [geoPage] Page number for geo analytics pagination
2339
+ * @param {number} [geoPageSize] Number of geo locations per page
2340
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
2341
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
2342
+ * @param {*} [options] Override http request option.
2343
+ * @throws {RequiredError}
2344
+ */
2345
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet: (xStoreID_1, query_1, startTime_1, endTime_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, search_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, resultsPage_1, resultsPageSize_1, resultsSearch_1, filtersPage_1, filtersPageSize_1, filtersSearch_1, geoPage_1, geoPageSize_1, geoSearch_1, includeWidget_1, ...args_1) => __awaiter(this, [xStoreID_1, query_1, startTime_1, endTime_1, analyticsTags_1, tagsMatchMode_1, tagsExclude_1, tagKeyFilter_1, tagValueFilter_1, search_1, compareMode_1, compareStartTime_1, compareEndTime_1, compareAnalyticsTags_1, compareTagsMatchMode_1, compareTagsExclude_1, compareTagKeyFilter_1, compareTagValueFilter_1, resultsPage_1, resultsPageSize_1, resultsSearch_1, filtersPage_1, filtersPageSize_1, filtersSearch_1, geoPage_1, geoPageSize_1, geoSearch_1, includeWidget_1, ...args_1], void 0, function* (xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options = {}) {
2346
+ // verify required parameter 'xStoreID' is not null or undefined
2347
+ assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'xStoreID', xStoreID);
2348
+ // verify required parameter 'query' is not null or undefined
2349
+ assertParamExists('adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet', 'query', query);
2350
+ const localVarPath = `/admin/analytics/store/{xStoreID}/queries/{query}/insights`
2351
+ .replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)))
2352
+ .replace(`{${"query"}}`, encodeURIComponent(String(query)));
2353
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2354
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2355
+ let baseOptions;
2356
+ if (configuration) {
2357
+ baseOptions = configuration.baseOptions;
2358
+ }
2359
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
2360
+ const localVarHeaderParameter = {};
2361
+ const localVarQueryParameter = {};
2362
+ // authentication BearerAuth required
2363
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
2364
+ if (startTime !== undefined) {
2365
+ localVarQueryParameter['start_time'] = startTime;
2366
+ }
2367
+ if (endTime !== undefined) {
2368
+ localVarQueryParameter['end_time'] = endTime;
2369
+ }
2370
+ if (analyticsTags !== undefined) {
2371
+ localVarQueryParameter['analytics_tags'] = analyticsTags;
2372
+ }
2373
+ if (tagsMatchMode !== undefined) {
2374
+ localVarQueryParameter['tags_match_mode'] = tagsMatchMode;
2375
+ }
2376
+ if (tagsExclude !== undefined) {
2377
+ localVarQueryParameter['tags_exclude'] = tagsExclude;
2378
+ }
2379
+ if (tagKeyFilter !== undefined) {
2380
+ localVarQueryParameter['tag_key_filter'] = tagKeyFilter;
2381
+ }
2382
+ if (tagValueFilter !== undefined) {
2383
+ localVarQueryParameter['tag_value_filter'] = tagValueFilter;
2384
+ }
2385
+ if (search !== undefined) {
2386
+ localVarQueryParameter['search'] = search;
2387
+ }
2388
+ if (compareMode !== undefined) {
2389
+ localVarQueryParameter['compare_mode'] = compareMode;
2390
+ }
2391
+ if (compareStartTime !== undefined) {
2392
+ localVarQueryParameter['compare_start_time'] = compareStartTime;
2393
+ }
2394
+ if (compareEndTime !== undefined) {
2395
+ localVarQueryParameter['compare_end_time'] = compareEndTime;
2396
+ }
2397
+ if (compareAnalyticsTags !== undefined) {
2398
+ localVarQueryParameter['compare_analytics_tags'] = compareAnalyticsTags;
2399
+ }
2400
+ if (compareTagsMatchMode !== undefined) {
2401
+ localVarQueryParameter['compare_tags_match_mode'] = compareTagsMatchMode;
2402
+ }
2403
+ if (compareTagsExclude !== undefined) {
2404
+ localVarQueryParameter['compare_tags_exclude'] = compareTagsExclude;
2405
+ }
2406
+ if (compareTagKeyFilter !== undefined) {
2407
+ localVarQueryParameter['compare_tag_key_filter'] = compareTagKeyFilter;
2408
+ }
2409
+ if (compareTagValueFilter !== undefined) {
2410
+ localVarQueryParameter['compare_tag_value_filter'] = compareTagValueFilter;
2411
+ }
2412
+ if (resultsPage !== undefined) {
2413
+ localVarQueryParameter['results_page'] = resultsPage;
2414
+ }
2415
+ if (resultsPageSize !== undefined) {
2416
+ localVarQueryParameter['results_page_size'] = resultsPageSize;
2417
+ }
2418
+ if (resultsSearch !== undefined) {
2419
+ localVarQueryParameter['results_search'] = resultsSearch;
2420
+ }
2421
+ if (filtersPage !== undefined) {
2422
+ localVarQueryParameter['filters_page'] = filtersPage;
2423
+ }
2424
+ if (filtersPageSize !== undefined) {
2425
+ localVarQueryParameter['filters_page_size'] = filtersPageSize;
2426
+ }
2427
+ if (filtersSearch !== undefined) {
2428
+ localVarQueryParameter['filters_search'] = filtersSearch;
2429
+ }
2430
+ if (geoPage !== undefined) {
2431
+ localVarQueryParameter['geo_page'] = geoPage;
2432
+ }
2433
+ if (geoPageSize !== undefined) {
2434
+ localVarQueryParameter['geo_page_size'] = geoPageSize;
2435
+ }
2436
+ if (geoSearch !== undefined) {
2437
+ localVarQueryParameter['geo_search'] = geoSearch;
2438
+ }
2439
+ if (includeWidget !== undefined) {
2440
+ localVarQueryParameter['include_widget'] = includeWidget;
2441
+ }
2442
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2443
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2444
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2445
+ return {
2446
+ url: toPathString(localVarUrlObj),
2447
+ options: localVarRequestOptions,
2448
+ };
2449
+ }),
2311
2450
  /**
2312
2451
  * Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
2313
2452
  * @summary Get Top Results Analytics
@@ -3119,6 +3258,49 @@ export const AnalyticsApiFp = function (configuration) {
3119
3258
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3120
3259
  });
3121
3260
  },
3261
+ /**
3262
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
3263
+ * @summary Get Query Insights
3264
+ * @param {string} xStoreID Store ID
3265
+ * @param {string} query Search query to analyze
3266
+ * @param {string} [startTime] Start time in RFC3339 format
3267
+ * @param {string} [endTime] End time in RFC3339 format
3268
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
3269
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
3270
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
3271
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
3272
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
3273
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
3274
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
3275
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
3276
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
3277
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
3278
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
3279
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
3280
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
3281
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
3282
+ * @param {number} [resultsPage] Page number for popular results pagination
3283
+ * @param {number} [resultsPageSize] Number of results per page for popular results
3284
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
3285
+ * @param {number} [filtersPage] Page number for popular filters pagination
3286
+ * @param {number} [filtersPageSize] Number of filters per page
3287
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
3288
+ * @param {number} [geoPage] Page number for geo analytics pagination
3289
+ * @param {number} [geoPageSize] Number of geo locations per page
3290
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
3291
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
3292
+ * @param {*} [options] Override http request option.
3293
+ * @throws {RequiredError}
3294
+ */
3295
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options) {
3296
+ return __awaiter(this, void 0, void 0, function* () {
3297
+ var _a, _b, _c;
3298
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options);
3299
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3300
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AnalyticsApi.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
3301
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3302
+ });
3303
+ },
3122
3304
  /**
3123
3305
  * Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
3124
3306
  * @summary Get Top Results Analytics
@@ -3595,6 +3777,43 @@ export const AnalyticsApiFactory = function (configuration, basePath, axios) {
3595
3777
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID, startTime, endTime, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options) {
3596
3778
  return localVarFp.adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID, startTime, endTime, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(axios, basePath));
3597
3779
  },
3780
+ /**
3781
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
3782
+ * @summary Get Query Insights
3783
+ * @param {string} xStoreID Store ID
3784
+ * @param {string} query Search query to analyze
3785
+ * @param {string} [startTime] Start time in RFC3339 format
3786
+ * @param {string} [endTime] End time in RFC3339 format
3787
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
3788
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
3789
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
3790
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
3791
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
3792
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
3793
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
3794
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
3795
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
3796
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
3797
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
3798
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
3799
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
3800
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
3801
+ * @param {number} [resultsPage] Page number for popular results pagination
3802
+ * @param {number} [resultsPageSize] Number of results per page for popular results
3803
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
3804
+ * @param {number} [filtersPage] Page number for popular filters pagination
3805
+ * @param {number} [filtersPageSize] Number of filters per page
3806
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
3807
+ * @param {number} [geoPage] Page number for geo analytics pagination
3808
+ * @param {number} [geoPageSize] Number of geo locations per page
3809
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
3810
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
3811
+ * @param {*} [options] Override http request option.
3812
+ * @throws {RequiredError}
3813
+ */
3814
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options) {
3815
+ return localVarFp.adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(axios, basePath));
3816
+ },
3598
3817
  /**
3599
3818
  * Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
3600
3819
  * @summary Get Top Results Analytics
@@ -4055,6 +4274,44 @@ export class AnalyticsApi extends BaseAPI {
4055
4274
  adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID, startTime, endTime, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options) {
4056
4275
  return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesNoResultsGet(xStoreID, startTime, endTime, search, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, limit, offset, page, pageSize, sortBy, sortOrder, sort, options).then((request) => request(this.axios, this.basePath));
4057
4276
  }
4277
+ /**
4278
+ * Retrieve comprehensive analytics for a specific search query including all core metrics (Searches, Results Shown, Clicks, CTR, Avg Result Rank, Avg Click Rank, Conversions, CVR, Conversion Rate per Search, No-Result Rate, No-Click Rate, Revenue), popular results, filters, click position histogram, geo analytics, and performance metrics with deep comparison mode support and independent pagination for popular results and filters
4279
+ * @summary Get Query Insights
4280
+ * @param {string} xStoreID Store ID
4281
+ * @param {string} query Search query to analyze
4282
+ * @param {string} [startTime] Start time in RFC3339 format
4283
+ * @param {string} [endTime] End time in RFC3339 format
4284
+ * @param {string} [analyticsTags] Comma-separated analytics tags to filter (e.g., \'campaign:summer,source:email\')
4285
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum} [tagsMatchMode] How to match multiple analytics tags
4286
+ * @param {string} [tagsExclude] Comma-separated analytics tags to exclude
4287
+ * @param {string} [tagKeyFilter] Filter by tag key pattern (matches tags starting with key:)
4288
+ * @param {string} [tagValueFilter] Filter by tag value pattern (matches tags ending with :value)
4289
+ * @param {string} [search] Search term to filter popular results, filters, and geo analytics (case-insensitive partial match)
4290
+ * @param {boolean} [compareMode] Enable comparison mode to compare with another time period/tag set
4291
+ * @param {string} [compareStartTime] Comparison period start time in RFC3339 format
4292
+ * @param {string} [compareEndTime] Comparison period end time in RFC3339 format
4293
+ * @param {string} [compareAnalyticsTags] Comma-separated analytics tags for comparison period
4294
+ * @param {AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum} [compareTagsMatchMode] How to match comparison analytics tags
4295
+ * @param {string} [compareTagsExclude] Comma-separated analytics tags to exclude in comparison
4296
+ * @param {string} [compareTagKeyFilter] Tag key filter for comparison period
4297
+ * @param {string} [compareTagValueFilter] Tag value filter for comparison period
4298
+ * @param {number} [resultsPage] Page number for popular results pagination
4299
+ * @param {number} [resultsPageSize] Number of results per page for popular results
4300
+ * @param {string} [resultsSearch] Search term to filter popular results (case-insensitive partial match on item IDs)
4301
+ * @param {number} [filtersPage] Page number for popular filters pagination
4302
+ * @param {number} [filtersPageSize] Number of filters per page
4303
+ * @param {string} [filtersSearch] Search term to filter popular filters (case-insensitive partial match on filter keys/values)
4304
+ * @param {number} [geoPage] Page number for geo analytics pagination
4305
+ * @param {number} [geoPageSize] Number of geo locations per page
4306
+ * @param {string} [geoSearch] Search term to filter geo analytics (case-insensitive partial match on country/region/city)
4307
+ * @param {boolean} [includeWidget] Whether to include widget display fields for popular results
4308
+ * @param {*} [options] Override http request option.
4309
+ * @throws {RequiredError}
4310
+ * @memberof AnalyticsApi
4311
+ */
4312
+ adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options) {
4313
+ return AnalyticsApiFp(this.configuration).adminAnalyticsStoreXStoreIDQueriesQueryInsightsGet(xStoreID, query, startTime, endTime, analyticsTags, tagsMatchMode, tagsExclude, tagKeyFilter, tagValueFilter, search, compareMode, compareStartTime, compareEndTime, compareAnalyticsTags, compareTagsMatchMode, compareTagsExclude, compareTagKeyFilter, compareTagValueFilter, resultsPage, resultsPageSize, resultsSearch, filtersPage, filtersPageSize, filtersSearch, geoPage, geoPageSize, geoSearch, includeWidget, options).then((request) => request(this.axios, this.basePath));
4314
+ }
4058
4315
  /**
4059
4316
  * Retrieve analytics for top performing search results with optional enrichment. By default returns widget display fields for UI presentation. Use include_documents=true for full document data (heavier response). Supports lightweight widget-only mode for dashboards with analytics tags filtering and comparison mode support.
4060
4317
  * @summary Get Top Results Analytics
@@ -4443,6 +4700,20 @@ export const AdminAnalyticsStoreXStoreIDQueriesNoResultsGetSortOrderEnum = {
4443
4700
  Asc: 'asc',
4444
4701
  Desc: 'desc'
4445
4702
  };
4703
+ /**
4704
+ * @export
4705
+ */
4706
+ export const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetTagsMatchModeEnum = {
4707
+ Any: 'any',
4708
+ All: 'all'
4709
+ };
4710
+ /**
4711
+ * @export
4712
+ */
4713
+ export const AdminAnalyticsStoreXStoreIDQueriesQueryInsightsGetCompareTagsMatchModeEnum = {
4714
+ Any: 'any',
4715
+ All: 'all'
4716
+ };
4446
4717
  /**
4447
4718
  * @export
4448
4719
  */
@@ -14392,6 +14663,33 @@ export const LimitsApiAxiosParamCreator = function (configuration) {
14392
14663
  options: localVarRequestOptions,
14393
14664
  };
14394
14665
  }),
14666
+ /**
14667
+ * Fetches list of all limits
14668
+ * @summary Fetches list of all limits
14669
+ * @param {*} [options] Override http request option.
14670
+ * @throws {RequiredError}
14671
+ */
14672
+ miscLimitsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
14673
+ const localVarPath = `/misc/limits`;
14674
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
14675
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14676
+ let baseOptions;
14677
+ if (configuration) {
14678
+ baseOptions = configuration.baseOptions;
14679
+ }
14680
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
14681
+ const localVarHeaderParameter = {};
14682
+ const localVarQueryParameter = {};
14683
+ // authentication BearerAuth required
14684
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
14685
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
14686
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
14687
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
14688
+ return {
14689
+ url: toPathString(localVarUrlObj),
14690
+ options: localVarRequestOptions,
14691
+ };
14692
+ }),
14395
14693
  /**
14396
14694
  * Fetches limit by id
14397
14695
  * @summary Fetches limit by id
@@ -14517,6 +14815,21 @@ export const LimitsApiFp = function (configuration) {
14517
14815
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14518
14816
  });
14519
14817
  },
14818
+ /**
14819
+ * Fetches list of all limits
14820
+ * @summary Fetches list of all limits
14821
+ * @param {*} [options] Override http request option.
14822
+ * @throws {RequiredError}
14823
+ */
14824
+ miscLimitsGet(options) {
14825
+ return __awaiter(this, void 0, void 0, function* () {
14826
+ var _a, _b, _c;
14827
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscLimitsGet(options);
14828
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
14829
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['LimitsApi.miscLimitsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
14830
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
14831
+ });
14832
+ },
14520
14833
  /**
14521
14834
  * Fetches limit by id
14522
14835
  * @summary Fetches limit by id
@@ -14586,6 +14899,15 @@ export const LimitsApiFactory = function (configuration, basePath, axios) {
14586
14899
  miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options) {
14587
14900
  return localVarFp.miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(axios, basePath));
14588
14901
  },
14902
+ /**
14903
+ * Fetches list of all limits
14904
+ * @summary Fetches list of all limits
14905
+ * @param {*} [options] Override http request option.
14906
+ * @throws {RequiredError}
14907
+ */
14908
+ miscLimitsGet(options) {
14909
+ return localVarFp.miscLimitsGet(options).then((request) => request(axios, basePath));
14910
+ },
14589
14911
  /**
14590
14912
  * Fetches limit by id
14591
14913
  * @summary Fetches limit by id
@@ -14638,6 +14960,16 @@ export class LimitsApi extends BaseAPI {
14638
14960
  miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options) {
14639
14961
  return LimitsApiFp(this.configuration).miscLimitsChangeStatusLimitIDIsActivePut(limitID, isActive, options).then((request) => request(this.axios, this.basePath));
14640
14962
  }
14963
+ /**
14964
+ * Fetches list of all limits
14965
+ * @summary Fetches list of all limits
14966
+ * @param {*} [options] Override http request option.
14967
+ * @throws {RequiredError}
14968
+ * @memberof LimitsApi
14969
+ */
14970
+ miscLimitsGet(options) {
14971
+ return LimitsApiFp(this.configuration).miscLimitsGet(options).then((request) => request(this.axios, this.basePath));
14972
+ }
14641
14973
  /**
14642
14974
  * Fetches limit by id
14643
14975
  * @summary Fetches limit by id
@@ -14680,17 +15012,44 @@ export class LimitsApi extends BaseAPI {
14680
15012
  export const MenusApiAxiosParamCreator = function (configuration) {
14681
15013
  return {
14682
15014
  /**
14683
- * Deletes a menu from the system by ID.
14684
- * @summary Delete a menu
14685
- * @param {number} id Menu ID
15015
+ * Fetches list of all menus
15016
+ * @summary Fetches list of all menus
14686
15017
  * @param {*} [options] Override http request option.
14687
15018
  * @throws {RequiredError}
14688
15019
  */
14689
- miscMenusIdDelete: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
14690
- // verify required parameter 'id' is not null or undefined
14691
- assertParamExists('miscMenusIdDelete', 'id', id);
14692
- const localVarPath = `/misc/menus/{id}`
14693
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
15020
+ miscMenusGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
15021
+ const localVarPath = `/misc/menus`;
15022
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
15023
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
15024
+ let baseOptions;
15025
+ if (configuration) {
15026
+ baseOptions = configuration.baseOptions;
15027
+ }
15028
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
15029
+ const localVarHeaderParameter = {};
15030
+ const localVarQueryParameter = {};
15031
+ // authentication BearerAuth required
15032
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
15033
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
15034
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
15035
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
15036
+ return {
15037
+ url: toPathString(localVarUrlObj),
15038
+ options: localVarRequestOptions,
15039
+ };
15040
+ }),
15041
+ /**
15042
+ * Deletes a menu from the system by ID.
15043
+ * @summary Delete a menu
15044
+ * @param {number} id Menu ID
15045
+ * @param {*} [options] Override http request option.
15046
+ * @throws {RequiredError}
15047
+ */
15048
+ miscMenusIdDelete: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
15049
+ // verify required parameter 'id' is not null or undefined
15050
+ assertParamExists('miscMenusIdDelete', 'id', id);
15051
+ const localVarPath = `/misc/menus/{id}`
15052
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
14694
15053
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
14695
15054
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
14696
15055
  let baseOptions;
@@ -15129,6 +15488,21 @@ export const MenusApiAxiosParamCreator = function (configuration) {
15129
15488
  export const MenusApiFp = function (configuration) {
15130
15489
  const localVarAxiosParamCreator = MenusApiAxiosParamCreator(configuration);
15131
15490
  return {
15491
+ /**
15492
+ * Fetches list of all menus
15493
+ * @summary Fetches list of all menus
15494
+ * @param {*} [options] Override http request option.
15495
+ * @throws {RequiredError}
15496
+ */
15497
+ miscMenusGet(options) {
15498
+ return __awaiter(this, void 0, void 0, function* () {
15499
+ var _a, _b, _c;
15500
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscMenusGet(options);
15501
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
15502
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['MenusApi.miscMenusGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
15503
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
15504
+ });
15505
+ },
15132
15506
  /**
15133
15507
  * Deletes a menu from the system by ID.
15134
15508
  * @summary Delete a menu
@@ -15354,6 +15728,15 @@ export const MenusApiFp = function (configuration) {
15354
15728
  export const MenusApiFactory = function (configuration, basePath, axios) {
15355
15729
  const localVarFp = MenusApiFp(configuration);
15356
15730
  return {
15731
+ /**
15732
+ * Fetches list of all menus
15733
+ * @summary Fetches list of all menus
15734
+ * @param {*} [options] Override http request option.
15735
+ * @throws {RequiredError}
15736
+ */
15737
+ miscMenusGet(options) {
15738
+ return localVarFp.miscMenusGet(options).then((request) => request(axios, basePath));
15739
+ },
15357
15740
  /**
15358
15741
  * Deletes a menu from the system by ID.
15359
15742
  * @summary Delete a menu
@@ -15501,6 +15884,16 @@ export const MenusApiFactory = function (configuration, basePath, axios) {
15501
15884
  * @extends {BaseAPI}
15502
15885
  */
15503
15886
  export class MenusApi extends BaseAPI {
15887
+ /**
15888
+ * Fetches list of all menus
15889
+ * @summary Fetches list of all menus
15890
+ * @param {*} [options] Override http request option.
15891
+ * @throws {RequiredError}
15892
+ * @memberof MenusApi
15893
+ */
15894
+ miscMenusGet(options) {
15895
+ return MenusApiFp(this.configuration).miscMenusGet(options).then((request) => request(this.axios, this.basePath));
15896
+ }
15504
15897
  /**
15505
15898
  * Deletes a menu from the system by ID.
15506
15899
  * @summary Delete a menu
@@ -16472,6 +16865,33 @@ export class MongoDbApi extends BaseAPI {
16472
16865
  */
16473
16866
  export const NewsLettersApiAxiosParamCreator = function (configuration) {
16474
16867
  return {
16868
+ /**
16869
+ * Fetches list of all NewsLetterSubscription
16870
+ * @summary Fetches list of all NewsLetterSubscription
16871
+ * @param {*} [options] Override http request option.
16872
+ * @throws {RequiredError}
16873
+ */
16874
+ miscNewsLettersGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
16875
+ const localVarPath = `/misc/NewsLetters`;
16876
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16877
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16878
+ let baseOptions;
16879
+ if (configuration) {
16880
+ baseOptions = configuration.baseOptions;
16881
+ }
16882
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
16883
+ const localVarHeaderParameter = {};
16884
+ const localVarQueryParameter = {};
16885
+ // authentication BearerAuth required
16886
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
16887
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16888
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16889
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
16890
+ return {
16891
+ url: toPathString(localVarUrlObj),
16892
+ options: localVarRequestOptions,
16893
+ };
16894
+ }),
16475
16895
  /**
16476
16896
  * Fetches NewsLetterSubscription by id
16477
16897
  * @summary Fetches NewsLetterSubscription by id
@@ -16615,6 +17035,21 @@ export const NewsLettersApiAxiosParamCreator = function (configuration) {
16615
17035
  export const NewsLettersApiFp = function (configuration) {
16616
17036
  const localVarAxiosParamCreator = NewsLettersApiAxiosParamCreator(configuration);
16617
17037
  return {
17038
+ /**
17039
+ * Fetches list of all NewsLetterSubscription
17040
+ * @summary Fetches list of all NewsLetterSubscription
17041
+ * @param {*} [options] Override http request option.
17042
+ * @throws {RequiredError}
17043
+ */
17044
+ miscNewsLettersGet(options) {
17045
+ return __awaiter(this, void 0, void 0, function* () {
17046
+ var _a, _b, _c;
17047
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscNewsLettersGet(options);
17048
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
17049
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['NewsLettersApi.miscNewsLettersGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
17050
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17051
+ });
17052
+ },
16618
17053
  /**
16619
17054
  * Fetches NewsLetterSubscription by id
16620
17055
  * @summary Fetches NewsLetterSubscription by id
@@ -16690,6 +17125,15 @@ export const NewsLettersApiFp = function (configuration) {
16690
17125
  export const NewsLettersApiFactory = function (configuration, basePath, axios) {
16691
17126
  const localVarFp = NewsLettersApiFp(configuration);
16692
17127
  return {
17128
+ /**
17129
+ * Fetches list of all NewsLetterSubscription
17130
+ * @summary Fetches list of all NewsLetterSubscription
17131
+ * @param {*} [options] Override http request option.
17132
+ * @throws {RequiredError}
17133
+ */
17134
+ miscNewsLettersGet(options) {
17135
+ return localVarFp.miscNewsLettersGet(options).then((request) => request(axios, basePath));
17136
+ },
16693
17137
  /**
16694
17138
  * Fetches NewsLetterSubscription by id
16695
17139
  * @summary Fetches NewsLetterSubscription by id
@@ -16741,6 +17185,16 @@ export const NewsLettersApiFactory = function (configuration, basePath, axios) {
16741
17185
  * @extends {BaseAPI}
16742
17186
  */
16743
17187
  export class NewsLettersApi extends BaseAPI {
17188
+ /**
17189
+ * Fetches list of all NewsLetterSubscription
17190
+ * @summary Fetches list of all NewsLetterSubscription
17191
+ * @param {*} [options] Override http request option.
17192
+ * @throws {RequiredError}
17193
+ * @memberof NewsLettersApi
17194
+ */
17195
+ miscNewsLettersGet(options) {
17196
+ return NewsLettersApiFp(this.configuration).miscNewsLettersGet(options).then((request) => request(this.axios, this.basePath));
17197
+ }
16744
17198
  /**
16745
17199
  * Fetches NewsLetterSubscription by id
16746
17200
  * @summary Fetches NewsLetterSubscription by id
@@ -17425,6 +17879,33 @@ export class OnboardingApi extends BaseAPI {
17425
17879
  */
17426
17880
  export const OrganizationsApiAxiosParamCreator = function (configuration) {
17427
17881
  return {
17882
+ /**
17883
+ * Fetches list of all Organizations
17884
+ * @summary Fetches list of all Organizations
17885
+ * @param {*} [options] Override http request option.
17886
+ * @throws {RequiredError}
17887
+ */
17888
+ adminOrganizationsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
17889
+ const localVarPath = `/admin/Organizations`;
17890
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
17891
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
17892
+ let baseOptions;
17893
+ if (configuration) {
17894
+ baseOptions = configuration.baseOptions;
17895
+ }
17896
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
17897
+ const localVarHeaderParameter = {};
17898
+ const localVarQueryParameter = {};
17899
+ // authentication BearerAuth required
17900
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
17901
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
17902
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
17903
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
17904
+ return {
17905
+ url: toPathString(localVarUrlObj),
17906
+ options: localVarRequestOptions,
17907
+ };
17908
+ }),
17428
17909
  /**
17429
17910
  * Updates Orgnization information by ID.
17430
17911
  * @summary Update an existing Orgnization
@@ -17568,6 +18049,21 @@ export const OrganizationsApiAxiosParamCreator = function (configuration) {
17568
18049
  export const OrganizationsApiFp = function (configuration) {
17569
18050
  const localVarAxiosParamCreator = OrganizationsApiAxiosParamCreator(configuration);
17570
18051
  return {
18052
+ /**
18053
+ * Fetches list of all Organizations
18054
+ * @summary Fetches list of all Organizations
18055
+ * @param {*} [options] Override http request option.
18056
+ * @throws {RequiredError}
18057
+ */
18058
+ adminOrganizationsGet(options) {
18059
+ return __awaiter(this, void 0, void 0, function* () {
18060
+ var _a, _b, _c;
18061
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminOrganizationsGet(options);
18062
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
18063
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OrganizationsApi.adminOrganizationsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
18064
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18065
+ });
18066
+ },
17571
18067
  /**
17572
18068
  * Updates Orgnization information by ID.
17573
18069
  * @summary Update an existing Orgnization
@@ -17643,6 +18139,15 @@ export const OrganizationsApiFp = function (configuration) {
17643
18139
  export const OrganizationsApiFactory = function (configuration, basePath, axios) {
17644
18140
  const localVarFp = OrganizationsApiFp(configuration);
17645
18141
  return {
18142
+ /**
18143
+ * Fetches list of all Organizations
18144
+ * @summary Fetches list of all Organizations
18145
+ * @param {*} [options] Override http request option.
18146
+ * @throws {RequiredError}
18147
+ */
18148
+ adminOrganizationsGet(options) {
18149
+ return localVarFp.adminOrganizationsGet(options).then((request) => request(axios, basePath));
18150
+ },
17646
18151
  /**
17647
18152
  * Updates Orgnization information by ID.
17648
18153
  * @summary Update an existing Orgnization
@@ -17694,6 +18199,16 @@ export const OrganizationsApiFactory = function (configuration, basePath, axios)
17694
18199
  * @extends {BaseAPI}
17695
18200
  */
17696
18201
  export class OrganizationsApi extends BaseAPI {
18202
+ /**
18203
+ * Fetches list of all Organizations
18204
+ * @summary Fetches list of all Organizations
18205
+ * @param {*} [options] Override http request option.
18206
+ * @throws {RequiredError}
18207
+ * @memberof OrganizationsApi
18208
+ */
18209
+ adminOrganizationsGet(options) {
18210
+ return OrganizationsApiFp(this.configuration).adminOrganizationsGet(options).then((request) => request(this.axios, this.basePath));
18211
+ }
17697
18212
  /**
17698
18213
  * Updates Orgnization information by ID.
17699
18214
  * @summary Update an existing Orgnization
@@ -19114,6 +19629,33 @@ export class PaymentGatewayApi extends BaseAPI {
19114
19629
  */
19115
19630
  export const PaymentsApiAxiosParamCreator = function (configuration) {
19116
19631
  return {
19632
+ /**
19633
+ * Fetches list of all payments
19634
+ * @summary Fetches list of all payments
19635
+ * @param {*} [options] Override http request option.
19636
+ * @throws {RequiredError}
19637
+ */
19638
+ adminPaymentsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
19639
+ const localVarPath = `/admin/payments/`;
19640
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
19641
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
19642
+ let baseOptions;
19643
+ if (configuration) {
19644
+ baseOptions = configuration.baseOptions;
19645
+ }
19646
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
19647
+ const localVarHeaderParameter = {};
19648
+ const localVarQueryParameter = {};
19649
+ // authentication BearerAuth required
19650
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
19651
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
19652
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
19653
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
19654
+ return {
19655
+ url: toPathString(localVarUrlObj),
19656
+ options: localVarRequestOptions,
19657
+ };
19658
+ }),
19117
19659
  /**
19118
19660
  * Deletes a payment from the system by ID.
19119
19661
  * @summary Delete a payment
@@ -19253,6 +19795,21 @@ export const PaymentsApiAxiosParamCreator = function (configuration) {
19253
19795
  export const PaymentsApiFp = function (configuration) {
19254
19796
  const localVarAxiosParamCreator = PaymentsApiAxiosParamCreator(configuration);
19255
19797
  return {
19798
+ /**
19799
+ * Fetches list of all payments
19800
+ * @summary Fetches list of all payments
19801
+ * @param {*} [options] Override http request option.
19802
+ * @throws {RequiredError}
19803
+ */
19804
+ adminPaymentsGet(options) {
19805
+ return __awaiter(this, void 0, void 0, function* () {
19806
+ var _a, _b, _c;
19807
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminPaymentsGet(options);
19808
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
19809
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PaymentsApi.adminPaymentsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
19810
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
19811
+ });
19812
+ },
19256
19813
  /**
19257
19814
  * Deletes a payment from the system by ID.
19258
19815
  * @summary Delete a payment
@@ -19327,6 +19884,15 @@ export const PaymentsApiFp = function (configuration) {
19327
19884
  export const PaymentsApiFactory = function (configuration, basePath, axios) {
19328
19885
  const localVarFp = PaymentsApiFp(configuration);
19329
19886
  return {
19887
+ /**
19888
+ * Fetches list of all payments
19889
+ * @summary Fetches list of all payments
19890
+ * @param {*} [options] Override http request option.
19891
+ * @throws {RequiredError}
19892
+ */
19893
+ adminPaymentsGet(options) {
19894
+ return localVarFp.adminPaymentsGet(options).then((request) => request(axios, basePath));
19895
+ },
19330
19896
  /**
19331
19897
  * Deletes a payment from the system by ID.
19332
19898
  * @summary Delete a payment
@@ -19377,6 +19943,16 @@ export const PaymentsApiFactory = function (configuration, basePath, axios) {
19377
19943
  * @extends {BaseAPI}
19378
19944
  */
19379
19945
  export class PaymentsApi extends BaseAPI {
19946
+ /**
19947
+ * Fetches list of all payments
19948
+ * @summary Fetches list of all payments
19949
+ * @param {*} [options] Override http request option.
19950
+ * @throws {RequiredError}
19951
+ * @memberof PaymentsApi
19952
+ */
19953
+ adminPaymentsGet(options) {
19954
+ return PaymentsApiFp(this.configuration).adminPaymentsGet(options).then((request) => request(this.axios, this.basePath));
19955
+ }
19380
19956
  /**
19381
19957
  * Deletes a payment from the system by ID.
19382
19958
  * @summary Delete a payment
@@ -19429,6 +20005,33 @@ export class PaymentsApi extends BaseAPI {
19429
20005
  */
19430
20006
  export const PlansApiAxiosParamCreator = function (configuration) {
19431
20007
  return {
20008
+ /**
20009
+ * Fetches list of all Plans
20010
+ * @summary Fetches list of all Plans
20011
+ * @param {*} [options] Override http request option.
20012
+ * @throws {RequiredError}
20013
+ */
20014
+ miscPlansGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
20015
+ const localVarPath = `/misc/Plans`;
20016
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
20017
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
20018
+ let baseOptions;
20019
+ if (configuration) {
20020
+ baseOptions = configuration.baseOptions;
20021
+ }
20022
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
20023
+ const localVarHeaderParameter = {};
20024
+ const localVarQueryParameter = {};
20025
+ // authentication BearerAuth required
20026
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
20027
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
20028
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
20029
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
20030
+ return {
20031
+ url: toPathString(localVarUrlObj),
20032
+ options: localVarRequestOptions,
20033
+ };
20034
+ }),
19432
20035
  /**
19433
20036
  * Fetches plan by id
19434
20037
  * @summary Fetches plan by id
@@ -19572,6 +20175,21 @@ export const PlansApiAxiosParamCreator = function (configuration) {
19572
20175
  export const PlansApiFp = function (configuration) {
19573
20176
  const localVarAxiosParamCreator = PlansApiAxiosParamCreator(configuration);
19574
20177
  return {
20178
+ /**
20179
+ * Fetches list of all Plans
20180
+ * @summary Fetches list of all Plans
20181
+ * @param {*} [options] Override http request option.
20182
+ * @throws {RequiredError}
20183
+ */
20184
+ miscPlansGet(options) {
20185
+ return __awaiter(this, void 0, void 0, function* () {
20186
+ var _a, _b, _c;
20187
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscPlansGet(options);
20188
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
20189
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['PlansApi.miscPlansGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
20190
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
20191
+ });
20192
+ },
19575
20193
  /**
19576
20194
  * Fetches plan by id
19577
20195
  * @summary Fetches plan by id
@@ -19647,6 +20265,15 @@ export const PlansApiFp = function (configuration) {
19647
20265
  export const PlansApiFactory = function (configuration, basePath, axios) {
19648
20266
  const localVarFp = PlansApiFp(configuration);
19649
20267
  return {
20268
+ /**
20269
+ * Fetches list of all Plans
20270
+ * @summary Fetches list of all Plans
20271
+ * @param {*} [options] Override http request option.
20272
+ * @throws {RequiredError}
20273
+ */
20274
+ miscPlansGet(options) {
20275
+ return localVarFp.miscPlansGet(options).then((request) => request(axios, basePath));
20276
+ },
19650
20277
  /**
19651
20278
  * Fetches plan by id
19652
20279
  * @summary Fetches plan by id
@@ -19698,6 +20325,16 @@ export const PlansApiFactory = function (configuration, basePath, axios) {
19698
20325
  * @extends {BaseAPI}
19699
20326
  */
19700
20327
  export class PlansApi extends BaseAPI {
20328
+ /**
20329
+ * Fetches list of all Plans
20330
+ * @summary Fetches list of all Plans
20331
+ * @param {*} [options] Override http request option.
20332
+ * @throws {RequiredError}
20333
+ * @memberof PlansApi
20334
+ */
20335
+ miscPlansGet(options) {
20336
+ return PlansApiFp(this.configuration).miscPlansGet(options).then((request) => request(this.axios, this.basePath));
20337
+ }
19701
20338
  /**
19702
20339
  * Fetches plan by id
19703
20340
  * @summary Fetches plan by id
@@ -24278,6 +24915,33 @@ export class RegisterApi extends BaseAPI {
24278
24915
  */
24279
24916
  export const RequestsApiAxiosParamCreator = function (configuration) {
24280
24917
  return {
24918
+ /**
24919
+ * Fetches list of all ServiceRequest
24920
+ * @summary Fetches list of all ServiceRequest
24921
+ * @param {*} [options] Override http request option.
24922
+ * @throws {RequiredError}
24923
+ */
24924
+ miscRequestsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
24925
+ const localVarPath = `/misc/Requests`;
24926
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
24927
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
24928
+ let baseOptions;
24929
+ if (configuration) {
24930
+ baseOptions = configuration.baseOptions;
24931
+ }
24932
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
24933
+ const localVarHeaderParameter = {};
24934
+ const localVarQueryParameter = {};
24935
+ // authentication BearerAuth required
24936
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
24937
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
24938
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
24939
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
24940
+ return {
24941
+ url: toPathString(localVarUrlObj),
24942
+ options: localVarRequestOptions,
24943
+ };
24944
+ }),
24281
24945
  /**
24282
24946
  * Updates ServiceRequest information by ID.
24283
24947
  * @summary Deletes an existing ServiceRequest
@@ -24452,6 +25116,21 @@ export const RequestsApiAxiosParamCreator = function (configuration) {
24452
25116
  export const RequestsApiFp = function (configuration) {
24453
25117
  const localVarAxiosParamCreator = RequestsApiAxiosParamCreator(configuration);
24454
25118
  return {
25119
+ /**
25120
+ * Fetches list of all ServiceRequest
25121
+ * @summary Fetches list of all ServiceRequest
25122
+ * @param {*} [options] Override http request option.
25123
+ * @throws {RequiredError}
25124
+ */
25125
+ miscRequestsGet(options) {
25126
+ return __awaiter(this, void 0, void 0, function* () {
25127
+ var _a, _b, _c;
25128
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscRequestsGet(options);
25129
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25130
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RequestsApi.miscRequestsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25131
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25132
+ });
25133
+ },
24455
25134
  /**
24456
25135
  * Updates ServiceRequest information by ID.
24457
25136
  * @summary Deletes an existing ServiceRequest
@@ -24543,6 +25222,15 @@ export const RequestsApiFp = function (configuration) {
24543
25222
  export const RequestsApiFactory = function (configuration, basePath, axios) {
24544
25223
  const localVarFp = RequestsApiFp(configuration);
24545
25224
  return {
25225
+ /**
25226
+ * Fetches list of all ServiceRequest
25227
+ * @summary Fetches list of all ServiceRequest
25228
+ * @param {*} [options] Override http request option.
25229
+ * @throws {RequiredError}
25230
+ */
25231
+ miscRequestsGet(options) {
25232
+ return localVarFp.miscRequestsGet(options).then((request) => request(axios, basePath));
25233
+ },
24546
25234
  /**
24547
25235
  * Updates ServiceRequest information by ID.
24548
25236
  * @summary Deletes an existing ServiceRequest
@@ -24604,6 +25292,16 @@ export const RequestsApiFactory = function (configuration, basePath, axios) {
24604
25292
  * @extends {BaseAPI}
24605
25293
  */
24606
25294
  export class RequestsApi extends BaseAPI {
25295
+ /**
25296
+ * Fetches list of all ServiceRequest
25297
+ * @summary Fetches list of all ServiceRequest
25298
+ * @param {*} [options] Override http request option.
25299
+ * @throws {RequiredError}
25300
+ * @memberof RequestsApi
25301
+ */
25302
+ miscRequestsGet(options) {
25303
+ return RequestsApiFp(this.configuration).miscRequestsGet(options).then((request) => request(this.axios, this.basePath));
25304
+ }
24607
25305
  /**
24608
25306
  * Updates ServiceRequest information by ID.
24609
25307
  * @summary Deletes an existing ServiceRequest
@@ -24700,6 +25398,33 @@ export const RoleRightsApiAxiosParamCreator = function (configuration) {
24700
25398
  options: localVarRequestOptions,
24701
25399
  };
24702
25400
  }),
25401
+ /**
25402
+ * Fetches list of all roleright
25403
+ * @summary Fetches list of all roleright
25404
+ * @param {*} [options] Override http request option.
25405
+ * @throws {RequiredError}
25406
+ */
25407
+ adminRolerightsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
25408
+ const localVarPath = `/admin/rolerights`;
25409
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
25410
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25411
+ let baseOptions;
25412
+ if (configuration) {
25413
+ baseOptions = configuration.baseOptions;
25414
+ }
25415
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
25416
+ const localVarHeaderParameter = {};
25417
+ const localVarQueryParameter = {};
25418
+ // authentication BearerAuth required
25419
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
25420
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
25421
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25422
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
25423
+ return {
25424
+ url: toPathString(localVarUrlObj),
25425
+ options: localVarRequestOptions,
25426
+ };
25427
+ }),
24703
25428
  /**
24704
25429
  * Fetches roleright by role id
24705
25430
  * @summary Fetches roleright by role id
@@ -24917,6 +25642,21 @@ export const RoleRightsApiFp = function (configuration) {
24917
25642
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
24918
25643
  });
24919
25644
  },
25645
+ /**
25646
+ * Fetches list of all roleright
25647
+ * @summary Fetches list of all roleright
25648
+ * @param {*} [options] Override http request option.
25649
+ * @throws {RequiredError}
25650
+ */
25651
+ adminRolerightsGet(options) {
25652
+ return __awaiter(this, void 0, void 0, function* () {
25653
+ var _a, _b, _c;
25654
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminRolerightsGet(options);
25655
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25656
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RoleRightsApi.adminRolerightsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25657
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25658
+ });
25659
+ },
24920
25660
  /**
24921
25661
  * Fetches roleright by role id
24922
25662
  * @summary Fetches roleright by role id
@@ -25033,6 +25773,15 @@ export const RoleRightsApiFactory = function (configuration, basePath, axios) {
25033
25773
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options) {
25034
25774
  return localVarFp.adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(axios, basePath));
25035
25775
  },
25776
+ /**
25777
+ * Fetches list of all roleright
25778
+ * @summary Fetches list of all roleright
25779
+ * @param {*} [options] Override http request option.
25780
+ * @throws {RequiredError}
25781
+ */
25782
+ adminRolerightsGet(options) {
25783
+ return localVarFp.adminRolerightsGet(options).then((request) => request(axios, basePath));
25784
+ },
25036
25785
  /**
25037
25786
  * Fetches roleright by role id
25038
25787
  * @summary Fetches roleright by role id
@@ -25114,6 +25863,16 @@ export class RoleRightsApi extends BaseAPI {
25114
25863
  adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options) {
25115
25864
  return RoleRightsApiFp(this.configuration).adminRolerightsBulkPost(dataTypesRoleRightRequestDto, options).then((request) => request(this.axios, this.basePath));
25116
25865
  }
25866
+ /**
25867
+ * Fetches list of all roleright
25868
+ * @summary Fetches list of all roleright
25869
+ * @param {*} [options] Override http request option.
25870
+ * @throws {RequiredError}
25871
+ * @memberof RoleRightsApi
25872
+ */
25873
+ adminRolerightsGet(options) {
25874
+ return RoleRightsApiFp(this.configuration).adminRolerightsGet(options).then((request) => request(this.axios, this.basePath));
25875
+ }
25117
25876
  /**
25118
25877
  * Fetches roleright by role id
25119
25878
  * @summary Fetches roleright by role id
@@ -25255,6 +26014,37 @@ export const RolesApiAxiosParamCreator = function (configuration) {
25255
26014
  options: localVarRequestOptions,
25256
26015
  };
25257
26016
  }),
26017
+ /**
26018
+ * Fetches list of all roles
26019
+ * @summary Fetches list of all roles
26020
+ * @param {number} orgId Org ID
26021
+ * @param {*} [options] Override http request option.
26022
+ * @throws {RequiredError}
26023
+ */
26024
+ adminRolesOrgIdGet: (orgId_1, ...args_1) => __awaiter(this, [orgId_1, ...args_1], void 0, function* (orgId, options = {}) {
26025
+ // verify required parameter 'orgId' is not null or undefined
26026
+ assertParamExists('adminRolesOrgIdGet', 'orgId', orgId);
26027
+ const localVarPath = `/admin/roles/{OrgId}`
26028
+ .replace(`{${"OrgId"}}`, encodeURIComponent(String(orgId)));
26029
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26030
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26031
+ let baseOptions;
26032
+ if (configuration) {
26033
+ baseOptions = configuration.baseOptions;
26034
+ }
26035
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
26036
+ const localVarHeaderParameter = {};
26037
+ const localVarQueryParameter = {};
26038
+ // authentication BearerAuth required
26039
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
26040
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26041
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26042
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
26043
+ return {
26044
+ url: toPathString(localVarUrlObj),
26045
+ options: localVarRequestOptions,
26046
+ };
26047
+ }),
25258
26048
  /**
25259
26049
  * Fetches role by id
25260
26050
  * @summary Fetches role by id
@@ -25364,6 +26154,22 @@ export const RolesApiFp = function (configuration) {
25364
26154
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25365
26155
  });
25366
26156
  },
26157
+ /**
26158
+ * Fetches list of all roles
26159
+ * @summary Fetches list of all roles
26160
+ * @param {number} orgId Org ID
26161
+ * @param {*} [options] Override http request option.
26162
+ * @throws {RequiredError}
26163
+ */
26164
+ adminRolesOrgIdGet(orgId, options) {
26165
+ return __awaiter(this, void 0, void 0, function* () {
26166
+ var _a, _b, _c;
26167
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.adminRolesOrgIdGet(orgId, options);
26168
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
26169
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['RolesApi.adminRolesOrgIdGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
26170
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
26171
+ });
26172
+ },
25367
26173
  /**
25368
26174
  * Fetches role by id
25369
26175
  * @summary Fetches role by id
@@ -25427,6 +26233,16 @@ export const RolesApiFactory = function (configuration, basePath, axios) {
25427
26233
  adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options) {
25428
26234
  return localVarFp.adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(axios, basePath));
25429
26235
  },
26236
+ /**
26237
+ * Fetches list of all roles
26238
+ * @summary Fetches list of all roles
26239
+ * @param {number} orgId Org ID
26240
+ * @param {*} [options] Override http request option.
26241
+ * @throws {RequiredError}
26242
+ */
26243
+ adminRolesOrgIdGet(orgId, options) {
26244
+ return localVarFp.adminRolesOrgIdGet(orgId, options).then((request) => request(axios, basePath));
26245
+ },
25430
26246
  /**
25431
26247
  * Fetches role by id
25432
26248
  * @summary Fetches role by id
@@ -25480,6 +26296,17 @@ export class RolesApi extends BaseAPI {
25480
26296
  adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options) {
25481
26297
  return RolesApiFp(this.configuration).adminRolesIdPut(id, dataTypesCreateRoleRequestDto, options).then((request) => request(this.axios, this.basePath));
25482
26298
  }
26299
+ /**
26300
+ * Fetches list of all roles
26301
+ * @summary Fetches list of all roles
26302
+ * @param {number} orgId Org ID
26303
+ * @param {*} [options] Override http request option.
26304
+ * @throws {RequiredError}
26305
+ * @memberof RolesApi
26306
+ */
26307
+ adminRolesOrgIdGet(orgId, options) {
26308
+ return RolesApiFp(this.configuration).adminRolesOrgIdGet(orgId, options).then((request) => request(this.axios, this.basePath));
26309
+ }
25483
26310
  /**
25484
26311
  * Fetches role by id
25485
26312
  * @summary Fetches role by id
@@ -25705,6 +26532,48 @@ export const SearchApiAxiosParamCreator = function (configuration) {
25705
26532
  options: localVarRequestOptions,
25706
26533
  };
25707
26534
  }),
26535
+ /**
26536
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26537
+ * @summary Public Search API
26538
+ * @param {string} xStoreid Store ID
26539
+ * @param {string} xStoresecret Store Secret
26540
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26541
+ * @param {*} [options] Override http request option.
26542
+ * @throws {RequiredError}
26543
+ */
26544
+ v1SearchPost: (xStoreid_1, xStoresecret_1, dataTypesPublicSearchRequest_1, ...args_1) => __awaiter(this, [xStoreid_1, xStoresecret_1, dataTypesPublicSearchRequest_1, ...args_1], void 0, function* (xStoreid, xStoresecret, dataTypesPublicSearchRequest, options = {}) {
26545
+ // verify required parameter 'xStoreid' is not null or undefined
26546
+ assertParamExists('v1SearchPost', 'xStoreid', xStoreid);
26547
+ // verify required parameter 'xStoresecret' is not null or undefined
26548
+ assertParamExists('v1SearchPost', 'xStoresecret', xStoresecret);
26549
+ // verify required parameter 'dataTypesPublicSearchRequest' is not null or undefined
26550
+ assertParamExists('v1SearchPost', 'dataTypesPublicSearchRequest', dataTypesPublicSearchRequest);
26551
+ const localVarPath = `/v1/search`;
26552
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
26553
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
26554
+ let baseOptions;
26555
+ if (configuration) {
26556
+ baseOptions = configuration.baseOptions;
26557
+ }
26558
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
26559
+ const localVarHeaderParameter = {};
26560
+ const localVarQueryParameter = {};
26561
+ localVarHeaderParameter['Content-Type'] = 'application/json';
26562
+ if (xStoreid != null) {
26563
+ localVarHeaderParameter['x-storeid'] = String(xStoreid);
26564
+ }
26565
+ if (xStoresecret != null) {
26566
+ localVarHeaderParameter['x-storesecret'] = String(xStoresecret);
26567
+ }
26568
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
26569
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
26570
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
26571
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicSearchRequest, localVarRequestOptions, configuration);
26572
+ return {
26573
+ url: toPathString(localVarUrlObj),
26574
+ options: localVarRequestOptions,
26575
+ };
26576
+ }),
25708
26577
  };
25709
26578
  };
25710
26579
  /**
@@ -25814,6 +26683,24 @@ export const SearchApiFp = function (configuration) {
25814
26683
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25815
26684
  });
25816
26685
  },
26686
+ /**
26687
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26688
+ * @summary Public Search API
26689
+ * @param {string} xStoreid Store ID
26690
+ * @param {string} xStoresecret Store Secret
26691
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26692
+ * @param {*} [options] Override http request option.
26693
+ * @throws {RequiredError}
26694
+ */
26695
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26696
+ return __awaiter(this, void 0, void 0, function* () {
26697
+ var _a, _b, _c;
26698
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options);
26699
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
26700
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SearchApi.v1SearchPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
26701
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
26702
+ });
26703
+ },
25817
26704
  };
25818
26705
  };
25819
26706
  /**
@@ -25887,6 +26774,18 @@ export const SearchApiFactory = function (configuration, basePath, axios) {
25887
26774
  v1IndexIndexnameDefaultsGet(indexname, options) {
25888
26775
  return localVarFp.v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(axios, basePath));
25889
26776
  },
26777
+ /**
26778
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26779
+ * @summary Public Search API
26780
+ * @param {string} xStoreid Store ID
26781
+ * @param {string} xStoresecret Store Secret
26782
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26783
+ * @param {*} [options] Override http request option.
26784
+ * @throws {RequiredError}
26785
+ */
26786
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26787
+ return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(axios, basePath));
26788
+ },
25890
26789
  };
25891
26790
  };
25892
26791
  /**
@@ -25966,6 +26865,19 @@ export class SearchApi extends BaseAPI {
25966
26865
  v1IndexIndexnameDefaultsGet(indexname, options) {
25967
26866
  return SearchApiFp(this.configuration).v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(this.axios, this.basePath));
25968
26867
  }
26868
+ /**
26869
+ * Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
26870
+ * @summary Public Search API
26871
+ * @param {string} xStoreid Store ID
26872
+ * @param {string} xStoresecret Store Secret
26873
+ * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search request with optional stopword_sets and synonym_sets for granular control
26874
+ * @param {*} [options] Override http request option.
26875
+ * @throws {RequiredError}
26876
+ * @memberof SearchApi
26877
+ */
26878
+ v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options) {
26879
+ return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, options).then((request) => request(this.axios, this.basePath));
26880
+ }
25969
26881
  }
25970
26882
  /**
25971
26883
  * StopwordsApi - axios parameter creator
@@ -29174,6 +30086,33 @@ export const SubscriptionsApiAxiosParamCreator = function (configuration) {
29174
30086
  options: localVarRequestOptions,
29175
30087
  };
29176
30088
  }),
30089
+ /**
30090
+ * Fetches list of all Subscription
30091
+ * @summary Fetches list of all Subscription
30092
+ * @param {*} [options] Override http request option.
30093
+ * @throws {RequiredError}
30094
+ */
30095
+ miscSubscriptionsGet: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
30096
+ const localVarPath = `/misc/subscriptions`;
30097
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
30098
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
30099
+ let baseOptions;
30100
+ if (configuration) {
30101
+ baseOptions = configuration.baseOptions;
30102
+ }
30103
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
30104
+ const localVarHeaderParameter = {};
30105
+ const localVarQueryParameter = {};
30106
+ // authentication BearerAuth required
30107
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
30108
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
30109
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
30110
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
30111
+ return {
30112
+ url: toPathString(localVarUrlObj),
30113
+ options: localVarRequestOptions,
30114
+ };
30115
+ }),
29177
30116
  /**
29178
30117
  * Adds a new Subscription to the system
29179
30118
  * @summary Creates a new Subscription
@@ -29312,6 +30251,21 @@ export const SubscriptionsApiFp = function (configuration) {
29312
30251
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
29313
30252
  });
29314
30253
  },
30254
+ /**
30255
+ * Fetches list of all Subscription
30256
+ * @summary Fetches list of all Subscription
30257
+ * @param {*} [options] Override http request option.
30258
+ * @throws {RequiredError}
30259
+ */
30260
+ miscSubscriptionsGet(options) {
30261
+ return __awaiter(this, void 0, void 0, function* () {
30262
+ var _a, _b, _c;
30263
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.miscSubscriptionsGet(options);
30264
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
30265
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SubscriptionsApi.miscSubscriptionsGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
30266
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
30267
+ });
30268
+ },
29315
30269
  /**
29316
30270
  * Adds a new Subscription to the system
29317
30271
  * @summary Creates a new Subscription
@@ -29395,6 +30349,15 @@ export const SubscriptionsApiFactory = function (configuration, basePath, axios)
29395
30349
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options) {
29396
30350
  return localVarFp.adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(axios, basePath));
29397
30351
  },
30352
+ /**
30353
+ * Fetches list of all Subscription
30354
+ * @summary Fetches list of all Subscription
30355
+ * @param {*} [options] Override http request option.
30356
+ * @throws {RequiredError}
30357
+ */
30358
+ miscSubscriptionsGet(options) {
30359
+ return localVarFp.miscSubscriptionsGet(options).then((request) => request(axios, basePath));
30360
+ },
29398
30361
  /**
29399
30362
  * Adds a new Subscription to the system
29400
30363
  * @summary Creates a new Subscription
@@ -29470,6 +30433,16 @@ export class SubscriptionsApi extends BaseAPI {
29470
30433
  adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options) {
29471
30434
  return SubscriptionsApiFp(this.configuration).adminSubscriptionsUpdatestatusSubscriptionIDStatusPut(subscriptionID, status, options).then((request) => request(this.axios, this.basePath));
29472
30435
  }
30436
+ /**
30437
+ * Fetches list of all Subscription
30438
+ * @summary Fetches list of all Subscription
30439
+ * @param {*} [options] Override http request option.
30440
+ * @throws {RequiredError}
30441
+ * @memberof SubscriptionsApi
30442
+ */
30443
+ miscSubscriptionsGet(options) {
30444
+ return SubscriptionsApiFp(this.configuration).miscSubscriptionsGet(options).then((request) => request(this.axios, this.basePath));
30445
+ }
29473
30446
  /**
29474
30447
  * Adds a new Subscription to the system
29475
30448
  * @summary Creates a new Subscription