@luomus/laji-schema 2.0.13 → 2.0.15
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.
|
@@ -28,6 +28,7 @@ var ResultServiceTypeEnum;
|
|
|
28
28
|
ResultServiceTypeEnum["resultServiceTypeSykeInsectProjects"] = "MHL.resultServiceTypeSykeInsectProjects";
|
|
29
29
|
ResultServiceTypeEnum["resultServiceTypeInvasiveControl"] = "MHL.resultServiceTypeInvasiveControl";
|
|
30
30
|
ResultServiceTypeEnum["resultServiceTypeCompleteLists"] = "MHL.resultServiceTypeCompleteLists";
|
|
31
|
+
ResultServiceTypeEnum["resultServiceTypeBirdCount"] = "MHL.resultServiceTypeBirdCount";
|
|
31
32
|
})(ResultServiceTypeEnum = exports.ResultServiceTypeEnum || (exports.ResultServiceTypeEnum = {}));
|
|
32
33
|
var ViewerTypeEnum;
|
|
33
34
|
(function (ViewerTypeEnum) {
|
|
@@ -25,6 +25,7 @@ export var ResultServiceTypeEnum;
|
|
|
25
25
|
ResultServiceTypeEnum["resultServiceTypeSykeInsectProjects"] = "MHL.resultServiceTypeSykeInsectProjects";
|
|
26
26
|
ResultServiceTypeEnum["resultServiceTypeInvasiveControl"] = "MHL.resultServiceTypeInvasiveControl";
|
|
27
27
|
ResultServiceTypeEnum["resultServiceTypeCompleteLists"] = "MHL.resultServiceTypeCompleteLists";
|
|
28
|
+
ResultServiceTypeEnum["resultServiceTypeBirdCount"] = "MHL.resultServiceTypeBirdCount";
|
|
28
29
|
})(ResultServiceTypeEnum || (ResultServiceTypeEnum = {}));
|
|
29
30
|
export var ViewerTypeEnum;
|
|
30
31
|
(function (ViewerTypeEnum) {
|
|
@@ -19,7 +19,8 @@ export declare enum ResultServiceTypeEnum {
|
|
|
19
19
|
"resultServiceTypeWinterBirdCount" = "MHL.resultServiceTypeWinterBirdCount",
|
|
20
20
|
"resultServiceTypeSykeInsectProjects" = "MHL.resultServiceTypeSykeInsectProjects",
|
|
21
21
|
"resultServiceTypeInvasiveControl" = "MHL.resultServiceTypeInvasiveControl",
|
|
22
|
-
"resultServiceTypeCompleteLists" = "MHL.resultServiceTypeCompleteLists"
|
|
22
|
+
"resultServiceTypeCompleteLists" = "MHL.resultServiceTypeCompleteLists",
|
|
23
|
+
"resultServiceTypeBirdCount" = "MHL.resultServiceTypeBirdCount"
|
|
23
24
|
}
|
|
24
25
|
export declare enum ViewerTypeEnum {
|
|
25
26
|
"empty" = "",
|
|
@@ -39,10 +40,6 @@ export declare class FormOptions {
|
|
|
39
40
|
* Form admin can lock documents. Locked documents can't be edited
|
|
40
41
|
*/
|
|
41
42
|
adminLockable?: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Form users can create new named places for the form
|
|
44
|
-
*/
|
|
45
|
-
allowAddingPublicNamedPlaces?: boolean;
|
|
46
43
|
/**
|
|
47
44
|
* Allows usage in spreadsheet upload component
|
|
48
45
|
*/
|
|
@@ -55,10 +52,6 @@ export declare class FormOptions {
|
|
|
55
52
|
* Label for the cancel button at the form footer
|
|
56
53
|
*/
|
|
57
54
|
cancelLabel?: string;
|
|
58
|
-
/**
|
|
59
|
-
* The latest document is copied to named place's prepopulatedDocument. if documents date is same or after the current prepopulated document's date, or if prepopulated document doesn't have date. Date is checked from gatheringEvent or from gatherings
|
|
60
|
-
*/
|
|
61
|
-
copyLatestDocumentToNamedPlace?: boolean;
|
|
62
55
|
/**
|
|
63
56
|
* Has dataset about page
|
|
64
57
|
*/
|
|
@@ -92,18 +85,6 @@ export declare class FormOptions {
|
|
|
92
85
|
* Excludes from the Vihko excel tools
|
|
93
86
|
*/
|
|
94
87
|
excludeFromGlobalExcel?: boolean;
|
|
95
|
-
/**
|
|
96
|
-
* The named place UI allows filtering by bird association area
|
|
97
|
-
*/
|
|
98
|
-
filterNamedPlacesByBirdAssociationArea?: boolean;
|
|
99
|
-
/**
|
|
100
|
-
* The named place UI allows filtering by municipality
|
|
101
|
-
*/
|
|
102
|
-
filterNamedPlacesByMunicipality?: boolean;
|
|
103
|
-
/**
|
|
104
|
-
* The named place UI allows filtering by tags
|
|
105
|
-
*/
|
|
106
|
-
filterNamedPlacesByTags?: boolean;
|
|
107
88
|
/**
|
|
108
89
|
* Options for footer of the observation form
|
|
109
90
|
*/
|
|
@@ -4,7 +4,7 @@ import { Document } from './';
|
|
|
4
4
|
import { FormSeason } from './';
|
|
5
5
|
export declare type PrintTypeEnum = "" | "MHL.printTypeLineTransect";
|
|
6
6
|
export declare type RestrictAccessEnum = "" | "MHL.restrictAccessStrict" | "MHL.restrictAccessLoose";
|
|
7
|
-
export declare type ResultServiceTypeEnum = "" | "MHL.resultServiceTypeLineTransect" | "MHL.resultServiceTypeNafi" | "MHL.resultServiceTypeBirdPointCount" | "MHL.resultServiceTypeWinterBirdCount" | "MHL.resultServiceTypeSykeInsectProjects" | "MHL.resultServiceTypeInvasiveControl" | "MHL.resultServiceTypeCompleteLists";
|
|
7
|
+
export declare type ResultServiceTypeEnum = "" | "MHL.resultServiceTypeLineTransect" | "MHL.resultServiceTypeNafi" | "MHL.resultServiceTypeBirdPointCount" | "MHL.resultServiceTypeWinterBirdCount" | "MHL.resultServiceTypeSykeInsectProjects" | "MHL.resultServiceTypeInvasiveControl" | "MHL.resultServiceTypeCompleteLists" | "MHL.resultServiceTypeBirdCount";
|
|
8
8
|
export declare type ViewerTypeEnum = "" | "MHL.viewerTypeLineTransect" | "MHL.viewerTypeBirdPointCount";
|
|
9
9
|
export interface FormOptions {
|
|
10
10
|
"@context"?: string;
|
|
@@ -19,10 +19,6 @@ export interface FormOptions {
|
|
|
19
19
|
* Form admin can lock documents. Locked documents can't be edited
|
|
20
20
|
*/
|
|
21
21
|
adminLockable?: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Form users can create new named places for the form
|
|
24
|
-
*/
|
|
25
|
-
allowAddingPublicNamedPlaces?: boolean;
|
|
26
22
|
/**
|
|
27
23
|
* Allows usage in spreadsheet upload component
|
|
28
24
|
*/
|
|
@@ -35,10 +31,6 @@ export interface FormOptions {
|
|
|
35
31
|
* Label for the cancel button at the form footer
|
|
36
32
|
*/
|
|
37
33
|
cancelLabel?: string;
|
|
38
|
-
/**
|
|
39
|
-
* The latest document is copied to named place's prepopulatedDocument. if documents date is same or after the current prepopulated document's date, or if prepopulated document doesn't have date. Date is checked from gatheringEvent or from gatherings
|
|
40
|
-
*/
|
|
41
|
-
copyLatestDocumentToNamedPlace?: boolean;
|
|
42
34
|
/**
|
|
43
35
|
* Has dataset about page
|
|
44
36
|
*/
|
|
@@ -72,18 +64,6 @@ export interface FormOptions {
|
|
|
72
64
|
* Excludes from the Vihko excel tools
|
|
73
65
|
*/
|
|
74
66
|
excludeFromGlobalExcel?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* The named place UI allows filtering by bird association area
|
|
77
|
-
*/
|
|
78
|
-
filterNamedPlacesByBirdAssociationArea?: boolean;
|
|
79
|
-
/**
|
|
80
|
-
* The named place UI allows filtering by municipality
|
|
81
|
-
*/
|
|
82
|
-
filterNamedPlacesByMunicipality?: boolean;
|
|
83
|
-
/**
|
|
84
|
-
* The named place UI allows filtering by tags
|
|
85
|
-
*/
|
|
86
|
-
filterNamedPlacesByTags?: boolean;
|
|
87
67
|
/**
|
|
88
68
|
* Options for footer of the observation form
|
|
89
69
|
*/
|