@qlik/api 1.25.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 +12 -12
- package/api-keys.js +2 -2
- package/apps.d.ts +69 -69
- package/apps.js +2 -2
- package/audits.d.ts +37 -15
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +37 -37
- package/automations.js +2 -2
- package/brands.d.ts +24 -24
- package/brands.js +2 -2
- package/chunks/{3DYV7KOJ.js → 2BRBIRM2.js} +2 -2
- package/chunks/{7BDAXGID.js → 3RGGGGAR.js} +6 -9
- package/chunks/{6DEESTGF.js → 4D5NADHK.js} +4 -4
- package/chunks/{VX3MQBE7.js → 4K3CNR7C.js} +1 -1
- package/chunks/{OIQ5ELGS.js → 55SZVSAG.js} +1 -1
- package/chunks/{BL5PJM4B.js → EOGHK2R4.js} +1 -1
- package/chunks/{N3ZFICDU.js → MGXEGSJC.js} +3 -3
- package/chunks/{I5UOE4ZZ.js → NBW6PHZU.js} +120 -44
- package/chunks/{6QRR5VUM.js → QOOCP2TS.js} +4 -3
- package/chunks/{CZC7KEJN.js → V3TZ54UE.js} +3 -3
- package/chunks/{UA6BE3VB.js → WY7IOA3Q.js} +2 -2
- package/collections.d.ts +23 -23
- package/collections.js +2 -2
- package/csp-origins.d.ts +25 -25
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +12 -12
- package/data-assets.js +2 -2
- package/data-connections.d.ts +19 -19
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +11 -11
- package/data-credentials.js +2 -2
- package/data-files.d.ts +25 -25
- package/data-files.js +2 -2
- package/docs/authentication.md +1 -1
- package/docs/qix.md +28 -8
- package/extensions.d.ts +12 -12
- package/extensions.js +2 -2
- package/glossaries.d.ts +49 -49
- package/glossaries.js +2 -2
- package/groups.d.ts +17 -17
- package/groups.js +2 -2
- package/identity-providers.d.ts +43 -18
- package/identity-providers.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +5 -5
- package/interceptors.d.ts +1 -1
- package/interceptors.js +1 -1
- package/{invoke-fetch-types-BLrpeZOL.d.ts → invoke-fetch-types-BXn-uSF5.d.ts} +27 -1
- package/items.d.ts +17 -17
- package/items.js +2 -2
- package/licenses.d.ts +19 -19
- package/licenses.js +2 -2
- package/package.json +3 -3
- package/qix.d.ts +2 -2
- package/qix.js +2 -2
- package/quotas.d.ts +5 -5
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +11 -11
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +9 -9
- package/reloads.js +2 -2
- package/reports.d.ts +13 -11
- package/reports.js +2 -2
- package/roles.d.ts +12 -12
- package/roles.js +2 -2
- package/spaces.d.ts +60 -26
- package/spaces.js +2 -2
- package/temp-contents.d.ts +7 -7
- package/temp-contents.js +2 -2
- package/tenants.d.ts +10 -10
- package/tenants.js +2 -2
- package/themes.d.ts +12 -12
- package/themes.js +2 -2
- package/transports.d.ts +18 -18
- package/transports.js +2 -2
- package/users.d.ts +20 -20
- package/users.js +2 -2
- package/web-integrations.d.ts +10 -10
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +13 -13
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +21 -21
- package/webhooks.js +2 -2
package/csp-origins.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type CSPEntry = {
|
|
@@ -71,7 +71,7 @@ type Link = {
|
|
|
71
71
|
href: string;
|
|
72
72
|
};
|
|
73
73
|
/**
|
|
74
|
-
* Retrieves all
|
|
74
|
+
* Retrieves all content security policies for a tenant.
|
|
75
75
|
*
|
|
76
76
|
* @param query an object with query parameters
|
|
77
77
|
* @throws GetCSPEntriesHttpError
|
|
@@ -119,17 +119,17 @@ declare const getCSPEntries: (query: {
|
|
|
119
119
|
type GetCSPEntriesHttpResponse = {
|
|
120
120
|
data: CSPEntryList;
|
|
121
121
|
headers: Headers;
|
|
122
|
-
status:
|
|
122
|
+
status: 200;
|
|
123
123
|
prev?: (options?: ApiCallOptions) => Promise<GetCSPEntriesHttpResponse>;
|
|
124
124
|
next?: (options?: ApiCallOptions) => Promise<GetCSPEntriesHttpResponse>;
|
|
125
125
|
};
|
|
126
126
|
type GetCSPEntriesHttpError = {
|
|
127
127
|
data: ErrorResponse;
|
|
128
128
|
headers: Headers;
|
|
129
|
-
status:
|
|
129
|
+
status: 400 | 401 | 403 | 500 | 503;
|
|
130
130
|
};
|
|
131
131
|
/**
|
|
132
|
-
* Creates a new
|
|
132
|
+
* Creates a new content security policy for an origin.
|
|
133
133
|
*
|
|
134
134
|
* @param body an object with the body content
|
|
135
135
|
* @throws CreateCSPEntryHttpError
|
|
@@ -138,15 +138,15 @@ declare const createCSPEntry: (body: CSPEntryContent, options?: ApiCallOptions)
|
|
|
138
138
|
type CreateCSPEntryHttpResponse = {
|
|
139
139
|
data: CSPEntry;
|
|
140
140
|
headers: Headers;
|
|
141
|
-
status:
|
|
141
|
+
status: 201;
|
|
142
142
|
};
|
|
143
143
|
type CreateCSPEntryHttpError = {
|
|
144
144
|
data: ErrorResponse;
|
|
145
145
|
headers: Headers;
|
|
146
|
-
status:
|
|
146
|
+
status: 400 | 401 | 403 | 500 | 503;
|
|
147
147
|
};
|
|
148
148
|
/**
|
|
149
|
-
* Retrieves the
|
|
149
|
+
* Retrieves the full content security policy header (including all configured policies and origins) for the tenant.
|
|
150
150
|
*
|
|
151
151
|
* @throws GetCSPHeaderHttpError
|
|
152
152
|
*/
|
|
@@ -154,15 +154,15 @@ declare const getCSPHeader: (options?: ApiCallOptions) => Promise<GetCSPHeaderHt
|
|
|
154
154
|
type GetCSPHeaderHttpResponse = {
|
|
155
155
|
data: CSPHeader;
|
|
156
156
|
headers: Headers;
|
|
157
|
-
status:
|
|
157
|
+
status: 200;
|
|
158
158
|
};
|
|
159
159
|
type GetCSPHeaderHttpError = {
|
|
160
160
|
data: ErrorResponse;
|
|
161
161
|
headers: Headers;
|
|
162
|
-
status:
|
|
162
|
+
status: 401 | 406 | 500 | 503;
|
|
163
163
|
};
|
|
164
164
|
/**
|
|
165
|
-
* Deletes a specific
|
|
165
|
+
* Deletes a specific content security policy.
|
|
166
166
|
*
|
|
167
167
|
* @param id The CSP entry's unique identifier.
|
|
168
168
|
* @throws DeleteCSPEntryHttpError
|
|
@@ -171,15 +171,15 @@ declare const deleteCSPEntry: (id: string, options?: ApiCallOptions) => Promise<
|
|
|
171
171
|
type DeleteCSPEntryHttpResponse = {
|
|
172
172
|
data: void;
|
|
173
173
|
headers: Headers;
|
|
174
|
-
status:
|
|
174
|
+
status: 204;
|
|
175
175
|
};
|
|
176
176
|
type DeleteCSPEntryHttpError = {
|
|
177
177
|
data: ErrorResponse;
|
|
178
178
|
headers: Headers;
|
|
179
|
-
status:
|
|
179
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
180
180
|
};
|
|
181
181
|
/**
|
|
182
|
-
* Returns details for a specific
|
|
182
|
+
* Returns details for a specific content security policy.
|
|
183
183
|
*
|
|
184
184
|
* @param id The CSP entry's unique identifier.
|
|
185
185
|
* @throws GetCSPEntryHttpError
|
|
@@ -188,15 +188,15 @@ declare const getCSPEntry: (id: string, options?: ApiCallOptions) => Promise<Get
|
|
|
188
188
|
type GetCSPEntryHttpResponse = {
|
|
189
189
|
data: CSPEntry;
|
|
190
190
|
headers: Headers;
|
|
191
|
-
status:
|
|
191
|
+
status: 200;
|
|
192
192
|
};
|
|
193
193
|
type GetCSPEntryHttpError = {
|
|
194
194
|
data: ErrorResponse;
|
|
195
195
|
headers: Headers;
|
|
196
|
-
status:
|
|
196
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
197
197
|
};
|
|
198
198
|
/**
|
|
199
|
-
* Updates a
|
|
199
|
+
* Updates a content security policy.
|
|
200
200
|
*
|
|
201
201
|
* @param id The CSP entry's unique identifier.
|
|
202
202
|
* @param body an object with the body content
|
|
@@ -206,12 +206,12 @@ declare const updateCSPEntry: (id: string, body: CSPEntryContent, options?: ApiC
|
|
|
206
206
|
type UpdateCSPEntryHttpResponse = {
|
|
207
207
|
data: CSPEntry;
|
|
208
208
|
headers: Headers;
|
|
209
|
-
status:
|
|
209
|
+
status: 200;
|
|
210
210
|
};
|
|
211
211
|
type UpdateCSPEntryHttpError = {
|
|
212
212
|
data: ErrorResponse;
|
|
213
213
|
headers: Headers;
|
|
214
|
-
status:
|
|
214
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
215
215
|
};
|
|
216
216
|
/**
|
|
217
217
|
* Clears the cache for csp-origins api requests.
|
|
@@ -219,41 +219,41 @@ type UpdateCSPEntryHttpError = {
|
|
|
219
219
|
declare function clearCache(): void;
|
|
220
220
|
interface CspOriginsAPI {
|
|
221
221
|
/**
|
|
222
|
-
* Retrieves all
|
|
222
|
+
* Retrieves all content security policies for a tenant.
|
|
223
223
|
*
|
|
224
224
|
* @param query an object with query parameters
|
|
225
225
|
* @throws GetCSPEntriesHttpError
|
|
226
226
|
*/
|
|
227
227
|
getCSPEntries: typeof getCSPEntries;
|
|
228
228
|
/**
|
|
229
|
-
* Creates a new
|
|
229
|
+
* Creates a new content security policy for an origin.
|
|
230
230
|
*
|
|
231
231
|
* @param body an object with the body content
|
|
232
232
|
* @throws CreateCSPEntryHttpError
|
|
233
233
|
*/
|
|
234
234
|
createCSPEntry: typeof createCSPEntry;
|
|
235
235
|
/**
|
|
236
|
-
* Retrieves the
|
|
236
|
+
* Retrieves the full content security policy header (including all configured policies and origins) for the tenant.
|
|
237
237
|
*
|
|
238
238
|
* @throws GetCSPHeaderHttpError
|
|
239
239
|
*/
|
|
240
240
|
getCSPHeader: typeof getCSPHeader;
|
|
241
241
|
/**
|
|
242
|
-
* Deletes a specific
|
|
242
|
+
* Deletes a specific content security policy.
|
|
243
243
|
*
|
|
244
244
|
* @param id The CSP entry's unique identifier.
|
|
245
245
|
* @throws DeleteCSPEntryHttpError
|
|
246
246
|
*/
|
|
247
247
|
deleteCSPEntry: typeof deleteCSPEntry;
|
|
248
248
|
/**
|
|
249
|
-
* Returns details for a specific
|
|
249
|
+
* Returns details for a specific content security policy.
|
|
250
250
|
*
|
|
251
251
|
* @param id The CSP entry's unique identifier.
|
|
252
252
|
* @throws GetCSPEntryHttpError
|
|
253
253
|
*/
|
|
254
254
|
getCSPEntry: typeof getCSPEntry;
|
|
255
255
|
/**
|
|
256
|
-
* Updates a
|
|
256
|
+
* Updates a content security policy.
|
|
257
257
|
*
|
|
258
258
|
* @param id The CSP entry's unique identifier.
|
|
259
259
|
* @param body an object with the body content
|
package/csp-origins.js
CHANGED
package/data-assets.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type BatchIdDto = {
|
|
5
5
|
ids?: string[];
|
|
6
6
|
};
|
|
7
7
|
type DataAsset = {
|
|
8
|
-
appId
|
|
8
|
+
appId?: string;
|
|
9
9
|
appType: string;
|
|
10
10
|
/** The value is automatically set by the application. User defined value is ignored. */
|
|
11
11
|
readonly createdBy?: string;
|
|
@@ -70,12 +70,12 @@ declare const deleteDataAssets: (body: BatchIdDto, options?: ApiCallOptions) =>
|
|
|
70
70
|
type DeleteDataAssetsHttpResponse = {
|
|
71
71
|
data: void;
|
|
72
72
|
headers: Headers;
|
|
73
|
-
status:
|
|
73
|
+
status: 204;
|
|
74
74
|
};
|
|
75
75
|
type DeleteDataAssetsHttpError = {
|
|
76
76
|
data: ErrorResponse;
|
|
77
77
|
headers: Headers;
|
|
78
|
-
status:
|
|
78
|
+
status: 400 | 401 | 403 | 404 | 409 | 500 | 503;
|
|
79
79
|
};
|
|
80
80
|
/**
|
|
81
81
|
* Save new data asset.
|
|
@@ -87,12 +87,12 @@ declare const createDataAsset: (body: DataAsset, options?: ApiCallOptions) => Pr
|
|
|
87
87
|
type CreateDataAssetHttpResponse = {
|
|
88
88
|
data: DataAsset;
|
|
89
89
|
headers: Headers;
|
|
90
|
-
status:
|
|
90
|
+
status: 201;
|
|
91
91
|
};
|
|
92
92
|
type CreateDataAssetHttpError = {
|
|
93
93
|
data: ErrorResponse;
|
|
94
94
|
headers: Headers;
|
|
95
|
-
status:
|
|
95
|
+
status: 400 | 401 | 403 | 404 | 409 | 500 | 503;
|
|
96
96
|
};
|
|
97
97
|
/**
|
|
98
98
|
* Get data asset by ID.
|
|
@@ -108,12 +108,12 @@ declare const getDataAsset: (dataAssetId: string, query: {
|
|
|
108
108
|
type GetDataAssetHttpResponse = {
|
|
109
109
|
data: DataAsset;
|
|
110
110
|
headers: Headers;
|
|
111
|
-
status:
|
|
111
|
+
status: 200;
|
|
112
112
|
};
|
|
113
113
|
type GetDataAssetHttpError = {
|
|
114
114
|
data: ErrorResponse;
|
|
115
115
|
headers: Headers;
|
|
116
|
-
status:
|
|
116
|
+
status: 400 | 401 | 403 | 404 | 409 | 500 | 503;
|
|
117
117
|
};
|
|
118
118
|
/**
|
|
119
119
|
* Patch data asset.
|
|
@@ -126,12 +126,12 @@ declare const patchDataAsset: (dataAssetId: string, body: JsonPatch[], options?:
|
|
|
126
126
|
type PatchDataAssetHttpResponse = {
|
|
127
127
|
data: DataAsset;
|
|
128
128
|
headers: Headers;
|
|
129
|
-
status:
|
|
129
|
+
status: 200 | 204;
|
|
130
130
|
};
|
|
131
131
|
type PatchDataAssetHttpError = {
|
|
132
132
|
data: ErrorResponse;
|
|
133
133
|
headers: Headers;
|
|
134
|
-
status:
|
|
134
|
+
status: 400 | 401 | 403 | 404 | 409 | 500 | 503;
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
137
|
* Update data asset.
|
|
@@ -144,12 +144,12 @@ declare const updateDataAsset: (dataAssetId: string, body: DataAsset, options?:
|
|
|
144
144
|
type UpdateDataAssetHttpResponse = {
|
|
145
145
|
data: DataAsset;
|
|
146
146
|
headers: Headers;
|
|
147
|
-
status:
|
|
147
|
+
status: 200;
|
|
148
148
|
};
|
|
149
149
|
type UpdateDataAssetHttpError = {
|
|
150
150
|
data: ErrorResponse;
|
|
151
151
|
headers: Headers;
|
|
152
|
-
status:
|
|
152
|
+
status: 400 | 401 | 403 | 404 | 409 | 500 | 503;
|
|
153
153
|
};
|
|
154
154
|
/**
|
|
155
155
|
* Clears the cache for data-assets api requests.
|
package/data-assets.js
CHANGED
package/data-connections.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type ActionDeleteRequest = {
|
|
@@ -328,14 +328,14 @@ declare const getDataConnections: (query: {
|
|
|
328
328
|
type GetDataConnectionsHttpResponse = {
|
|
329
329
|
data: Connections;
|
|
330
330
|
headers: Headers;
|
|
331
|
-
status:
|
|
331
|
+
status: 200;
|
|
332
332
|
prev?: (options?: ApiCallOptions) => Promise<GetDataConnectionsHttpResponse>;
|
|
333
333
|
next?: (options?: ApiCallOptions) => Promise<GetDataConnectionsHttpResponse>;
|
|
334
334
|
};
|
|
335
335
|
type GetDataConnectionsHttpError = {
|
|
336
336
|
data: ResponseErrors;
|
|
337
337
|
headers: Headers;
|
|
338
|
-
status:
|
|
338
|
+
status: 400 | 500 | 502;
|
|
339
339
|
};
|
|
340
340
|
/**
|
|
341
341
|
* Creates a new connection. Depending on the fields defined in the request body, credentials embedded (or associated) in the connection can be updated or created.
|
|
@@ -347,12 +347,12 @@ declare const createDataConnection: (body: ConnectionCreate | DcaasConnectionCre
|
|
|
347
347
|
type CreateDataConnectionHttpResponse = {
|
|
348
348
|
data: ConnectionCreateResponse | DcaasConnectionCreateAuthResponse;
|
|
349
349
|
headers: Headers;
|
|
350
|
-
status:
|
|
350
|
+
status: 201;
|
|
351
351
|
};
|
|
352
352
|
type CreateDataConnectionHttpError = {
|
|
353
353
|
data: ResponseErrors;
|
|
354
354
|
headers: Headers;
|
|
355
|
-
status:
|
|
355
|
+
status: 400 | 403 | 404 | 409;
|
|
356
356
|
};
|
|
357
357
|
/**
|
|
358
358
|
* Delete multiple connections, only available to Admin
|
|
@@ -364,12 +364,12 @@ declare const deleteDataConnections: (body: ActionDeleteRequest, options?: ApiCa
|
|
|
364
364
|
type DeleteDataConnectionsHttpResponse = {
|
|
365
365
|
data: BulkResponse;
|
|
366
366
|
headers: Headers;
|
|
367
|
-
status:
|
|
367
|
+
status: 207;
|
|
368
368
|
};
|
|
369
369
|
type DeleteDataConnectionsHttpError = {
|
|
370
370
|
data: ResponseErrors;
|
|
371
371
|
headers: Headers;
|
|
372
|
-
status:
|
|
372
|
+
status: 400 | 403;
|
|
373
373
|
};
|
|
374
374
|
/**
|
|
375
375
|
* Duplicate a connection
|
|
@@ -381,12 +381,12 @@ declare const duplicateDataAConnection: (body: ActionDuplicateRequest, options?:
|
|
|
381
381
|
type DuplicateDataAConnectionHttpResponse = {
|
|
382
382
|
data: ConnectionCreateResponse;
|
|
383
383
|
headers: Headers;
|
|
384
|
-
status:
|
|
384
|
+
status: 201;
|
|
385
385
|
};
|
|
386
386
|
type DuplicateDataAConnectionHttpError = {
|
|
387
387
|
data: ResponseErrors;
|
|
388
388
|
headers: Headers;
|
|
389
|
-
status:
|
|
389
|
+
status: 400 | 403 | 404 | 409;
|
|
390
390
|
};
|
|
391
391
|
/**
|
|
392
392
|
* Update multiple connections, only available to Admin. When update is to change ownership of a connection, the credentials associated with the connection will NOT be transferred to the new owner, and new owner is expected to provide their own credentials for the connection.
|
|
@@ -398,12 +398,12 @@ declare const updateDataConnections: (body: ActionUpdateRequest, options?: ApiCa
|
|
|
398
398
|
type UpdateDataConnectionsHttpResponse = {
|
|
399
399
|
data: BulkResponse;
|
|
400
400
|
headers: Headers;
|
|
401
|
-
status:
|
|
401
|
+
status: 207;
|
|
402
402
|
};
|
|
403
403
|
type UpdateDataConnectionsHttpError = {
|
|
404
404
|
data: ResponseErrors;
|
|
405
405
|
headers: Headers;
|
|
406
|
-
status:
|
|
406
|
+
status: 400 | 403;
|
|
407
407
|
};
|
|
408
408
|
/**
|
|
409
409
|
* Deletes the specified data connection by ID (or by name when type=connectionname is set in query)
|
|
@@ -421,12 +421,12 @@ declare const deleteDataConnection: (qID: string, query: {
|
|
|
421
421
|
type DeleteDataConnectionHttpResponse = {
|
|
422
422
|
data: void;
|
|
423
423
|
headers: Headers;
|
|
424
|
-
status:
|
|
424
|
+
status: 204;
|
|
425
425
|
};
|
|
426
426
|
type DeleteDataConnectionHttpError = {
|
|
427
427
|
data: ResponseErrors;
|
|
428
428
|
headers: Headers;
|
|
429
|
-
status:
|
|
429
|
+
status: 403 | 404;
|
|
430
430
|
};
|
|
431
431
|
/**
|
|
432
432
|
* Retrieves a connection by connection ID, or by name when the query parameter "type" is set to "connectionname."
|
|
@@ -454,12 +454,12 @@ declare const getDataConnection: (qID: string, query: {
|
|
|
454
454
|
type GetDataConnectionHttpResponse = {
|
|
455
455
|
data: ConnectionGet;
|
|
456
456
|
headers: Headers;
|
|
457
|
-
status:
|
|
457
|
+
status: 200;
|
|
458
458
|
};
|
|
459
459
|
type GetDataConnectionHttpError = {
|
|
460
460
|
data: ResponseErrors;
|
|
461
461
|
headers: Headers;
|
|
462
|
-
status:
|
|
462
|
+
status: 400 | 403 | 404 | 500;
|
|
463
463
|
};
|
|
464
464
|
/**
|
|
465
465
|
* Patches a connection specified by connection ID (or by name when type=connectionname is set in query).
|
|
@@ -476,12 +476,12 @@ declare const patchDataConnection: (qID: string, query: {
|
|
|
476
476
|
type PatchDataConnectionHttpResponse = {
|
|
477
477
|
data: void;
|
|
478
478
|
headers: Headers;
|
|
479
|
-
status:
|
|
479
|
+
status: 204;
|
|
480
480
|
};
|
|
481
481
|
type PatchDataConnectionHttpError = {
|
|
482
482
|
data: ResponseErrors;
|
|
483
483
|
headers: Headers;
|
|
484
|
-
status:
|
|
484
|
+
status: 400 | 403 | 404 | 409;
|
|
485
485
|
};
|
|
486
486
|
/**
|
|
487
487
|
* Updates a connection specified by connection ID (or by name when type=connectionname is set in query). Depends on the fields defined in the request body, credentials embedded (or associated) in the connection can be updated or created.
|
|
@@ -500,12 +500,12 @@ declare const updateDataConnection: (qID: string, query: {
|
|
|
500
500
|
type UpdateDataConnectionHttpResponse = {
|
|
501
501
|
data: void;
|
|
502
502
|
headers: Headers;
|
|
503
|
-
status:
|
|
503
|
+
status: 204;
|
|
504
504
|
};
|
|
505
505
|
type UpdateDataConnectionHttpError = {
|
|
506
506
|
data: ResponseErrors;
|
|
507
507
|
headers: Headers;
|
|
508
|
-
status:
|
|
508
|
+
status: 400 | 403 | 404 | 409;
|
|
509
509
|
};
|
|
510
510
|
/**
|
|
511
511
|
* Clears the cache for data-connections api requests.
|
package/data-connections.js
CHANGED
package/data-credentials.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type ActionFilterOrphanRequest = {
|
|
@@ -114,12 +114,12 @@ declare const filterOrphanedDataCredentials: (body: ActionFilterOrphanRequest, o
|
|
|
114
114
|
type FilterOrphanedDataCredentialsHttpResponse = {
|
|
115
115
|
data: ActionFilterOrphanResponse;
|
|
116
116
|
headers: Headers;
|
|
117
|
-
status:
|
|
117
|
+
status: 200;
|
|
118
118
|
};
|
|
119
119
|
type FilterOrphanedDataCredentialsHttpError = {
|
|
120
120
|
data: ResponseErrors;
|
|
121
121
|
headers: Headers;
|
|
122
|
-
status:
|
|
122
|
+
status: 400 | 403;
|
|
123
123
|
};
|
|
124
124
|
/**
|
|
125
125
|
* Deletes the specified credential by ID (or by name when type=credentialname is set in query)
|
|
@@ -135,12 +135,12 @@ declare const deleteDataCredential: (qID: string, query: {
|
|
|
135
135
|
type DeleteDataCredentialHttpResponse = {
|
|
136
136
|
data: void;
|
|
137
137
|
headers: Headers;
|
|
138
|
-
status:
|
|
138
|
+
status: 204;
|
|
139
139
|
};
|
|
140
140
|
type DeleteDataCredentialHttpError = {
|
|
141
141
|
data: ResponseErrors;
|
|
142
142
|
headers: Headers;
|
|
143
|
-
status:
|
|
143
|
+
status: 404;
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
146
|
* Gets a credential by ID (or by name when bycredentialname=true is set in query)
|
|
@@ -156,12 +156,12 @@ declare const getDataCredential: (qID: string, query: {
|
|
|
156
156
|
type GetDataCredentialHttpResponse = {
|
|
157
157
|
data: Credential;
|
|
158
158
|
headers: Headers;
|
|
159
|
-
status:
|
|
159
|
+
status: 200;
|
|
160
160
|
};
|
|
161
161
|
type GetDataCredentialHttpError = {
|
|
162
162
|
data: ResponseErrors;
|
|
163
163
|
headers: Headers;
|
|
164
|
-
status:
|
|
164
|
+
status: 400 | 404;
|
|
165
165
|
};
|
|
166
166
|
/**
|
|
167
167
|
* Patches a credential specified by ID (or by name when bycredentialname=true is set in query)
|
|
@@ -178,12 +178,12 @@ declare const patchDataCredential: (qID: string, query: {
|
|
|
178
178
|
type PatchDataCredentialHttpResponse = {
|
|
179
179
|
data: void;
|
|
180
180
|
headers: Headers;
|
|
181
|
-
status:
|
|
181
|
+
status: 204;
|
|
182
182
|
};
|
|
183
183
|
type PatchDataCredentialHttpError = {
|
|
184
184
|
data: ResponseErrors;
|
|
185
185
|
headers: Headers;
|
|
186
|
-
status:
|
|
186
|
+
status: 400 | 404 | 409;
|
|
187
187
|
};
|
|
188
188
|
/**
|
|
189
189
|
* Updates a credential specified by ID (or by name when bycredentialname=true is set in query)
|
|
@@ -200,12 +200,12 @@ declare const updateDataCredential: (qID: string, query: {
|
|
|
200
200
|
type UpdateDataCredentialHttpResponse = {
|
|
201
201
|
data: void;
|
|
202
202
|
headers: Headers;
|
|
203
|
-
status:
|
|
203
|
+
status: 204;
|
|
204
204
|
};
|
|
205
205
|
type UpdateDataCredentialHttpError = {
|
|
206
206
|
data: ResponseErrors;
|
|
207
207
|
headers: Headers;
|
|
208
|
-
status:
|
|
208
|
+
status: 400 | 404 | 409;
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
211
|
* Clears the cache for data-credentials api requests.
|
package/data-credentials.js
CHANGED