@vertesia/client 1.5.0-dev.20260905.011013Z → 1.5.0-dev.20260910.052912Z

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/client",
3
- "version": "1.5.0-dev.20260905.011013Z",
3
+ "version": "1.5.0-dev.20260910.052912Z",
4
4
  "type": "module",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "eventsource": "^5.0.0",
22
- "@vertesia/api-fetch-client": "1.5.0-dev.20260905.011013Z",
23
- "@llumiverse/common": "1.5.0-dev.20260905.004250Z",
24
- "@vertesia/common": "1.5.0-dev.20260905.011013Z"
22
+ "@vertesia/api-fetch-client": "1.5.0-dev.20260910.052912Z",
23
+ "@vertesia/common": "1.5.0-dev.20260910.052912Z",
24
+ "@llumiverse/common": "1.5.0-dev.20260910.044936Z"
25
25
  },
26
26
  "exports": {
27
27
  ".": {
@@ -48,7 +48,7 @@
48
48
  "ai",
49
49
  "typescript"
50
50
  ],
51
- "gitHead": "ea74a29f6885cec132eec4b6b319e40137df3b40",
51
+ "gitHead": "95d481ca856012cd67b501b901dc365afeb7cf81",
52
52
  "scripts": {
53
53
  "lint": "biome lint src",
54
54
  "clean:lib": "rimraf ./lib ./tsconfig.tsbuildinfo",
package/src/IamApi.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ApiTopic, type ClientBase } from '@vertesia/api-fetch-client';
1
+ import { ApiTopic, type ClientBase, type IRequestParams } from '@vertesia/api-fetch-client';
2
2
  import type {
3
3
  ACECreatePayload,
4
4
  ACEUpdatePayload,
@@ -53,8 +53,8 @@ export class RolesApi extends ApiTopic {
53
53
  * suited for client-side permission gating (button visibility, route guards).
54
54
  * ABAC roles are excluded and must be consumed via the JWT `content_security` claim.
55
55
  */
56
- listSystem(): Promise<SystemRoleDefinition[]> {
57
- return this.get('/system');
56
+ listSystem(options?: IRequestParams): Promise<SystemRoleDefinition[]> {
57
+ return this.get('/system', options);
58
58
  }
59
59
  }
60
60