@ndla/types-backend 1.0.88 → 1.0.90
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.
|
@@ -539,7 +539,7 @@ export type components = {
|
|
|
539
539
|
* ConfigKey
|
|
540
540
|
* @enum {string}
|
|
541
541
|
*/
|
|
542
|
-
ConfigKey: "
|
|
542
|
+
ConfigKey: "MY_NDLA_WRITE_RESTRICTED";
|
|
543
543
|
/**
|
|
544
544
|
* ConfigMetaDTO
|
|
545
545
|
* @description Describes configuration value.
|
|
@@ -2982,7 +2982,7 @@ export interface operations {
|
|
|
2982
2982
|
query?: never;
|
|
2983
2983
|
header?: never;
|
|
2984
2984
|
path: {
|
|
2985
|
-
/** @description The of configuration value. Can only be one of '
|
|
2985
|
+
/** @description The of configuration value. Can only be one of 'MY_NDLA_WRITE_RESTRICTED' */
|
|
2986
2986
|
"config-key": components["schemas"]["ConfigKey"];
|
|
2987
2987
|
};
|
|
2988
2988
|
cookie?: never;
|
|
@@ -3044,7 +3044,7 @@ export interface operations {
|
|
|
3044
3044
|
query?: never;
|
|
3045
3045
|
header?: never;
|
|
3046
3046
|
path: {
|
|
3047
|
-
/** @description The of configuration value. Can only be one of '
|
|
3047
|
+
/** @description The of configuration value. Can only be one of 'MY_NDLA_WRITE_RESTRICTED' */
|
|
3048
3048
|
"config-key": components["schemas"]["ConfigKey"];
|
|
3049
3049
|
};
|
|
3050
3050
|
cookie?: never;
|
|
@@ -159,6 +159,8 @@ export type components = {
|
|
|
159
159
|
isPrimary: boolean;
|
|
160
160
|
/** @description Whether this context is active */
|
|
161
161
|
isActive: boolean;
|
|
162
|
+
/** @description Whether this context is in archived subject */
|
|
163
|
+
isArchived: boolean;
|
|
162
164
|
/** @description Unique url for this context. */
|
|
163
165
|
url: string;
|
|
164
166
|
};
|