@coast/core-api-types 1.2.234 → 1.2.236

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,4 @@
1
+ import { Operand } from './Operand';
2
+ export interface NumberArrayOperand extends Operand {
3
+ numberValues: number[];
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=NumberArrayOperand.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NumberArrayOperand.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/NumberArrayOperand.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
1
  import { OperandOneOf } from './OperandOneOf';
2
- export interface NumberOperandOneOf extends Omit<OperandOneOf, 'dateOperand' | 'dateTokenOperand' | 'stringOperand' | 'stringArrayOperand'> {
2
+ export interface NumberOperandOneOf extends Omit<OperandOneOf, 'dateOperand' | 'dateTokenOperand' | 'stringOperand' | 'stringArrayOperand' | 'numberArrayOperand'> {
3
3
  }
@@ -2,6 +2,7 @@ import { ActionResultNumberOperand } from './ActionResultNumberOperand';
2
2
  import { ComponentOperand } from './ComponentOperand';
3
3
  import { DateOperand } from './DateOperand';
4
4
  import { DateTokenOperand } from './DateTokenOperand';
5
+ import { NumberArrayOperand } from './NumberArrayOperand';
5
6
  import { NumberOperand } from './NumberOperand';
6
7
  import { PreviousComponentOperand } from './PreviousComponentOperand';
7
8
  import { StringArrayOperand } from './StringArrayOperand';
@@ -13,6 +14,7 @@ export interface OperandOneOf {
13
14
  dateOperand?: DateOperand;
14
15
  dateTokenOperand?: DateTokenOperand;
15
16
  numberOperand?: NumberOperand;
17
+ numberArrayOperand?: NumberArrayOperand;
16
18
  previousComponentOperand?: PreviousComponentOperand;
17
19
  stringArrayOperand?: StringArrayOperand;
18
20
  stringOperand?: StringOperand;
@@ -4,6 +4,7 @@ export declare enum OperandType {
4
4
  DATE = "DATE",
5
5
  DATE_TOKEN = "DATE_TOKEN",
6
6
  NUMBER = "NUMBER",
7
+ NUMBER_ARRAY = "NUMBER_ARRAY",
7
8
  PREVIOUS_COMPONENT = "PREVIOUS_COMPONENT",
8
9
  STRING = "STRING",
9
10
  STRING_ARRAY = "STRING_ARRAY",
@@ -8,6 +8,7 @@ var OperandType;
8
8
  OperandType["DATE"] = "DATE";
9
9
  OperandType["DATE_TOKEN"] = "DATE_TOKEN";
10
10
  OperandType["NUMBER"] = "NUMBER";
11
+ OperandType["NUMBER_ARRAY"] = "NUMBER_ARRAY";
11
12
  OperandType["PREVIOUS_COMPONENT"] = "PREVIOUS_COMPONENT";
12
13
  OperandType["STRING"] = "STRING";
13
14
  OperandType["STRING_ARRAY"] = "STRING_ARRAY";
@@ -1 +1 @@
1
- {"version":3,"file":"OperandType.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/OperandType.ts"],"names":[],"mappings":";;;AACA,IAAY,WAUX;AAVD,WAAY,WAAW;IACnB,4DAA6C,CAAA;IAC7C,sCAAuB,CAAA;IACvB,4BAAa,CAAA;IACb,wCAAyB,CAAA;IACzB,gCAAiB,CAAA;IACjB,wDAAyC,CAAA;IACzC,gCAAiB,CAAA;IACjB,4CAA6B,CAAA;IAC7B,8EAA+D,CAAA;AACnE,CAAC,EAVW,WAAW,2BAAX,WAAW,QAUtB"}
1
+ {"version":3,"file":"OperandType.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/OperandType.ts"],"names":[],"mappings":";;;AACA,IAAY,WAWX;AAXD,WAAY,WAAW;IACnB,4DAA6C,CAAA;IAC7C,sCAAuB,CAAA;IACvB,4BAAa,CAAA;IACb,wCAAyB,CAAA;IACzB,gCAAiB,CAAA;IACjB,4CAA6B,CAAA;IAC7B,wDAAyC,CAAA;IACzC,gCAAiB,CAAA;IACjB,4CAA6B,CAAA;IAC7B,8EAA+D,CAAA;AACnE,CAAC,EAXW,WAAW,2BAAX,WAAW,QAWtB"}
@@ -3,6 +3,8 @@ export declare enum WorkflowTemplateErrorCode {
3
3
  WORKFLOW_TEMPLATE_CANNOT_HAVE_MULTIPLE_SUBFORM_COMPONENTS = "WORKFLOW_TEMPLATE_CANNOT_HAVE_MULTIPLE_SUBFORM_COMPONENTS",
4
4
  WORKFLOW_TEMPLATE_COMPONENT_TYPE_LIMIT_EXCEEDED = "WORKFLOW_TEMPLATE_COMPONENT_TYPE_LIMIT_EXCEEDED",
5
5
  WORKFLOW_TEMPLATE_COMPONENT_UNIQUENESS_CONSTRAINT_VIOLATION = "WORKFLOW_TEMPLATE_COMPONENT_UNIQUENESS_CONSTRAINT_VIOLATION",
6
+ WORKFLOW_TEMPLATE_MISSING_MANAGED_BY_COMPONENT_REFERENCE = "WORKFLOW_TEMPLATE_MISSING_MANAGED_BY_COMPONENT_REFERENCE",
7
+ WORKFLOW_TEMPLATE_MISSING_MANAGED_COMPONENT_REFERENCE = "WORKFLOW_TEMPLATE_MISSING_MANAGED_COMPONENT_REFERENCE",
6
8
  WORKFLOW_TEMPLATE_MULTIPLE_BATCH_CREATION_ENABLED_DATE_COMPONENTS = "WORKFLOW_TEMPLATE_MULTIPLE_BATCH_CREATION_ENABLED_DATE_COMPONENTS",
7
9
  WORKFLOW_TEMPLATE_NAME_COMPONENT_MUST_BE_REQUIRED = "WORKFLOW_TEMPLATE_NAME_COMPONENT_MUST_BE_REQUIRED",
8
10
  WORKFLOW_TEMPLATE_NAME_COMPONENT_REQUIRED = "WORKFLOW_TEMPLATE_NAME_COMPONENT_REQUIRED",
@@ -7,6 +7,8 @@ var WorkflowTemplateErrorCode;
7
7
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_CANNOT_HAVE_MULTIPLE_SUBFORM_COMPONENTS"] = "WORKFLOW_TEMPLATE_CANNOT_HAVE_MULTIPLE_SUBFORM_COMPONENTS";
8
8
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_COMPONENT_TYPE_LIMIT_EXCEEDED"] = "WORKFLOW_TEMPLATE_COMPONENT_TYPE_LIMIT_EXCEEDED";
9
9
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_COMPONENT_UNIQUENESS_CONSTRAINT_VIOLATION"] = "WORKFLOW_TEMPLATE_COMPONENT_UNIQUENESS_CONSTRAINT_VIOLATION";
10
+ WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_MISSING_MANAGED_BY_COMPONENT_REFERENCE"] = "WORKFLOW_TEMPLATE_MISSING_MANAGED_BY_COMPONENT_REFERENCE";
11
+ WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_MISSING_MANAGED_COMPONENT_REFERENCE"] = "WORKFLOW_TEMPLATE_MISSING_MANAGED_COMPONENT_REFERENCE";
10
12
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_MULTIPLE_BATCH_CREATION_ENABLED_DATE_COMPONENTS"] = "WORKFLOW_TEMPLATE_MULTIPLE_BATCH_CREATION_ENABLED_DATE_COMPONENTS";
11
13
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_NAME_COMPONENT_MUST_BE_REQUIRED"] = "WORKFLOW_TEMPLATE_NAME_COMPONENT_MUST_BE_REQUIRED";
12
14
  WorkflowTemplateErrorCode["WORKFLOW_TEMPLATE_NAME_COMPONENT_REQUIRED"] = "WORKFLOW_TEMPLATE_NAME_COMPONENT_REQUIRED";
@@ -1 +1 @@
1
- {"version":3,"file":"WorkflowTemplateErrorCode.js","sourceRoot":"","sources":["../../../../src/models/workflow-template/error/WorkflowTemplateErrorCode.ts"],"names":[],"mappings":";;;AACA,IAAY,yBAUX;AAVD,WAAY,yBAAyB;IACjC,8HAAiG,CAAA;IACjG,oJAAuH,CAAA;IACvH,gIAAmG,CAAA;IACnG,wJAA2H,CAAA;IAC3H,oKAAuI,CAAA;IACvI,oIAAuG,CAAA;IACvG,oHAAuF,CAAA;IACvF,oLAAuJ,CAAA;IACvJ,wLAA2J,CAAA;AAC/J,CAAC,EAVW,yBAAyB,yCAAzB,yBAAyB,QAUpC"}
1
+ {"version":3,"file":"WorkflowTemplateErrorCode.js","sourceRoot":"","sources":["../../../../src/models/workflow-template/error/WorkflowTemplateErrorCode.ts"],"names":[],"mappings":";;;AACA,IAAY,yBAYX;AAZD,WAAY,yBAAyB;IACjC,8HAAiG,CAAA;IACjG,oJAAuH,CAAA;IACvH,gIAAmG,CAAA;IACnG,wJAA2H,CAAA;IAC3H,kJAAqH,CAAA;IACrH,4IAA+G,CAAA;IAC/G,oKAAuI,CAAA;IACvI,oIAAuG,CAAA;IACvG,oHAAuF,CAAA;IACvF,oLAAuJ,CAAA;IACvJ,wLAA2J,CAAA;AAC/J,CAAC,EAZW,yBAAyB,yCAAzB,yBAAyB,QAYpC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.234",
3
+ "version": "1.2.236",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {