@luomus/laji-schema 2.0.18 → 2.0.19
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.
|
@@ -37,6 +37,7 @@ var StatusEnum;
|
|
|
37
37
|
StatusEnum["statusInProcess"] = "HRX.statusInProcess";
|
|
38
38
|
StatusEnum["statusOutstanding"] = "HRX.statusOutstanding";
|
|
39
39
|
StatusEnum["statusClosed"] = "HRX.statusClosed";
|
|
40
|
+
StatusEnum["statusOnLoan"] = "HRX.statusOnLoan";
|
|
40
41
|
})(StatusEnum = exports.StatusEnum || (exports.StatusEnum = {}));
|
|
41
42
|
var TransportMethodEnum;
|
|
42
43
|
(function (TransportMethodEnum) {
|
|
@@ -51,10 +52,10 @@ var TransportMethodEnum;
|
|
|
51
52
|
var TypeEnum;
|
|
52
53
|
(function (TypeEnum) {
|
|
53
54
|
TypeEnum["typeLoanIncoming"] = "HRX.typeLoanIncoming";
|
|
54
|
-
TypeEnum["typeGiftIncoming"] = "HRX.typeGiftIncoming";
|
|
55
|
-
TypeEnum["typeExchangeIncoming"] = "HRX.typeExchangeIncoming";
|
|
56
55
|
TypeEnum["typeLoanOutgoing"] = "HRX.typeLoanOutgoing";
|
|
56
|
+
TypeEnum["typeGiftIncoming"] = "HRX.typeGiftIncoming";
|
|
57
57
|
TypeEnum["typeGiftOutgoing"] = "HRX.typeGiftOutgoing";
|
|
58
|
+
TypeEnum["typeExchangeIncoming"] = "HRX.typeExchangeIncoming";
|
|
58
59
|
TypeEnum["typeExchangeOutgoing"] = "HRX.typeExchangeOutgoing";
|
|
59
60
|
TypeEnum["typeFieldCollection"] = "HRX.typeFieldCollection";
|
|
60
61
|
TypeEnum["typeImportNotice"] = "HRX.typeImportNotice";
|
|
@@ -34,6 +34,7 @@ export var StatusEnum;
|
|
|
34
34
|
StatusEnum["statusInProcess"] = "HRX.statusInProcess";
|
|
35
35
|
StatusEnum["statusOutstanding"] = "HRX.statusOutstanding";
|
|
36
36
|
StatusEnum["statusClosed"] = "HRX.statusClosed";
|
|
37
|
+
StatusEnum["statusOnLoan"] = "HRX.statusOnLoan";
|
|
37
38
|
})(StatusEnum || (StatusEnum = {}));
|
|
38
39
|
export var TransportMethodEnum;
|
|
39
40
|
(function (TransportMethodEnum) {
|
|
@@ -48,10 +49,10 @@ export var TransportMethodEnum;
|
|
|
48
49
|
export var TypeEnum;
|
|
49
50
|
(function (TypeEnum) {
|
|
50
51
|
TypeEnum["typeLoanIncoming"] = "HRX.typeLoanIncoming";
|
|
51
|
-
TypeEnum["typeGiftIncoming"] = "HRX.typeGiftIncoming";
|
|
52
|
-
TypeEnum["typeExchangeIncoming"] = "HRX.typeExchangeIncoming";
|
|
53
52
|
TypeEnum["typeLoanOutgoing"] = "HRX.typeLoanOutgoing";
|
|
53
|
+
TypeEnum["typeGiftIncoming"] = "HRX.typeGiftIncoming";
|
|
54
54
|
TypeEnum["typeGiftOutgoing"] = "HRX.typeGiftOutgoing";
|
|
55
|
+
TypeEnum["typeExchangeIncoming"] = "HRX.typeExchangeIncoming";
|
|
55
56
|
TypeEnum["typeExchangeOutgoing"] = "HRX.typeExchangeOutgoing";
|
|
56
57
|
TypeEnum["typeFieldCollection"] = "HRX.typeFieldCollection";
|
|
57
58
|
TypeEnum["typeImportNotice"] = "HRX.typeImportNotice";
|
|
@@ -25,7 +25,8 @@ export declare enum StatusEnum {
|
|
|
25
25
|
"empty" = "",
|
|
26
26
|
"statusInProcess" = "HRX.statusInProcess",
|
|
27
27
|
"statusOutstanding" = "HRX.statusOutstanding",
|
|
28
|
-
"statusClosed" = "HRX.statusClosed"
|
|
28
|
+
"statusClosed" = "HRX.statusClosed",
|
|
29
|
+
"statusOnLoan" = "HRX.statusOnLoan"
|
|
29
30
|
}
|
|
30
31
|
export declare enum TransportMethodEnum {
|
|
31
32
|
"empty" = "",
|
|
@@ -38,10 +39,10 @@ export declare enum TransportMethodEnum {
|
|
|
38
39
|
}
|
|
39
40
|
export declare enum TypeEnum {
|
|
40
41
|
"typeLoanIncoming" = "HRX.typeLoanIncoming",
|
|
41
|
-
"typeGiftIncoming" = "HRX.typeGiftIncoming",
|
|
42
|
-
"typeExchangeIncoming" = "HRX.typeExchangeIncoming",
|
|
43
42
|
"typeLoanOutgoing" = "HRX.typeLoanOutgoing",
|
|
43
|
+
"typeGiftIncoming" = "HRX.typeGiftIncoming",
|
|
44
44
|
"typeGiftOutgoing" = "HRX.typeGiftOutgoing",
|
|
45
|
+
"typeExchangeIncoming" = "HRX.typeExchangeIncoming",
|
|
45
46
|
"typeExchangeOutgoing" = "HRX.typeExchangeOutgoing",
|
|
46
47
|
"typeFieldCollection" = "HRX.typeFieldCollection",
|
|
47
48
|
"typeImportNotice" = "HRX.typeImportNotice",
|
|
@@ -3,9 +3,9 @@ import { SpecimenTransactionEvent } from './';
|
|
|
3
3
|
export declare type AvailableForGeneticResearchEnum = "" | "HRX.availableForGeneticResearchYes" | "HRX.availableForGeneticResearchWithRestrictions" | "HRX.availableForGeneticResearchNo";
|
|
4
4
|
export declare type GeneticResourceTypeEnum = "" | "HRX.geneticResourceTypeAnimal" | "HRX.geneticResourceTypePlant" | "HRX.geneticResourceTypeFungus" | "HRX.geneticResourceTypeMicrobe" | "HRX.geneticResourceTypeSoil" | "HRX.geneticResourceTypeAqua";
|
|
5
5
|
export declare type ResourceImportedEnum = "" | "HRX.resourceImportedGeneticResources" | "HRX.resourceImportedTraditionalKnowledge" | "HRX.resourceImportedBoth";
|
|
6
|
-
export declare type StatusEnum = "" | "HRX.statusInProcess" | "HRX.statusOutstanding" | "HRX.statusClosed";
|
|
6
|
+
export declare type StatusEnum = "" | "HRX.statusInProcess" | "HRX.statusOutstanding" | "HRX.statusClosed" | "HRX.statusOnLoan";
|
|
7
7
|
export declare type TransportMethodEnum = "" | "HRX.transportMethodPriority" | "HRX.transportMethodEconomy" | "HRX.transportMethodCourier" | "HRX.transportMethodCarried" | "HRX.transportMethodOther" | "HRX.transportMethodImage";
|
|
8
|
-
export declare type TypeEnum = "HRX.typeLoanIncoming" | "HRX.
|
|
8
|
+
export declare type TypeEnum = "HRX.typeLoanIncoming" | "HRX.typeLoanOutgoing" | "HRX.typeGiftIncoming" | "HRX.typeGiftOutgoing" | "HRX.typeExchangeIncoming" | "HRX.typeExchangeOutgoing" | "HRX.typeFieldCollection" | "HRX.typeImportNotice" | "HRX.typeABSNegotiations" | "HRX.typeVirtualLoanOutgoing" | "HRX.typeDeaccession";
|
|
9
9
|
export declare type PublicityRestrictionsEnum = "" | "MZ.publicityRestrictionsPublic" | "MZ.publicityRestrictionsProtected" | "MZ.publicityRestrictionsPrivate";
|
|
10
10
|
export interface SpecimenTransaction {
|
|
11
11
|
"@context"?: string;
|