@arrowsphere/api-client 3.58.1-rc.bdj.2 → 3.58.1-rc.bdj.4
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.
|
@@ -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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.58.1-rc.bdj.
|
|
7
|
+
"version": "3.58.1-rc.bdj.4",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|