@arrowsphere/api-client 3.94.0 → 3.94.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,10 @@
|
|
|
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.94.1] - 2024.01.25
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- [Graphql-api] remove Vendor from SelectDataField
|
|
6
10
|
|
|
7
11
|
## [3.94.0] - 2024.01.25
|
|
8
12
|
|
|
@@ -117,7 +117,6 @@ export declare enum SelectDataField {
|
|
|
117
117
|
PARTNERTAG = "partnertag",
|
|
118
118
|
SUBSCRIBED_PROGRAM = "subscribedProgram",
|
|
119
119
|
SUBSCRIPTION = "subscription",
|
|
120
|
-
VENDOR = "vendor",
|
|
121
120
|
WORKGROUP = "workgroup"
|
|
122
121
|
}
|
|
123
122
|
export declare type SelectAllResultType = {
|
|
@@ -98,7 +98,6 @@ var SelectDataField;
|
|
|
98
98
|
SelectDataField["PARTNERTAG"] = "partnertag";
|
|
99
99
|
SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
|
|
100
100
|
SelectDataField["SUBSCRIPTION"] = "subscription";
|
|
101
|
-
SelectDataField["VENDOR"] = "vendor";
|
|
102
101
|
SelectDataField["WORKGROUP"] = "workgroup";
|
|
103
102
|
})(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
|
|
104
103
|
var ErrorsField;
|
package/package.json
CHANGED