@nbt-dev/nbt 0.0.1 → 0.0.3

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 (149) hide show
  1. package/LICENSE +177 -21
  2. package/README.md +16 -13
  3. package/TRADEMARKS.md +49 -0
  4. package/dist/nbt.js +398 -19
  5. package/package.json +5 -4
  6. package/stdlib/auth/README.md +83 -0
  7. package/stdlib/auth/migrations/20260424144652_initial/migration.nbt +48 -0
  8. package/stdlib/auth/migrations/20260424144652_initial/schema_snapshot.nbt +58 -0
  9. package/stdlib/auth/migrations/20260521191014_update_user/migration.nbt +3 -0
  10. package/stdlib/auth/migrations/20260521191014_update_user/schema_snapshot.nbt +59 -0
  11. package/stdlib/auth/schema.nbt +142 -0
  12. package/stdlib/calendar/adapters/gohighlevel/tests/fixtures/v2_calendar_pilot.json +12 -0
  13. package/stdlib/calendar/adapters/gohighlevel/tests/fixtures/webhooks/appointment_changed.json +70 -0
  14. package/stdlib/calendar/adapters/gohighlevel/tests/fixtures/webhooks/appointment_created.json +72 -0
  15. package/stdlib/calendar/migrations/20260501210107_initial/migration.nbt +60 -0
  16. package/stdlib/calendar/migrations/20260501210107_initial/schema_snapshot.nbt +66 -0
  17. package/stdlib/calendar/migrations/20260513151050_schema_update/migration.nbt +17 -0
  18. package/stdlib/calendar/migrations/20260513151050_schema_update/schema_snapshot.nbt +83 -0
  19. package/stdlib/calendar/schema.nbt +85 -0
  20. package/stdlib/chat/migrations/20260429222411_initial/migration.nbt +59 -0
  21. package/stdlib/chat/migrations/20260429222411_initial/schema_snapshot.nbt +71 -0
  22. package/stdlib/chat/migrations/20260430185225_add_messagereaction/migration.nbt +9 -0
  23. package/stdlib/chat/migrations/20260430185225_add_messagereaction/schema_snapshot.nbt +78 -0
  24. package/stdlib/chat/migrations/20260514202654_update_directmessageroom/migration.nbt +4 -0
  25. package/stdlib/chat/migrations/20260514202654_update_directmessageroom/schema_snapshot.nbt +80 -0
  26. package/stdlib/chat/migrations/20260518191152_update_message/migration.nbt +3 -0
  27. package/stdlib/chat/migrations/20260518191152_update_message/schema_snapshot.nbt +81 -0
  28. package/stdlib/chat/schema.nbt +130 -0
  29. package/stdlib/crm/adapters/gohighlevel/README.md +85 -0
  30. package/stdlib/crm/adapters/gohighlevel/tests/README.md +159 -0
  31. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_138fields.json +222 -0
  32. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_140fields.json +219 -0
  33. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_alt.json +212 -0
  34. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_changed.json +102 -0
  35. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_created.json +95 -0
  36. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_full.json +213 -0
  37. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_sparse.json +161 -0
  38. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_update_a.json +197 -0
  39. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_update_b.json +197 -0
  40. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/opportunity_changed.json +85 -0
  41. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/opportunity_created.json +85 -0
  42. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_pilot.json +43 -0
  43. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_with_price_closed.json +7 -0
  44. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_with_price_open.json +7 -0
  45. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_appointment_delete.json +1 -0
  46. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_calendar_update.json +1 -0
  47. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_contact_create.json +1 -0
  48. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_opp_status_update.json +1 -0
  49. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_opportunity_pilot.json +16 -0
  50. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_pipelines_pilot.json +137 -0
  51. package/stdlib/crm/migrations/20260501210107_initial/migration.nbt +63 -0
  52. package/stdlib/crm/migrations/20260501210107_initial/schema_snapshot.nbt +73 -0
  53. package/stdlib/crm/migrations/20260513151050_schema_update/migration.nbt +13 -0
  54. package/stdlib/crm/migrations/20260513151050_schema_update/schema_snapshot.nbt +86 -0
  55. package/stdlib/crm/schema.nbt +146 -0
  56. package/stdlib/design/migrations/20260501210107_initial/migration.nbt +19 -0
  57. package/stdlib/design/migrations/20260501210107_initial/schema_snapshot.nbt +21 -0
  58. package/stdlib/design/migrations/20260610130000_design_system/migration.nbt +50 -0
  59. package/stdlib/design/migrations/20260610130000_design_system/schema_snapshot.nbt +80 -0
  60. package/stdlib/design/schema.nbt +140 -0
  61. package/stdlib/dns/migrations/20260501210107_initial/migration.nbt +32 -0
  62. package/stdlib/dns/migrations/20260501210107_initial/schema_snapshot.nbt +36 -0
  63. package/stdlib/dns/schema.nbt +68 -0
  64. package/stdlib/email/migrations/20260427235207_initial/migration.nbt +75 -0
  65. package/stdlib/email/migrations/20260427235207_initial/schema_snapshot.nbt +87 -0
  66. package/stdlib/email/schema.nbt +145 -0
  67. package/stdlib/ingest/README.md +29 -0
  68. package/stdlib/ingest/migrations/20260424144652_initial/migration.nbt +18 -0
  69. package/stdlib/ingest/migrations/20260424144652_initial/schema_snapshot.nbt +20 -0
  70. package/stdlib/ingest/migrations/20260429203747_schema_update/migration.nbt +3 -0
  71. package/stdlib/ingest/migrations/20260429203747_schema_update/schema_snapshot.nbt +21 -0
  72. package/stdlib/ingest/schema.nbt +37 -0
  73. package/stdlib/notifications/README.md +118 -0
  74. package/stdlib/notifications/migrations/20260430204408_initial/migration.nbt +42 -0
  75. package/stdlib/notifications/migrations/20260430204408_initial/schema_snapshot.nbt +46 -0
  76. package/stdlib/notifications/schema.nbt +67 -0
  77. package/stdlib/phone/migrations/20260605205722_initial/migration.nbt +50 -0
  78. package/stdlib/phone/migrations/20260605205722_initial/schema_snapshot.nbt +56 -0
  79. package/stdlib/phone/schema.nbt +95 -0
  80. package/stdlib/registry/migrations/20260602181932_initial/migration.nbt +8 -0
  81. package/stdlib/registry/migrations/20260602181932_initial/schema_snapshot.nbt +8 -0
  82. package/stdlib/registry/schema.nbt +20 -0
  83. package/stdlib/workflows/schema.nbt +43 -0
  84. package/vendor/linux-x64/cartridges/auth/migrations/20260424144652_initial/migration.nbt +48 -0
  85. package/vendor/linux-x64/cartridges/auth/migrations/20260424144652_initial/schema_snapshot.nbt +58 -0
  86. package/vendor/linux-x64/cartridges/auth/migrations/20260521191014_update_user/migration.nbt +3 -0
  87. package/vendor/linux-x64/cartridges/auth/migrations/20260521191014_update_user/schema_snapshot.nbt +59 -0
  88. package/vendor/linux-x64/cartridges/auth/schema.nbt +142 -0
  89. package/vendor/linux-x64/cartridges/calendar/migrations/20260501210107_initial/migration.nbt +60 -0
  90. package/vendor/linux-x64/cartridges/calendar/migrations/20260501210107_initial/schema_snapshot.nbt +66 -0
  91. package/vendor/linux-x64/cartridges/calendar/migrations/20260513151050_schema_update/migration.nbt +17 -0
  92. package/vendor/linux-x64/cartridges/calendar/migrations/20260513151050_schema_update/schema_snapshot.nbt +83 -0
  93. package/vendor/linux-x64/cartridges/calendar/schema.nbt +85 -0
  94. package/vendor/linux-x64/cartridges/chat/migrations/20260429222411_initial/migration.nbt +59 -0
  95. package/vendor/linux-x64/cartridges/chat/migrations/20260429222411_initial/schema_snapshot.nbt +71 -0
  96. package/vendor/linux-x64/cartridges/chat/migrations/20260430185225_add_messagereaction/migration.nbt +9 -0
  97. package/vendor/linux-x64/cartridges/chat/migrations/20260430185225_add_messagereaction/schema_snapshot.nbt +78 -0
  98. package/vendor/linux-x64/cartridges/chat/migrations/20260514202654_update_directmessageroom/migration.nbt +4 -0
  99. package/vendor/linux-x64/cartridges/chat/migrations/20260514202654_update_directmessageroom/schema_snapshot.nbt +80 -0
  100. package/vendor/linux-x64/cartridges/chat/migrations/20260518191152_update_message/migration.nbt +3 -0
  101. package/vendor/linux-x64/cartridges/chat/migrations/20260518191152_update_message/schema_snapshot.nbt +81 -0
  102. package/vendor/linux-x64/cartridges/chat/schema.nbt +130 -0
  103. package/vendor/linux-x64/cartridges/crm/migrations/20260501210107_initial/migration.nbt +63 -0
  104. package/vendor/linux-x64/cartridges/crm/migrations/20260501210107_initial/schema_snapshot.nbt +73 -0
  105. package/vendor/linux-x64/cartridges/crm/migrations/20260513151050_schema_update/migration.nbt +13 -0
  106. package/vendor/linux-x64/cartridges/crm/migrations/20260513151050_schema_update/schema_snapshot.nbt +86 -0
  107. package/vendor/linux-x64/cartridges/crm/schema.nbt +146 -0
  108. package/vendor/linux-x64/cartridges/design/migrations/20260501210107_initial/migration.nbt +19 -0
  109. package/vendor/linux-x64/cartridges/design/migrations/20260501210107_initial/schema_snapshot.nbt +21 -0
  110. package/vendor/linux-x64/cartridges/design/migrations/20260610130000_design_system/migration.nbt +50 -0
  111. package/vendor/linux-x64/cartridges/design/migrations/20260610130000_design_system/schema_snapshot.nbt +80 -0
  112. package/vendor/linux-x64/cartridges/design/schema.nbt +140 -0
  113. package/vendor/linux-x64/cartridges/dns/migrations/20260501210107_initial/migration.nbt +32 -0
  114. package/vendor/linux-x64/cartridges/dns/migrations/20260501210107_initial/schema_snapshot.nbt +36 -0
  115. package/vendor/linux-x64/cartridges/dns/schema.nbt +68 -0
  116. package/vendor/linux-x64/cartridges/email/migrations/20260427235207_initial/migration.nbt +75 -0
  117. package/vendor/linux-x64/cartridges/email/migrations/20260427235207_initial/schema_snapshot.nbt +87 -0
  118. package/vendor/linux-x64/cartridges/email/schema.nbt +145 -0
  119. package/vendor/linux-x64/cartridges/ingest/migrations/20260424144652_initial/migration.nbt +18 -0
  120. package/vendor/linux-x64/cartridges/ingest/migrations/20260424144652_initial/schema_snapshot.nbt +20 -0
  121. package/vendor/linux-x64/cartridges/ingest/migrations/20260429203747_schema_update/migration.nbt +3 -0
  122. package/vendor/linux-x64/cartridges/ingest/migrations/20260429203747_schema_update/schema_snapshot.nbt +21 -0
  123. package/vendor/linux-x64/cartridges/ingest/schema.nbt +37 -0
  124. package/vendor/linux-x64/cartridges/notifications/migrations/20260430204408_initial/migration.nbt +42 -0
  125. package/vendor/linux-x64/cartridges/notifications/migrations/20260430204408_initial/schema_snapshot.nbt +46 -0
  126. package/vendor/linux-x64/cartridges/notifications/schema.nbt +67 -0
  127. package/vendor/linux-x64/cartridges/phone/migrations/20260605205722_initial/migration.nbt +50 -0
  128. package/vendor/linux-x64/cartridges/phone/migrations/20260605205722_initial/schema_snapshot.nbt +56 -0
  129. package/vendor/linux-x64/cartridges/phone/schema.nbt +95 -0
  130. package/vendor/linux-x64/cartridges/registry/migrations/20260602181932_initial/migration.nbt +8 -0
  131. package/vendor/linux-x64/cartridges/registry/migrations/20260602181932_initial/schema_snapshot.nbt +8 -0
  132. package/vendor/linux-x64/cartridges/registry/schema.nbt +20 -0
  133. package/vendor/linux-x64/cartridges/workflows/schema.nbt +43 -0
  134. package/vendor/linux-x64/console +0 -0
  135. package/vendor/linux-x64/nbt +0 -0
  136. package/contracts/audit/.dist/contract.json +0 -56
  137. package/contracts/auth/.dist/contract.json +0 -252
  138. package/contracts/calendar/.dist/contract.json +0 -141
  139. package/contracts/chat/.dist/contract.json +0 -229
  140. package/contracts/crm/.dist/contract.json +0 -239
  141. package/contracts/design/.dist/contract.json +0 -85
  142. package/contracts/dns/.dist/contract.json +0 -123
  143. package/contracts/email/.dist/contract.json +0 -267
  144. package/contracts/embed/.dist/contract.json +0 -137
  145. package/contracts/ingest/.dist/contract.json +0 -86
  146. package/contracts/notifications/.dist/contract.json +0 -133
  147. package/contracts/phone/.dist/contract.json +0 -168
  148. package/contracts/registry/.dist/contract.json +0 -49
  149. package/contracts/workflows/.dist/contract.json +0 -106
