@coast/core-api-types 1.2.312 → 1.2.314

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.
@@ -10,4 +10,5 @@ export interface Report extends Audit {
10
10
  source: ReportingSource;
11
11
  metabaseEmbedPath?: string;
12
12
  omniContentId?: string;
13
+ deletedAt?: Date;
13
14
  }
@@ -1,6 +1,6 @@
1
1
  import { ComponentData } from '../ComponentData';
2
+ import { DateRangeComponentDataValue } from './DateRangeComponentDataValue';
2
3
  export interface DateRangeComponentData extends ComponentData {
3
4
  type: any;
4
- startDate?: Date;
5
- endDate?: Date;
5
+ dateRangeComponentDataValue?: DateRangeComponentDataValue;
6
6
  }
@@ -0,0 +1,4 @@
1
+ export interface DateRangeComponentDataValue {
2
+ startDate?: Date;
3
+ endDate?: Date;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=DateRangeComponentDataValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateRangeComponentDataValue.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/components/date-range/DateRangeComponentDataValue.ts"],"names":[],"mappings":""}
@@ -1,4 +1,6 @@
1
+ import { ViewTemplateId } from '@coast/core-types/view-template/ViewTemplateId';
1
2
  import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
2
3
  export interface SubformComponentAuditDataValue {
3
4
  workflowTemplateId?: WorkflowTemplateId;
5
+ viewTemplateId?: ViewTemplateId;
4
6
  }
@@ -1,6 +1,8 @@
1
+ import { ViewTemplateId } from '@coast/core-types/view-template/ViewTemplateId';
1
2
  import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
2
3
  import type { EntityFields } from '../../../workflow-entity/EntityFields';
3
4
  export interface SubformComponentDataValue {
4
5
  data?: EntityFields;
5
6
  workflowTemplateId: WorkflowTemplateId;
7
+ viewTemplateId?: ViewTemplateId;
6
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.312",
3
+ "version": "1.2.314",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {