@arrowsphere/api-client 3.115.3-rc.bdj.1 → 3.116.0

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,16 @@
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.116.0] - 2024.05.16
7
+
8
+ ### Added
9
+ - [Graphql-api] Adds User and UserHistory types
10
+
11
+ ## [3.115.0] - 2024.05.15
12
+
13
+ ### Removed
14
+ - [License bulk action] set license bulk action endpoint url
15
+
6
16
  ## [3.114.2] - 2024.04.26
7
17
 
8
18
  ### Removed
@@ -2,8 +2,8 @@ import { ContactsType } from './contact';
2
2
  export declare type UserType = {
3
3
  id?: number;
4
4
  allowDirectLogin?: boolean;
5
- validatedAt?: string;
6
5
  contact?: ContactsType;
6
+ validatedAt?: string;
7
7
  };
8
8
  export declare type UserHistoryType = {
9
9
  id?: number;
@@ -4,6 +4,7 @@ import { LicenseBudgetType } from './entities/licenseBudget';
4
4
  import { PartnertagType } from './entities/partnertag';
5
5
  import { SubscribedProgramType } from './entities/program';
6
6
  import { SubscriptionType } from './entities/subscription';
7
+ import { UserHistoryType, UserType } from './entities/user';
7
8
  import { WorkgroupType } from './entities/workgroup';
8
9
  import { ErrorsSchema, PageSchema, SelectAllResponseDataSchema, SelectOneResponseDataSchema } from './graphqlApiSchemas';
9
10
  /**
@@ -119,6 +120,7 @@ export declare enum SelectDataField {
119
120
  PARTNERTAG = "partnertag",
120
121
  SUBSCRIBED_PROGRAM = "subscribedProgram",
121
122
  SUBSCRIPTION = "subscription",
123
+ USER = "user",
122
124
  USER_HISTORY = "userHistory",
123
125
  WORKGROUP = "workgroup"
124
126
  }
@@ -139,6 +141,8 @@ export declare type SelectAllResponseDataType = {
139
141
  [SelectDataField.PARTNERTAG]?: PartnertagType[];
140
142
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType[];
141
143
  [SelectDataField.SUBSCRIPTION]?: SubscriptionType[];
144
+ [SelectDataField.USER]?: UserType[];
145
+ [SelectDataField.USER_HISTORY]?: UserHistoryType[];
142
146
  [SelectDataField.WORKGROUP]?: WorkgroupType[];
143
147
  };
144
148
  export declare enum ErrorsField {
@@ -184,6 +188,8 @@ export declare type SelectOneResponseDataType = {
184
188
  [SelectDataField.PARTNERTAG]?: PartnertagType;
185
189
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramType;
186
190
  [SelectDataField.SUBSCRIPTION]?: SubscriptionType;
191
+ [SelectDataField.USER]?: UserType;
192
+ [SelectDataField.USER_HISTORY]?: UserHistoryType;
187
193
  [SelectDataField.WORKGROUP]?: WorkgroupType;
188
194
  };
189
195
  export declare enum QueryVariablesField {
@@ -99,6 +99,7 @@ var SelectDataField;
99
99
  SelectDataField["PARTNERTAG"] = "partnertag";
100
100
  SelectDataField["SUBSCRIBED_PROGRAM"] = "subscribedProgram";
101
101
  SelectDataField["SUBSCRIPTION"] = "subscription";
102
+ SelectDataField["USER"] = "user";
102
103
  SelectDataField["USER_HISTORY"] = "userHistory";
103
104
  SelectDataField["WORKGROUP"] = "workgroup";
104
105
  })(SelectDataField = exports.SelectDataField || (exports.SelectDataField = {}));
@@ -79,6 +79,7 @@ export declare type SelectAllResponseDataSchema = {
79
79
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
80
80
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
81
81
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
82
+ [SelectDataField.USER]?: UserSchema;
82
83
  [SelectDataField.USER_HISTORY]?: UserHistorySchema;
83
84
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
84
85
  };
@@ -96,6 +97,7 @@ export declare type SelectOneResponseDataSchema = {
96
97
  [SelectDataField.PARTNERTAG]?: PartnertagSchema;
97
98
  [SelectDataField.SUBSCRIBED_PROGRAM]?: SubscribedProgramSchema;
98
99
  [SelectDataField.SUBSCRIPTION]?: SubscriptionSchema;
100
+ [SelectDataField.USER]?: UserSchema;
99
101
  [SelectDataField.USER_HISTORY]?: UserHistorySchema;
100
102
  [SelectDataField.WORKGROUP]?: WorkgroupSchema;
101
103
  };
@@ -223,7 +223,7 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
223
223
  /**
224
224
  * The path to apply bulk action on license(s)
225
225
  */
226
- this.BULK_PATH = '/bulk';
226
+ this.BULK_PATH = '/bulk-action';
227
227
  }
228
228
  /**
229
229
  * Returns the raw result from the find endpoint call
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.115.3-rc.bdj.1",
7
+ "version": "3.116.0",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",