@tmdjr/ngx-mfe-orchestrator-contracts 0.0.44 → 0.0.46

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.
@@ -16,4 +16,6 @@ export type CreateMfeRemoteDto = {
16
16
  structuralOverridesNav?: StructuralNavOverrideMode;
17
17
  structuralOverridesFooter?: StructuralOverrideMode;
18
18
  structuralSubType?: StructuralSubType;
19
+ requiresAuth?: boolean;
20
+ isAuth?: boolean;
19
21
  };
@@ -12,5 +12,7 @@ export type MfeRemoteDto = {
12
12
  lastUpdated: string;
13
13
  archived: boolean;
14
14
  useRoutes: boolean;
15
+ requiresAuth: boolean;
16
+ isAuth: boolean;
15
17
  __v: number;
16
18
  };
@@ -16,4 +16,6 @@ export type UpdateMfeRemoteDto = {
16
16
  structuralOverridesNav?: StructuralNavOverrideMode;
17
17
  structuralOverridesFooter?: StructuralOverrideMode;
18
18
  structuralSubType?: StructuralSubType;
19
+ requiresAuth?: boolean;
20
+ isAuth?: boolean;
19
21
  };
@@ -152,6 +152,8 @@ export interface components {
152
152
  structuralOverridesNav?: components["schemas"]["StructuralNavOverrideMode"];
153
153
  structuralOverridesFooter?: components["schemas"]["StructuralOverrideMode"];
154
154
  structuralSubType?: components["schemas"]["StructuralSubType"];
155
+ requiresAuth?: boolean;
156
+ isAuth?: boolean;
155
157
  };
156
158
  MfeRemoteDto: {
157
159
  _id: string;
@@ -170,6 +172,8 @@ export interface components {
170
172
  lastUpdated: string;
171
173
  archived: boolean;
172
174
  useRoutes: boolean;
175
+ requiresAuth: boolean;
176
+ isAuth: boolean;
173
177
  __v: number;
174
178
  };
175
179
  UpdateMfeRemoteDto: {
@@ -186,6 +190,8 @@ export interface components {
186
190
  structuralOverridesNav?: components["schemas"]["StructuralNavOverrideMode"];
187
191
  structuralOverridesFooter?: components["schemas"]["StructuralOverrideMode"];
188
192
  structuralSubType?: components["schemas"]["StructuralSubType"];
193
+ requiresAuth?: boolean;
194
+ isAuth?: boolean;
189
195
  };
190
196
  };
191
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.44",
3
+ "version": "0.0.46",
4
4
  "description": "Types & runtime enums generated from NGX MFE Orchestrator OpenAPI spec",
5
5
  "license": "MIT",
6
6
  "private": false,