@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.
|
@@ -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;
|