@mondaydotcomorg/monday-authorization 3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-63c65ad → 3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-2d70b30

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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -256,6 +256,7 @@ const rolesResponse = await rolesService.getRoles(accountId, resourceTypes, styl
256
256
  ```
257
257
 
258
258
  **Parameters:**
259
+
259
260
  - `accountId` - The account ID
260
261
  - `resourceTypes` - Array of resource types to filter roles by (e.g., ['account', 'workspace'])
261
262
  - `style` - Deprecated, don't use it. the style of the roles to return, either 'A' or 'B' (default is 'A'). Note that basic role IDs are returned in A style and not B style.
@@ -285,6 +286,7 @@ const rolesResponse = await rolesService.createCustomRole(accountId, customRoles
285
286
  ```
286
287
 
287
288
  **Parameters:**
289
+
288
290
  - `accountId` - The account ID
289
291
  - `roles` - Array of `RoleCreateRequest` objects (cannot be empty)
290
292
 
@@ -310,6 +312,7 @@ const rolesResponse = await rolesService.updateCustomRole(accountId, updateReque
310
312
  ```
311
313
 
312
314
  **Parameters:**
315
+
313
316
  - `accountId` - The account ID
314
317
  - `updateRequests` - Array of `RoleUpdateRequest` objects
315
318
 
@@ -328,6 +331,7 @@ const rolesResponse = await rolesService.deleteCustomRole(accountId, roleIds);
328
331
  ```
329
332
 
330
333
  **Parameters:**
334
+
331
335
  - `accountId` - The account ID
332
336
  - `roleIds` - Array of custom role IDs to delete
333
337
 
@@ -388,3 +392,16 @@ interface RolesResponse {
388
392
  basicRoles?: BasicRole[];
389
393
  }
390
394
  ```
395
+
396
+ ## Development
397
+
398
+ ### Local Development and Testing
399
+
400
+ This package includes an `ignite-local-overrides.json` file for local development and testing only. It does **not** affect consumers of this package - they use their own Ignite configuration.
401
+
402
+ The file enables feature flags for testing:
403
+
404
+ - `sdk-platform-profiles`: Platform profile routing
405
+ - `navigate-can-action-in-scope-to-graph`: Graph API routing for `canActionInScope` methods
406
+
407
+ Modify this file for different local test scenarios, but remember changes only affect this package's development/testing.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mondaydotcomorg/monday-authorization",
3
- "version": "3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-63c65ad",
3
+ "version": "3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-2d70b30",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "BSD-3-Clause",