node-type-registry 0.2.2 → 0.3.0

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 (159) hide show
  1. package/authz/authz-allow-all.js +9 -7
  2. package/authz/authz-composite.js +10 -7
  3. package/authz/authz-deny-all.js +9 -7
  4. package/authz/authz-direct-owner-any.js +10 -7
  5. package/authz/authz-direct-owner.js +10 -7
  6. package/authz/authz-entity-membership.js +10 -7
  7. package/authz/authz-member-list.js +10 -7
  8. package/authz/authz-membership-check.js +10 -7
  9. package/authz/authz-org-hierarchy.js +11 -7
  10. package/authz/authz-peer-ownership.js +11 -7
  11. package/authz/authz-publishable.js +11 -7
  12. package/authz/authz-related-entity-membership.js +10 -7
  13. package/authz/authz-related-member-list.js +10 -7
  14. package/authz/authz-related-peer-ownership.js +11 -7
  15. package/authz/authz-temporal.js +10 -7
  16. package/data/data-bm25.js +11 -7
  17. package/data/data-direct-owner.js +10 -7
  18. package/data/data-embedding.js +12 -7
  19. package/data/data-entity-membership.js +10 -7
  20. package/data/data-force-current-user.d.ts +2 -0
  21. package/data/data-force-current-user.js +25 -0
  22. package/data/data-full-text-search.js +12 -7
  23. package/data/data-id.js +10 -7
  24. package/data/data-immutable-fields.d.ts +2 -0
  25. package/data/data-immutable-fields.js +30 -0
  26. package/data/data-inflection.d.ts +2 -0
  27. package/data/data-inflection.js +45 -0
  28. package/data/data-inherit-from-parent.d.ts +2 -0
  29. package/data/data-inherit-from-parent.js +43 -0
  30. package/data/data-job-trigger.js +11 -7
  31. package/data/data-jsonb.js +10 -7
  32. package/data/data-owned-fields.d.ts +2 -0
  33. package/data/data-owned-fields.js +35 -0
  34. package/data/data-ownership-in-entity.js +12 -7
  35. package/data/data-peoplestamps.js +10 -7
  36. package/data/data-postgis-aggregate.js +13 -7
  37. package/data/data-postgis.js +12 -7
  38. package/data/data-publishable.js +11 -7
  39. package/data/data-search.js +11 -7
  40. package/{field/field-slug.d.ts → data/data-slug.d.ts} +1 -1
  41. package/data/data-slug.js +30 -0
  42. package/data/data-soft-delete.js +9 -7
  43. package/data/data-status-field.js +10 -7
  44. package/data/data-tags.js +10 -7
  45. package/data/data-timestamps.js +10 -7
  46. package/data/data-trgm.js +11 -7
  47. package/data/index.d.ts +9 -0
  48. package/data/index.js +19 -1
  49. package/data/table-organization-settings.js +20 -0
  50. package/data/table-user-profiles.js +20 -0
  51. package/data/table-user-settings.js +20 -0
  52. package/esm/authz/authz-allow-all.js +9 -7
  53. package/esm/authz/authz-composite.js +10 -7
  54. package/esm/authz/authz-deny-all.js +9 -7
  55. package/esm/authz/authz-direct-owner-any.js +10 -7
  56. package/esm/authz/authz-direct-owner.js +10 -7
  57. package/esm/authz/authz-entity-membership.js +10 -7
  58. package/esm/authz/authz-member-list.js +10 -7
  59. package/esm/authz/authz-membership-check.js +10 -7
  60. package/esm/authz/authz-org-hierarchy.js +11 -7
  61. package/esm/authz/authz-peer-ownership.js +11 -7
  62. package/esm/authz/authz-publishable.js +11 -7
  63. package/esm/authz/authz-related-entity-membership.js +10 -7
  64. package/esm/authz/authz-related-member-list.js +10 -7
  65. package/esm/authz/authz-related-peer-ownership.js +11 -7
  66. package/esm/authz/authz-temporal.js +10 -7
  67. package/esm/data/data-bm25.js +11 -7
  68. package/esm/data/data-direct-owner.js +10 -7
  69. package/esm/data/data-embedding.js +12 -7
  70. package/esm/data/data-entity-membership.js +10 -7
  71. package/esm/data/data-force-current-user.d.ts +2 -0
  72. package/esm/data/data-force-current-user.js +22 -0
  73. package/esm/data/data-full-text-search.js +12 -7
  74. package/esm/data/data-id.js +10 -7
  75. package/esm/data/data-immutable-fields.d.ts +2 -0
  76. package/esm/data/data-immutable-fields.js +27 -0
  77. package/esm/data/data-inflection.d.ts +2 -0
  78. package/esm/data/data-inflection.js +42 -0
  79. package/esm/data/data-inherit-from-parent.d.ts +2 -0
  80. package/esm/data/data-inherit-from-parent.js +40 -0
  81. package/esm/data/data-job-trigger.js +11 -7
  82. package/esm/data/data-jsonb.js +10 -7
  83. package/esm/data/data-owned-fields.d.ts +2 -0
  84. package/esm/data/data-owned-fields.js +32 -0
  85. package/esm/data/data-ownership-in-entity.js +12 -7
  86. package/esm/data/data-peoplestamps.js +10 -7
  87. package/esm/data/data-postgis-aggregate.js +13 -7
  88. package/esm/data/data-postgis.js +12 -7
  89. package/esm/data/data-publishable.js +11 -7
  90. package/esm/data/data-search.js +11 -7
  91. package/esm/{field/field-slug.d.ts → data/data-slug.d.ts} +1 -1
  92. package/esm/data/data-slug.js +27 -0
  93. package/esm/data/data-soft-delete.js +9 -7
  94. package/esm/data/data-status-field.js +10 -7
  95. package/esm/data/data-tags.js +10 -7
  96. package/esm/data/data-timestamps.js +10 -7
  97. package/esm/data/data-trgm.js +11 -7
  98. package/esm/data/index.d.ts +9 -0
  99. package/esm/data/index.js +9 -0
  100. package/esm/data/table-organization-settings.js +17 -0
  101. package/esm/data/table-user-profiles.js +17 -0
  102. package/esm/data/table-user-settings.js +17 -0
  103. package/esm/index.d.ts +0 -2
  104. package/esm/index.js +0 -7
  105. package/esm/relation/relation-belongs-to.js +11 -7
  106. package/esm/relation/relation-has-many.js +12 -7
  107. package/esm/relation/relation-has-one.js +12 -7
  108. package/esm/relation/relation-many-to-many.js +12 -7
  109. package/esm/view/view-aggregated.js +11 -7
  110. package/esm/view/view-composite.js +12 -7
  111. package/esm/view/view-filtered-table.js +11 -7
  112. package/esm/view/view-joined-tables.js +10 -7
  113. package/esm/view/view-table-projection.js +10 -7
  114. package/index.d.ts +0 -2
  115. package/index.js +0 -7
  116. package/package.json +4 -4
  117. package/relation/relation-belongs-to.js +11 -7
  118. package/relation/relation-has-many.js +12 -7
  119. package/relation/relation-has-one.js +12 -7
  120. package/relation/relation-many-to-many.js +12 -7
  121. package/view/view-aggregated.js +11 -7
  122. package/view/view-composite.js +12 -7
  123. package/view/view-filtered-table.js +11 -7
  124. package/view/view-joined-tables.js +10 -7
  125. package/view/view-table-projection.js +10 -7
  126. package/esm/field/field-immutable.d.ts +0 -2
  127. package/esm/field/field-immutable.js +0 -21
  128. package/esm/field/field-inflection.d.ts +0 -2
  129. package/esm/field/field-inflection.js +0 -29
  130. package/esm/field/field-owned.d.ts +0 -2
  131. package/esm/field/field-owned.js +0 -36
  132. package/esm/field/field-slug.js +0 -26
  133. package/esm/field/index.d.ts +0 -4
  134. package/esm/field/index.js +0 -4
  135. package/esm/table/index.d.ts +0 -3
  136. package/esm/table/index.js +0 -3
  137. package/esm/table/table-organization-settings.js +0 -12
  138. package/esm/table/table-user-profiles.js +0 -12
  139. package/esm/table/table-user-settings.js +0 -12
  140. package/field/field-immutable.d.ts +0 -2
  141. package/field/field-immutable.js +0 -24
  142. package/field/field-inflection.d.ts +0 -2
  143. package/field/field-inflection.js +0 -32
  144. package/field/field-owned.d.ts +0 -2
  145. package/field/field-owned.js +0 -39
  146. package/field/field-slug.js +0 -29
  147. package/field/index.d.ts +0 -4
  148. package/field/index.js +0 -11
  149. package/table/index.d.ts +0 -3
  150. package/table/index.js +0 -9
  151. package/table/table-organization-settings.js +0 -15
  152. package/table/table-user-profiles.js +0 -15
  153. package/table/table-user-settings.js +0 -15
  154. /package/{esm/table → data}/table-organization-settings.d.ts +0 -0
  155. /package/{esm/table → data}/table-user-profiles.d.ts +0 -0
  156. /package/{esm/table → data}/table-user-settings.d.ts +0 -0
  157. /package/{table → esm/data}/table-organization-settings.d.ts +0 -0
  158. /package/{table → esm/data}/table-user-profiles.d.ts +0 -0
  159. /package/{table → esm/data}/table-user-settings.d.ts +0 -0
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ViewComposite = void 0;
4
4
  exports.ViewComposite = {
5
- name: 'ViewComposite',
6
- slug: 'view_composite',
7
- category: 'view',
8
- display_name: 'Composite View',
9
- description: 'Advanced view using composite AST for the query. Use when other node types are insufficient (CTEs, UNIONs, complex subqueries, etc.).',
10
- parameter_schema: {
5
+ "name": "ViewComposite",
6
+ "slug": "view_composite",
7
+ "category": "view",
8
+ "display_name": "Composite View",
9
+ "description": "Advanced view using composite AST for the query. Use when other node types are insufficient (CTEs, UNIONs, complex subqueries, etc.).",
10
+ "parameter_schema": {
11
11
  "type": "object",
12
12
  "properties": {
13
13
  "query_ast": {
@@ -19,5 +19,10 @@ exports.ViewComposite = {
19
19
  "query_ast"
20
20
  ]
21
21
  },
22
- tags: ['view', 'advanced', 'composite', 'ast'],
22
+ "tags": [
23
+ "view",
24
+ "advanced",
25
+ "composite",
26
+ "ast"
27
+ ]
23
28
  };
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ViewFilteredTable = void 0;
4
4
  exports.ViewFilteredTable = {
5
- name: 'ViewFilteredTable',
6
- slug: 'view_filtered_table',
7
- category: 'view',
8
- display_name: 'Filtered Table',
9
- description: 'Table projection with an Authz* filter baked into the view definition. The view only returns records matching the filter.',
10
- parameter_schema: {
5
+ "name": "ViewFilteredTable",
6
+ "slug": "view_filtered_table",
7
+ "category": "view",
8
+ "display_name": "Filtered Table",
9
+ "description": "Table projection with an Authz* filter baked into the view definition. The view only returns records matching the filter.",
10
+ "parameter_schema": {
11
11
  "type": "object",
12
12
  "properties": {
13
13
  "source_table_id": {
@@ -44,5 +44,9 @@ exports.ViewFilteredTable = {
44
44
  "filter_type"
45
45
  ]
46
46
  },
47
- tags: ['view', 'filter', 'authz'],
47
+ "tags": [
48
+ "view",
49
+ "filter",
50
+ "authz"
51
+ ]
48
52
  };
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ViewJoinedTables = void 0;
4
4
  exports.ViewJoinedTables = {
5
- name: 'ViewJoinedTables',
6
- slug: 'view_joined_tables',
7
- category: 'view',
8
- display_name: 'Joined Tables',
9
- description: 'View that joins multiple tables together. Supports INNER, LEFT, RIGHT, and FULL joins.',
10
- parameter_schema: {
5
+ "name": "ViewJoinedTables",
6
+ "slug": "view_joined_tables",
7
+ "category": "view",
8
+ "display_name": "Joined Tables",
9
+ "description": "View that joins multiple tables together. Supports INNER, LEFT, RIGHT, and FULL joins.",
10
+ "parameter_schema": {
11
11
  "type": "object",
12
12
  "properties": {
13
13
  "primary_table_id": {
@@ -79,5 +79,8 @@ exports.ViewJoinedTables = {
79
79
  "joins"
80
80
  ]
81
81
  },
82
- tags: ['view', 'join'],
82
+ "tags": [
83
+ "view",
84
+ "join"
85
+ ]
83
86
  };
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ViewTableProjection = void 0;
4
4
  exports.ViewTableProjection = {
5
- name: 'ViewTableProjection',
6
- slug: 'view_table_projection',
7
- category: 'view',
8
- display_name: 'Table Projection',
9
- description: 'Simple column selection from a single source table. Projects all or specific fields.',
10
- parameter_schema: {
5
+ "name": "ViewTableProjection",
6
+ "slug": "view_table_projection",
7
+ "category": "view",
8
+ "display_name": "Table Projection",
9
+ "description": "Simple column selection from a single source table. Projects all or specific fields.",
10
+ "parameter_schema": {
11
11
  "type": "object",
12
12
  "properties": {
13
13
  "source_table_id": {
@@ -35,5 +35,8 @@ exports.ViewTableProjection = {
35
35
  "source_table_id"
36
36
  ]
37
37
  },
38
- tags: ['view', 'projection'],
38
+ "tags": [
39
+ "view",
40
+ "projection"
41
+ ]
39
42
  };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldImmutable: NodeTypeDefinition;
@@ -1,21 +0,0 @@
1
- export const FieldImmutable = {
2
- name: 'FieldImmutable',
3
- slug: 'field_immutable',
4
- category: 'field',
5
- display_name: 'Immutable',
6
- description: 'Prevents a field from being modified after initial insert.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {
10
- "field_id": {
11
- "type": "string",
12
- "format": "uuid",
13
- "description": "UUID of the field that cannot be updated"
14
- }
15
- },
16
- "required": [
17
- "field_id"
18
- ]
19
- },
20
- tags: ['constraint', 'behavior'],
21
- };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldInflection: NodeTypeDefinition;
@@ -1,29 +0,0 @@
1
- export const FieldInflection = {
2
- name: 'FieldInflection',
3
- slug: 'field_inflection',
4
- category: 'field',
5
- display_name: 'Inflection',
6
- description: 'Transforms field values using inflection operations (snake_case, camelCase, etc).',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {
10
- "field_id": {
11
- "type": "string",
12
- "format": "uuid",
13
- "description": "Target field"
14
- },
15
- "ops": {
16
- "type": "array",
17
- "items": {
18
- "type": "string"
19
- },
20
- "description": "Inflection operations to apply"
21
- }
22
- },
23
- "required": [
24
- "field_id",
25
- "ops"
26
- ]
27
- },
28
- tags: ['transform', 'behavior'],
29
- };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldOwned: NodeTypeDefinition;
@@ -1,36 +0,0 @@
1
- export const FieldOwned = {
2
- name: 'FieldOwned',
3
- slug: 'field_owned',
4
- category: 'field',
5
- display_name: 'Owned',
6
- description: 'Restricts which user can modify specific columns in shared objects. For tables where multiple users have access but each can only modify certain columns.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {
10
- "table_id": {
11
- "type": "string",
12
- "format": "uuid",
13
- "description": "Target table"
14
- },
15
- "role_key_field_id": {
16
- "type": "string",
17
- "format": "uuid",
18
- "description": "Field identifying the owner (e.g., sender_id)"
19
- },
20
- "protected_field_ids": {
21
- "type": "array",
22
- "items": {
23
- "type": "string",
24
- "format": "uuid"
25
- },
26
- "description": "Fields only this owner can modify"
27
- }
28
- },
29
- "required": [
30
- "table_id",
31
- "role_key_field_id",
32
- "protected_field_ids"
33
- ]
34
- },
35
- tags: ['ownership', 'constraint', 'behavior'],
36
- };
@@ -1,26 +0,0 @@
1
- export const FieldSlug = {
2
- name: 'FieldSlug',
3
- slug: 'field_slug',
4
- category: 'field',
5
- display_name: 'Slug',
6
- description: 'Auto-generates URL-friendly slugs from field values on insert/update.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {
10
- "field_id": {
11
- "type": "string",
12
- "format": "uuid",
13
- "description": "Target field to slugify"
14
- },
15
- "source_field_id": {
16
- "type": "string",
17
- "format": "uuid",
18
- "description": "Optional source field (defaults to target)"
19
- }
20
- },
21
- "required": [
22
- "field_id"
23
- ]
24
- },
25
- tags: ['transform', 'behavior'],
26
- };
@@ -1,4 +0,0 @@
1
- export { FieldImmutable } from './field-immutable';
2
- export { FieldSlug } from './field-slug';
3
- export { FieldInflection } from './field-inflection';
4
- export { FieldOwned } from './field-owned';
@@ -1,4 +0,0 @@
1
- export { FieldImmutable } from './field-immutable';
2
- export { FieldSlug } from './field-slug';
3
- export { FieldInflection } from './field-inflection';
4
- export { FieldOwned } from './field-owned';
@@ -1,3 +0,0 @@
1
- export { TableUserProfiles } from './table-user-profiles';
2
- export { TableOrganizationSettings } from './table-organization-settings';
3
- export { TableUserSettings } from './table-user-settings';
@@ -1,3 +0,0 @@
1
- export { TableUserProfiles } from './table-user-profiles';
2
- export { TableOrganizationSettings } from './table-organization-settings';
3
- export { TableUserSettings } from './table-user-settings';
@@ -1,12 +0,0 @@
1
- export const TableOrganizationSettings = {
2
- name: 'TableOrganizationSettings',
3
- slug: 'table_organization_settings',
4
- category: 'data',
5
- display_name: 'Organization Settings',
6
- description: 'Creates an organization settings table with standard business fields (legal_name, address fields). Uses AuthzEntityMembership for access control.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {}
10
- },
11
- tags: ['template', 'settings', 'membership', 'schema'],
12
- };
@@ -1,12 +0,0 @@
1
- export const TableUserProfiles = {
2
- name: 'TableUserProfiles',
3
- slug: 'table_user_profiles',
4
- category: 'data',
5
- display_name: 'User Profiles',
6
- description: 'Creates a user profiles table with standard profile fields (profile_picture, bio, first_name, last_name, tags, desired). Uses AuthzDirectOwner for edit access and AuthzAllowAll for select.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {}
10
- },
11
- tags: ['template', 'settings', 'ownership', 'schema'],
12
- };
@@ -1,12 +0,0 @@
1
- export const TableUserSettings = {
2
- name: 'TableUserSettings',
3
- slug: 'table_user_settings',
4
- category: 'data',
5
- display_name: 'User Settings',
6
- description: 'Creates a user settings table for user-specific configuration. Uses AuthzDirectOwner for access control.',
7
- parameter_schema: {
8
- "type": "object",
9
- "properties": {}
10
- },
11
- tags: ['template', 'settings', 'ownership', 'schema'],
12
- };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldImmutable: NodeTypeDefinition;
@@ -1,24 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FieldImmutable = void 0;
4
- exports.FieldImmutable = {
5
- name: 'FieldImmutable',
6
- slug: 'field_immutable',
7
- category: 'field',
8
- display_name: 'Immutable',
9
- description: 'Prevents a field from being modified after initial insert.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {
13
- "field_id": {
14
- "type": "string",
15
- "format": "uuid",
16
- "description": "UUID of the field that cannot be updated"
17
- }
18
- },
19
- "required": [
20
- "field_id"
21
- ]
22
- },
23
- tags: ['constraint', 'behavior'],
24
- };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldInflection: NodeTypeDefinition;
@@ -1,32 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FieldInflection = void 0;
4
- exports.FieldInflection = {
5
- name: 'FieldInflection',
6
- slug: 'field_inflection',
7
- category: 'field',
8
- display_name: 'Inflection',
9
- description: 'Transforms field values using inflection operations (snake_case, camelCase, etc).',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {
13
- "field_id": {
14
- "type": "string",
15
- "format": "uuid",
16
- "description": "Target field"
17
- },
18
- "ops": {
19
- "type": "array",
20
- "items": {
21
- "type": "string"
22
- },
23
- "description": "Inflection operations to apply"
24
- }
25
- },
26
- "required": [
27
- "field_id",
28
- "ops"
29
- ]
30
- },
31
- tags: ['transform', 'behavior'],
32
- };
@@ -1,2 +0,0 @@
1
- import type { NodeTypeDefinition } from '../types';
2
- export declare const FieldOwned: NodeTypeDefinition;
@@ -1,39 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FieldOwned = void 0;
4
- exports.FieldOwned = {
5
- name: 'FieldOwned',
6
- slug: 'field_owned',
7
- category: 'field',
8
- display_name: 'Owned',
9
- description: 'Restricts which user can modify specific columns in shared objects. For tables where multiple users have access but each can only modify certain columns.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {
13
- "table_id": {
14
- "type": "string",
15
- "format": "uuid",
16
- "description": "Target table"
17
- },
18
- "role_key_field_id": {
19
- "type": "string",
20
- "format": "uuid",
21
- "description": "Field identifying the owner (e.g., sender_id)"
22
- },
23
- "protected_field_ids": {
24
- "type": "array",
25
- "items": {
26
- "type": "string",
27
- "format": "uuid"
28
- },
29
- "description": "Fields only this owner can modify"
30
- }
31
- },
32
- "required": [
33
- "table_id",
34
- "role_key_field_id",
35
- "protected_field_ids"
36
- ]
37
- },
38
- tags: ['ownership', 'constraint', 'behavior'],
39
- };
@@ -1,29 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FieldSlug = void 0;
4
- exports.FieldSlug = {
5
- name: 'FieldSlug',
6
- slug: 'field_slug',
7
- category: 'field',
8
- display_name: 'Slug',
9
- description: 'Auto-generates URL-friendly slugs from field values on insert/update.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {
13
- "field_id": {
14
- "type": "string",
15
- "format": "uuid",
16
- "description": "Target field to slugify"
17
- },
18
- "source_field_id": {
19
- "type": "string",
20
- "format": "uuid",
21
- "description": "Optional source field (defaults to target)"
22
- }
23
- },
24
- "required": [
25
- "field_id"
26
- ]
27
- },
28
- tags: ['transform', 'behavior'],
29
- };
package/field/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export { FieldImmutable } from './field-immutable';
2
- export { FieldSlug } from './field-slug';
3
- export { FieldInflection } from './field-inflection';
4
- export { FieldOwned } from './field-owned';
package/field/index.js DELETED
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FieldOwned = exports.FieldInflection = exports.FieldSlug = exports.FieldImmutable = void 0;
4
- var field_immutable_1 = require("./field-immutable");
5
- Object.defineProperty(exports, "FieldImmutable", { enumerable: true, get: function () { return field_immutable_1.FieldImmutable; } });
6
- var field_slug_1 = require("./field-slug");
7
- Object.defineProperty(exports, "FieldSlug", { enumerable: true, get: function () { return field_slug_1.FieldSlug; } });
8
- var field_inflection_1 = require("./field-inflection");
9
- Object.defineProperty(exports, "FieldInflection", { enumerable: true, get: function () { return field_inflection_1.FieldInflection; } });
10
- var field_owned_1 = require("./field-owned");
11
- Object.defineProperty(exports, "FieldOwned", { enumerable: true, get: function () { return field_owned_1.FieldOwned; } });
package/table/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export { TableUserProfiles } from './table-user-profiles';
2
- export { TableOrganizationSettings } from './table-organization-settings';
3
- export { TableUserSettings } from './table-user-settings';
package/table/index.js DELETED
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TableUserSettings = exports.TableOrganizationSettings = exports.TableUserProfiles = void 0;
4
- var table_user_profiles_1 = require("./table-user-profiles");
5
- Object.defineProperty(exports, "TableUserProfiles", { enumerable: true, get: function () { return table_user_profiles_1.TableUserProfiles; } });
6
- var table_organization_settings_1 = require("./table-organization-settings");
7
- Object.defineProperty(exports, "TableOrganizationSettings", { enumerable: true, get: function () { return table_organization_settings_1.TableOrganizationSettings; } });
8
- var table_user_settings_1 = require("./table-user-settings");
9
- Object.defineProperty(exports, "TableUserSettings", { enumerable: true, get: function () { return table_user_settings_1.TableUserSettings; } });
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TableOrganizationSettings = void 0;
4
- exports.TableOrganizationSettings = {
5
- name: 'TableOrganizationSettings',
6
- slug: 'table_organization_settings',
7
- category: 'data',
8
- display_name: 'Organization Settings',
9
- description: 'Creates an organization settings table with standard business fields (legal_name, address fields). Uses AuthzEntityMembership for access control.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {}
13
- },
14
- tags: ['template', 'settings', 'membership', 'schema'],
15
- };
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TableUserProfiles = void 0;
4
- exports.TableUserProfiles = {
5
- name: 'TableUserProfiles',
6
- slug: 'table_user_profiles',
7
- category: 'data',
8
- display_name: 'User Profiles',
9
- description: 'Creates a user profiles table with standard profile fields (profile_picture, bio, first_name, last_name, tags, desired). Uses AuthzDirectOwner for edit access and AuthzAllowAll for select.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {}
13
- },
14
- tags: ['template', 'settings', 'ownership', 'schema'],
15
- };
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TableUserSettings = void 0;
4
- exports.TableUserSettings = {
5
- name: 'TableUserSettings',
6
- slug: 'table_user_settings',
7
- category: 'data',
8
- display_name: 'User Settings',
9
- description: 'Creates a user settings table for user-specific configuration. Uses AuthzDirectOwner for access control.',
10
- parameter_schema: {
11
- "type": "object",
12
- "properties": {}
13
- },
14
- tags: ['template', 'settings', 'ownership', 'schema'],
15
- };
File without changes
File without changes
File without changes
File without changes