@coast/core-api-types 1.2.235 → 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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.235",
3
+ "version": "1.2.236",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {