@arrowsphere/api-client 3.58.1-rc.bdj.2 → 3.58.1
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.58.1] - 2023-10-24
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Update graphqlApi type add query valueType and idNullValue to InputFilterValueField
|
|
10
|
+
|
|
6
11
|
## [3.58.0] - 2023-10-19
|
|
7
12
|
|
|
8
13
|
### Changed
|
|
@@ -45,8 +45,8 @@ export declare enum InputPaginationField {
|
|
|
45
45
|
PAGE = "page",
|
|
46
46
|
PER_PAGE = "perPage"
|
|
47
47
|
}
|
|
48
|
-
export declare enum
|
|
49
|
-
|
|
48
|
+
export declare enum ValueType {
|
|
49
|
+
FIELD = "FIELD"
|
|
50
50
|
}
|
|
51
51
|
export declare type InputPaginationType = {
|
|
52
52
|
[InputPaginationField.PAGE]?: number;
|
|
@@ -82,7 +82,8 @@ export declare enum InputFilterValueField {
|
|
|
82
82
|
VALUE = "value",
|
|
83
83
|
EXCLUSION = "exclusion",
|
|
84
84
|
HAVING = "having",
|
|
85
|
-
|
|
85
|
+
VALUE_TYPE = "valueType",
|
|
86
|
+
IFNULL_VALUE = "ifNullValue"
|
|
86
87
|
}
|
|
87
88
|
export declare type InputFilterValueType = {
|
|
88
89
|
[InputFilterValueField.NAME]?: string;
|
|
@@ -90,7 +91,8 @@ export declare type InputFilterValueType = {
|
|
|
90
91
|
[InputFilterValueField.VALUE]?: string[];
|
|
91
92
|
[InputFilterValueField.EXCLUSION]?: boolean;
|
|
92
93
|
[InputFilterValueField.HAVING]?: boolean;
|
|
93
|
-
[InputFilterValueField.
|
|
94
|
+
[InputFilterValueField.VALUE_TYPE]?: ValueType;
|
|
95
|
+
[InputFilterValueField.IFNULL_VALUE]?: string;
|
|
94
96
|
};
|
|
95
97
|
export declare enum InputQueryOptionsField {
|
|
96
98
|
SKIP_PARTITION = "skipPartition"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Queries = exports.QueryVariablesField = exports.PaginationField = exports.ErrorsField = exports.SelectDataField = exports.SelectableField = exports.InputQueryOptionsField = exports.InputFilterValueField = exports.InputFiltersField = exports.InputSearchFilterField = exports.InputSortFilterField = exports.
|
|
3
|
+
exports.Queries = exports.QueryVariablesField = exports.PaginationField = exports.ErrorsField = exports.SelectDataField = exports.SelectableField = exports.InputQueryOptionsField = exports.InputFilterValueField = exports.InputFiltersField = exports.InputSearchFilterField = exports.InputSortFilterField = exports.ValueType = exports.InputPaginationField = exports.Direction = exports.QueryModifier = exports.LogicalOperator = exports.ComparisonOperator = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* For field __args
|
|
6
6
|
*/
|
|
@@ -48,10 +48,10 @@ var InputPaginationField;
|
|
|
48
48
|
InputPaginationField["PAGE"] = "page";
|
|
49
49
|
InputPaginationField["PER_PAGE"] = "perPage";
|
|
50
50
|
})(InputPaginationField = exports.InputPaginationField || (exports.InputPaginationField = {}));
|
|
51
|
-
var
|
|
52
|
-
(function (
|
|
53
|
-
|
|
54
|
-
})(
|
|
51
|
+
var ValueType;
|
|
52
|
+
(function (ValueType) {
|
|
53
|
+
ValueType["FIELD"] = "FIELD";
|
|
54
|
+
})(ValueType = exports.ValueType || (exports.ValueType = {}));
|
|
55
55
|
var InputSortFilterField;
|
|
56
56
|
(function (InputSortFilterField) {
|
|
57
57
|
InputSortFilterField["DIRECTION"] = "direction";
|
|
@@ -74,7 +74,8 @@ var InputFilterValueField;
|
|
|
74
74
|
InputFilterValueField["VALUE"] = "value";
|
|
75
75
|
InputFilterValueField["EXCLUSION"] = "exclusion";
|
|
76
76
|
InputFilterValueField["HAVING"] = "having";
|
|
77
|
-
InputFilterValueField["
|
|
77
|
+
InputFilterValueField["VALUE_TYPE"] = "valueType";
|
|
78
|
+
InputFilterValueField["IFNULL_VALUE"] = "ifNullValue";
|
|
78
79
|
})(InputFilterValueField = exports.InputFilterValueField || (exports.InputFilterValueField = {}));
|
|
79
80
|
var InputQueryOptionsField;
|
|
80
81
|
(function (InputQueryOptionsField) {
|
package/package.json
CHANGED