@@ -1,252 +0,0 @@
1
- {
2
- "cartridge": "auth",
3
- "version": "0.1",
4
- "owns": {
5
- "User": {
6
- "fields": [
7
- { "name": "id", "type": "ULID", "kind": "scalar" },
8
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
9
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
10
- { "name": "name", "type": "string", "kind": "scalar" },
11
- { "name": "username", "type": "string", "optional": true, "kind": "scalar" },
12
- { "name": "email", "type": "string", "optional": true, "kind": "scalar" },
13
- { "name": "emailVerified", "type": "bool", "kind": "scalar" },
14
- { "name": "externalId", "type": "string", "optional": true, "kind": "scalar" },
15
- { "name": "capsVersion", "type": "u32", "kind": "scalar" }
16
- ],
17
- "indices": [["email"], ["externalId"], ["email"]],
18
- "searchFields": [],
19
- "methods": [
20
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "User" } ] },
21
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<User>" } ] },
22
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
23
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "name", "type": "string" }, { "name": "emailVerified", "type": "bool" }, { "name": "capsVersion", "type": "u32" }, { "name": "username", "type": "string", "optional": true }, { "name": "email", "type": "string", "optional": true }, { "name": "externalId", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "User" } ] },
24
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "name", "type": "string", "optional": true }, { "name": "username", "type": "string", "optional": true }, { "name": "email", "type": "string", "optional": true }, { "name": "emailVerified", "type": "bool", "optional": true }, { "name": "externalId", "type": "string", "optional": true }, { "name": "capsVersion", "type": "u32", "optional": true }], "outputs": [ { "name": "out", "type": "User" } ] },
25
- { "name": "find_by_email", "inputs": [ { "name": "email", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<User>" } ] },
26
- { "name": "find_by_externalId", "inputs": [ { "name": "externalId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<User>" } ] },
27
- { "name": "find_by_email", "inputs": [ { "name": "email", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<User>" } ] }
28
- ],
29
- "routes": [
30
- { "op": "list", "method": "GET", "path": "/api/auth/user" },
31
- { "op": "create", "method": "POST", "path": "/api/auth/user" },
32
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/user" },
33
- { "op": "count", "method": "GET", "path": "/api/auth/user/count" },
34
- { "op": "batch_get", "method": "POST", "path": "/api/auth/user/_batch" },
35
- { "op": "get", "method": "GET", "path": "/api/auth/user/:id" },
36
- { "op": "update", "method": "PUT", "path": "/api/auth/user/:id" },
37
- { "op": "delete", "method": "DELETE", "path": "/api/auth/user/:id" }
38
- ],
39
- "exported": true
40
- },
41
- "UserRole": {
42
- "fields": [
43
- { "name": "id", "type": "ULID", "kind": "scalar" },
44
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
45
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
46
- { "name": "userId", "type": "string", "kind": "scalar" },
47
- { "name": "cart", "type": "string", "kind": "scalar" },
48
- { "name": "role", "type": "string", "kind": "scalar" }
49
- ],
50
- "indices": [["userId"]],
51
- "searchFields": [],
52
- "methods": [
53
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "UserRole" } ] },
54
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<UserRole>" } ] },
55
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
56
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "userId", "type": "string" }, { "name": "cart", "type": "string" }, { "name": "role", "type": "string" }], "outputs": [ { "name": "out", "type": "UserRole" } ] },
57
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "userId", "type": "string", "optional": true }, { "name": "cart", "type": "string", "optional": true }, { "name": "role", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "UserRole" } ] },
58
- { "name": "find_by_userId", "inputs": [ { "name": "userId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<UserRole>" } ] }
59
- ],
60
- "routes": [
61
- { "op": "list", "method": "GET", "path": "/api/auth/userrole" },
62
- { "op": "create", "method": "POST", "path": "/api/auth/userrole" },
63
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/userrole" },
64
- { "op": "count", "method": "GET", "path": "/api/auth/userrole/count" },
65
- { "op": "batch_get", "method": "POST", "path": "/api/auth/userrole/_batch" },
66
- { "op": "get", "method": "GET", "path": "/api/auth/userrole/:id" },
67
- { "op": "update", "method": "PUT", "path": "/api/auth/userrole/:id" },
68
- { "op": "delete", "method": "DELETE", "path": "/api/auth/userrole/:id" }
69
- ],
70
- "exported": false
71
- },
72
- "Session": {
73
- "fields": [
74
- { "name": "id", "type": "ULID", "kind": "scalar" },
75
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
76
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
77
- { "name": "userId", "type": "string", "kind": "scalar" },
78
- { "name": "token", "type": "string", "kind": "scalar" },
79
- { "name": "expiresAt", "type": "DateTime", "kind": "scalar" },
80
- { "name": "ipAddress", "type": "string", "optional": true, "kind": "scalar" },
81
- { "name": "userAgent", "type": "string", "optional": true, "kind": "scalar" }
82
- ],
83
- "indices": [["token"], ["userId"]],
84
- "searchFields": [],
85
- "methods": [
86
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Session" } ] },
87
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Session>" } ] },
88
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
89
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "userId", "type": "string" }, { "name": "token", "type": "string" }, { "name": "expiresAt", "type": "DateTime" }, { "name": "ipAddress", "type": "string", "optional": true }, { "name": "userAgent", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Session" } ] },
90
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "userId", "type": "string", "optional": true }, { "name": "token", "type": "string", "optional": true }, { "name": "expiresAt", "type": "DateTime", "optional": true }, { "name": "ipAddress", "type": "string", "optional": true }, { "name": "userAgent", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Session" } ] },
91
- { "name": "find_by_token", "inputs": [ { "name": "token", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Session>" } ] },
92
- { "name": "find_by_userId", "inputs": [ { "name": "userId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Session>" } ] }
93
- ],
94
- "routes": [
95
- { "op": "list", "method": "GET", "path": "/api/auth/session" },
96
- { "op": "create", "method": "POST", "path": "/api/auth/session" },
97
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/session" },
98
- { "op": "count", "method": "GET", "path": "/api/auth/session/count" },
99
- { "op": "batch_get", "method": "POST", "path": "/api/auth/session/_batch" },
100
- { "op": "get", "method": "GET", "path": "/api/auth/session/:id" },
101
- { "op": "update", "method": "PUT", "path": "/api/auth/session/:id" },
102
- { "op": "delete", "method": "DELETE", "path": "/api/auth/session/:id" }
103
- ],
104
- "exported": false
105
- },
106
- "Account": {
107
- "fields": [
108
- { "name": "id", "type": "ULID", "kind": "scalar" },
109
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
110
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
111
- { "name": "userId", "type": "string", "kind": "scalar" },
112
- { "name": "providerId", "type": "string", "kind": "scalar" },
113
- { "name": "password", "type": "string", "kind": "scalar" },
114
- { "name": "accessToken", "type": "string", "kind": "scalar" },
115
- { "name": "refreshToken", "type": "string", "kind": "scalar" },
116
- { "name": "idToken", "type": "string", "kind": "scalar" },
117
- { "name": "accessTokenExpiresAt", "type": "DateTime", "kind": "scalar" },
118
- { "name": "refreshTokenExpiresAt", "type": "DateTime", "kind": "scalar" },
119
- { "name": "scope", "type": "string", "kind": "scalar" }
120
- ],
121
- "indices": [["userId"]],
122
- "searchFields": [],
123
- "methods": [
124
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Account" } ] },
125
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Account>" } ] },
126
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
127
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "userId", "type": "string" }, { "name": "providerId", "type": "string" }, { "name": "password", "type": "string" }, { "name": "accessToken", "type": "string" }, { "name": "refreshToken", "type": "string" }, { "name": "idToken", "type": "string" }, { "name": "accessTokenExpiresAt", "type": "DateTime" }, { "name": "refreshTokenExpiresAt", "type": "DateTime" }, { "name": "scope", "type": "string" }], "outputs": [ { "name": "out", "type": "Account" } ] },
128
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "userId", "type": "string", "optional": true }, { "name": "providerId", "type": "string", "optional": true }, { "name": "password", "type": "string", "optional": true }, { "name": "accessToken", "type": "string", "optional": true }, { "name": "refreshToken", "type": "string", "optional": true }, { "name": "idToken", "type": "string", "optional": true }, { "name": "accessTokenExpiresAt", "type": "DateTime", "optional": true }, { "name": "refreshTokenExpiresAt", "type": "DateTime", "optional": true }, { "name": "scope", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Account" } ] },
129
- { "name": "find_by_userId", "inputs": [ { "name": "userId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Account>" } ] }
130
- ],
131
- "routes": [
132
- { "op": "list", "method": "GET", "path": "/api/auth/account" },
133
- { "op": "create", "method": "POST", "path": "/api/auth/account" },
134
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/account" },
135
- { "op": "count", "method": "GET", "path": "/api/auth/account/count" },
136
- { "op": "batch_get", "method": "POST", "path": "/api/auth/account/_batch" },
137
- { "op": "get", "method": "GET", "path": "/api/auth/account/:id" },
138
- { "op": "update", "method": "PUT", "path": "/api/auth/account/:id" },
139
- { "op": "delete", "method": "DELETE", "path": "/api/auth/account/:id" }
140
- ],
141
- "exported": false
142
- },
143
- "Verification": {
144
- "fields": [
145
- { "name": "id", "type": "ULID", "kind": "scalar" },
146
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
147
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
148
- { "name": "identifier", "type": "string", "kind": "scalar" },
149
- { "name": "value", "type": "string", "kind": "scalar" },
150
- { "name": "expiresAt", "type": "DateTime", "kind": "scalar" }
151
- ],
152
- "indices": [["identifier"]],
153
- "searchFields": [],
154
- "methods": [
155
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Verification" } ] },
156
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Verification>" } ] },
157
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
158
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "identifier", "type": "string" }, { "name": "value", "type": "string" }, { "name": "expiresAt", "type": "DateTime" }], "outputs": [ { "name": "out", "type": "Verification" } ] },
159
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "identifier", "type": "string", "optional": true }, { "name": "value", "type": "string", "optional": true }, { "name": "expiresAt", "type": "DateTime", "optional": true }], "outputs": [ { "name": "out", "type": "Verification" } ] },
160
- { "name": "find_by_identifier", "inputs": [ { "name": "identifier", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Verification>" } ] }
161
- ],
162
- "routes": [
163
- { "op": "list", "method": "GET", "path": "/api/auth/verification" },
164
- { "op": "create", "method": "POST", "path": "/api/auth/verification" },
165
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/verification" },
166
- { "op": "count", "method": "GET", "path": "/api/auth/verification/count" },
167
- { "op": "batch_get", "method": "POST", "path": "/api/auth/verification/_batch" },
168
- { "op": "get", "method": "GET", "path": "/api/auth/verification/:id" },
169
- { "op": "update", "method": "PUT", "path": "/api/auth/verification/:id" },
170
- { "op": "delete", "method": "DELETE", "path": "/api/auth/verification/:id" }
171
- ],
172
- "exported": false
173
- },
174
- "ApiKey": {
175
- "fields": [
176
- { "name": "id", "type": "ULID", "kind": "scalar" },
177
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
178
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
179
- { "name": "name", "type": "string", "kind": "scalar" },
180
- { "name": "projectId", "type": "string", "kind": "scalar" },
181
- { "name": "start", "type": "string", "kind": "scalar" },
182
- { "name": "prefix", "type": "string", "kind": "scalar" },
183
- { "name": "key", "type": "string", "kind": "scalar" },
184
- { "name": "permissions", "type": "string", "kind": "scalar" },
185
- { "name": "roles", "type": "string", "kind": "scalar" }
186
- ],
187
- "indices": [],
188
- "searchFields": [],
189
- "methods": [
190
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "ApiKey" } ] },
191
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<ApiKey>" } ] },
192
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
193
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "name", "type": "string" }, { "name": "projectId", "type": "string" }, { "name": "start", "type": "string" }, { "name": "prefix", "type": "string" }, { "name": "key", "type": "string" }, { "name": "permissions", "type": "string" }, { "name": "roles", "type": "string" }], "outputs": [ { "name": "out", "type": "ApiKey" } ] },
194
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "name", "type": "string", "optional": true }, { "name": "projectId", "type": "string", "optional": true }, { "name": "start", "type": "string", "optional": true }, { "name": "prefix", "type": "string", "optional": true }, { "name": "key", "type": "string", "optional": true }, { "name": "permissions", "type": "string", "optional": true }, { "name": "roles", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "ApiKey" } ] }
195
- ],
196
- "routes": [
197
- { "op": "list", "method": "GET", "path": "/api/auth/apikey" },
198
- { "op": "create", "method": "POST", "path": "/api/auth/apikey" },
199
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/apikey" },
200
- { "op": "count", "method": "GET", "path": "/api/auth/apikey/count" },
201
- { "op": "batch_get", "method": "POST", "path": "/api/auth/apikey/_batch" },
202
- { "op": "get", "method": "GET", "path": "/api/auth/apikey/:id" },
203
- { "op": "update", "method": "PUT", "path": "/api/auth/apikey/:id" },
204
- { "op": "delete", "method": "DELETE", "path": "/api/auth/apikey/:id" }
205
- ],
206
- "exported": false
207
- },
208
- "SshKey": {
209
- "fields": [
210
- { "name": "id", "type": "ULID", "kind": "scalar" },
211
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
212
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
213
- { "name": "userId", "type": "string", "kind": "scalar" },
214
- { "name": "label", "type": "string", "kind": "scalar" },
215
- { "name": "blob", "type": "string", "kind": "scalar" }
216
- ],
217
- "indices": [["userId"], ["blob"]],
218
- "searchFields": [],
219
- "methods": [
220
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "SshKey" } ] },
221
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<SshKey>" } ] },
222
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
223
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "userId", "type": "string" }, { "name": "label", "type": "string" }, { "name": "blob", "type": "string" }], "outputs": [ { "name": "out", "type": "SshKey" } ] },
224
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "userId", "type": "string", "optional": true }, { "name": "label", "type": "string", "optional": true }, { "name": "blob", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "SshKey" } ] },
225
- { "name": "find_by_userId", "inputs": [ { "name": "userId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<SshKey>" } ] },
226
- { "name": "find_by_blob", "inputs": [ { "name": "blob", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<SshKey>" } ] }
227
- ],
228
- "routes": [
229
- { "op": "list", "method": "GET", "path": "/api/auth/sshkey" },
230
- { "op": "create", "method": "POST", "path": "/api/auth/sshkey" },
231
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/auth/sshkey" },
232
- { "op": "count", "method": "GET", "path": "/api/auth/sshkey/count" },
233
- { "op": "batch_get", "method": "POST", "path": "/api/auth/sshkey/_batch" },
234
- { "op": "get", "method": "GET", "path": "/api/auth/sshkey/:id" },
235
- { "op": "update", "method": "PUT", "path": "/api/auth/sshkey/:id" },
236
- { "op": "delete", "method": "DELETE", "path": "/api/auth/sshkey/:id" }
237
- ],
238
- "exported": false
239
- }
240
- },
241
- "structs": [],
242
- "enums": [],
243
- "imports": {
244
- },
245
- "actions": [],
246
- "middleware": [],
247
- "workflows": [],
248
- "schedules": [],
249
- "tasks": [],
250
- "tools": [],
251
- "widgets": []
252
- }
@@ -1,141 +0,0 @@
1
- {
2
- "cartridge": "calendar",
3
- "version": "0.1",
4
- "owns": {
5
- "Calendar": {
6
- "fields": [
7
- { "name": "id", "type": "ULID", "kind": "scalar" },
8
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
9
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
10
- { "name": "name", "type": "string", "kind": "scalar" },
11
- { "name": "description", "type": "string", "optional": true, "kind": "scalar" },
12
- { "name": "timezone", "type": "string", "optional": true, "kind": "scalar" },
13
- { "name": "slotDuration", "type": "u32", "optional": true, "kind": "scalar" },
14
- { "name": "slotInterval", "type": "u32", "optional": true, "kind": "scalar" },
15
- { "name": "isActive", "type": "bool", "kind": "scalar" },
16
- { "name": "source", "type": "string", "optional": true, "kind": "scalar" }
17
- ],
18
- "indices": [],
19
- "searchFields": [],
20
- "methods": [
21
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Calendar" } ] },
22
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Calendar>" } ] },
23
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
24
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "name", "type": "string" }, { "name": "isActive", "type": "bool" }, { "name": "description", "type": "string", "optional": true }, { "name": "timezone", "type": "string", "optional": true }, { "name": "slotDuration", "type": "u32", "optional": true }, { "name": "slotInterval", "type": "u32", "optional": true }, { "name": "source", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Calendar" } ] },
25
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "name", "type": "string", "optional": true }, { "name": "description", "type": "string", "optional": true }, { "name": "timezone", "type": "string", "optional": true }, { "name": "slotDuration", "type": "u32", "optional": true }, { "name": "slotInterval", "type": "u32", "optional": true }, { "name": "isActive", "type": "bool", "optional": true }, { "name": "source", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Calendar" } ] }
26
- ],
27
- "routes": [
28
- { "op": "list", "method": "GET", "path": "/api/calendar/calendar" },
29
- { "op": "create", "method": "POST", "path": "/api/calendar/calendar" },
30
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/calendar/calendar" },
31
- { "op": "count", "method": "GET", "path": "/api/calendar/calendar/count" },
32
- { "op": "batch_get", "method": "POST", "path": "/api/calendar/calendar/_batch" },
33
- { "op": "get", "method": "GET", "path": "/api/calendar/calendar/:id" },
34
- { "op": "update", "method": "PUT", "path": "/api/calendar/calendar/:id" },
35
- { "op": "delete", "method": "DELETE", "path": "/api/calendar/calendar/:id" }
36
- ],
37
- "exported": false
38
- },
39
- "Appointment": {
40
- "fields": [
41
- { "name": "id", "type": "ULID", "kind": "scalar" },
42
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
43
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
44
- { "name": "calendar", "type": "Calendar", "kind": "relation", "target": "Calendar", "target_cart": "calendar", "fk_field": "calendarId", "relation_kind": "many_to_one" },
45
- { "name": "contact", "type": "Contact", "kind": "relation", "target": "Contact", "target_cart": "crm", "fk_field": "contactId", "relation_kind": "many_to_one" },
46
- { "name": "title", "type": "string", "optional": true, "kind": "scalar" },
47
- { "name": "address", "type": "string", "optional": true, "kind": "scalar" },
48
- { "name": "notes", "type": "string", "optional": true, "kind": "scalar" },
49
- { "name": "startTime", "type": "DateTime", "kind": "scalar" },
50
- { "name": "endTime", "type": "DateTime", "kind": "scalar" },
51
- { "name": "timezone", "type": "string", "optional": true, "kind": "scalar" },
52
- { "name": "status", "type": "string", "kind": "scalar" },
53
- { "name": "source", "type": "string", "optional": true, "kind": "scalar" },
54
- { "name": "assignedUser", "type": "User", "optional": true, "kind": "relation", "target": "User", "target_cart": "auth", "fk_field": "assignedUserId", "relation_kind": "many_to_one" },
55
- { "name": "isRescheduled", "type": "bool", "kind": "scalar" },
56
- { "name": "originalStartTime", "type": "DateTime", "optional": true, "kind": "scalar" },
57
- { "name": "originalEndTime", "type": "DateTime", "optional": true, "kind": "scalar" },
58
- { "name": "state", "type": "string", "optional": true, "kind": "scalar" },
59
- { "name": "outcomeClass", "type": "string", "optional": true, "kind": "scalar" },
60
- { "name": "embedText", "type": "string", "optional": true, "kind": "scalar" }
61
- ],
62
- "indices": [["contactId"], ["calendarId"], ["state"], ["outcomeClass"]],
63
- "searchFields": [],
64
- "methods": [
65
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Appointment" } ] },
66
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Appointment>" } ] },
67
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
68
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "calendarId", "type": "string" }, { "name": "contactId", "type": "string" }, { "name": "startTime", "type": "DateTime" }, { "name": "endTime", "type": "DateTime" }, { "name": "status", "type": "string" }, { "name": "isRescheduled", "type": "bool" }, { "name": "title", "type": "string", "optional": true }, { "name": "address", "type": "string", "optional": true }, { "name": "notes", "type": "string", "optional": true }, { "name": "timezone", "type": "string", "optional": true }, { "name": "source", "type": "string", "optional": true }, { "name": "assignedUserId", "type": "string", "optional": true }, { "name": "originalStartTime", "type": "DateTime", "optional": true }, { "name": "originalEndTime", "type": "DateTime", "optional": true }, { "name": "state", "type": "string", "optional": true }, { "name": "outcomeClass", "type": "string", "optional": true }, { "name": "embedText", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Appointment" } ] },
69
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "calendarId", "type": "string", "optional": true }, { "name": "contactId", "type": "string", "optional": true }, { "name": "title", "type": "string", "optional": true }, { "name": "address", "type": "string", "optional": true }, { "name": "notes", "type": "string", "optional": true }, { "name": "startTime", "type": "DateTime", "optional": true }, { "name": "endTime", "type": "DateTime", "optional": true }, { "name": "timezone", "type": "string", "optional": true }, { "name": "status", "type": "string", "optional": true }, { "name": "source", "type": "string", "optional": true }, { "name": "assignedUserId", "type": "string", "optional": true }, { "name": "isRescheduled", "type": "bool", "optional": true }, { "name": "originalStartTime", "type": "DateTime", "optional": true }, { "name": "originalEndTime", "type": "DateTime", "optional": true }, { "name": "state", "type": "string", "optional": true }, { "name": "outcomeClass", "type": "string", "optional": true }, { "name": "embedText", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Appointment" } ] },
70
- { "name": "find_by_contactId", "inputs": [ { "name": "contactId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Appointment>" } ] },
71
- { "name": "find_by_calendarId", "inputs": [ { "name": "calendarId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Appointment>" } ] },
72
- { "name": "find_by_state", "inputs": [ { "name": "state", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Appointment>" } ] },
73
- { "name": "find_by_outcomeClass", "inputs": [ { "name": "outcomeClass", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<Appointment>" } ] }
74
- ],
75
- "routes": [
76
- { "op": "list", "method": "GET", "path": "/api/calendar/appointment" },
77
- { "op": "create", "method": "POST", "path": "/api/calendar/appointment" },
78
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/calendar/appointment" },
79
- { "op": "count", "method": "GET", "path": "/api/calendar/appointment/count" },
80
- { "op": "batch_get", "method": "POST", "path": "/api/calendar/appointment/_batch" },
81
- { "op": "get", "method": "GET", "path": "/api/calendar/appointment/:id" },
82
- { "op": "update", "method": "PUT", "path": "/api/calendar/appointment/:id" },
83
- { "op": "delete", "method": "DELETE", "path": "/api/calendar/appointment/:id" }
84
- ],
85
- "exported": true
86
- },
87
- "AppointmentParticipant": {
88
- "fields": [
89
- { "name": "id", "type": "ULID", "kind": "scalar" },
90
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
91
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
92
- { "name": "appointment", "type": "Appointment", "kind": "relation", "target": "Appointment", "target_cart": "calendar", "fk_field": "appointmentId", "relation_kind": "many_to_one" },
93
- { "name": "user", "type": "User", "kind": "relation", "target": "User", "target_cart": "auth", "fk_field": "userId", "relation_kind": "many_to_one" },
94
- { "name": "role", "type": "string", "kind": "scalar" },
95
- { "name": "assignedAt", "type": "DateTime", "kind": "scalar" },
96
- { "name": "assignedBy", "type": "User", "optional": true, "kind": "relation", "target": "User", "target_cart": "auth", "fk_field": "assignedById", "relation_kind": "many_to_one" },
97
- { "name": "notes", "type": "string", "optional": true, "kind": "scalar" }
98
- ],
99
- "indices": [["appointmentId", "role", "userId"], ["appointmentId"], ["userId", "role"]],
100
- "searchFields": [],
101
- "methods": [
102
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "AppointmentParticipant" } ] },
103
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<AppointmentParticipant>" } ] },
104
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
105
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "appointmentId", "type": "string" }, { "name": "userId", "type": "string" }, { "name": "role", "type": "string" }, { "name": "assignedById", "type": "string", "optional": true }, { "name": "notes", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "AppointmentParticipant" } ] },
106
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "appointmentId", "type": "string", "optional": true }, { "name": "userId", "type": "string", "optional": true }, { "name": "role", "type": "string", "optional": true }, { "name": "assignedById", "type": "string", "optional": true }, { "name": "notes", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "AppointmentParticipant" } ] },
107
- { "name": "find_by_appointmentId", "inputs": [ { "name": "appointmentId", "type": "string" } ], "outputs": [ { "name": "out", "type": "list<AppointmentParticipant>" } ] }
108
- ],
109
- "routes": [
110
- { "op": "list", "method": "GET", "path": "/api/calendar/appointmentparticipant" },
111
- { "op": "create", "method": "POST", "path": "/api/calendar/appointmentparticipant" },
112
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/calendar/appointmentparticipant" },
113
- { "op": "count", "method": "GET", "path": "/api/calendar/appointmentparticipant/count" },
114
- { "op": "batch_get", "method": "POST", "path": "/api/calendar/appointmentparticipant/_batch" },
115
- { "op": "get", "method": "GET", "path": "/api/calendar/appointmentparticipant/:id" },
116
- { "op": "update", "method": "PUT", "path": "/api/calendar/appointmentparticipant/:id" },
117
- { "op": "delete", "method": "DELETE", "path": "/api/calendar/appointmentparticipant/:id" }
118
- ],
119
- "exported": true
120
- }
121
- },
122
- "structs": [],
123
- "enums": [],
124
- "imports": {
125
- "auth": {
126
- "entities": ["User"],
127
- "enums": []
128
- },
129
- "crm": {
130
- "entities": ["Contact"],
131
- "enums": []
132
- }
133
- },
134
- "actions": [],
135
- "middleware": [],
136
- "workflows": [],
137
- "schedules": [],
138
- "tasks": [],
139
- "tools": [],
140
- "widgets": []
141
- }