@tmdjr/ngx-mfe-orchestrator-contracts 0.0.45 → 0.0.47

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.
@@ -17,4 +17,5 @@ export type CreateMfeRemoteDto = {
17
17
  structuralOverridesFooter?: StructuralOverrideMode;
18
18
  structuralSubType?: StructuralSubType;
19
19
  requiresAuth?: boolean;
20
+ isAdmin?: boolean;
20
21
  };
@@ -13,5 +13,6 @@ export type MfeRemoteDto = {
13
13
  archived: boolean;
14
14
  useRoutes: boolean;
15
15
  requiresAuth: boolean;
16
+ isAdmin: boolean;
16
17
  __v: number;
17
18
  };
@@ -17,4 +17,5 @@ export type UpdateMfeRemoteDto = {
17
17
  structuralOverridesFooter?: StructuralOverrideMode;
18
18
  structuralSubType?: StructuralSubType;
19
19
  requiresAuth?: boolean;
20
+ isAdmin?: boolean;
20
21
  };
@@ -153,6 +153,7 @@ export interface components {
153
153
  structuralOverridesFooter?: components["schemas"]["StructuralOverrideMode"];
154
154
  structuralSubType?: components["schemas"]["StructuralSubType"];
155
155
  requiresAuth?: boolean;
156
+ isAdmin?: boolean;
156
157
  };
157
158
  MfeRemoteDto: {
158
159
  _id: string;
@@ -172,6 +173,7 @@ export interface components {
172
173
  archived: boolean;
173
174
  useRoutes: boolean;
174
175
  requiresAuth: boolean;
176
+ isAdmin: boolean;
175
177
  __v: number;
176
178
  };
177
179
  UpdateMfeRemoteDto: {
@@ -189,6 +191,7 @@ export interface components {
189
191
  structuralOverridesFooter?: components["schemas"]["StructuralOverrideMode"];
190
192
  structuralSubType?: components["schemas"]["StructuralSubType"];
191
193
  requiresAuth?: boolean;
194
+ isAdmin?: boolean;
192
195
  };
193
196
  };
194
197
  responses: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmdjr/ngx-mfe-orchestrator-contracts",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "description": "Types & runtime enums generated from NGX MFE Orchestrator OpenAPI spec",
5
5
  "license": "MIT",
6
6
  "private": false,