@carthooks/arcubase-cli 0.1.5 → 0.1.6

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": "@carthooks/arcubase-cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Arcubase runtime CLI for admin and user command execution",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -58,6 +58,22 @@ If the app already exists:
58
58
  3. inspect the existing entity list
59
59
  4. decide whether to create a new entity or write rows into an existing entity
60
60
 
61
+ ## Per-employee permission scenarios
62
+
63
+ If the business requirement says different digiEmployees should have different Arcubase abilities:
64
+
65
+ - first resolve the app with `arcubase-admin app inventory`
66
+ - then resolve digiEmployee mappings with `arcubase.get_digiemployee_users`
67
+ - then continue with ingress-oriented admin configuration
68
+
69
+ Do not treat this as a reason to ask the user for:
70
+
71
+ - `app_id`
72
+ - `entity_id`
73
+ - `tenantUserId`
74
+
75
+ Do not treat this as a primary app-sharing or permission-template discovery task.
76
+
61
77
  ## New app flow
62
78
 
63
79
  If the user clearly wants a brand-new app:
@@ -86,11 +86,6 @@ export interface AppGetEntitiesEntityVO {
86
86
  total_number?: number;
87
87
  }
88
88
 
89
- export interface AppListItemVO {
90
- id?: number;
91
- name?: string;
92
- }
93
-
94
89
  export interface AppGetEntitySharesRespVO {
95
90
  shares?: AppEntityShareItemVO[];
96
91
  }
@@ -107,6 +102,11 @@ export interface AppGetSiteMapsRespVO {
107
102
  ingresses?: IngressGroup[];
108
103
  }
109
104
 
105
+ export interface AppListItemVO {
106
+ id?: number;
107
+ name?: string;
108
+ }
109
+
110
110
  export interface AppRenameReqVO {
111
111
  name?: string;
112
112
  }