@coast/core-api-types 1.2.158 → 1.2.159
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/models/view-template-layout/ViewTemplateLayout.d.ts +2 -1
- package/dist/models/workflow-template/entities/recurring/AnyRecurringEntitiesAutoExtendFilter.d.ts +2 -0
- package/dist/models/workflow-template/entities/recurring/AnyRecurringEntitiesAutoExtendFilter.js +3 -0
- package/dist/models/workflow-template/entities/recurring/AnyRecurringEntitiesAutoExtendFilter.js.map +1 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterByComponent.d.ts +5 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterByComponent.js +3 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterByComponent.js.map +1 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterOneOf.d.ts +3 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterOneOf.js +3 -0
- package/dist/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterOneOf.js.map +1 -0
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Audit } from '../application/Audit';
|
|
2
|
+
import { DataEntity } from '../application/DataEntity';
|
|
2
3
|
import { ViewTemplateId } from '../view-template/ViewTemplateId';
|
|
3
4
|
import { WorkflowTemplateId } from '../workflow-template/WorkflowTemplateId';
|
|
4
5
|
import { ViewTemplateLayoutId } from './ViewTemplateLayoutId';
|
|
5
6
|
import { ViewTemplateLayoutItem } from './ViewTemplateLayoutItem';
|
|
6
|
-
export interface ViewTemplateLayout extends Audit {
|
|
7
|
+
export interface ViewTemplateLayout extends DataEntity, Audit {
|
|
7
8
|
id: ViewTemplateLayoutId;
|
|
8
9
|
viewTemplateId: ViewTemplateId;
|
|
9
10
|
workflowTemplateId: WorkflowTemplateId;
|
package/dist/models/workflow-template/entities/recurring/AnyRecurringEntitiesAutoExtendFilter.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnyRecurringEntitiesAutoExtendFilter.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/entities/recurring/AnyRecurringEntitiesAutoExtendFilter.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { FilterByComponent } from '../filters/FilterByComponent';
|
|
2
|
+
import { RecurringEntitiesAutoExtendFilterOneOf } from './RecurringEntitiesAutoExtendFilterOneOf';
|
|
3
|
+
export interface RecurringEntitiesAutoExtendFilterByComponent extends FilterByComponent {
|
|
4
|
+
value: RecurringEntitiesAutoExtendFilterOneOf;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecurringEntitiesAutoExtendFilterByComponent.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterByComponent.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecurringEntitiesAutoExtendFilterOneOf.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/entities/recurring/RecurringEntitiesAutoExtendFilterOneOf.ts"],"names":[],"mappings":""}
|