ch-admin-api-client-typescript 5.88.31 → 5.88.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { SearchIndexType } from '../models';
|
|
15
16
|
import { UpdateContentTextOnlyValueDomains } from '../models';
|
|
16
17
|
/**
|
|
17
18
|
* DevSupportsApi - axios parameter creator
|
|
@@ -41,6 +42,15 @@ export declare const DevSupportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
41
42
|
* @throws {RequiredError}
|
|
42
43
|
*/
|
|
43
44
|
apiV1DevsupportsGeneratemissingfaviconsPost: (webAppIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
48
|
+
* @param {Array<string>} [webAppIds]
|
|
49
|
+
* @param {boolean} [dryRun]
|
|
50
|
+
* @param {*} [options] Override http request option.
|
|
51
|
+
* @throws {RequiredError}
|
|
52
|
+
*/
|
|
53
|
+
apiV1DevsupportsGeneratemissingogimagesPost: (webAppIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
54
|
/**
|
|
45
55
|
*
|
|
46
56
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -49,6 +59,16 @@ export declare const DevSupportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
49
59
|
* @throws {RequiredError}
|
|
50
60
|
*/
|
|
51
61
|
apiV1DevsupportsGeneratesitemapbatchPost: (overwrite?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
65
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
66
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
67
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
apiV1DevsupportsIndexDocumentsDelete: (indexName?: SearchIndexType, documentIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
72
|
/**
|
|
53
73
|
*
|
|
54
74
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -86,6 +106,15 @@ export declare const DevSupportsApiFp: (configuration?: Configuration) => {
|
|
|
86
106
|
* @throws {RequiredError}
|
|
87
107
|
*/
|
|
88
108
|
apiV1DevsupportsGeneratemissingfaviconsPost(webAppIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
112
|
+
* @param {Array<string>} [webAppIds]
|
|
113
|
+
* @param {boolean} [dryRun]
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
apiV1DevsupportsGeneratemissingogimagesPost(webAppIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
89
118
|
/**
|
|
90
119
|
*
|
|
91
120
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -94,6 +123,16 @@ export declare const DevSupportsApiFp: (configuration?: Configuration) => {
|
|
|
94
123
|
* @throws {RequiredError}
|
|
95
124
|
*/
|
|
96
125
|
apiV1DevsupportsGeneratesitemapbatchPost(overwrite?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
129
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
130
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
131
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
apiV1DevsupportsIndexDocumentsDelete(indexName?: SearchIndexType, documentIds?: Array<string>, dryRun?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
97
136
|
/**
|
|
98
137
|
*
|
|
99
138
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -131,6 +170,15 @@ export declare const DevSupportsApiFactory: (configuration?: Configuration, base
|
|
|
131
170
|
* @throws {RequiredError}
|
|
132
171
|
*/
|
|
133
172
|
apiV1DevsupportsGeneratemissingfaviconsPost(webAppIds?: Array<string>, dryRun?: boolean, options?: any): AxiosPromise<string>;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
176
|
+
* @param {Array<string>} [webAppIds]
|
|
177
|
+
* @param {boolean} [dryRun]
|
|
178
|
+
* @param {*} [options] Override http request option.
|
|
179
|
+
* @throws {RequiredError}
|
|
180
|
+
*/
|
|
181
|
+
apiV1DevsupportsGeneratemissingogimagesPost(webAppIds?: Array<string>, dryRun?: boolean, options?: any): AxiosPromise<string>;
|
|
134
182
|
/**
|
|
135
183
|
*
|
|
136
184
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -139,6 +187,16 @@ export declare const DevSupportsApiFactory: (configuration?: Configuration, base
|
|
|
139
187
|
* @throws {RequiredError}
|
|
140
188
|
*/
|
|
141
189
|
apiV1DevsupportsGeneratesitemapbatchPost(overwrite?: boolean, options?: any): AxiosPromise<void>;
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
193
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
194
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
195
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
apiV1DevsupportsIndexDocumentsDelete(indexName?: SearchIndexType, documentIds?: Array<string>, dryRun?: boolean, options?: any): AxiosPromise<void>;
|
|
142
200
|
/**
|
|
143
201
|
*
|
|
144
202
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -167,6 +225,25 @@ export interface DevSupportsApiApiV1DevsupportsGeneratemissingfaviconsPostReques
|
|
|
167
225
|
*/
|
|
168
226
|
readonly dryRun?: boolean;
|
|
169
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* Request parameters for apiV1DevsupportsGeneratemissingogimagesPost operation in DevSupportsApi.
|
|
230
|
+
* @export
|
|
231
|
+
* @interface DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPostRequest
|
|
232
|
+
*/
|
|
233
|
+
export interface DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPostRequest {
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* @type {Array<string>}
|
|
237
|
+
* @memberof DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPost
|
|
238
|
+
*/
|
|
239
|
+
readonly webAppIds?: Array<string>;
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @type {boolean}
|
|
243
|
+
* @memberof DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPost
|
|
244
|
+
*/
|
|
245
|
+
readonly dryRun?: boolean;
|
|
246
|
+
}
|
|
170
247
|
/**
|
|
171
248
|
* Request parameters for apiV1DevsupportsGeneratesitemapbatchPost operation in DevSupportsApi.
|
|
172
249
|
* @export
|
|
@@ -180,6 +257,31 @@ export interface DevSupportsApiApiV1DevsupportsGeneratesitemapbatchPostRequest {
|
|
|
180
257
|
*/
|
|
181
258
|
readonly overwrite?: boolean;
|
|
182
259
|
}
|
|
260
|
+
/**
|
|
261
|
+
* Request parameters for apiV1DevsupportsIndexDocumentsDelete operation in DevSupportsApi.
|
|
262
|
+
* @export
|
|
263
|
+
* @interface DevSupportsApiApiV1DevsupportsIndexDocumentsDeleteRequest
|
|
264
|
+
*/
|
|
265
|
+
export interface DevSupportsApiApiV1DevsupportsIndexDocumentsDeleteRequest {
|
|
266
|
+
/**
|
|
267
|
+
* The search index type to target
|
|
268
|
+
* @type {SearchIndexType}
|
|
269
|
+
* @memberof DevSupportsApiApiV1DevsupportsIndexDocumentsDelete
|
|
270
|
+
*/
|
|
271
|
+
readonly indexName?: SearchIndexType;
|
|
272
|
+
/**
|
|
273
|
+
* The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
274
|
+
* @type {Array<string>}
|
|
275
|
+
* @memberof DevSupportsApiApiV1DevsupportsIndexDocumentsDelete
|
|
276
|
+
*/
|
|
277
|
+
readonly documentIds?: Array<string>;
|
|
278
|
+
/**
|
|
279
|
+
* If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
280
|
+
* @type {boolean}
|
|
281
|
+
* @memberof DevSupportsApiApiV1DevsupportsIndexDocumentsDelete
|
|
282
|
+
*/
|
|
283
|
+
readonly dryRun?: boolean;
|
|
284
|
+
}
|
|
183
285
|
/**
|
|
184
286
|
* Request parameters for apiV1DevsupportsUpdatecontenttextonlyvaluesPost operation in DevSupportsApi.
|
|
185
287
|
* @export
|
|
@@ -225,6 +327,15 @@ export declare class DevSupportsApi extends BaseAPI {
|
|
|
225
327
|
* @memberof DevSupportsApi
|
|
226
328
|
*/
|
|
227
329
|
apiV1DevsupportsGeneratemissingfaviconsPost(requestParameters?: DevSupportsApiApiV1DevsupportsGeneratemissingfaviconsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
333
|
+
* @param {DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPostRequest} requestParameters Request parameters.
|
|
334
|
+
* @param {*} [options] Override http request option.
|
|
335
|
+
* @throws {RequiredError}
|
|
336
|
+
* @memberof DevSupportsApi
|
|
337
|
+
*/
|
|
338
|
+
apiV1DevsupportsGeneratemissingogimagesPost(requestParameters?: DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
228
339
|
/**
|
|
229
340
|
*
|
|
230
341
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -234,6 +345,15 @@ export declare class DevSupportsApi extends BaseAPI {
|
|
|
234
345
|
* @memberof DevSupportsApi
|
|
235
346
|
*/
|
|
236
347
|
apiV1DevsupportsGeneratesitemapbatchPost(requestParameters?: DevSupportsApiApiV1DevsupportsGeneratesitemapbatchPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
351
|
+
* @param {DevSupportsApiApiV1DevsupportsIndexDocumentsDeleteRequest} requestParameters Request parameters.
|
|
352
|
+
* @param {*} [options] Override http request option.
|
|
353
|
+
* @throws {RequiredError}
|
|
354
|
+
* @memberof DevSupportsApi
|
|
355
|
+
*/
|
|
356
|
+
apiV1DevsupportsIndexDocumentsDelete(requestParameters?: DevSupportsApiApiV1DevsupportsIndexDocumentsDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
237
357
|
/**
|
|
238
358
|
*
|
|
239
359
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dev-supports-api.d.ts","sourceRoot":"","sources":["../../src/api/dev-supports-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"dev-supports-api.d.ts","sourceRoot":"","sources":["../../src/api/dev-supports-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -238,6 +238,57 @@ var DevSupportsApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
});
|
|
239
239
|
});
|
|
240
240
|
},
|
|
241
|
+
/**
|
|
242
|
+
*
|
|
243
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
244
|
+
* @param {Array<string>} [webAppIds]
|
|
245
|
+
* @param {boolean} [dryRun]
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
apiV1DevsupportsGeneratemissingogimagesPost: function (webAppIds_1, dryRun_1) {
|
|
250
|
+
var args_1 = [];
|
|
251
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
252
|
+
args_1[_i - 2] = arguments[_i];
|
|
253
|
+
}
|
|
254
|
+
return __awaiter(_this, __spreadArray([webAppIds_1, dryRun_1], args_1, true), void 0, function (webAppIds, dryRun, options) {
|
|
255
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
256
|
+
if (options === void 0) { options = {}; }
|
|
257
|
+
return __generator(this, function (_a) {
|
|
258
|
+
switch (_a.label) {
|
|
259
|
+
case 0:
|
|
260
|
+
localVarPath = "/api/v1/devsupports/generatemissingogimages";
|
|
261
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
262
|
+
if (configuration) {
|
|
263
|
+
baseOptions = configuration.baseOptions;
|
|
264
|
+
}
|
|
265
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
266
|
+
localVarHeaderParameter = {};
|
|
267
|
+
localVarQueryParameter = {};
|
|
268
|
+
// authentication oauth2 required
|
|
269
|
+
// oauth required
|
|
270
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
271
|
+
case 1:
|
|
272
|
+
// authentication oauth2 required
|
|
273
|
+
// oauth required
|
|
274
|
+
_a.sent();
|
|
275
|
+
if (webAppIds) {
|
|
276
|
+
localVarQueryParameter['webAppIds'] = webAppIds;
|
|
277
|
+
}
|
|
278
|
+
if (dryRun !== undefined) {
|
|
279
|
+
localVarQueryParameter['dryRun'] = dryRun;
|
|
280
|
+
}
|
|
281
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
282
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
283
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
284
|
+
return [2 /*return*/, {
|
|
285
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
286
|
+
options: localVarRequestOptions,
|
|
287
|
+
}];
|
|
288
|
+
}
|
|
289
|
+
});
|
|
290
|
+
});
|
|
291
|
+
},
|
|
241
292
|
/**
|
|
242
293
|
*
|
|
243
294
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -285,6 +336,61 @@ var DevSupportsApiAxiosParamCreator = function (configuration) {
|
|
|
285
336
|
});
|
|
286
337
|
});
|
|
287
338
|
},
|
|
339
|
+
/**
|
|
340
|
+
*
|
|
341
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
342
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
343
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
344
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
345
|
+
* @param {*} [options] Override http request option.
|
|
346
|
+
* @throws {RequiredError}
|
|
347
|
+
*/
|
|
348
|
+
apiV1DevsupportsIndexDocumentsDelete: function (indexName_1, documentIds_1, dryRun_1) {
|
|
349
|
+
var args_1 = [];
|
|
350
|
+
for (var _i = 3; _i < arguments.length; _i++) {
|
|
351
|
+
args_1[_i - 3] = arguments[_i];
|
|
352
|
+
}
|
|
353
|
+
return __awaiter(_this, __spreadArray([indexName_1, documentIds_1, dryRun_1], args_1, true), void 0, function (indexName, documentIds, dryRun, options) {
|
|
354
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
355
|
+
if (options === void 0) { options = {}; }
|
|
356
|
+
return __generator(this, function (_a) {
|
|
357
|
+
switch (_a.label) {
|
|
358
|
+
case 0:
|
|
359
|
+
localVarPath = "/api/v1/devsupports/index-documents";
|
|
360
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
361
|
+
if (configuration) {
|
|
362
|
+
baseOptions = configuration.baseOptions;
|
|
363
|
+
}
|
|
364
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
|
|
365
|
+
localVarHeaderParameter = {};
|
|
366
|
+
localVarQueryParameter = {};
|
|
367
|
+
// authentication oauth2 required
|
|
368
|
+
// oauth required
|
|
369
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
370
|
+
case 1:
|
|
371
|
+
// authentication oauth2 required
|
|
372
|
+
// oauth required
|
|
373
|
+
_a.sent();
|
|
374
|
+
if (indexName !== undefined) {
|
|
375
|
+
localVarQueryParameter['indexName'] = indexName;
|
|
376
|
+
}
|
|
377
|
+
if (documentIds) {
|
|
378
|
+
localVarQueryParameter['documentIds'] = documentIds;
|
|
379
|
+
}
|
|
380
|
+
if (dryRun !== undefined) {
|
|
381
|
+
localVarQueryParameter['dryRun'] = dryRun;
|
|
382
|
+
}
|
|
383
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
384
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
385
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
386
|
+
return [2 /*return*/, {
|
|
387
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
388
|
+
options: localVarRequestOptions,
|
|
389
|
+
}];
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
});
|
|
393
|
+
},
|
|
288
394
|
/**
|
|
289
395
|
*
|
|
290
396
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -401,6 +507,27 @@ var DevSupportsApiFp = function (configuration) {
|
|
|
401
507
|
});
|
|
402
508
|
});
|
|
403
509
|
},
|
|
510
|
+
/**
|
|
511
|
+
*
|
|
512
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
513
|
+
* @param {Array<string>} [webAppIds]
|
|
514
|
+
* @param {boolean} [dryRun]
|
|
515
|
+
* @param {*} [options] Override http request option.
|
|
516
|
+
* @throws {RequiredError}
|
|
517
|
+
*/
|
|
518
|
+
apiV1DevsupportsGeneratemissingogimagesPost: function (webAppIds, dryRun, options) {
|
|
519
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
520
|
+
var localVarAxiosArgs;
|
|
521
|
+
return __generator(this, function (_a) {
|
|
522
|
+
switch (_a.label) {
|
|
523
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DevsupportsGeneratemissingogimagesPost(webAppIds, dryRun, options)];
|
|
524
|
+
case 1:
|
|
525
|
+
localVarAxiosArgs = _a.sent();
|
|
526
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
527
|
+
}
|
|
528
|
+
});
|
|
529
|
+
});
|
|
530
|
+
},
|
|
404
531
|
/**
|
|
405
532
|
*
|
|
406
533
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -421,6 +548,28 @@ var DevSupportsApiFp = function (configuration) {
|
|
|
421
548
|
});
|
|
422
549
|
});
|
|
423
550
|
},
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
554
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
555
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
556
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
557
|
+
* @param {*} [options] Override http request option.
|
|
558
|
+
* @throws {RequiredError}
|
|
559
|
+
*/
|
|
560
|
+
apiV1DevsupportsIndexDocumentsDelete: function (indexName, documentIds, dryRun, options) {
|
|
561
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
562
|
+
var localVarAxiosArgs;
|
|
563
|
+
return __generator(this, function (_a) {
|
|
564
|
+
switch (_a.label) {
|
|
565
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1DevsupportsIndexDocumentsDelete(indexName, documentIds, dryRun, options)];
|
|
566
|
+
case 1:
|
|
567
|
+
localVarAxiosArgs = _a.sent();
|
|
568
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
569
|
+
}
|
|
570
|
+
});
|
|
571
|
+
});
|
|
572
|
+
},
|
|
424
573
|
/**
|
|
425
574
|
*
|
|
426
575
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -480,6 +629,17 @@ var DevSupportsApiFactory = function (configuration, basePath, axios) {
|
|
|
480
629
|
apiV1DevsupportsGeneratemissingfaviconsPost: function (webAppIds, dryRun, options) {
|
|
481
630
|
return localVarFp.apiV1DevsupportsGeneratemissingfaviconsPost(webAppIds, dryRun, options).then(function (request) { return request(axios, basePath); });
|
|
482
631
|
},
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
635
|
+
* @param {Array<string>} [webAppIds]
|
|
636
|
+
* @param {boolean} [dryRun]
|
|
637
|
+
* @param {*} [options] Override http request option.
|
|
638
|
+
* @throws {RequiredError}
|
|
639
|
+
*/
|
|
640
|
+
apiV1DevsupportsGeneratemissingogimagesPost: function (webAppIds, dryRun, options) {
|
|
641
|
+
return localVarFp.apiV1DevsupportsGeneratemissingogimagesPost(webAppIds, dryRun, options).then(function (request) { return request(axios, basePath); });
|
|
642
|
+
},
|
|
483
643
|
/**
|
|
484
644
|
*
|
|
485
645
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -490,6 +650,18 @@ var DevSupportsApiFactory = function (configuration, basePath, axios) {
|
|
|
490
650
|
apiV1DevsupportsGeneratesitemapbatchPost: function (overwrite, options) {
|
|
491
651
|
return localVarFp.apiV1DevsupportsGeneratesitemapbatchPost(overwrite, options).then(function (request) { return request(axios, basePath); });
|
|
492
652
|
},
|
|
653
|
+
/**
|
|
654
|
+
*
|
|
655
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
656
|
+
* @param {SearchIndexType} [indexName] The search index type to target
|
|
657
|
+
* @param {Array<string>} [documentIds] The document IDs to delete (supports multiple: ?documentIds=id1&documentIds=id2)
|
|
658
|
+
* @param {boolean} [dryRun] If true, returns the list of document IDs that would be deleted without actually deleting them
|
|
659
|
+
* @param {*} [options] Override http request option.
|
|
660
|
+
* @throws {RequiredError}
|
|
661
|
+
*/
|
|
662
|
+
apiV1DevsupportsIndexDocumentsDelete: function (indexName, documentIds, dryRun, options) {
|
|
663
|
+
return localVarFp.apiV1DevsupportsIndexDocumentsDelete(indexName, documentIds, dryRun, options).then(function (request) { return request(axios, basePath); });
|
|
664
|
+
},
|
|
493
665
|
/**
|
|
494
666
|
*
|
|
495
667
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|
|
@@ -549,6 +721,19 @@ var DevSupportsApi = /** @class */ (function (_super) {
|
|
|
549
721
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
550
722
|
return (0, exports.DevSupportsApiFp)(this.configuration).apiV1DevsupportsGeneratemissingfaviconsPost(requestParameters.webAppIds, requestParameters.dryRun, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
551
723
|
};
|
|
724
|
+
/**
|
|
725
|
+
*
|
|
726
|
+
* @summary Generate missing OG images for all webapps (Auth policies: RequireAdministratorRole)
|
|
727
|
+
* @param {DevSupportsApiApiV1DevsupportsGeneratemissingogimagesPostRequest} requestParameters Request parameters.
|
|
728
|
+
* @param {*} [options] Override http request option.
|
|
729
|
+
* @throws {RequiredError}
|
|
730
|
+
* @memberof DevSupportsApi
|
|
731
|
+
*/
|
|
732
|
+
DevSupportsApi.prototype.apiV1DevsupportsGeneratemissingogimagesPost = function (requestParameters, options) {
|
|
733
|
+
var _this = this;
|
|
734
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
735
|
+
return (0, exports.DevSupportsApiFp)(this.configuration).apiV1DevsupportsGeneratemissingogimagesPost(requestParameters.webAppIds, requestParameters.dryRun, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
736
|
+
};
|
|
552
737
|
/**
|
|
553
738
|
*
|
|
554
739
|
* @summary Generate sitemap blob items (Auth policies: RequireAdministratorRole)
|
|
@@ -562,6 +747,19 @@ var DevSupportsApi = /** @class */ (function (_super) {
|
|
|
562
747
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
563
748
|
return (0, exports.DevSupportsApiFp)(this.configuration).apiV1DevsupportsGeneratesitemapbatchPost(requestParameters.overwrite, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
564
749
|
};
|
|
750
|
+
/**
|
|
751
|
+
*
|
|
752
|
+
* @summary Delete documents from an Azure Search index by document IDs (Auth policies: RequireAdministratorRole)
|
|
753
|
+
* @param {DevSupportsApiApiV1DevsupportsIndexDocumentsDeleteRequest} requestParameters Request parameters.
|
|
754
|
+
* @param {*} [options] Override http request option.
|
|
755
|
+
* @throws {RequiredError}
|
|
756
|
+
* @memberof DevSupportsApi
|
|
757
|
+
*/
|
|
758
|
+
DevSupportsApi.prototype.apiV1DevsupportsIndexDocumentsDelete = function (requestParameters, options) {
|
|
759
|
+
var _this = this;
|
|
760
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
761
|
+
return (0, exports.DevSupportsApiFp)(this.configuration).apiV1DevsupportsIndexDocumentsDelete(requestParameters.indexName, requestParameters.documentIds, requestParameters.dryRun, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
762
|
+
};
|
|
565
763
|
/**
|
|
566
764
|
*
|
|
567
765
|
* @summary Update contentTextOnly values (Auth policies: RequireAdministratorRole)
|