@noatgnu/cupcake-core 1.2.7 → 1.2.9
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/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -242,12 +242,14 @@ interface LabGroup extends BaseTimestampedModel {
|
|
|
242
242
|
creatorName?: string;
|
|
243
243
|
isActive: boolean;
|
|
244
244
|
allowMemberInvites: boolean;
|
|
245
|
+
allowProcessJobs: boolean;
|
|
245
246
|
memberCount: number;
|
|
246
247
|
subGroupsCount: number;
|
|
247
248
|
isCreator: boolean;
|
|
248
249
|
isMember: boolean;
|
|
249
250
|
canInvite: boolean;
|
|
250
251
|
canManage: boolean;
|
|
252
|
+
canProcessJobs: boolean;
|
|
251
253
|
}
|
|
252
254
|
interface LabGroupInvitation extends BaseTimestampedModel {
|
|
253
255
|
id: number;
|
|
@@ -269,6 +271,7 @@ interface LabGroupCreateRequest {
|
|
|
269
271
|
description?: string;
|
|
270
272
|
parentGroup?: number;
|
|
271
273
|
allowMemberInvites?: boolean;
|
|
274
|
+
allowProcessJobs?: boolean;
|
|
272
275
|
}
|
|
273
276
|
interface LabGroupUpdateRequest {
|
|
274
277
|
name?: string;
|
|
@@ -276,6 +279,7 @@ interface LabGroupUpdateRequest {
|
|
|
276
279
|
parentGroup?: number;
|
|
277
280
|
isActive?: boolean;
|
|
278
281
|
allowMemberInvites?: boolean;
|
|
282
|
+
allowProcessJobs?: boolean;
|
|
279
283
|
}
|
|
280
284
|
interface LabGroupInviteRequest {
|
|
281
285
|
emails: string[];
|
|
@@ -325,6 +329,7 @@ interface LabGroupPermission extends BaseTimestampedModel {
|
|
|
325
329
|
canView: boolean;
|
|
326
330
|
canInvite: boolean;
|
|
327
331
|
canManage: boolean;
|
|
332
|
+
canProcessJobs: boolean;
|
|
328
333
|
}
|
|
329
334
|
interface LabGroupPermissionCreateRequest {
|
|
330
335
|
user: number;
|
|
@@ -332,11 +337,13 @@ interface LabGroupPermissionCreateRequest {
|
|
|
332
337
|
canView?: boolean;
|
|
333
338
|
canInvite?: boolean;
|
|
334
339
|
canManage?: boolean;
|
|
340
|
+
canProcessJobs?: boolean;
|
|
335
341
|
}
|
|
336
342
|
interface LabGroupPermissionUpdateRequest {
|
|
337
343
|
canView?: boolean;
|
|
338
344
|
canInvite?: boolean;
|
|
339
345
|
canManage?: boolean;
|
|
346
|
+
canProcessJobs?: boolean;
|
|
340
347
|
}
|
|
341
348
|
interface LabGroupPermissionQueryResponse {
|
|
342
349
|
count: number;
|
package/package.json
CHANGED