Browse Source

Merge branch 'olympia-merge' into giza-olympia-post-merge

Leszek Wiesner 3 years ago
parent
commit
eaf0b9344f
3 changed files with 4 additions and 4 deletions
  1. 2 2
      types/augment/all/defs.json
  2. 1 1
      types/augment/all/types.ts
  3. 1 1
      types/src/common.ts

+ 2 - 2
types/augment/all/defs.json

@@ -16,12 +16,12 @@
             "Forum",
             "Storage",
             "Content",
-            "Membership",
             "OperationsAlpha",
             "Gateway",
             "Distribution",
             "OperationsBeta",
-            "OperationsGamma"
+            "OperationsGamma",
+            "Membership"
         ]
     },
     "MemoText": "Text",

+ 1 - 1
types/augment/all/types.ts

@@ -1289,12 +1289,12 @@ export interface WorkingGroup extends Enum {
   readonly isForum: boolean;
   readonly isStorage: boolean;
   readonly isContent: boolean;
-  readonly isMembership: boolean;
   readonly isOperationsAlpha: boolean;
   readonly isGateway: boolean;
   readonly isDistribution: boolean;
   readonly isOperationsBeta: boolean;
   readonly isOperationsGamma: boolean;
+  readonly isMembership: boolean;
 }
 
 export type PHANTOM_ALL = 'all';

+ 1 - 1
types/src/common.ts

@@ -83,12 +83,12 @@ export const WorkingGroupDef = {
   Forum: Null,
   Storage: Null,
   Content: Null,
-  Membership: Null,
   OperationsAlpha: Null,
   Gateway: Null,
   Distribution: Null,
   OperationsBeta: Null,
   OperationsGamma: Null,
+  Membership: Null,
 } as const
 export type WorkingGroupKey = keyof typeof WorkingGroupDef
 export class WorkingGroup extends JoyEnum(WorkingGroupDef) {}