@pdc/sdk 0.19.1 → 0.20.3
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.
|
@@ -8,7 +8,7 @@ export interface BaseField {
|
|
|
8
8
|
[key: string]: BaseFieldLocalization;
|
|
9
9
|
};
|
|
10
10
|
dataType: BaseField.DataTypeEnum;
|
|
11
|
-
|
|
11
|
+
category: BaseField.CategoryEnum;
|
|
12
12
|
valueRelevanceHours: number;
|
|
13
13
|
sensitivityClassification: BaseField.SensitivityClassificationEnum;
|
|
14
14
|
readonly createdAt: string;
|
|
@@ -23,9 +23,18 @@ export declare namespace BaseField {
|
|
|
23
23
|
Url = "url",
|
|
24
24
|
Boolean = "boolean"
|
|
25
25
|
}
|
|
26
|
-
enum
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
enum CategoryEnum {
|
|
27
|
+
Project = "project",
|
|
28
|
+
Organization = "organization",
|
|
29
|
+
NeedsAssessment = "needs_assessment",
|
|
30
|
+
Methodology = "methodology",
|
|
31
|
+
Budget = "budget",
|
|
32
|
+
Evaluation = "evaluation",
|
|
33
|
+
Sustainability = "sustainability",
|
|
34
|
+
Partnerships = "partnerships",
|
|
35
|
+
Outcomes = "outcomes",
|
|
36
|
+
Technical = "technical",
|
|
37
|
+
Uncategorized = "uncategorized"
|
|
29
38
|
}
|
|
30
39
|
enum SensitivityClassificationEnum {
|
|
31
40
|
Public = "public",
|
package/dist/types/BaseField.js
CHANGED
|
@@ -12,11 +12,20 @@ var BaseField;
|
|
|
12
12
|
DataTypeEnum["Url"] = "url";
|
|
13
13
|
DataTypeEnum["Boolean"] = "boolean";
|
|
14
14
|
})(DataTypeEnum = BaseField.DataTypeEnum || (BaseField.DataTypeEnum = {}));
|
|
15
|
-
let
|
|
16
|
-
(function (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
let CategoryEnum;
|
|
16
|
+
(function (CategoryEnum) {
|
|
17
|
+
CategoryEnum["Project"] = "project";
|
|
18
|
+
CategoryEnum["Organization"] = "organization";
|
|
19
|
+
CategoryEnum["NeedsAssessment"] = "needs_assessment";
|
|
20
|
+
CategoryEnum["Methodology"] = "methodology";
|
|
21
|
+
CategoryEnum["Budget"] = "budget";
|
|
22
|
+
CategoryEnum["Evaluation"] = "evaluation";
|
|
23
|
+
CategoryEnum["Sustainability"] = "sustainability";
|
|
24
|
+
CategoryEnum["Partnerships"] = "partnerships";
|
|
25
|
+
CategoryEnum["Outcomes"] = "outcomes";
|
|
26
|
+
CategoryEnum["Technical"] = "technical";
|
|
27
|
+
CategoryEnum["Uncategorized"] = "uncategorized";
|
|
28
|
+
})(CategoryEnum = BaseField.CategoryEnum || (BaseField.CategoryEnum = {}));
|
|
20
29
|
let SensitivityClassificationEnum;
|
|
21
30
|
(function (SensitivityClassificationEnum) {
|
|
22
31
|
SensitivityClassificationEnum["Public"] = "public";
|
package/package.json
CHANGED
package/src/types/BaseField.ts
CHANGED
|
@@ -9,7 +9,7 @@ export interface BaseField {
|
|
|
9
9
|
description: string;
|
|
10
10
|
readonly localizations?: { [key: string]: BaseFieldLocalization; };
|
|
11
11
|
dataType: BaseField.DataTypeEnum;
|
|
12
|
-
|
|
12
|
+
category: BaseField.CategoryEnum;
|
|
13
13
|
valueRelevanceHours: number;
|
|
14
14
|
sensitivityClassification: BaseField.SensitivityClassificationEnum;
|
|
15
15
|
readonly createdAt: string;
|
|
@@ -26,9 +26,18 @@ export namespace BaseField {
|
|
|
26
26
|
Url = 'url',
|
|
27
27
|
Boolean = 'boolean',
|
|
28
28
|
}
|
|
29
|
-
export enum
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
export enum CategoryEnum {
|
|
30
|
+
Project = 'project',
|
|
31
|
+
Organization = 'organization',
|
|
32
|
+
NeedsAssessment = 'needs_assessment',
|
|
33
|
+
Methodology = 'methodology',
|
|
34
|
+
Budget = 'budget',
|
|
35
|
+
Evaluation = 'evaluation',
|
|
36
|
+
Sustainability = 'sustainability',
|
|
37
|
+
Partnerships = 'partnerships',
|
|
38
|
+
Outcomes = 'outcomes',
|
|
39
|
+
Technical = 'technical',
|
|
40
|
+
Uncategorized = 'uncategorized',
|
|
32
41
|
}
|
|
33
42
|
export enum SensitivityClassificationEnum {
|
|
34
43
|
Public = 'public',
|