@coast/core-api-types 1.2.311 → 1.2.312

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.
@@ -18,4 +18,4 @@ import { TextComponentData } from './text/TextComponentData';
18
18
  import { TimeTrackerComponentData } from './time-tracker/TimeTrackerComponentData';
19
19
  import { TodoComponentData } from './todo/TodoComponentData';
20
20
  import { UrlComponentData } from './url/UrlComponentData';
21
- export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | EntityBatchComponentData['entityBatchId'] | FileComponentData['fileComponentDataValue'] | GeolocationComponentData['geolocationComponentDataValue'] | NumberComponentData['numberComponentDataValue'] | PersonComponentData['personComponentDataValue'] | RelatedCardComponentData['relatedCardComponentDataValue'] | ScheduledAutomationComponentData['scheduledAutomationComponentDataValue'] | SignatureComponentData['signatureComponentDataValue'] | SubformComponentData['subformComponentDataValue'] | TagComponentData['tagComponentDataValue'] | TextComponentData['textComponentDataValue'] | TimeTrackerComponentData['timeTrackerComponentDataValue'] | TodoComponentData['todoComponentDataValue'] | UrlComponentData['urlComponentDataValue'];
21
+ export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | EntityBatchComponentData['entityBatchComponentDataValue'] | FileComponentData['fileComponentDataValue'] | GeolocationComponentData['geolocationComponentDataValue'] | NumberComponentData['numberComponentDataValue'] | PersonComponentData['personComponentDataValue'] | RelatedCardComponentData['relatedCardComponentDataValue'] | ScheduledAutomationComponentData['scheduledAutomationComponentDataValue'] | SignatureComponentData['signatureComponentDataValue'] | SubformComponentData['subformComponentDataValue'] | TagComponentData['tagComponentDataValue'] | TextComponentData['textComponentDataValue'] | TimeTrackerComponentData['timeTrackerComponentDataValue'] | TodoComponentData['todoComponentDataValue'] | UrlComponentData['urlComponentDataValue'];
@@ -2,5 +2,5 @@ import { RecurringEntitiesScheduleId } from '@coast/core-types/workflow-entity/r
2
2
  import { ComponentData } from '../ComponentData';
3
3
  export interface EntityBatchComponentData extends ComponentData {
4
4
  type: any;
5
- entityBatchId?: RecurringEntitiesScheduleId;
5
+ entityBatchComponentDataValue?: RecurringEntitiesScheduleId;
6
6
  }
@@ -28,7 +28,7 @@ export type InputComponentDataValueMap = Record<InputComponentType, AnyComponent
28
28
  [ComponentType.AUDIT_TEXT]: AuditTextComponentData['auditTextComponentDataValue'];
29
29
  [ComponentType.DATE]: DateComponentData['dateComponentDataValue'];
30
30
  [ComponentType.EMAIL]: EmailComponentData['emailComponentDataValue'];
31
- [ComponentType.ENTITY_BATCH]: EntityBatchComponentData['entityBatchId'];
31
+ [ComponentType.ENTITY_BATCH]: EntityBatchComponentData['entityBatchComponentDataValue'];
32
32
  [ComponentType.FILE]: FileComponentData['fileComponentDataValue'];
33
33
  [ComponentType.GEOLOCATION]: GeolocationComponentData['geolocationComponentDataValue'];
34
34
  [ComponentType.NUMBER]: NumberComponentData['numberComponentDataValue'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.311",
3
+ "version": "1.2.312",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {