@arrowsphere/api-client 3.246.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,12 @@
|
|
|
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
|
+
|
|
6
12
|
## [3.246.0] - 2026.02.23
|
|
7
13
|
|
|
8
14
|
### Added
|
|
@@ -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