@luomus/laji-schema 2.0.76 → 2.0.78
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/dto/Document.dto.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SecureLevels } from './index.dto';
|
|
2
2
|
import { DataOriginEnum } from './index.dto';
|
|
3
|
+
import { DocumentIdentification } from './index.dto';
|
|
3
4
|
import { GatheringEvent } from './index.dto';
|
|
4
5
|
import { Preservations } from './index.dto';
|
|
5
6
|
import { Statuses } from './index.dto';
|
|
@@ -92,7 +93,7 @@ export class Document {
|
|
|
92
93
|
datasetID?: string[];
|
|
93
94
|
datatype?: string;
|
|
94
95
|
deviceID?: string;
|
|
95
|
-
documentIdentifications?:
|
|
96
|
+
documentIdentifications?: DocumentIdentification[];
|
|
96
97
|
/**
|
|
97
98
|
* Location of the specimen so that museum personnel can find it. E.g. taxon under which it is stored (if not clear from the identification), or shelf number
|
|
98
99
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SecureLevels } from './';
|
|
2
2
|
import { DataOriginEnum } from './';
|
|
3
|
+
import { DocumentIdentification } from './';
|
|
3
4
|
import { GatheringEvent } from './';
|
|
4
5
|
import { Preservations } from './';
|
|
5
6
|
import { Statuses } from './';
|
|
@@ -85,7 +86,7 @@ export declare class Document {
|
|
|
85
86
|
datasetID?: string[];
|
|
86
87
|
datatype?: string;
|
|
87
88
|
deviceID?: string;
|
|
88
|
-
documentIdentifications?:
|
|
89
|
+
documentIdentifications?: DocumentIdentification[];
|
|
89
90
|
/**
|
|
90
91
|
* Location of the specimen so that museum personnel can find it. E.g. taxon under which it is stored (if not clear from the identification), or shelf number
|
|
91
92
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SecureLevels } from './';
|
|
2
2
|
import { DataOriginEnum } from './';
|
|
3
|
+
import { DocumentIdentification } from './';
|
|
3
4
|
import { GatheringEvent } from './';
|
|
4
5
|
import { Preservations } from './';
|
|
5
6
|
import { Statuses } from './';
|
|
@@ -85,7 +86,7 @@ export interface Document {
|
|
|
85
86
|
datasetID?: string[];
|
|
86
87
|
datatype?: string;
|
|
87
88
|
deviceID?: string;
|
|
88
|
-
documentIdentifications?:
|
|
89
|
+
documentIdentifications?: DocumentIdentification[];
|
|
89
90
|
/**
|
|
90
91
|
* Location of the specimen so that museum personnel can find it. E.g. taxon under which it is stored (if not clear from the identification), or shelf number
|
|
91
92
|
*/
|