@habeetat/cli 0.1.0-dev.20260618151449.8ee92f3 → 0.1.0-dev.20260618151825.d2eef59

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/dist/bin.js CHANGED
@@ -13179,8 +13179,8 @@ SET resource_id = EXCLUDED.resource_id, name = EXCLUDED.name, description = EXCL
13179
13179
  -- these the groups:read scope-gate is unsatisfiable for any client.
13180
13180
  INSERT INTO scopes (tenant_id, id, resource_id, name, description)
13181
13181
  VALUES
13182
- ('default', 'nhp-scope-groups-read', 'nhp-backend-resource', 'groups:read', 'Read tenant groups via the SDK'),
13183
- ('default', 'nhp-scope-groups-write', 'nhp-backend-resource', 'groups:write', 'Manage tenant groups via the SDK')
13182
+ ('default', 'nhp-groups-read', 'nhp-backend-resource', 'groups:read', 'Read tenant groups via the SDK'),
13183
+ ('default', 'nhp-groups-write', 'nhp-backend-resource', 'groups:write', 'Manage tenant groups via the SDK')
13184
13184
  ON CONFLICT (id) DO UPDATE
13185
13185
  SET resource_id = EXCLUDED.resource_id, name = EXCLUDED.name, description = EXCLUDED.description;
13186
13186
 
@@ -13252,7 +13252,7 @@ BEGIN
13252
13252
  -- can call /sdk/v1/groups. (Per-app scopes via app manifests come later
13253
13253
  -- with vendor onboarding.)
13254
13254
  INSERT INTO roles_scopes (tenant_id, id, role_id, scope_id)
13255
- VALUES ('default', 'rs_m2m_groups_read', v_role_id, 'nhp-scope-groups-read')
13255
+ VALUES ('default', 'rs_m2m_groups_read', v_role_id, 'nhp-groups-read')
13256
13256
  ON CONFLICT DO NOTHING;
13257
13257
  END $$;
13258
13258