@qlik/api 1.26.0 → 1.27.0
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/api-keys.d.ts +11 -11
- package/api-keys.js +2 -2
- package/apps.d.ts +68 -68
- package/apps.js +2 -2
- package/audits.d.ts +36 -14
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +36 -36
- package/automations.js +2 -2
- package/brands.d.ts +23 -23
- package/brands.js +2 -2
- package/chunks/{VX3MQBE7.js → 4K3CNR7C.js} +1 -1
- package/chunks/{7SNOQCIQ.js → 55SZVSAG.js} +1 -1
- package/chunks/{HGRF5TX3.js → EOGHK2R4.js} +1 -1
- package/chunks/{UV5COPU3.js → V3TZ54UE.js} +3 -3
- package/chunks/{AMO5NATA.js → WY7IOA3Q.js} +2 -2
- package/collections.d.ts +22 -22
- package/collections.js +2 -2
- package/csp-origins.d.ts +12 -12
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +10 -10
- package/data-assets.js +2 -2
- package/data-connections.d.ts +18 -18
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +10 -10
- package/data-credentials.js +2 -2
- package/data-files.d.ts +24 -24
- package/data-files.js +2 -2
- package/docs/authentication.md +1 -1
- package/extensions.d.ts +11 -11
- package/extensions.js +2 -2
- package/glossaries.d.ts +48 -48
- package/glossaries.js +2 -2
- package/groups.d.ts +16 -16
- package/groups.js +2 -2
- package/identity-providers.d.ts +15 -15
- package/identity-providers.js +2 -2
- package/index.js +4 -4
- package/items.d.ts +16 -16
- package/items.js +2 -2
- package/licenses.d.ts +18 -18
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +1 -1
- package/qix.js +2 -2
- package/quotas.d.ts +4 -4
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +10 -10
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +8 -8
- package/reloads.js +2 -2
- package/reports.d.ts +4 -4
- package/reports.js +2 -2
- package/roles.d.ts +10 -10
- package/roles.js +2 -2
- package/spaces.d.ts +59 -25
- package/spaces.js +2 -2
- package/temp-contents.d.ts +6 -6
- package/temp-contents.js +2 -2
- package/tenants.d.ts +9 -9
- package/tenants.js +2 -2
- package/themes.d.ts +11 -11
- package/themes.js +2 -2
- package/transports.d.ts +17 -17
- package/transports.js +2 -2
- package/users.d.ts +19 -19
- package/users.js +2 -2
- package/web-integrations.d.ts +9 -9
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +12 -12
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +20 -20
- package/webhooks.js +2 -2
package/api-keys.d.ts
CHANGED
|
@@ -160,14 +160,14 @@ declare const getApiKeys: (query: {
|
|
|
160
160
|
type GetApiKeysHttpResponse = {
|
|
161
161
|
data: ApiKeyPage;
|
|
162
162
|
headers: Headers;
|
|
163
|
-
status:
|
|
163
|
+
status: 200;
|
|
164
164
|
prev?: (options?: ApiCallOptions) => Promise<GetApiKeysHttpResponse>;
|
|
165
165
|
next?: (options?: ApiCallOptions) => Promise<GetApiKeysHttpResponse>;
|
|
166
166
|
};
|
|
167
167
|
type GetApiKeysHttpError = {
|
|
168
168
|
data: Errors;
|
|
169
169
|
headers: Headers;
|
|
170
|
-
status:
|
|
170
|
+
status: 400 | 403 | 429;
|
|
171
171
|
};
|
|
172
172
|
/**
|
|
173
173
|
* Creates an API key, either for a user, or for configuring SCIM for a compatible Identity Provider.
|
|
@@ -180,7 +180,7 @@ declare const createApiKey: (body: ApiKeyBody, options?: ApiCallOptions) => Prom
|
|
|
180
180
|
type CreateApiKeyHttpResponse = {
|
|
181
181
|
data: ApiKeyWithToken;
|
|
182
182
|
headers: Headers;
|
|
183
|
-
status:
|
|
183
|
+
status: 201;
|
|
184
184
|
};
|
|
185
185
|
type CreateApiKeyHttpError = {
|
|
186
186
|
data: Errors;
|
|
@@ -197,7 +197,7 @@ declare const getApiKeysConfig: (tenantId: string, options?: ApiCallOptions) =>
|
|
|
197
197
|
type GetApiKeysConfigHttpResponse = {
|
|
198
198
|
data: ApiKeysConfig;
|
|
199
199
|
headers: Headers;
|
|
200
|
-
status:
|
|
200
|
+
status: 200;
|
|
201
201
|
};
|
|
202
202
|
type GetApiKeysConfigHttpError = {
|
|
203
203
|
data: Errors;
|
|
@@ -215,12 +215,12 @@ declare const patchApiKeysConfig: (tenantId: string, body: ApiKeysConfigPatchSch
|
|
|
215
215
|
type PatchApiKeysConfigHttpResponse = {
|
|
216
216
|
data: void;
|
|
217
217
|
headers: Headers;
|
|
218
|
-
status:
|
|
218
|
+
status: 204;
|
|
219
219
|
};
|
|
220
220
|
type PatchApiKeysConfigHttpError = {
|
|
221
221
|
data: Errors;
|
|
222
222
|
headers: Headers;
|
|
223
|
-
status:
|
|
223
|
+
status: 400 | 403 | 404 | 429;
|
|
224
224
|
};
|
|
225
225
|
/**
|
|
226
226
|
* Deletes or revokes an API key for a given API key ID. When the owner of the API key sends the request, the key will be deleted and removed from the tenant. When a user assigned the `TenantAdmin` role sends the request, the key will be disabled and marked as revoked.
|
|
@@ -232,12 +232,12 @@ declare const deleteApiKey: (id: string, options?: ApiCallOptions) => Promise<De
|
|
|
232
232
|
type DeleteApiKeyHttpResponse = {
|
|
233
233
|
data: void;
|
|
234
234
|
headers: Headers;
|
|
235
|
-
status:
|
|
235
|
+
status: 204;
|
|
236
236
|
};
|
|
237
237
|
type DeleteApiKeyHttpError = {
|
|
238
238
|
data: Errors;
|
|
239
239
|
headers: Headers;
|
|
240
|
-
status:
|
|
240
|
+
status: 403 | 404 | 429;
|
|
241
241
|
};
|
|
242
242
|
/**
|
|
243
243
|
* Returns the API key for a given API key ID.
|
|
@@ -249,7 +249,7 @@ declare const getApiKey: (id: string, options?: ApiCallOptions) => Promise<GetAp
|
|
|
249
249
|
type GetApiKeyHttpResponse = {
|
|
250
250
|
data: ApiKey;
|
|
251
251
|
headers: Headers;
|
|
252
|
-
status:
|
|
252
|
+
status: 200;
|
|
253
253
|
};
|
|
254
254
|
type GetApiKeyHttpError = {
|
|
255
255
|
data: Errors;
|
|
@@ -267,12 +267,12 @@ declare const patchApiKey: (id: string, body: ApiKeysPatchSchema, options?: ApiC
|
|
|
267
267
|
type PatchApiKeyHttpResponse = {
|
|
268
268
|
data: void;
|
|
269
269
|
headers: Headers;
|
|
270
|
-
status:
|
|
270
|
+
status: 204;
|
|
271
271
|
};
|
|
272
272
|
type PatchApiKeyHttpError = {
|
|
273
273
|
data: Errors;
|
|
274
274
|
headers: Headers;
|
|
275
|
-
status:
|
|
275
|
+
status: 400 | 403 | 404 | 429;
|
|
276
276
|
};
|
|
277
277
|
/**
|
|
278
278
|
* Clears the cache for api-keys api requests.
|
package/api-keys.js
CHANGED
package/apps.d.ts
CHANGED
|
@@ -1236,7 +1236,7 @@ declare const createApp: (body: CreateApp, options?: ApiCallOptions) => Promise<
|
|
|
1236
1236
|
type CreateAppHttpResponse = {
|
|
1237
1237
|
data: NxApp;
|
|
1238
1238
|
headers: Headers;
|
|
1239
|
-
status:
|
|
1239
|
+
status: 200;
|
|
1240
1240
|
};
|
|
1241
1241
|
type CreateAppHttpError = {
|
|
1242
1242
|
data: unknown;
|
|
@@ -1260,12 +1260,12 @@ declare const getAppEvaluationComparison: (baseid: string, comparisonid: string,
|
|
|
1260
1260
|
type GetAppEvaluationComparisonHttpResponse = {
|
|
1261
1261
|
data: Comparison;
|
|
1262
1262
|
headers: Headers;
|
|
1263
|
-
status:
|
|
1263
|
+
status: 200;
|
|
1264
1264
|
};
|
|
1265
1265
|
type GetAppEvaluationComparisonHttpError = {
|
|
1266
1266
|
data: EvaluatorError;
|
|
1267
1267
|
headers: Headers;
|
|
1268
|
-
status:
|
|
1268
|
+
status: 404 | 500;
|
|
1269
1269
|
};
|
|
1270
1270
|
/**
|
|
1271
1271
|
* Accepts two evaluation ids and downloads a log, in XML format, denoting the differences between the two.
|
|
@@ -1278,12 +1278,12 @@ declare const getAppEvaluationComparisonXml: (baseid: string, comparisonid: stri
|
|
|
1278
1278
|
type GetAppEvaluationComparisonXmlHttpResponse = {
|
|
1279
1279
|
data: Comparison;
|
|
1280
1280
|
headers: Headers;
|
|
1281
|
-
status:
|
|
1281
|
+
status: 200;
|
|
1282
1282
|
};
|
|
1283
1283
|
type GetAppEvaluationComparisonXmlHttpError = {
|
|
1284
1284
|
data: EvaluatorError;
|
|
1285
1285
|
headers: Headers;
|
|
1286
|
-
status:
|
|
1286
|
+
status: 404 | 500;
|
|
1287
1287
|
};
|
|
1288
1288
|
/**
|
|
1289
1289
|
* Find an evaluation by a specific id.
|
|
@@ -1301,12 +1301,12 @@ declare const getAppEvaluation: (id: string, query: {
|
|
|
1301
1301
|
type GetAppEvaluationHttpResponse = {
|
|
1302
1302
|
data: Evaluation;
|
|
1303
1303
|
headers: Headers;
|
|
1304
|
-
status:
|
|
1304
|
+
status: 200;
|
|
1305
1305
|
};
|
|
1306
1306
|
type GetAppEvaluationHttpError = {
|
|
1307
1307
|
data: EvaluatorError;
|
|
1308
1308
|
headers: Headers;
|
|
1309
|
-
status:
|
|
1309
|
+
status: 404 | 500;
|
|
1310
1310
|
};
|
|
1311
1311
|
/**
|
|
1312
1312
|
* Find and download an evaluation log by a specific evaluation id.
|
|
@@ -1318,12 +1318,12 @@ declare const getAppEvaluationXml: (id: string, options?: ApiCallOptions) => Pro
|
|
|
1318
1318
|
type GetAppEvaluationXmlHttpResponse = {
|
|
1319
1319
|
data: Evaluation;
|
|
1320
1320
|
headers: Headers;
|
|
1321
|
-
status:
|
|
1321
|
+
status: 200;
|
|
1322
1322
|
};
|
|
1323
1323
|
type GetAppEvaluationXmlHttpError = {
|
|
1324
1324
|
data: EvaluatorError;
|
|
1325
1325
|
headers: Headers;
|
|
1326
|
-
status:
|
|
1326
|
+
status: 404 | 500;
|
|
1327
1327
|
};
|
|
1328
1328
|
/**
|
|
1329
1329
|
* Imports an app into the system.
|
|
@@ -1355,12 +1355,12 @@ declare const importApp: (query: {
|
|
|
1355
1355
|
type ImportAppHttpResponse = {
|
|
1356
1356
|
data: NxApp;
|
|
1357
1357
|
headers: Headers;
|
|
1358
|
-
status:
|
|
1358
|
+
status: 200;
|
|
1359
1359
|
};
|
|
1360
1360
|
type ImportAppHttpError = {
|
|
1361
1361
|
data: void;
|
|
1362
1362
|
headers: Headers;
|
|
1363
|
-
status:
|
|
1363
|
+
status: 404;
|
|
1364
1364
|
};
|
|
1365
1365
|
/**
|
|
1366
1366
|
* Gets the app privileges for the current user, such as create app and import app. Empty means that the current user has no app privileges.
|
|
@@ -1371,7 +1371,7 @@ declare const getAppsPrivileges: (options?: ApiCallOptions) => Promise<GetAppsPr
|
|
|
1371
1371
|
type GetAppsPrivilegesHttpResponse = {
|
|
1372
1372
|
data: UserPrivileges[];
|
|
1373
1373
|
headers: Headers;
|
|
1374
|
-
status:
|
|
1374
|
+
status: 200;
|
|
1375
1375
|
};
|
|
1376
1376
|
type GetAppsPrivilegesHttpError = {
|
|
1377
1377
|
data: unknown;
|
|
@@ -1388,7 +1388,7 @@ declare const deleteApp: (appId: string, options?: ApiCallOptions) => Promise<De
|
|
|
1388
1388
|
type DeleteAppHttpResponse = {
|
|
1389
1389
|
data: void;
|
|
1390
1390
|
headers: Headers;
|
|
1391
|
-
status:
|
|
1391
|
+
status: 200;
|
|
1392
1392
|
};
|
|
1393
1393
|
type DeleteAppHttpError = {
|
|
1394
1394
|
data: unknown;
|
|
@@ -1405,7 +1405,7 @@ declare const getAppInfo: (appId: string, options?: ApiCallOptions) => Promise<G
|
|
|
1405
1405
|
type GetAppInfoHttpResponse = {
|
|
1406
1406
|
data: NxApp;
|
|
1407
1407
|
headers: Headers;
|
|
1408
|
-
status:
|
|
1408
|
+
status: 200;
|
|
1409
1409
|
};
|
|
1410
1410
|
type GetAppInfoHttpError = {
|
|
1411
1411
|
data: unknown;
|
|
@@ -1423,7 +1423,7 @@ declare const updateAppInfo: (appId: string, body: UpdateApp, options?: ApiCallO
|
|
|
1423
1423
|
type UpdateAppInfoHttpResponse = {
|
|
1424
1424
|
data: NxApp;
|
|
1425
1425
|
headers: Headers;
|
|
1426
|
-
status:
|
|
1426
|
+
status: 200;
|
|
1427
1427
|
};
|
|
1428
1428
|
type UpdateAppInfoHttpError = {
|
|
1429
1429
|
data: unknown;
|
|
@@ -1441,7 +1441,7 @@ declare const copyApp: (appId: string, body: CreateApp, options?: ApiCallOptions
|
|
|
1441
1441
|
type CopyAppHttpResponse = {
|
|
1442
1442
|
data: NxApp;
|
|
1443
1443
|
headers: Headers;
|
|
1444
|
-
status:
|
|
1444
|
+
status: 200;
|
|
1445
1445
|
};
|
|
1446
1446
|
type CopyAppHttpError = {
|
|
1447
1447
|
data: unknown;
|
|
@@ -1459,7 +1459,7 @@ declare const getAppDataLineage: (appId: string, options?: ApiCallOptions) => Pr
|
|
|
1459
1459
|
type GetAppDataLineageHttpResponse = {
|
|
1460
1460
|
data: LineageInfoRest[];
|
|
1461
1461
|
headers: Headers;
|
|
1462
|
-
status:
|
|
1462
|
+
status: 200;
|
|
1463
1463
|
};
|
|
1464
1464
|
type GetAppDataLineageHttpError = {
|
|
1465
1465
|
data: unknown;
|
|
@@ -1477,7 +1477,7 @@ declare const getAppDataMetadata: (appId: string, options?: ApiCallOptions) => P
|
|
|
1477
1477
|
type GetAppDataMetadataHttpResponse = {
|
|
1478
1478
|
data: DataModelMetadata;
|
|
1479
1479
|
headers: Headers;
|
|
1480
|
-
status:
|
|
1480
|
+
status: 200;
|
|
1481
1481
|
};
|
|
1482
1482
|
type GetAppDataMetadataHttpError = {
|
|
1483
1483
|
data: unknown;
|
|
@@ -1498,12 +1498,12 @@ declare const exportApp: (appId: string, query: {
|
|
|
1498
1498
|
type ExportAppHttpResponse = {
|
|
1499
1499
|
data: DownloadableBlob;
|
|
1500
1500
|
headers: Headers;
|
|
1501
|
-
status:
|
|
1501
|
+
status: 200;
|
|
1502
1502
|
};
|
|
1503
1503
|
type ExportAppHttpError = {
|
|
1504
1504
|
data: void;
|
|
1505
1505
|
headers: Headers;
|
|
1506
|
-
status:
|
|
1506
|
+
status: 400 | 403 | 404;
|
|
1507
1507
|
};
|
|
1508
1508
|
/**
|
|
1509
1509
|
* Returns information about supported analyses for the app's data model. Lists available analysis types, along with minimum and maximum number of dimensions, measures, and fields.
|
|
@@ -1515,14 +1515,14 @@ declare const getAppInsightAnalyses: (appId: string, options?: ApiCallOptions) =
|
|
|
1515
1515
|
type GetAppInsightAnalysesHttpResponse = {
|
|
1516
1516
|
data: AnalysisDescriptorResponse;
|
|
1517
1517
|
headers: Headers;
|
|
1518
|
-
status:
|
|
1518
|
+
status: 200;
|
|
1519
1519
|
prev?: (options?: ApiCallOptions) => Promise<GetAppInsightAnalysesHttpResponse>;
|
|
1520
1520
|
next?: (options?: ApiCallOptions) => Promise<GetAppInsightAnalysesHttpResponse>;
|
|
1521
1521
|
};
|
|
1522
1522
|
type GetAppInsightAnalysesHttpError = {
|
|
1523
1523
|
data: Errors;
|
|
1524
1524
|
headers: Headers;
|
|
1525
|
-
status:
|
|
1525
|
+
status: 400 | 401 | 404 | 422 | 500;
|
|
1526
1526
|
};
|
|
1527
1527
|
/**
|
|
1528
1528
|
* Returns analysis recommendations in response to a natural language question, a set of fields and master items, or a set of fields and master items with an optional target analysis.
|
|
@@ -1535,12 +1535,12 @@ declare const getAppInsightAnalysisRecommendations: (appId: string, body: Analys
|
|
|
1535
1535
|
type GetAppInsightAnalysisRecommendationsHttpResponse = {
|
|
1536
1536
|
data: AnalysisRecommendationResponse;
|
|
1537
1537
|
headers: Headers;
|
|
1538
|
-
status:
|
|
1538
|
+
status: 200;
|
|
1539
1539
|
};
|
|
1540
1540
|
type GetAppInsightAnalysisRecommendationsHttpError = {
|
|
1541
1541
|
data: Errors;
|
|
1542
1542
|
headers: Headers;
|
|
1543
|
-
status:
|
|
1543
|
+
status: 400 | 401 | 404 | 409 | 422 | 500;
|
|
1544
1544
|
};
|
|
1545
1545
|
/**
|
|
1546
1546
|
* Returns information about model used to make analysis recommendations. Lists all fields and master items in the logical model, along with an indication of the validity of the logical model if the default is not used.
|
|
@@ -1552,14 +1552,14 @@ declare const getAppInsightAnalysisModel: (appId: string, options?: ApiCallOptio
|
|
|
1552
1552
|
type GetAppInsightAnalysisModelHttpResponse = {
|
|
1553
1553
|
data: AnalysisModelResponse;
|
|
1554
1554
|
headers: Headers;
|
|
1555
|
-
status:
|
|
1555
|
+
status: 200;
|
|
1556
1556
|
prev?: (options?: ApiCallOptions) => Promise<GetAppInsightAnalysisModelHttpResponse>;
|
|
1557
1557
|
next?: (options?: ApiCallOptions) => Promise<GetAppInsightAnalysisModelHttpResponse>;
|
|
1558
1558
|
};
|
|
1559
1559
|
type GetAppInsightAnalysisModelHttpError = {
|
|
1560
1560
|
data: Errors;
|
|
1561
1561
|
headers: Headers;
|
|
1562
|
-
status:
|
|
1562
|
+
status: 400 | 401 | 404 | 409 | 422 | 500;
|
|
1563
1563
|
};
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Deletes a media content file or complete directory.
|
|
@@ -1573,12 +1573,12 @@ declare const deleteAppMedia: (appId: string, path: string, options?: ApiCallOpt
|
|
|
1573
1573
|
type DeleteAppMediaHttpResponse = {
|
|
1574
1574
|
data: void;
|
|
1575
1575
|
headers: Headers;
|
|
1576
|
-
status:
|
|
1576
|
+
status: 200;
|
|
1577
1577
|
};
|
|
1578
1578
|
type DeleteAppMediaHttpError = {
|
|
1579
1579
|
data: void;
|
|
1580
1580
|
headers: Headers;
|
|
1581
|
-
status:
|
|
1581
|
+
status: 403 | 404;
|
|
1582
1582
|
};
|
|
1583
1583
|
/**
|
|
1584
1584
|
* Gets media content from file.
|
|
@@ -1592,12 +1592,12 @@ declare const getAppMedia: (appId: string, path: string, options?: ApiCallOption
|
|
|
1592
1592
|
type GetAppMediaHttpResponse = {
|
|
1593
1593
|
data: DownloadableBlob;
|
|
1594
1594
|
headers: Headers;
|
|
1595
|
-
status:
|
|
1595
|
+
status: 200;
|
|
1596
1596
|
};
|
|
1597
1597
|
type GetAppMediaHttpError = {
|
|
1598
1598
|
data: void;
|
|
1599
1599
|
headers: Headers;
|
|
1600
|
-
status:
|
|
1600
|
+
status: 403 | 404;
|
|
1601
1601
|
};
|
|
1602
1602
|
/**
|
|
1603
1603
|
* Stores the media content file.
|
|
@@ -1612,12 +1612,12 @@ declare const uploadAppMedia: (appId: string, path: string, body: BodyInit, opti
|
|
|
1612
1612
|
type UploadAppMediaHttpResponse = {
|
|
1613
1613
|
data: void;
|
|
1614
1614
|
headers: Headers;
|
|
1615
|
-
status:
|
|
1615
|
+
status: 200;
|
|
1616
1616
|
};
|
|
1617
1617
|
type UploadAppMediaHttpError = {
|
|
1618
1618
|
data: void;
|
|
1619
1619
|
headers: Headers;
|
|
1620
|
-
status:
|
|
1620
|
+
status: 403 | 404;
|
|
1621
1621
|
};
|
|
1622
1622
|
/**
|
|
1623
1623
|
* Lists media content.
|
|
@@ -1638,12 +1638,12 @@ declare const getAppMediaList: (appId: string, path: string, query: {
|
|
|
1638
1638
|
type GetAppMediaListHttpResponse = {
|
|
1639
1639
|
data: AppContentList;
|
|
1640
1640
|
headers: Headers;
|
|
1641
|
-
status:
|
|
1641
|
+
status: 200;
|
|
1642
1642
|
};
|
|
1643
1643
|
type GetAppMediaListHttpError = {
|
|
1644
1644
|
data: void;
|
|
1645
1645
|
headers: Headers;
|
|
1646
|
-
status:
|
|
1646
|
+
status: 403 | 404;
|
|
1647
1647
|
};
|
|
1648
1648
|
/**
|
|
1649
1649
|
* Gets media content from file currently used as application thumbnail.
|
|
@@ -1657,12 +1657,12 @@ declare const getAppThumbnail: (appId: string, options?: ApiCallOptions) => Prom
|
|
|
1657
1657
|
type GetAppThumbnailHttpResponse = {
|
|
1658
1658
|
data: DownloadableBlob;
|
|
1659
1659
|
headers: Headers;
|
|
1660
|
-
status:
|
|
1660
|
+
status: 200;
|
|
1661
1661
|
};
|
|
1662
1662
|
type GetAppThumbnailHttpError = {
|
|
1663
1663
|
data: void;
|
|
1664
1664
|
headers: Headers;
|
|
1665
|
-
status:
|
|
1665
|
+
status: 403 | 404;
|
|
1666
1666
|
};
|
|
1667
1667
|
/**
|
|
1668
1668
|
* Sets owner on an app object.
|
|
@@ -1677,12 +1677,12 @@ declare const updateAppObjectOwner: (appId: string, objectId: string, body: Upda
|
|
|
1677
1677
|
type UpdateAppObjectOwnerHttpResponse = {
|
|
1678
1678
|
data: NxAppObject;
|
|
1679
1679
|
headers: Headers;
|
|
1680
|
-
status:
|
|
1680
|
+
status: 200;
|
|
1681
1681
|
};
|
|
1682
1682
|
type UpdateAppObjectOwnerHttpError = {
|
|
1683
1683
|
data: void;
|
|
1684
1684
|
headers: Headers;
|
|
1685
|
-
status:
|
|
1685
|
+
status: 400 | 404;
|
|
1686
1686
|
};
|
|
1687
1687
|
/**
|
|
1688
1688
|
* Changes owner of the app.
|
|
@@ -1695,12 +1695,12 @@ declare const updateAppOwner: (appId: string, body: UpdateOwner, options?: ApiCa
|
|
|
1695
1695
|
type UpdateAppOwnerHttpResponse = {
|
|
1696
1696
|
data: NxApp;
|
|
1697
1697
|
headers: Headers;
|
|
1698
|
-
status:
|
|
1698
|
+
status: 200;
|
|
1699
1699
|
};
|
|
1700
1700
|
type UpdateAppOwnerHttpError = {
|
|
1701
1701
|
data: void;
|
|
1702
1702
|
headers: Headers;
|
|
1703
|
-
status:
|
|
1703
|
+
status: 403 | 404;
|
|
1704
1704
|
};
|
|
1705
1705
|
/**
|
|
1706
1706
|
* Publishes a specific app to a managed space.
|
|
@@ -1713,7 +1713,7 @@ declare const publishApp: (appId: string, body: PublishApp, options?: ApiCallOpt
|
|
|
1713
1713
|
type PublishAppHttpResponse = {
|
|
1714
1714
|
data: NxApp;
|
|
1715
1715
|
headers: Headers;
|
|
1716
|
-
status:
|
|
1716
|
+
status: 200;
|
|
1717
1717
|
};
|
|
1718
1718
|
type PublishAppHttpError = {
|
|
1719
1719
|
data: unknown;
|
|
@@ -1731,7 +1731,7 @@ declare const republishApp: (appId: string, body: RepublishApp, options?: ApiCal
|
|
|
1731
1731
|
type RepublishAppHttpResponse = {
|
|
1732
1732
|
data: NxApp;
|
|
1733
1733
|
headers: Headers;
|
|
1734
|
-
status:
|
|
1734
|
+
status: 200;
|
|
1735
1735
|
};
|
|
1736
1736
|
type RepublishAppHttpError = {
|
|
1737
1737
|
data: unknown;
|
|
@@ -1749,7 +1749,7 @@ declare const getAppReloadLogs: (appId: string, options?: ApiCallOptions) => Pro
|
|
|
1749
1749
|
type GetAppReloadLogsHttpResponse = {
|
|
1750
1750
|
data: ScriptLogList;
|
|
1751
1751
|
headers: Headers;
|
|
1752
|
-
status:
|
|
1752
|
+
status: 200;
|
|
1753
1753
|
};
|
|
1754
1754
|
type GetAppReloadLogsHttpError = {
|
|
1755
1755
|
data: unknown;
|
|
@@ -1768,7 +1768,7 @@ declare const getAppReloadLog: (appId: string, reloadId: string, options?: ApiCa
|
|
|
1768
1768
|
type GetAppReloadLogHttpResponse = {
|
|
1769
1769
|
data: DownloadableBlob;
|
|
1770
1770
|
headers: Headers;
|
|
1771
|
-
status:
|
|
1771
|
+
status: 200;
|
|
1772
1772
|
};
|
|
1773
1773
|
type GetAppReloadLogHttpError = {
|
|
1774
1774
|
data: unknown;
|
|
@@ -1793,7 +1793,7 @@ declare const getAppReloadMetadata: (appId: string, reloadId: string, query: {
|
|
|
1793
1793
|
type GetAppReloadMetadataHttpResponse = {
|
|
1794
1794
|
data: ReloadListMetadata;
|
|
1795
1795
|
headers: Headers;
|
|
1796
|
-
status:
|
|
1796
|
+
status: 200;
|
|
1797
1797
|
};
|
|
1798
1798
|
type GetAppReloadMetadataHttpError = {
|
|
1799
1799
|
data: unknown;
|
|
@@ -1826,14 +1826,14 @@ declare const getAppReportFilters: (appId: string, query: {
|
|
|
1826
1826
|
type GetAppReportFiltersHttpResponse = {
|
|
1827
1827
|
data: FilterList;
|
|
1828
1828
|
headers: Headers;
|
|
1829
|
-
status:
|
|
1829
|
+
status: 200;
|
|
1830
1830
|
prev?: (options?: ApiCallOptions) => Promise<GetAppReportFiltersHttpResponse>;
|
|
1831
1831
|
next?: (options?: ApiCallOptions) => Promise<GetAppReportFiltersHttpResponse>;
|
|
1832
1832
|
};
|
|
1833
1833
|
type GetAppReportFiltersHttpError = {
|
|
1834
1834
|
data: FilterErrors;
|
|
1835
1835
|
headers: Headers;
|
|
1836
|
-
status:
|
|
1836
|
+
status: 400 | 401 | 403 | 404 | 429 | 500;
|
|
1837
1837
|
};
|
|
1838
1838
|
/**
|
|
1839
1839
|
* Creates a new report filter which is used to re-apply selections, variables, patches to an engine session.
|
|
@@ -1846,12 +1846,12 @@ declare const createAppReportFilter: (appId: string, body: FilterRequest, option
|
|
|
1846
1846
|
type CreateAppReportFilterHttpResponse = {
|
|
1847
1847
|
data: Filter;
|
|
1848
1848
|
headers: Headers;
|
|
1849
|
-
status:
|
|
1849
|
+
status: 201;
|
|
1850
1850
|
};
|
|
1851
1851
|
type CreateAppReportFilterHttpError = {
|
|
1852
1852
|
data: FilterErrors;
|
|
1853
1853
|
headers: Headers;
|
|
1854
|
-
status:
|
|
1854
|
+
status: 400 | 401 | 403 | 404 | 409 | 429 | 500;
|
|
1855
1855
|
};
|
|
1856
1856
|
/**
|
|
1857
1857
|
* Get the number of filters for the given app and filter types
|
|
@@ -1867,12 +1867,12 @@ declare const countAppReportFilters: (appId: string, query: {
|
|
|
1867
1867
|
type CountAppReportFiltersHttpResponse = {
|
|
1868
1868
|
data: FiltersCount;
|
|
1869
1869
|
headers: Headers;
|
|
1870
|
-
status:
|
|
1870
|
+
status: 200;
|
|
1871
1871
|
};
|
|
1872
1872
|
type CountAppReportFiltersHttpError = {
|
|
1873
1873
|
data: FilterErrors;
|
|
1874
1874
|
headers: Headers;
|
|
1875
|
-
status:
|
|
1875
|
+
status: 400 | 401 | 403 | 404 | 429 | 500;
|
|
1876
1876
|
};
|
|
1877
1877
|
/**
|
|
1878
1878
|
* Delete a filter
|
|
@@ -1885,12 +1885,12 @@ declare const deleteAppReportFilter: (appId: string, id: string, options?: ApiCa
|
|
|
1885
1885
|
type DeleteAppReportFilterHttpResponse = {
|
|
1886
1886
|
data: void;
|
|
1887
1887
|
headers: Headers;
|
|
1888
|
-
status:
|
|
1888
|
+
status: 204;
|
|
1889
1889
|
};
|
|
1890
1890
|
type DeleteAppReportFilterHttpError = {
|
|
1891
1891
|
data: FilterErrors;
|
|
1892
1892
|
headers: Headers;
|
|
1893
|
-
status:
|
|
1893
|
+
status: 400 | 401 | 403 | 404 | 429 | 500;
|
|
1894
1894
|
};
|
|
1895
1895
|
/**
|
|
1896
1896
|
* Get a filter
|
|
@@ -1903,12 +1903,12 @@ declare const getAppReportFilter: (appId: string, id: string, options?: ApiCallO
|
|
|
1903
1903
|
type GetAppReportFilterHttpResponse = {
|
|
1904
1904
|
data: Filter;
|
|
1905
1905
|
headers: Headers;
|
|
1906
|
-
status:
|
|
1906
|
+
status: 200;
|
|
1907
1907
|
};
|
|
1908
1908
|
type GetAppReportFilterHttpError = {
|
|
1909
1909
|
data: FilterErrors;
|
|
1910
1910
|
headers: Headers;
|
|
1911
|
-
status:
|
|
1911
|
+
status: 400 | 401 | 403 | 404 | 429 | 500;
|
|
1912
1912
|
};
|
|
1913
1913
|
/**
|
|
1914
1914
|
* Update a filter
|
|
@@ -1922,12 +1922,12 @@ declare const patchAppReportFilter: (appId: string, id: string, body: PatchFilte
|
|
|
1922
1922
|
type PatchAppReportFilterHttpResponse = {
|
|
1923
1923
|
data: void;
|
|
1924
1924
|
headers: Headers;
|
|
1925
|
-
status:
|
|
1925
|
+
status: 204;
|
|
1926
1926
|
};
|
|
1927
1927
|
type PatchAppReportFilterHttpError = {
|
|
1928
1928
|
data: FilterErrors;
|
|
1929
1929
|
headers: Headers;
|
|
1930
|
-
status:
|
|
1930
|
+
status: 400 | 401 | 403 | 404 | 409 | 429 | 500;
|
|
1931
1931
|
};
|
|
1932
1932
|
/**
|
|
1933
1933
|
* Retrieves the script history for an app.
|
|
@@ -1951,7 +1951,7 @@ declare const getAppScriptHistory: (appId: string, query: {
|
|
|
1951
1951
|
type GetAppScriptHistoryHttpResponse = {
|
|
1952
1952
|
data: ScriptMetaList;
|
|
1953
1953
|
headers: Headers;
|
|
1954
|
-
status:
|
|
1954
|
+
status: 200;
|
|
1955
1955
|
prev?: (options?: ApiCallOptions) => Promise<GetAppScriptHistoryHttpResponse>;
|
|
1956
1956
|
next?: (options?: ApiCallOptions) => Promise<GetAppScriptHistoryHttpResponse>;
|
|
1957
1957
|
};
|
|
@@ -1971,7 +1971,7 @@ declare const updateAppScript: (appId: string, body: ScriptVersion, options?: Ap
|
|
|
1971
1971
|
type UpdateAppScriptHttpResponse = {
|
|
1972
1972
|
data: void;
|
|
1973
1973
|
headers: Headers;
|
|
1974
|
-
status:
|
|
1974
|
+
status: 200;
|
|
1975
1975
|
};
|
|
1976
1976
|
type UpdateAppScriptHttpError = {
|
|
1977
1977
|
data: unknown;
|
|
@@ -1990,7 +1990,7 @@ declare const deleteAppScript: (appId: string, id: string, options?: ApiCallOpti
|
|
|
1990
1990
|
type DeleteAppScriptHttpResponse = {
|
|
1991
1991
|
data: void;
|
|
1992
1992
|
headers: Headers;
|
|
1993
|
-
status:
|
|
1993
|
+
status: 200;
|
|
1994
1994
|
};
|
|
1995
1995
|
type DeleteAppScriptHttpError = {
|
|
1996
1996
|
data: unknown;
|
|
@@ -2009,7 +2009,7 @@ declare const getAppScript: (appId: string, id: string, options?: ApiCallOptions
|
|
|
2009
2009
|
type GetAppScriptHttpResponse = {
|
|
2010
2010
|
data: ScriptVersion;
|
|
2011
2011
|
headers: Headers;
|
|
2012
|
-
status:
|
|
2012
|
+
status: 200;
|
|
2013
2013
|
};
|
|
2014
2014
|
type GetAppScriptHttpError = {
|
|
2015
2015
|
data: unknown;
|
|
@@ -2028,7 +2028,7 @@ declare const patchAppScript: (appId: string, id: string, body: NxPatch[], optio
|
|
|
2028
2028
|
type PatchAppScriptHttpResponse = {
|
|
2029
2029
|
data: void;
|
|
2030
2030
|
headers: Headers;
|
|
2031
|
-
status:
|
|
2031
|
+
status: 200;
|
|
2032
2032
|
};
|
|
2033
2033
|
type PatchAppScriptHttpError = {
|
|
2034
2034
|
data: unknown;
|
|
@@ -2045,7 +2045,7 @@ declare const removeAppFromSpace: (appId: string, options?: ApiCallOptions) => P
|
|
|
2045
2045
|
type RemoveAppFromSpaceHttpResponse = {
|
|
2046
2046
|
data: NxApp;
|
|
2047
2047
|
headers: Headers;
|
|
2048
|
-
status:
|
|
2048
|
+
status: 200;
|
|
2049
2049
|
};
|
|
2050
2050
|
type RemoveAppFromSpaceHttpError = {
|
|
2051
2051
|
data: unknown;
|
|
@@ -2063,7 +2063,7 @@ declare const moveAppToSpace: (appId: string, body: UpdateSpace, options?: ApiCa
|
|
|
2063
2063
|
type MoveAppToSpaceHttpResponse = {
|
|
2064
2064
|
data: NxApp;
|
|
2065
2065
|
headers: Headers;
|
|
2066
|
-
status:
|
|
2066
|
+
status: 200;
|
|
2067
2067
|
};
|
|
2068
2068
|
type MoveAppToSpaceHttpError = {
|
|
2069
2069
|
data: unknown;
|
|
@@ -2097,14 +2097,14 @@ declare const getAppEvaluations: (guid: string, query: {
|
|
|
2097
2097
|
type GetAppEvaluationsHttpResponse = {
|
|
2098
2098
|
data: Evaluations;
|
|
2099
2099
|
headers: Headers;
|
|
2100
|
-
status:
|
|
2100
|
+
status: 200;
|
|
2101
2101
|
prev?: (options?: ApiCallOptions) => Promise<GetAppEvaluationsHttpResponse>;
|
|
2102
2102
|
next?: (options?: ApiCallOptions) => Promise<GetAppEvaluationsHttpResponse>;
|
|
2103
2103
|
};
|
|
2104
2104
|
type GetAppEvaluationsHttpError = {
|
|
2105
2105
|
data: EvaluatorError;
|
|
2106
2106
|
headers: Headers;
|
|
2107
|
-
status:
|
|
2107
|
+
status: 400 | 404 | 500;
|
|
2108
2108
|
};
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Queue an app evaluation by its app guid.
|
|
@@ -2116,12 +2116,12 @@ declare const queueAppEvaluation: (guid: string, options?: ApiCallOptions) => Pr
|
|
|
2116
2116
|
type QueueAppEvaluationHttpResponse = {
|
|
2117
2117
|
data: Evaluation;
|
|
2118
2118
|
headers: Headers;
|
|
2119
|
-
status:
|
|
2119
|
+
status: 201;
|
|
2120
2120
|
};
|
|
2121
2121
|
type QueueAppEvaluationHttpError = {
|
|
2122
2122
|
data: EvaluatorError;
|
|
2123
2123
|
headers: Headers;
|
|
2124
|
-
status:
|
|
2124
|
+
status: 400 | 403 | 404 | 500;
|
|
2125
2125
|
};
|
|
2126
2126
|
/**
|
|
2127
2127
|
* Clears the cache for apps api requests.
|