@coast/core-api-types 1.2.378 → 1.2.379
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.
- package/dist/models/automations/condition/operands/BooleanOperandGql.d.ts +5 -0
- package/dist/models/automations/condition/operands/BooleanOperandGql.js +3 -0
- package/dist/models/automations/condition/operands/BooleanOperandGql.js.map +1 -0
- package/dist/models/automations/condition/operands/DataOperandOneOfGql.d.ts +2 -0
- package/dist/models/automations/condition/operands/NumberOperandOneOfGql.d.ts +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BooleanOperandGql.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/BooleanOperandGql.ts"],"names":[],"mappings":""}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ActionResultNumberOperandGql } from './ActionResultNumberOperandGql';
|
|
2
|
+
import { BooleanOperandGql } from './BooleanOperandGql';
|
|
2
3
|
import { ComponentOperandGql } from './ComponentOperandGql';
|
|
3
4
|
import { DateOperandGql } from './DateOperandGql';
|
|
4
5
|
import { DateTokenOperandGql } from './DateTokenOperandGql';
|
|
@@ -11,6 +12,7 @@ import { SubformComponentRefOperandGql } from './SubformComponentRefOperandGql';
|
|
|
11
12
|
import { WorkflowEntityRefComponentOperandGql } from './WorkflowEntityRefComponentOperandGql';
|
|
12
13
|
export interface DataOperandOneOfGql {
|
|
13
14
|
actionResultNumberOperand?: ActionResultNumberOperandGql;
|
|
15
|
+
booleanOperand?: BooleanOperandGql;
|
|
14
16
|
componentOperand?: ComponentOperandGql;
|
|
15
17
|
dateOperand?: DateOperandGql;
|
|
16
18
|
dateTokenOperand?: DateTokenOperandGql;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { OperandOneOfGql } from './OperandOneOfGql';
|
|
2
|
-
export interface NumberOperandOneOfGql extends Omit<OperandOneOfGql, 'stringOperand' | 'stringArrayOperand' | 'numberArrayOperand'> {
|
|
2
|
+
export interface NumberOperandOneOfGql extends Omit<OperandOneOfGql, 'stringOperand' | 'stringArrayOperand' | 'numberArrayOperand' | 'booleanOperand'> {
|
|
3
3
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coast/core-api-types",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.379",
|
|
4
4
|
"description": "Facilitates the generation of core-api-types npm package",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Coast Engineering",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@coast/core-types": "0.0.
|
|
26
|
+
"@coast/core-types": "0.0.96",
|
|
27
27
|
"@coast/core-utils": "0.0.25",
|
|
28
28
|
"@coast/schemas": "^4.0.2",
|
|
29
29
|
"@coast/service-common": "^2.0.81",
|