@luomus/laji-schema 2.0.100 → 2.0.102
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,4 +1,5 @@
|
|
|
1
1
|
import { MXSecureLevels } from './index.dto';
|
|
2
|
+
import { Contact } from './index.dto';
|
|
2
3
|
import { MYDataOriginEnum } from './index.dto';
|
|
3
4
|
import { DocumentIdentification } from './index.dto';
|
|
4
5
|
import { GatheringEvent } from './index.dto';
|
|
@@ -81,7 +82,7 @@ export class Document {
|
|
|
81
82
|
/**
|
|
82
83
|
* Contacts for people involved in the document
|
|
83
84
|
*/
|
|
84
|
-
contacts?:
|
|
85
|
+
contacts?: Contact[];
|
|
85
86
|
/**
|
|
86
87
|
* Annuality/perenniality or other specialities about cultivation in our conditions.
|
|
87
88
|
*/
|
|
@@ -124,7 +124,7 @@ export class FormOptions {
|
|
|
124
124
|
*/
|
|
125
125
|
navigationTitle?: string;
|
|
126
126
|
/**
|
|
127
|
-
* Utilizes open form login system, hides navbar.
|
|
127
|
+
* Allows creating documents without a person token. Utilizes open form login system, hides navbar.
|
|
128
128
|
*/
|
|
129
129
|
openForm?: boolean;
|
|
130
130
|
/**
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MXSecureLevels } from './';
|
|
2
|
+
import { Contact } from './';
|
|
2
3
|
import { MYDataOriginEnum } from './';
|
|
3
4
|
import { DocumentIdentification } from './';
|
|
4
5
|
import { GatheringEvent } from './';
|
|
@@ -74,7 +75,7 @@ export declare class Document {
|
|
|
74
75
|
/**
|
|
75
76
|
* Contacts for people involved in the document
|
|
76
77
|
*/
|
|
77
|
-
contacts?:
|
|
78
|
+
contacts?: Contact[];
|
|
78
79
|
/**
|
|
79
80
|
* Annuality/perenniality or other specialities about cultivation in our conditions.
|
|
80
81
|
*/
|
|
@@ -117,7 +117,7 @@ export declare class FormOptions {
|
|
|
117
117
|
*/
|
|
118
118
|
navigationTitle?: string;
|
|
119
119
|
/**
|
|
120
|
-
* Utilizes open form login system, hides navbar.
|
|
120
|
+
* Allows creating documents without a person token. Utilizes open form login system, hides navbar.
|
|
121
121
|
*/
|
|
122
122
|
openForm?: boolean;
|
|
123
123
|
/**
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MXSecureLevels } from './';
|
|
2
|
+
import { Contact } from './';
|
|
2
3
|
import { MYDataOriginEnum } from './';
|
|
3
4
|
import { DocumentIdentification } from './';
|
|
4
5
|
import { GatheringEvent } from './';
|
|
@@ -74,7 +75,7 @@ export interface Document {
|
|
|
74
75
|
/**
|
|
75
76
|
* Contacts for people involved in the document
|
|
76
77
|
*/
|
|
77
|
-
contacts?:
|
|
78
|
+
contacts?: Contact[];
|
|
78
79
|
/**
|
|
79
80
|
* Annuality/perenniality or other specialities about cultivation in our conditions.
|
|
80
81
|
*/
|
|
@@ -117,7 +117,7 @@ export interface FormOptions {
|
|
|
117
117
|
*/
|
|
118
118
|
navigationTitle?: string;
|
|
119
119
|
/**
|
|
120
|
-
* Utilizes open form login system, hides navbar.
|
|
120
|
+
* Allows creating documents without a person token. Utilizes open form login system, hides navbar.
|
|
121
121
|
*/
|
|
122
122
|
openForm?: boolean;
|
|
123
123
|
/**
|