@coast/core-api-types 1.2.75 → 1.2.77

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.
@@ -1,6 +1,6 @@
1
1
  import { ExecutionDirectives } from './ExecutionDirectives';
2
2
  import { ExecutionOrigin } from './ExecutionOrigin';
3
3
  export interface CoastExecutionContext {
4
- origin: ExecutionOrigin;
4
+ origin?: ExecutionOrigin;
5
5
  directives?: ExecutionDirectives;
6
6
  }
@@ -16,4 +16,5 @@ import { TagComponentData } from './tag/TagComponentData';
16
16
  import { TextComponentData } from './text/TextComponentData';
17
17
  import { TimeTrackerComponentData } from './time-tracker/TimeTrackerComponentData';
18
18
  import { TodoComponentData } from './todo/TodoComponentData';
19
- export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | FileComponentData['fileComponentDataValue'] | GeolocationComponentData['geolocationComponentDataValue'] | NumberComponentData['numberComponentDataValue'] | PersonComponentData['personComponentDataValue'] | RelatedCardComponentData['relatedCardComponentDataValue'] | ScheduledAutomationComponentData['scheduledAutomationComponentDataValue'] | SignatureComponentData['signatureComponentDataValue'] | SubformComponentData['subformComponentDataValue'] | TagComponentData['tagComponentDataValue'] | TextComponentData['textComponentDataValue'] | TimeTrackerComponentData['timeTrackerComponentDataValue'] | TodoComponentData['todoComponentDataValue'];
19
+ import { UrlComponentData } from './url/UrlComponentData';
20
+ export type AnyComponentDataValue = AddressComponentData['addressComponentDataValue'] | AuditCheckboxComponentData['auditCheckboxComponentDataValue'] | AuditTagComponentData['auditTagComponentDataValue'] | AuditTextComponentData['auditTextComponentDataValue'] | DateComponentData['dateComponentDataValue'] | EmailComponentData['emailComponentDataValue'] | 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'];
@@ -1,4 +1,5 @@
1
1
  import { ComponentData } from '../ComponentData';
2
+ import { UrlComponentDataValue } from './UrlComponentDataValue';
2
3
  export interface UrlComponentData extends ComponentData {
3
- readonly urlComponentDataValue?: string;
4
+ readonly urlComponentDataValue?: UrlComponentDataValue[];
4
5
  }
@@ -0,0 +1,3 @@
1
+ export interface UrlComponentDataValue {
2
+ readonly url: string;
3
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=UrlComponentDataValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UrlComponentDataValue.js","sourceRoot":"","sources":["../../../../../src/models/workflow-template/components/url/UrlComponentDataValue.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.75",
3
+ "version": "1.2.77",
4
4
  "description": "core-api types package",
5
5
  "exports": {
6
6
  "./*": {