@noatgnu/cupcake-core 1.2.8 → 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 +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ 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;
|
|
@@ -270,6 +271,7 @@ interface LabGroupCreateRequest {
|
|
|
270
271
|
description?: string;
|
|
271
272
|
parentGroup?: number;
|
|
272
273
|
allowMemberInvites?: boolean;
|
|
274
|
+
allowProcessJobs?: boolean;
|
|
273
275
|
}
|
|
274
276
|
interface LabGroupUpdateRequest {
|
|
275
277
|
name?: string;
|
|
@@ -277,6 +279,7 @@ interface LabGroupUpdateRequest {
|
|
|
277
279
|
parentGroup?: number;
|
|
278
280
|
isActive?: boolean;
|
|
279
281
|
allowMemberInvites?: boolean;
|
|
282
|
+
allowProcessJobs?: boolean;
|
|
280
283
|
}
|
|
281
284
|
interface LabGroupInviteRequest {
|
|
282
285
|
emails: string[];
|
package/package.json
CHANGED