@pgpm/metaschema-modules 0.26.3 → 0.26.5

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 (55) hide show
  1. package/Makefile +1 -1
  2. package/deploy/schemas/metaschema_modules_public/tables/agent_module/table.sql +35 -24
  3. package/deploy/schemas/metaschema_modules_public/tables/billing_module/table.sql +13 -0
  4. package/deploy/schemas/metaschema_modules_public/tables/billing_provider_module/table.sql +4 -0
  5. package/deploy/schemas/metaschema_modules_public/tables/compute_log_module/table.sql +7 -2
  6. package/deploy/schemas/metaschema_modules_public/tables/config_secrets_module/table.sql +82 -0
  7. package/deploy/schemas/metaschema_modules_public/tables/config_secrets_org_module/table.sql +4 -0
  8. package/deploy/schemas/metaschema_modules_public/tables/config_secrets_user_module/table.sql +4 -0
  9. package/deploy/schemas/metaschema_modules_public/tables/connected_accounts_module/table.sql +4 -0
  10. package/deploy/schemas/metaschema_modules_public/tables/crypto_addresses_module/table.sql +4 -0
  11. package/deploy/schemas/metaschema_modules_public/tables/db_usage_module/table.sql +11 -2
  12. package/deploy/schemas/metaschema_modules_public/tables/emails_module/table.sql +4 -0
  13. package/deploy/schemas/metaschema_modules_public/tables/entity_type_provision/table.sql +0 -4
  14. package/deploy/schemas/metaschema_modules_public/tables/events_module/table.sql +14 -4
  15. package/deploy/schemas/metaschema_modules_public/tables/function_module/table.sql +14 -27
  16. package/deploy/schemas/metaschema_modules_public/tables/graph_module/table.sql +10 -8
  17. package/deploy/schemas/metaschema_modules_public/tables/hierarchy_module/table.sql +10 -3
  18. package/deploy/schemas/metaschema_modules_public/tables/i18n_module/table.sql +31 -0
  19. package/deploy/schemas/metaschema_modules_public/tables/identity_providers_module/table.sql +35 -3
  20. package/deploy/schemas/metaschema_modules_public/tables/inference_log_module/table.sql +7 -2
  21. package/deploy/schemas/metaschema_modules_public/tables/invites_module/table.sql +12 -10
  22. package/deploy/schemas/metaschema_modules_public/tables/limits_module/table.sql +10 -4
  23. package/deploy/schemas/metaschema_modules_public/tables/memberships_module/table.sql +13 -6
  24. package/deploy/schemas/metaschema_modules_public/tables/merkle_store_module/table.sql +3 -2
  25. package/deploy/schemas/metaschema_modules_public/tables/namespace_module/table.sql +13 -12
  26. package/deploy/schemas/metaschema_modules_public/tables/notifications_module/table.sql +8 -0
  27. package/deploy/schemas/metaschema_modules_public/tables/permissions_module/table.sql +12 -5
  28. package/deploy/schemas/metaschema_modules_public/tables/phone_numbers_module/table.sql +4 -0
  29. package/deploy/schemas/metaschema_modules_public/tables/plans_module/table.sql +16 -0
  30. package/deploy/schemas/metaschema_modules_public/tables/profiles_module/table.sql +10 -4
  31. package/deploy/schemas/metaschema_modules_public/tables/rate_limit_meters_module/table.sql +8 -0
  32. package/deploy/schemas/metaschema_modules_public/tables/realtime_module/table.sql +4 -0
  33. package/deploy/schemas/metaschema_modules_public/tables/rls_module/table.sql +4 -0
  34. package/deploy/schemas/metaschema_modules_public/tables/storage_log_module/table.sql +7 -2
  35. package/deploy/schemas/metaschema_modules_public/tables/storage_module/table.sql +19 -14
  36. package/deploy/schemas/metaschema_modules_public/tables/transfer_log_module/table.sql +7 -2
  37. package/deploy/schemas/metaschema_modules_public/tables/user_auth_module/table.sql +4 -0
  38. package/deploy/schemas/metaschema_modules_public/tables/user_credentials_module/table.sql +42 -0
  39. package/deploy/schemas/metaschema_modules_public/tables/user_settings_module/table.sql +34 -0
  40. package/deploy/schemas/metaschema_modules_public/tables/users_module/table.sql +4 -0
  41. package/deploy/schemas/metaschema_modules_public/tables/webauthn_credentials_module/table.sql +4 -0
  42. package/metaschema-modules.control +1 -1
  43. package/package.json +3 -3
  44. package/pgpm.plan +4 -0
  45. package/revert/schemas/metaschema_modules_public/tables/agent_chat_module/table.sql +3 -0
  46. package/revert/schemas/metaschema_modules_public/tables/config_secrets_module/table.sql +7 -0
  47. package/revert/schemas/metaschema_modules_public/tables/i18n_module/table.sql +7 -0
  48. package/revert/schemas/metaschema_modules_public/tables/user_credentials_module/table.sql +7 -0
  49. package/revert/schemas/metaschema_modules_public/tables/user_settings_module/table.sql +7 -0
  50. package/sql/{metaschema-modules--0.26.1.sql → metaschema-modules--0.26.3.sql} +318 -62
  51. package/verify/schemas/metaschema_modules_public/tables/config_secrets_module/table.sql +7 -0
  52. package/verify/schemas/metaschema_modules_public/tables/i18n_module/table.sql +9 -0
  53. package/verify/schemas/metaschema_modules_public/tables/namespace_module/table.sql +3 -1
  54. package/verify/schemas/metaschema_modules_public/tables/user_credentials_module/table.sql +7 -0
  55. package/verify/schemas/metaschema_modules_public/tables/user_settings_module/table.sql +7 -0
@@ -0,0 +1,7 @@
1
+ -- Verify schemas/metaschema_modules_public/tables/config_secrets_module/table on pg
2
+
3
+ BEGIN;
4
+
5
+ SELECT verify_table('metaschema_modules_public.config_secrets_module');
6
+
7
+ ROLLBACK;
@@ -0,0 +1,9 @@
1
+ -- Verify schemas/metaschema_modules_public/tables/i18n_module/table on pg
2
+
3
+ BEGIN;
4
+
5
+ SELECT id, database_id, schema_id, private_schema_id, settings_table_id, api_name, private_api_name
6
+ FROM metaschema_modules_public.i18n_module
7
+ WHERE FALSE;
8
+
9
+ ROLLBACK;
@@ -3,9 +3,11 @@
3
3
  BEGIN;
4
4
 
5
5
  SELECT id, database_id, schema_id, private_schema_id,
6
+ public_schema_name, private_schema_name,
6
7
  namespaces_table_id, namespace_events_table_id,
7
8
  namespaces_table_name, namespace_events_table_name,
8
- membership_type, entity_table_id, policies
9
+ api_name, private_api_name, scope, prefix,
10
+ entity_table_id, policies, provisions, default_permissions
9
11
  FROM metaschema_modules_public.namespace_module
10
12
  WHERE false;
11
13
 
@@ -0,0 +1,7 @@
1
+ -- Verify schemas/metaschema_modules_public/tables/user_credentials_module/table on pg
2
+
3
+ BEGIN;
4
+
5
+ SELECT verify_table('metaschema_modules_public.user_credentials_module');
6
+
7
+ ROLLBACK;
@@ -0,0 +1,7 @@
1
+ -- Verify schemas/metaschema_modules_public/tables/user_settings_module/table on pg
2
+
3
+ BEGIN;
4
+
5
+ SELECT verify_table('metaschema_modules_public.user_settings_module');
6
+
7
+ ROLLBACK;