@arrowsphere/api-client 3.245.0 → 3.247.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,18 @@
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.247.0] - 2026.02.24
7
+
8
+ ### Added
9
+
10
+ - [partners] add more filter support for API keys
11
+
12
+ ## [3.246.0] - 2026.02.23
13
+
14
+ ### Added
15
+
16
+ - [Quote] Provide field isPriceEditable in item program
17
+
6
18
  ## [3.245.0] - 2026.02.13
7
19
 
8
20
  ### Added
@@ -10,6 +10,7 @@ export declare type GraphqlApiProgramType = {
10
10
  disclaimer?: GraphqlApiDisclaimerType;
11
11
  internalName?: string;
12
12
  introduction?: string;
13
+ isPriceEditable?: boolean;
13
14
  legacyCode?: string;
14
15
  levels?: ProgramLevelType[];
15
16
  mandatoryEula?: boolean;
@@ -63,7 +63,10 @@ export declare enum GetUserApiKeysFiltersFields {
63
63
  COLUMN_USER_REFERENCE = "userReference",
64
64
  COLUMN_USER_LOGIN = "userLogin",
65
65
  COLUMN_NAME = "name",
66
- COLUMN_IS_ACTIVE = "isActive"
66
+ COLUMN_IS_ACTIVE = "isActive",
67
+ COLUMN_EXPIRATION_DATE = "expirationDate",
68
+ COLUMN_CREATION_DATE = "creationDate",
69
+ COLUMN_LAST_ACCESS = "lastAccess"
67
70
  }
68
71
  export declare type PatchUserPayload = {
69
72
  [PatchUserPayloadFields.COLUMN_FIRSTNAME]?: string;
@@ -122,6 +125,9 @@ export declare type GetUserApiKeysFilters = {
122
125
  [GetUserApiKeysFiltersFields.COLUMN_USER_LOGIN]?: string;
123
126
  [GetUserApiKeysFiltersFields.COLUMN_NAME]?: string;
124
127
  [GetUserApiKeysFiltersFields.COLUMN_IS_ACTIVE]?: string;
128
+ [GetUserApiKeysFiltersFields.COLUMN_EXPIRATION_DATE]?: string;
129
+ [GetUserApiKeysFiltersFields.COLUMN_CREATION_DATE]?: string;
130
+ [GetUserApiKeysFiltersFields.COLUMN_LAST_ACCESS]?: string;
125
131
  };
126
132
  export declare class PartnerClient extends AbstractRestfulClient {
127
133
  protected basePath: string;
@@ -73,6 +73,9 @@ var GetUserApiKeysFiltersFields;
73
73
  GetUserApiKeysFiltersFields["COLUMN_USER_LOGIN"] = "userLogin";
74
74
  GetUserApiKeysFiltersFields["COLUMN_NAME"] = "name";
75
75
  GetUserApiKeysFiltersFields["COLUMN_IS_ACTIVE"] = "isActive";
76
+ GetUserApiKeysFiltersFields["COLUMN_EXPIRATION_DATE"] = "expirationDate";
77
+ GetUserApiKeysFiltersFields["COLUMN_CREATION_DATE"] = "creationDate";
78
+ GetUserApiKeysFiltersFields["COLUMN_LAST_ACCESS"] = "lastAccess";
76
79
  })(GetUserApiKeysFiltersFields = exports.GetUserApiKeysFiltersFields || (exports.GetUserApiKeysFiltersFields = {}));
77
80
  class PartnerClient extends abstractRestfulClient_1.AbstractRestfulClient {
78
81
  constructor() {
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.245.0",
7
+ "version": "3.247.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",