@coast/core-api-types 1.2.127 → 1.2.128

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.
@@ -0,0 +1,2 @@
1
+ import { Brand } from '@paradoxical-io/types';
2
+ export type RRuleString = Brand<string, 'RRuleString'>;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=RRuleString.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RRuleString.js","sourceRoot":"","sources":["../../../src/models/common/RRuleString.ts"],"names":[],"mappings":""}
@@ -1,6 +1,6 @@
1
1
  import { Optional } from '../utils/Optional';
2
- import { SubformComponent } from '../workflow-template/components/subform/SubformComponent';
2
+ import { SubformComponentOneOf } from '../workflow-template/components/SubformComponentOneOf';
3
3
  export interface PdfSubformResult {
4
- subformComponents?: Optional<SubformComponent[]>;
4
+ subformComponents?: Optional<SubformComponentOneOf[]>;
5
5
  errorMessage?: Optional<string>;
6
6
  }
@@ -0,0 +1,3 @@
1
+ import { ComponentOneOf } from './ComponentOneOf';
2
+ export interface SubformComponentOneOf extends Pick<ComponentOneOf, 'auditCheckboxComponent' | 'auditTagComponent' | 'auditTextComponent' | 'staticTextComponent'> {
3
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=SubformComponentOneOf.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SubformComponentOneOf.js","sourceRoot":"","sources":["../../../../src/models/workflow-template/components/SubformComponentOneOf.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  import { Audit } from '../../../application/Audit';
2
+ import { RRuleString } from '../../../common/RRuleString';
2
3
  import { WorkflowTemplateId } from '../../WorkflowTemplateId';
3
4
  import { RecurringEntitiesExtend } from './RecurringEntitiesExtend';
4
5
  import { RecurringEntitiesScheduleId } from './RecurringEntitiesScheduleId';
@@ -6,7 +7,7 @@ export interface RecurringEntitiesSchedule extends Audit {
6
7
  dateComponentId: string;
7
8
  id: RecurringEntitiesScheduleId;
8
9
  name: string;
9
- rrule: string;
10
+ rrule: RRuleString;
10
11
  workflowTemplateId: WorkflowTemplateId;
11
12
  extend?: RecurringEntitiesExtend;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.127",
3
+ "version": "1.2.128",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {