@luomus/laji-schema 2.0.96 → 2.0.97
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/Audio.dto.ts +2 -0
- package/dist/dto/Image.dto.ts +2 -0
- package/dist/dto/Model.dto.ts +2 -0
- package/dist/dto/Organization.dto.ts +4 -1
- package/dist/dto/Pdf.dto.ts +2 -0
- package/dist/dto/Video.dto.ts +2 -0
- package/dist/types/classes/Audio.d.ts +2 -0
- package/dist/types/classes/Image.d.ts +2 -0
- package/dist/types/classes/Model.d.ts +2 -0
- package/dist/types/classes/Organization.d.ts +4 -1
- package/dist/types/classes/Pdf.d.ts +2 -0
- package/dist/types/classes/Video.d.ts +2 -0
- package/dist/types/models/Audio.d.ts +2 -0
- package/dist/types/models/Image.d.ts +2 -0
- package/dist/types/models/Model.d.ts +2 -0
- package/dist/types/models/Organization.d.ts +4 -1
- package/dist/types/models/Pdf.d.ts +2 -0
- package/dist/types/models/Video.d.ts +2 -0
- package/package.json +1 -1
package/dist/dto/Audio.dto.ts
CHANGED
package/dist/dto/Image.dto.ts
CHANGED
package/dist/dto/Model.dto.ts
CHANGED
|
@@ -30,7 +30,10 @@ export class Organization {
|
|
|
30
30
|
* Filled in by ICT team
|
|
31
31
|
*/
|
|
32
32
|
ad?: string;
|
|
33
|
-
|
|
33
|
+
/**
|
|
34
|
+
* Other identifiers this organization has
|
|
35
|
+
*/
|
|
36
|
+
additionalIDs?: string[];
|
|
34
37
|
/**
|
|
35
38
|
* Name of content/collection contact person for the organization.
|
|
36
39
|
*/
|
package/dist/dto/Pdf.dto.ts
CHANGED
package/dist/dto/Video.dto.ts
CHANGED
|
@@ -23,7 +23,10 @@ export declare class Organization {
|
|
|
23
23
|
* Filled in by ICT team
|
|
24
24
|
*/
|
|
25
25
|
ad?: string;
|
|
26
|
-
|
|
26
|
+
/**
|
|
27
|
+
* Other identifiers this organization has
|
|
28
|
+
*/
|
|
29
|
+
additionalIDs?: string[];
|
|
27
30
|
/**
|
|
28
31
|
* Name of content/collection contact person for the organization.
|
|
29
32
|
*/
|
|
@@ -15,6 +15,8 @@ export declare class Video {
|
|
|
15
15
|
documentURI?: string[];
|
|
16
16
|
fullResolutionMediaAvailable?: boolean;
|
|
17
17
|
keyword?: string[];
|
|
18
|
+
modifiedBy?: string;
|
|
19
|
+
modifiedDateTime?: string;
|
|
18
20
|
originalFilename?: string;
|
|
19
21
|
primaryForTaxon?: string[];
|
|
20
22
|
sourceSystem: string;
|
|
@@ -23,7 +23,10 @@ export interface Organization {
|
|
|
23
23
|
* Filled in by ICT team
|
|
24
24
|
*/
|
|
25
25
|
ad?: string;
|
|
26
|
-
|
|
26
|
+
/**
|
|
27
|
+
* Other identifiers this organization has
|
|
28
|
+
*/
|
|
29
|
+
additionalIDs?: string[];
|
|
27
30
|
/**
|
|
28
31
|
* Name of content/collection contact person for the organization.
|
|
29
32
|
*/
|