@qlik/api 1.23.0 → 1.24.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 +6 -2
- package/api-keys.js +2 -2
- package/apps.d.ts +1 -1
- package/apps.js +2 -2
- package/audits.d.ts +4 -16
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +2 -59
- package/automations.js +3 -19
- package/brands.d.ts +1 -1
- package/brands.js +2 -2
- package/chunks/{E5TLRYTH.js → 3DYV7KOJ.js} +2 -2
- package/chunks/{CUC5USM5.js → 6DEESTGF.js} +2 -2
- package/chunks/{3REGOC54.js → 6QRR5VUM.js} +2 -2
- package/chunks/7BDAXGID.js +116 -0
- package/chunks/{3W4PFUMC.js → BL5PJM4B.js} +1 -1
- package/chunks/{3KD5W26Z.js → CZC7KEJN.js} +3 -3
- package/chunks/{OCV75U5H.js → I5UOE4ZZ.js} +81 -77
- package/chunks/{UJV2QU2J.js → N3ZFICDU.js} +3 -3
- package/chunks/{VXEOAWM6.js → OIQ5ELGS.js} +1 -1
- package/chunks/{SMQGR3VM.js → UA6BE3VB.js} +2 -2
- package/chunks/{EUWNVVK5.js → VX3MQBE7.js} +1 -1
- package/collections.d.ts +1 -1
- package/collections.js +2 -2
- package/csp-origins.d.ts +1 -1
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +1 -1
- package/data-assets.js +2 -2
- package/data-connections.d.ts +1 -1
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +1 -1
- package/data-credentials.js +2 -2
- package/data-files.d.ts +1 -1
- package/data-files.js +2 -2
- package/docs/rest.md +47 -0
- package/extensions.d.ts +1 -1
- package/extensions.js +2 -2
- package/glossaries.d.ts +3 -4
- package/glossaries.js +2 -2
- package/groups.d.ts +1 -1
- package/groups.js +2 -2
- package/identity-providers.d.ts +1 -1
- package/identity-providers.js +2 -2
- package/index.d.ts +11 -4
- package/index.js +89 -79
- package/interceptors.d.ts +51 -0
- package/interceptors.js +17 -0
- package/{global.types-qsBNouXJ.d.ts → invoke-fetch-types-BLrpeZOL.d.ts} +81 -48
- package/items.d.ts +1 -1
- package/items.js +2 -2
- package/licenses.d.ts +3 -1
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +2 -2
- package/qix.js +2 -2
- package/quotas.d.ts +1 -1
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +1 -1
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +1 -1
- package/reloads.js +2 -2
- package/reports.d.ts +5 -3
- package/reports.js +2 -2
- package/roles.d.ts +98 -4
- package/roles.js +28 -4
- package/spaces.d.ts +1 -1
- package/spaces.js +2 -2
- package/temp-contents.d.ts +5 -5
- package/temp-contents.js +2 -2
- package/tenants.d.ts +1 -1
- package/tenants.js +2 -2
- package/themes.d.ts +1 -1
- package/themes.js +2 -2
- package/transports.d.ts +1 -1
- package/transports.js +2 -2
- package/users.d.ts +3 -38
- package/users.js +2 -9
- package/web-integrations.d.ts +1 -1
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +1 -1
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +1 -1
- package/webhooks.js +2 -2
- package/chunks/7RHSSS4W.js +0 -0
package/roles.d.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BLrpeZOL.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
|
+
type CreateRole = {
|
|
5
|
+
/** Selection of scopes to assign to role */
|
|
6
|
+
assignedScopes?: string[];
|
|
7
|
+
/** Role description */
|
|
8
|
+
description?: string;
|
|
9
|
+
/** Role name, needs to be unique */
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
4
12
|
/**
|
|
5
13
|
* An error object describing the error.
|
|
6
14
|
*/
|
|
@@ -55,6 +63,18 @@ type ListRolesResult = {
|
|
|
55
63
|
/** Indicates the total number of matching documents. Will only be returned if the query parameter "totalResults" is true. */
|
|
56
64
|
totalResults?: number;
|
|
57
65
|
};
|
|
66
|
+
/**
|
|
67
|
+
* A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
|
|
68
|
+
*/
|
|
69
|
+
type PatchRole = {
|
|
70
|
+
op: "replace";
|
|
71
|
+
path: "/name" | "/description" | "/assignedScopes";
|
|
72
|
+
value: string | string[];
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* An array of JSON Patch documents
|
|
76
|
+
*/
|
|
77
|
+
type PatchRoles = PatchRole[];
|
|
58
78
|
type Role = {
|
|
59
79
|
/** Selection of scopes added to this Role */
|
|
60
80
|
assignedScopes?: string[];
|
|
@@ -129,10 +149,44 @@ type GetRolesHttpError = {
|
|
|
129
149
|
headers: Headers;
|
|
130
150
|
status: number;
|
|
131
151
|
};
|
|
152
|
+
/**
|
|
153
|
+
* Creates a custom role. Role names must be unique, and there is a maximum of 500 custom roles per tenant. Requestor must be assigned the `TenantAdmin` role.
|
|
154
|
+
*
|
|
155
|
+
* @param body an object with the body content
|
|
156
|
+
* @throws CreateRoleHttpError
|
|
157
|
+
*/
|
|
158
|
+
declare const createRole: (body: CreateRole, options?: ApiCallOptions) => Promise<CreateRoleHttpResponse>;
|
|
159
|
+
type CreateRoleHttpResponse = {
|
|
160
|
+
data: Role;
|
|
161
|
+
headers: Headers;
|
|
162
|
+
status: number;
|
|
163
|
+
};
|
|
164
|
+
type CreateRoleHttpError = {
|
|
165
|
+
data: Errors;
|
|
166
|
+
headers: Headers;
|
|
167
|
+
status: number;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Deletes the requested role. Role can only be deleted if it has been unassigned from all users and groups. Only applicable to roles of type `custom`. Requestor must be assigned the `TenantAdmin` role.
|
|
171
|
+
*
|
|
172
|
+
* @param id The unique identifier for the role.
|
|
173
|
+
* @throws DeleteRoleHttpError
|
|
174
|
+
*/
|
|
175
|
+
declare const deleteRole: (id: string, options?: ApiCallOptions) => Promise<DeleteRoleHttpResponse>;
|
|
176
|
+
type DeleteRoleHttpResponse = {
|
|
177
|
+
data: void;
|
|
178
|
+
headers: Headers;
|
|
179
|
+
status: number;
|
|
180
|
+
};
|
|
181
|
+
type DeleteRoleHttpError = {
|
|
182
|
+
data: Errors;
|
|
183
|
+
headers: Headers;
|
|
184
|
+
status: number;
|
|
185
|
+
};
|
|
132
186
|
/**
|
|
133
187
|
* Returns the requested role.
|
|
134
188
|
*
|
|
135
|
-
* @param id The
|
|
189
|
+
* @param id The unique identifier for the role.
|
|
136
190
|
* @throws GetRoleHttpError
|
|
137
191
|
*/
|
|
138
192
|
declare const getRole: (id: string, options?: ApiCallOptions) => Promise<GetRoleHttpResponse>;
|
|
@@ -146,6 +200,24 @@ type GetRoleHttpError = {
|
|
|
146
200
|
headers: Headers;
|
|
147
201
|
status: number;
|
|
148
202
|
};
|
|
203
|
+
/**
|
|
204
|
+
* Updates the requested role. Only applicable to roles of type `custom`. Requestor must be assigned the `TenantAdmin` role.
|
|
205
|
+
*
|
|
206
|
+
* @param id The unique identifier for the role.
|
|
207
|
+
* @param body an object with the body content
|
|
208
|
+
* @throws PatchRoleHttpError
|
|
209
|
+
*/
|
|
210
|
+
declare const patchRole: (id: string, body: PatchRoles[], options?: ApiCallOptions) => Promise<PatchRoleHttpResponse>;
|
|
211
|
+
type PatchRoleHttpResponse = {
|
|
212
|
+
data: void;
|
|
213
|
+
headers: Headers;
|
|
214
|
+
status: number;
|
|
215
|
+
};
|
|
216
|
+
type PatchRoleHttpError = {
|
|
217
|
+
data: Errors;
|
|
218
|
+
headers: Headers;
|
|
219
|
+
status: number;
|
|
220
|
+
};
|
|
149
221
|
/**
|
|
150
222
|
* Clears the cache for roles api requests.
|
|
151
223
|
*/
|
|
@@ -158,13 +230,35 @@ interface RolesAPI {
|
|
|
158
230
|
* @throws GetRolesHttpError
|
|
159
231
|
*/
|
|
160
232
|
getRoles: typeof getRoles;
|
|
233
|
+
/**
|
|
234
|
+
* Creates a custom role. Role names must be unique, and there is a maximum of 500 custom roles per tenant. Requestor must be assigned the `TenantAdmin` role.
|
|
235
|
+
*
|
|
236
|
+
* @param body an object with the body content
|
|
237
|
+
* @throws CreateRoleHttpError
|
|
238
|
+
*/
|
|
239
|
+
createRole: typeof createRole;
|
|
240
|
+
/**
|
|
241
|
+
* Deletes the requested role. Role can only be deleted if it has been unassigned from all users and groups. Only applicable to roles of type `custom`. Requestor must be assigned the `TenantAdmin` role.
|
|
242
|
+
*
|
|
243
|
+
* @param id The unique identifier for the role.
|
|
244
|
+
* @throws DeleteRoleHttpError
|
|
245
|
+
*/
|
|
246
|
+
deleteRole: typeof deleteRole;
|
|
161
247
|
/**
|
|
162
248
|
* Returns the requested role.
|
|
163
249
|
*
|
|
164
|
-
* @param id The
|
|
250
|
+
* @param id The unique identifier for the role.
|
|
165
251
|
* @throws GetRoleHttpError
|
|
166
252
|
*/
|
|
167
253
|
getRole: typeof getRole;
|
|
254
|
+
/**
|
|
255
|
+
* Updates the requested role. Only applicable to roles of type `custom`. Requestor must be assigned the `TenantAdmin` role.
|
|
256
|
+
*
|
|
257
|
+
* @param id The unique identifier for the role.
|
|
258
|
+
* @param body an object with the body content
|
|
259
|
+
* @throws PatchRoleHttpError
|
|
260
|
+
*/
|
|
261
|
+
patchRole: typeof patchRole;
|
|
168
262
|
/**
|
|
169
263
|
* Clears the cache for roles api requests.
|
|
170
264
|
*/
|
|
@@ -175,4 +269,4 @@ interface RolesAPI {
|
|
|
175
269
|
*/
|
|
176
270
|
declare const rolesExport: RolesAPI;
|
|
177
271
|
|
|
178
|
-
export { type Error, type Errors, type GetRoleHttpError, type GetRoleHttpResponse, type GetRolesHttpError, type GetRolesHttpResponse, type Links, type ListRolesResult, type Role, type RolesAPI, clearCache, rolesExport as default, getRole, getRoles };
|
|
272
|
+
export { type CreateRole, type CreateRoleHttpError, type CreateRoleHttpResponse, type DeleteRoleHttpError, type DeleteRoleHttpResponse, type Error, type Errors, type GetRoleHttpError, type GetRoleHttpResponse, type GetRolesHttpError, type GetRolesHttpResponse, type Links, type ListRolesResult, type PatchRole, type PatchRoleHttpError, type PatchRoleHttpResponse, type PatchRoles, type Role, type RolesAPI, clearCache, createRole, rolesExport as default, deleteRole, getRole, getRoles, patchRole };
|
package/roles.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/UA6BE3VB.js";
|
|
5
|
+
import "./chunks/CZC7KEJN.js";
|
|
6
6
|
import "./chunks/2ZQ3ZX7F.js";
|
|
7
7
|
|
|
8
8
|
// src/public/rest/roles.ts
|
|
@@ -12,20 +12,44 @@ var getRoles = async (query, options) => invokeFetch("roles", {
|
|
|
12
12
|
query,
|
|
13
13
|
options
|
|
14
14
|
});
|
|
15
|
+
var createRole = async (body, options) => invokeFetch("roles", {
|
|
16
|
+
method: "post",
|
|
17
|
+
pathTemplate: "/api/v1/roles",
|
|
18
|
+
body,
|
|
19
|
+
contentType: "application/json",
|
|
20
|
+
options
|
|
21
|
+
});
|
|
22
|
+
var deleteRole = async (id, options) => invokeFetch("roles", {
|
|
23
|
+
method: "delete",
|
|
24
|
+
pathTemplate: "/api/v1/roles/{id}",
|
|
25
|
+
pathVariables: { id },
|
|
26
|
+
options
|
|
27
|
+
});
|
|
15
28
|
var getRole = async (id, options) => invokeFetch("roles", {
|
|
16
29
|
method: "get",
|
|
17
30
|
pathTemplate: "/api/v1/roles/{id}",
|
|
18
31
|
pathVariables: { id },
|
|
19
32
|
options
|
|
20
33
|
});
|
|
34
|
+
var patchRole = async (id, body, options) => invokeFetch("roles", {
|
|
35
|
+
method: "patch",
|
|
36
|
+
pathTemplate: "/api/v1/roles/{id}",
|
|
37
|
+
pathVariables: { id },
|
|
38
|
+
body,
|
|
39
|
+
contentType: "application/json",
|
|
40
|
+
options
|
|
41
|
+
});
|
|
21
42
|
function clearCache() {
|
|
22
43
|
return clearApiCache("roles");
|
|
23
44
|
}
|
|
24
|
-
var rolesExport = { getRoles, getRole, clearCache };
|
|
45
|
+
var rolesExport = { getRoles, createRole, deleteRole, getRole, patchRole, clearCache };
|
|
25
46
|
var roles_default = rolesExport;
|
|
26
47
|
export {
|
|
27
48
|
clearCache,
|
|
49
|
+
createRole,
|
|
28
50
|
roles_default as default,
|
|
51
|
+
deleteRole,
|
|
29
52
|
getRole,
|
|
30
|
-
getRoles
|
|
53
|
+
getRoles,
|
|
54
|
+
patchRole
|
|
31
55
|
};
|
package/spaces.d.ts
CHANGED
package/spaces.js
CHANGED
package/temp-contents.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BLrpeZOL.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -48,7 +48,7 @@ type DetailResponse = {
|
|
|
48
48
|
UpdatedAt?: string;
|
|
49
49
|
};
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Upload a file as a temporary content resource. It returns a `201 Created` with a location header that contains the location of the created resource. If filename or TTL is not properly set, a `400 Bad request` is returned. For internal issues, a `500 Internal Server Error` is returned.
|
|
52
52
|
*
|
|
53
53
|
* @param query an object with query parameters
|
|
54
54
|
* @param body an object with the body content
|
|
@@ -104,7 +104,7 @@ type DownloadTempFileHttpError = {
|
|
|
104
104
|
status: number;
|
|
105
105
|
};
|
|
106
106
|
/**
|
|
107
|
-
*
|
|
107
|
+
* Retrieve a summary of the metadata associated with a temporary content resource. It returns a `200 OK` with a model if the temporary resource is valid. It returns a `410 Gone` if the file has expired and `404 Not Found` if the criteria is not met.
|
|
108
108
|
*
|
|
109
109
|
* @param id The temporary contents ID.
|
|
110
110
|
* @throws GetTempFileDetailsHttpError
|
|
@@ -132,7 +132,7 @@ type GetTempFileDetailsHttpError = {
|
|
|
132
132
|
declare function clearCache(): void;
|
|
133
133
|
interface TempContentsAPI {
|
|
134
134
|
/**
|
|
135
|
-
*
|
|
135
|
+
* Upload a file as a temporary content resource. It returns a `201 Created` with a location header that contains the location of the created resource. If filename or TTL is not properly set, a `400 Bad request` is returned. For internal issues, a `500 Internal Server Error` is returned.
|
|
136
136
|
*
|
|
137
137
|
* @param query an object with query parameters
|
|
138
138
|
* @param body an object with the body content
|
|
@@ -148,7 +148,7 @@ interface TempContentsAPI {
|
|
|
148
148
|
*/
|
|
149
149
|
downloadTempFile: typeof downloadTempFile;
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Retrieve a summary of the metadata associated with a temporary content resource. It returns a `200 OK` with a model if the temporary resource is valid. It returns a `410 Gone` if the file has expired and `404 Not Found` if the criteria is not met.
|
|
152
152
|
*
|
|
153
153
|
* @param id The temporary contents ID.
|
|
154
154
|
* @throws GetTempFileDetailsHttpError
|
package/temp-contents.js
CHANGED
package/tenants.d.ts
CHANGED
package/tenants.js
CHANGED
package/themes.d.ts
CHANGED
package/themes.js
CHANGED
package/transports.d.ts
CHANGED
package/transports.js
CHANGED
package/users.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BLrpeZOL.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -143,15 +143,6 @@ type JSONPatch = {
|
|
|
143
143
|
* An array of JSON Patch documents
|
|
144
144
|
*/
|
|
145
145
|
type JSONPatchArray = JSONPatch[];
|
|
146
|
-
/**
|
|
147
|
-
* @deprecated
|
|
148
|
-
*
|
|
149
|
-
* An object containing the metadata for the user configuration.
|
|
150
|
-
*/
|
|
151
|
-
type Metadata = {
|
|
152
|
-
/** List of system roles to which the user can be assigned. */
|
|
153
|
-
valid_roles?: string[];
|
|
154
|
-
};
|
|
155
146
|
/**
|
|
156
147
|
* Invitee result item
|
|
157
148
|
*/
|
|
@@ -184,7 +175,7 @@ type User = {
|
|
|
184
175
|
email?: string;
|
|
185
176
|
/** The unique user identifier. */
|
|
186
177
|
readonly id: string;
|
|
187
|
-
/** The
|
|
178
|
+
/** The Unix timestamp indicating when the invite will expire. */
|
|
188
179
|
readonly inviteExpiry?: number;
|
|
189
180
|
/** @deprecated
|
|
190
181
|
* Deprecated. Use `lastUpdatedAt` instead. */
|
|
@@ -460,24 +451,6 @@ type GetMyUserHttpError = {
|
|
|
460
451
|
headers: Headers;
|
|
461
452
|
status: number;
|
|
462
453
|
};
|
|
463
|
-
/**
|
|
464
|
-
* @deprecated
|
|
465
|
-
*
|
|
466
|
-
* Returns the metadata with regard to the user configuration. Deprecated, use GET /v1/roles instead.
|
|
467
|
-
*
|
|
468
|
-
* @throws GetUsersMetadataHttpError
|
|
469
|
-
*/
|
|
470
|
-
declare const getUsersMetadata: (options?: ApiCallOptions) => Promise<GetUsersMetadataHttpResponse>;
|
|
471
|
-
type GetUsersMetadataHttpResponse = {
|
|
472
|
-
data: Metadata;
|
|
473
|
-
headers: Headers;
|
|
474
|
-
status: number;
|
|
475
|
-
};
|
|
476
|
-
type GetUsersMetadataHttpError = {
|
|
477
|
-
data: Errors;
|
|
478
|
-
headers: Headers;
|
|
479
|
-
status: number;
|
|
480
|
-
};
|
|
481
454
|
/**
|
|
482
455
|
* Deletes the requested user.
|
|
483
456
|
*
|
|
@@ -587,14 +560,6 @@ interface UsersAPI {
|
|
|
587
560
|
* @throws GetMyUserHttpError
|
|
588
561
|
*/
|
|
589
562
|
getMyUser: typeof getMyUser;
|
|
590
|
-
/**
|
|
591
|
-
* @deprecated
|
|
592
|
-
*
|
|
593
|
-
* Returns the metadata with regard to the user configuration. Deprecated, use GET /v1/roles instead.
|
|
594
|
-
*
|
|
595
|
-
* @throws GetUsersMetadataHttpError
|
|
596
|
-
*/
|
|
597
|
-
getUsersMetadata: typeof getUsersMetadata;
|
|
598
563
|
/**
|
|
599
564
|
* Deletes the requested user.
|
|
600
565
|
*
|
|
@@ -628,4 +593,4 @@ interface UsersAPI {
|
|
|
628
593
|
*/
|
|
629
594
|
declare const usersExport: UsersAPI;
|
|
630
595
|
|
|
631
|
-
export { type AssignedGroups, type AssignedRoles, type AssignedRolesRefIDs, type AssignedRolesRefNames, type AssignedScopes, type CountUsersHttpError, type CountUsersHttpResponse, type CreateUserHttpError, type CreateUserHttpResponse, type DeleteUserHttpError, type DeleteUserHttpResponse, type Error, type ErrorItem, type Errors, type ErrorsResponse, type Filter, type FilterUsersHttpError, type FilterUsersHttpResponse, type GetMyUserHttpError, type GetMyUserHttpResponse, type GetUserHttpError, type GetUserHttpResponse, type GetUsersHttpError, type GetUsersHttpResponse, type
|
|
596
|
+
export { type AssignedGroups, type AssignedRoles, type AssignedRolesRefIDs, type AssignedRolesRefNames, type AssignedScopes, type CountUsersHttpError, type CountUsersHttpResponse, type CreateUserHttpError, type CreateUserHttpResponse, type DeleteUserHttpError, type DeleteUserHttpResponse, type Error, type ErrorItem, type Errors, type ErrorsResponse, type Filter, type FilterUsersHttpError, type FilterUsersHttpResponse, type GetMyUserHttpError, type GetMyUserHttpResponse, type GetUserHttpError, type GetUserHttpResponse, type GetUsersHttpError, type GetUsersHttpResponse, type InviteDataResponse, type InviteErrorItem, type InviteItem, type InviteRequestData, type InviteUsersHttpError, type InviteUsersHttpResponse, type JSONPatch, type JSONPatchArray, type PatchUser204HttpResponse, type PatchUser207HttpResponse, type PatchUserHttpError, type PatchUserHttpResponse, type ResultItem, type User, type UserCount, type UserPostSchema, type Users, type UsersAPI, clearCache, countUsers, createUser, usersExport as default, deleteUser, filterUsers, getMyUser, getUser, getUsers, inviteUsers, patchUser };
|
package/users.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/UA6BE3VB.js";
|
|
5
|
+
import "./chunks/CZC7KEJN.js";
|
|
6
6
|
import "./chunks/2ZQ3ZX7F.js";
|
|
7
7
|
|
|
8
8
|
// src/public/rest/users.ts
|
|
@@ -45,11 +45,6 @@ var getMyUser = async (options) => invokeFetch("users", {
|
|
|
45
45
|
pathTemplate: "/api/v1/users/me",
|
|
46
46
|
options
|
|
47
47
|
});
|
|
48
|
-
var getUsersMetadata = async (options) => invokeFetch("users", {
|
|
49
|
-
method: "get",
|
|
50
|
-
pathTemplate: "/api/v1/users/metadata",
|
|
51
|
-
options
|
|
52
|
-
});
|
|
53
48
|
var deleteUser = async (userId, options) => invokeFetch("users", {
|
|
54
49
|
method: "delete",
|
|
55
50
|
pathTemplate: "/api/v1/users/{userId}",
|
|
@@ -81,7 +76,6 @@ var usersExport = {
|
|
|
81
76
|
filterUsers,
|
|
82
77
|
inviteUsers,
|
|
83
78
|
getMyUser,
|
|
84
|
-
getUsersMetadata,
|
|
85
79
|
deleteUser,
|
|
86
80
|
getUser,
|
|
87
81
|
patchUser,
|
|
@@ -98,7 +92,6 @@ export {
|
|
|
98
92
|
getMyUser,
|
|
99
93
|
getUser,
|
|
100
94
|
getUsers,
|
|
101
|
-
getUsersMetadata,
|
|
102
95
|
inviteUsers,
|
|
103
96
|
patchUser
|
|
104
97
|
};
|
package/web-integrations.d.ts
CHANGED
package/web-integrations.js
CHANGED
package/web-notifications.d.ts
CHANGED
package/web-notifications.js
CHANGED
package/webhooks.d.ts
CHANGED
package/webhooks.js
CHANGED
package/chunks/7RHSSS4W.js
DELETED
|
File without changes
|