@pdc/sdk 0.18.1 → 0.19.1
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.
|
@@ -9,7 +9,8 @@ export interface BaseField {
|
|
|
9
9
|
};
|
|
10
10
|
dataType: BaseField.DataTypeEnum;
|
|
11
11
|
scope: BaseField.ScopeEnum;
|
|
12
|
-
valueRelevanceHours
|
|
12
|
+
valueRelevanceHours: number;
|
|
13
|
+
sensitivityClassification: BaseField.SensitivityClassificationEnum;
|
|
13
14
|
readonly createdAt: string;
|
|
14
15
|
}
|
|
15
16
|
export type WritableBaseField = Writable<BaseField>;
|
|
@@ -26,4 +27,9 @@ export declare namespace BaseField {
|
|
|
26
27
|
Proposal = "proposal",
|
|
27
28
|
Changemaker = "changemaker"
|
|
28
29
|
}
|
|
30
|
+
enum SensitivityClassificationEnum {
|
|
31
|
+
Public = "public",
|
|
32
|
+
Restricted = "restricted",
|
|
33
|
+
Forbidden = "forbidden"
|
|
34
|
+
}
|
|
29
35
|
}
|
package/dist/types/BaseField.js
CHANGED
|
@@ -17,4 +17,10 @@ var BaseField;
|
|
|
17
17
|
ScopeEnum["Proposal"] = "proposal";
|
|
18
18
|
ScopeEnum["Changemaker"] = "changemaker";
|
|
19
19
|
})(ScopeEnum = BaseField.ScopeEnum || (BaseField.ScopeEnum = {}));
|
|
20
|
+
let SensitivityClassificationEnum;
|
|
21
|
+
(function (SensitivityClassificationEnum) {
|
|
22
|
+
SensitivityClassificationEnum["Public"] = "public";
|
|
23
|
+
SensitivityClassificationEnum["Restricted"] = "restricted";
|
|
24
|
+
SensitivityClassificationEnum["Forbidden"] = "forbidden";
|
|
25
|
+
})(SensitivityClassificationEnum = BaseField.SensitivityClassificationEnum || (BaseField.SensitivityClassificationEnum = {}));
|
|
20
26
|
})(BaseField || (exports.BaseField = BaseField = {}));
|
package/package.json
CHANGED
package/src/types/BaseField.ts
CHANGED
|
@@ -10,7 +10,8 @@ export interface BaseField {
|
|
|
10
10
|
readonly localizations?: { [key: string]: BaseFieldLocalization; };
|
|
11
11
|
dataType: BaseField.DataTypeEnum;
|
|
12
12
|
scope: BaseField.ScopeEnum;
|
|
13
|
-
valueRelevanceHours
|
|
13
|
+
valueRelevanceHours: number;
|
|
14
|
+
sensitivityClassification: BaseField.SensitivityClassificationEnum;
|
|
14
15
|
readonly createdAt: string;
|
|
15
16
|
}
|
|
16
17
|
|
|
@@ -29,4 +30,9 @@ export namespace BaseField {
|
|
|
29
30
|
Proposal = 'proposal',
|
|
30
31
|
Changemaker = 'changemaker',
|
|
31
32
|
}
|
|
33
|
+
export enum SensitivityClassificationEnum {
|
|
34
|
+
Public = 'public',
|
|
35
|
+
Restricted = 'restricted',
|
|
36
|
+
Forbidden = 'forbidden',
|
|
37
|
+
}
|
|
32
38
|
}
|