@luomus/laji-schema 2.0.364 → 2.0.365
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.
- package/dist/cjs/classes/Enums.js +2 -0
- package/dist/dto/Collection.dto.ts +2 -2
- package/dist/dto/Enums.dto.ts +2 -0
- package/dist/esm/classes/Enums.js +2 -0
- package/dist/types/classes/Collection.d.ts +2 -2
- package/dist/types/classes/Enums.d.ts +2 -0
- package/dist/types/models/Collection.d.ts +2 -2
- package/dist/types/models/Enums.d.ts +2 -2
- package/package.json +1 -1
|
@@ -216,12 +216,14 @@ var MXSecureLevels;
|
|
|
216
216
|
})(MXSecureLevels = exports.MXSecureLevels || (exports.MXSecureLevels = {}));
|
|
217
217
|
var MYCollectionQualityEnum;
|
|
218
218
|
(function (MYCollectionQualityEnum) {
|
|
219
|
+
MYCollectionQualityEnum["empty"] = "";
|
|
219
220
|
MYCollectionQualityEnum["collectionQualityEnum3"] = "MY.collectionQualityEnum3";
|
|
220
221
|
MYCollectionQualityEnum["collectionQualityEnum2"] = "MY.collectionQualityEnum2";
|
|
221
222
|
MYCollectionQualityEnum["collectionQualityEnum1"] = "MY.collectionQualityEnum1";
|
|
222
223
|
})(MYCollectionQualityEnum = exports.MYCollectionQualityEnum || (exports.MYCollectionQualityEnum = {}));
|
|
223
224
|
var MYCollectionTypes;
|
|
224
225
|
(function (MYCollectionTypes) {
|
|
226
|
+
MYCollectionTypes["empty"] = "";
|
|
225
227
|
MYCollectionTypes["collectionTypeSpecimens"] = "MY.collectionTypeSpecimens";
|
|
226
228
|
MYCollectionTypes["collectionTypeLiving"] = "MY.collectionTypeLiving";
|
|
227
229
|
MYCollectionTypes["collectionTypeMonitoring"] = "MY.collectionTypeMonitoring";
|
|
@@ -62,7 +62,7 @@ export class Collection {
|
|
|
62
62
|
/**
|
|
63
63
|
* Quality classification for the collection.
|
|
64
64
|
*/
|
|
65
|
-
collectionQuality
|
|
65
|
+
collectionQuality?: MYCollectionQualityEnum;
|
|
66
66
|
/**
|
|
67
67
|
* How many specimens, records or such does the collection contain? Fill in approximate number, describe more in notes if necessary.
|
|
68
68
|
*/
|
|
@@ -70,7 +70,7 @@ export class Collection {
|
|
|
70
70
|
/**
|
|
71
71
|
* Type of the collection (specimen, monitoring etc).
|
|
72
72
|
*/
|
|
73
|
-
collectionType
|
|
73
|
+
collectionType?: MYCollectionTypes;
|
|
74
74
|
/**
|
|
75
75
|
* Legal basis for concealment or embargo
|
|
76
76
|
*/
|
package/dist/dto/Enums.dto.ts
CHANGED
|
@@ -192,11 +192,13 @@ export enum MXSecureLevels {
|
|
|
192
192
|
"MX.secureLevelNoShow" = "MX.secureLevelNoShow"
|
|
193
193
|
}
|
|
194
194
|
export enum MYCollectionQualityEnum {
|
|
195
|
+
"empty" = "",
|
|
195
196
|
"collectionQualityEnum3" = "MY.collectionQualityEnum3",
|
|
196
197
|
"collectionQualityEnum2" = "MY.collectionQualityEnum2",
|
|
197
198
|
"collectionQualityEnum1" = "MY.collectionQualityEnum1"
|
|
198
199
|
}
|
|
199
200
|
export enum MYCollectionTypes {
|
|
201
|
+
"empty" = "",
|
|
200
202
|
"collectionTypeSpecimens" = "MY.collectionTypeSpecimens",
|
|
201
203
|
"collectionTypeLiving" = "MY.collectionTypeLiving",
|
|
202
204
|
"collectionTypeMonitoring" = "MY.collectionTypeMonitoring",
|
|
@@ -210,12 +210,14 @@ export var MXSecureLevels;
|
|
|
210
210
|
})(MXSecureLevels || (MXSecureLevels = {}));
|
|
211
211
|
export var MYCollectionQualityEnum;
|
|
212
212
|
(function (MYCollectionQualityEnum) {
|
|
213
|
+
MYCollectionQualityEnum["empty"] = "";
|
|
213
214
|
MYCollectionQualityEnum["collectionQualityEnum3"] = "MY.collectionQualityEnum3";
|
|
214
215
|
MYCollectionQualityEnum["collectionQualityEnum2"] = "MY.collectionQualityEnum2";
|
|
215
216
|
MYCollectionQualityEnum["collectionQualityEnum1"] = "MY.collectionQualityEnum1";
|
|
216
217
|
})(MYCollectionQualityEnum || (MYCollectionQualityEnum = {}));
|
|
217
218
|
export var MYCollectionTypes;
|
|
218
219
|
(function (MYCollectionTypes) {
|
|
220
|
+
MYCollectionTypes["empty"] = "";
|
|
219
221
|
MYCollectionTypes["collectionTypeSpecimens"] = "MY.collectionTypeSpecimens";
|
|
220
222
|
MYCollectionTypes["collectionTypeLiving"] = "MY.collectionTypeLiving";
|
|
221
223
|
MYCollectionTypes["collectionTypeMonitoring"] = "MY.collectionTypeMonitoring";
|
|
@@ -55,7 +55,7 @@ export declare class Collection {
|
|
|
55
55
|
/**
|
|
56
56
|
* Quality classification for the collection.
|
|
57
57
|
*/
|
|
58
|
-
collectionQuality
|
|
58
|
+
collectionQuality?: MYCollectionQualityEnum;
|
|
59
59
|
/**
|
|
60
60
|
* How many specimens, records or such does the collection contain? Fill in approximate number, describe more in notes if necessary.
|
|
61
61
|
*/
|
|
@@ -63,7 +63,7 @@ export declare class Collection {
|
|
|
63
63
|
/**
|
|
64
64
|
* Type of the collection (specimen, monitoring etc).
|
|
65
65
|
*/
|
|
66
|
-
collectionType
|
|
66
|
+
collectionType?: MYCollectionTypes;
|
|
67
67
|
/**
|
|
68
68
|
* Legal basis for concealment or embargo
|
|
69
69
|
*/
|
|
@@ -192,11 +192,13 @@ export declare enum MXSecureLevels {
|
|
|
192
192
|
"MX.secureLevelNoShow" = "MX.secureLevelNoShow"
|
|
193
193
|
}
|
|
194
194
|
export declare enum MYCollectionQualityEnum {
|
|
195
|
+
"empty" = "",
|
|
195
196
|
"collectionQualityEnum3" = "MY.collectionQualityEnum3",
|
|
196
197
|
"collectionQualityEnum2" = "MY.collectionQualityEnum2",
|
|
197
198
|
"collectionQualityEnum1" = "MY.collectionQualityEnum1"
|
|
198
199
|
}
|
|
199
200
|
export declare enum MYCollectionTypes {
|
|
201
|
+
"empty" = "",
|
|
200
202
|
"collectionTypeSpecimens" = "MY.collectionTypeSpecimens",
|
|
201
203
|
"collectionTypeLiving" = "MY.collectionTypeLiving",
|
|
202
204
|
"collectionTypeMonitoring" = "MY.collectionTypeMonitoring",
|
|
@@ -55,7 +55,7 @@ export interface Collection {
|
|
|
55
55
|
/**
|
|
56
56
|
* Quality classification for the collection.
|
|
57
57
|
*/
|
|
58
|
-
collectionQuality
|
|
58
|
+
collectionQuality?: MYCollectionQualityEnum;
|
|
59
59
|
/**
|
|
60
60
|
* How many specimens, records or such does the collection contain? Fill in approximate number, describe more in notes if necessary.
|
|
61
61
|
*/
|
|
@@ -63,7 +63,7 @@ export interface Collection {
|
|
|
63
63
|
/**
|
|
64
64
|
* Type of the collection (specimen, monitoring etc).
|
|
65
65
|
*/
|
|
66
|
-
collectionType
|
|
66
|
+
collectionType?: MYCollectionTypes;
|
|
67
67
|
/**
|
|
68
68
|
* Legal basis for concealment or embargo
|
|
69
69
|
*/
|
|
@@ -15,8 +15,8 @@ export declare type MZIntellectualRightsEnum = "MZ.intellectualRightsCC-BY-SA-4.
|
|
|
15
15
|
export declare type MZPublicityRestrictionsEnum = "" | "MZ.publicityRestrictionsPublic" | "MZ.publicityRestrictionsProtected" | "MZ.publicityRestrictionsPrivate";
|
|
16
16
|
export declare type MABirdSongRecognitionSkillLevelEnum = "MA.birdSongRecognitionSkillLevelEnum1" | "MA.birdSongRecognitionSkillLevelEnum2" | "MA.birdSongRecognitionSkillLevelEnum3" | "MA.birdSongRecognitionSkillLevelEnum4";
|
|
17
17
|
export declare type MXSecureLevels = "" | "MX.secureLevelNone" | "MX.secureLevelKM1" | "MX.secureLevelKM5" | "MX.secureLevelKM10" | "MX.secureLevelKM25" | "MX.secureLevelKM50" | "MX.secureLevelKM100" | "MX.secureLevelHighest" | "MX.secureLevelNoShow";
|
|
18
|
-
export declare type MYCollectionQualityEnum = "MY.collectionQualityEnum3" | "MY.collectionQualityEnum2" | "MY.collectionQualityEnum1";
|
|
19
|
-
export declare type MYCollectionTypes = "MY.collectionTypeSpecimens" | "MY.collectionTypeLiving" | "MY.collectionTypeMonitoring" | "MY.collectionTypeObservations" | "MY.collectionTypePublicationdata" | "MY.collectionTypePublication" | "MY.collectionTypeMixed" | "MY.collectionTypeOther" | "MY.collectionTypeGardenArea" | "MY.collectionTypeIndoorGardenArea" | "MY.collectionTypeOutdoorGardenArea" | "MY.collectionTypeGardenSublocation" | "MY.collectionTypeTrait";
|
|
18
|
+
export declare type MYCollectionQualityEnum = "" | "MY.collectionQualityEnum3" | "MY.collectionQualityEnum2" | "MY.collectionQualityEnum1";
|
|
19
|
+
export declare type MYCollectionTypes = "" | "MY.collectionTypeSpecimens" | "MY.collectionTypeLiving" | "MY.collectionTypeMonitoring" | "MY.collectionTypeObservations" | "MY.collectionTypePublicationdata" | "MY.collectionTypePublication" | "MY.collectionTypeMixed" | "MY.collectionTypeOther" | "MY.collectionTypeGardenArea" | "MY.collectionTypeIndoorGardenArea" | "MY.collectionTypeOutdoorGardenArea" | "MY.collectionTypeGardenSublocation" | "MY.collectionTypeTrait";
|
|
20
20
|
export declare type MYDataQualityEnum = "" | "MY.dataQuality1" | "MY.dataQuality2" | "MY.dataQuality3" | "MY.dataQuality4" | "MY.dataQuality5" | "MY.dataQualityNA";
|
|
21
21
|
export declare type MYHierarchyTypeEnum = "MY.hierarchyTypeDocumentParent" | "MY.hierarchyTypeCollectionParent";
|
|
22
22
|
export declare type MYIntellectualRightsEnum = "MY.intellectualRightsCC-BY" | "MY.intellectualRightsCC0" | "MY.intellectualRightsPD" | "MY.intellectualRightsARR";
|