@nbt-dev/nbt 0.0.1 → 0.0.4

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 (145) 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 +86 -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/20260518191152_update_message/migration.nbt +3 -0
  25. package/stdlib/chat/migrations/20260518191152_update_message/schema_snapshot.nbt +81 -0
  26. package/stdlib/chat/schema.nbt +130 -0
  27. package/stdlib/crm/adapters/gohighlevel/README.md +85 -0
  28. package/stdlib/crm/adapters/gohighlevel/tests/README.md +159 -0
  29. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_138fields.json +222 -0
  30. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_140fields.json +219 -0
  31. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_alt.json +212 -0
  32. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_changed.json +102 -0
  33. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_created.json +95 -0
  34. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_full.json +213 -0
  35. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_sparse.json +161 -0
  36. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_update_a.json +197 -0
  37. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/contact_update_b.json +197 -0
  38. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/opportunity_changed.json +85 -0
  39. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/opportunity_created.json +85 -0
  40. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_pilot.json +43 -0
  41. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_with_price_closed.json +7 -0
  42. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_contact_with_price_open.json +7 -0
  43. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_appointment_delete.json +1 -0
  44. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_calendar_update.json +1 -0
  45. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_contact_create.json +1 -0
  46. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_event_opp_status_update.json +1 -0
  47. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_opportunity_pilot.json +16 -0
  48. package/stdlib/crm/adapters/gohighlevel/tests/fixtures/webhooks/v2_pipelines_pilot.json +137 -0
  49. package/stdlib/crm/migrations/20260501210107_initial/migration.nbt +63 -0
  50. package/stdlib/crm/migrations/20260501210107_initial/schema_snapshot.nbt +73 -0
  51. package/stdlib/crm/migrations/20260513151050_schema_update/migration.nbt +13 -0
  52. package/stdlib/crm/migrations/20260513151050_schema_update/schema_snapshot.nbt +86 -0
  53. package/stdlib/crm/schema.nbt +148 -0
  54. package/stdlib/design/migrations/20260501210107_initial/migration.nbt +19 -0
  55. package/stdlib/design/migrations/20260501210107_initial/schema_snapshot.nbt +21 -0
  56. package/stdlib/design/migrations/20260610130000_design_system/migration.nbt +50 -0
  57. package/stdlib/design/migrations/20260610130000_design_system/schema_snapshot.nbt +80 -0
  58. package/stdlib/design/schema.nbt +140 -0
  59. package/stdlib/dns/migrations/20260501210107_initial/migration.nbt +32 -0
  60. package/stdlib/dns/migrations/20260501210107_initial/schema_snapshot.nbt +36 -0
  61. package/stdlib/dns/schema.nbt +68 -0
  62. package/stdlib/email/migrations/20260427235207_initial/migration.nbt +75 -0
  63. package/stdlib/email/migrations/20260427235207_initial/schema_snapshot.nbt +87 -0
  64. package/stdlib/email/schema.nbt +145 -0
  65. package/stdlib/ingest/README.md +29 -0
  66. package/stdlib/ingest/migrations/20260424144652_initial/migration.nbt +18 -0
  67. package/stdlib/ingest/migrations/20260424144652_initial/schema_snapshot.nbt +20 -0
  68. package/stdlib/ingest/migrations/20260429203747_schema_update/migration.nbt +3 -0
  69. package/stdlib/ingest/migrations/20260429203747_schema_update/schema_snapshot.nbt +21 -0
  70. package/stdlib/ingest/schema.nbt +37 -0
  71. package/stdlib/notifications/README.md +118 -0
  72. package/stdlib/notifications/migrations/20260430204408_initial/migration.nbt +42 -0
  73. package/stdlib/notifications/migrations/20260430204408_initial/schema_snapshot.nbt +46 -0
  74. package/stdlib/notifications/schema.nbt +67 -0
  75. package/stdlib/phone/migrations/20260605205722_initial/migration.nbt +50 -0
  76. package/stdlib/phone/migrations/20260605205722_initial/schema_snapshot.nbt +56 -0
  77. package/stdlib/phone/schema.nbt +95 -0
  78. package/stdlib/registry/migrations/20260602181932_initial/migration.nbt +8 -0
  79. package/stdlib/registry/migrations/20260602181932_initial/schema_snapshot.nbt +8 -0
  80. package/stdlib/registry/schema.nbt +20 -0
  81. package/stdlib/workflows/schema.nbt +44 -0
  82. package/vendor/linux-x64/cartridges/auth/migrations/20260424144652_initial/migration.nbt +48 -0
  83. package/vendor/linux-x64/cartridges/auth/migrations/20260424144652_initial/schema_snapshot.nbt +58 -0
  84. package/vendor/linux-x64/cartridges/auth/migrations/20260521191014_update_user/migration.nbt +3 -0
  85. package/vendor/linux-x64/cartridges/auth/migrations/20260521191014_update_user/schema_snapshot.nbt +59 -0
  86. package/vendor/linux-x64/cartridges/auth/schema.nbt +142 -0
  87. package/vendor/linux-x64/cartridges/calendar/migrations/20260501210107_initial/migration.nbt +60 -0
  88. package/vendor/linux-x64/cartridges/calendar/migrations/20260501210107_initial/schema_snapshot.nbt +66 -0
  89. package/vendor/linux-x64/cartridges/calendar/migrations/20260513151050_schema_update/migration.nbt +17 -0
  90. package/vendor/linux-x64/cartridges/calendar/migrations/20260513151050_schema_update/schema_snapshot.nbt +83 -0
  91. package/vendor/linux-x64/cartridges/calendar/schema.nbt +86 -0
  92. package/vendor/linux-x64/cartridges/chat/migrations/20260429222411_initial/migration.nbt +59 -0
  93. package/vendor/linux-x64/cartridges/chat/migrations/20260429222411_initial/schema_snapshot.nbt +71 -0
  94. package/vendor/linux-x64/cartridges/chat/migrations/20260430185225_add_messagereaction/migration.nbt +9 -0
  95. package/vendor/linux-x64/cartridges/chat/migrations/20260430185225_add_messagereaction/schema_snapshot.nbt +78 -0
  96. package/vendor/linux-x64/cartridges/chat/migrations/20260518191152_update_message/migration.nbt +3 -0
  97. package/vendor/linux-x64/cartridges/chat/migrations/20260518191152_update_message/schema_snapshot.nbt +81 -0
  98. package/vendor/linux-x64/cartridges/chat/schema.nbt +130 -0
  99. package/vendor/linux-x64/cartridges/crm/migrations/20260501210107_initial/migration.nbt +63 -0
  100. package/vendor/linux-x64/cartridges/crm/migrations/20260501210107_initial/schema_snapshot.nbt +73 -0
  101. package/vendor/linux-x64/cartridges/crm/migrations/20260513151050_schema_update/migration.nbt +13 -0
  102. package/vendor/linux-x64/cartridges/crm/migrations/20260513151050_schema_update/schema_snapshot.nbt +86 -0
  103. package/vendor/linux-x64/cartridges/crm/schema.nbt +148 -0
  104. package/vendor/linux-x64/cartridges/design/migrations/20260501210107_initial/migration.nbt +19 -0
  105. package/vendor/linux-x64/cartridges/design/migrations/20260501210107_initial/schema_snapshot.nbt +21 -0
  106. package/vendor/linux-x64/cartridges/design/migrations/20260610130000_design_system/migration.nbt +50 -0
  107. package/vendor/linux-x64/cartridges/design/migrations/20260610130000_design_system/schema_snapshot.nbt +80 -0
  108. package/vendor/linux-x64/cartridges/design/schema.nbt +140 -0
  109. package/vendor/linux-x64/cartridges/dns/migrations/20260501210107_initial/migration.nbt +32 -0
  110. package/vendor/linux-x64/cartridges/dns/migrations/20260501210107_initial/schema_snapshot.nbt +36 -0
  111. package/vendor/linux-x64/cartridges/dns/schema.nbt +68 -0
  112. package/vendor/linux-x64/cartridges/email/migrations/20260427235207_initial/migration.nbt +75 -0
  113. package/vendor/linux-x64/cartridges/email/migrations/20260427235207_initial/schema_snapshot.nbt +87 -0
  114. package/vendor/linux-x64/cartridges/email/schema.nbt +145 -0
  115. package/vendor/linux-x64/cartridges/ingest/migrations/20260424144652_initial/migration.nbt +18 -0
  116. package/vendor/linux-x64/cartridges/ingest/migrations/20260424144652_initial/schema_snapshot.nbt +20 -0
  117. package/vendor/linux-x64/cartridges/ingest/migrations/20260429203747_schema_update/migration.nbt +3 -0
  118. package/vendor/linux-x64/cartridges/ingest/migrations/20260429203747_schema_update/schema_snapshot.nbt +21 -0
  119. package/vendor/linux-x64/cartridges/ingest/schema.nbt +37 -0
  120. package/vendor/linux-x64/cartridges/notifications/migrations/20260430204408_initial/migration.nbt +42 -0
  121. package/vendor/linux-x64/cartridges/notifications/migrations/20260430204408_initial/schema_snapshot.nbt +46 -0
  122. package/vendor/linux-x64/cartridges/notifications/schema.nbt +67 -0
  123. package/vendor/linux-x64/cartridges/phone/migrations/20260605205722_initial/migration.nbt +50 -0
  124. package/vendor/linux-x64/cartridges/phone/migrations/20260605205722_initial/schema_snapshot.nbt +56 -0
  125. package/vendor/linux-x64/cartridges/phone/schema.nbt +95 -0
  126. package/vendor/linux-x64/cartridges/registry/migrations/20260602181932_initial/migration.nbt +8 -0
  127. package/vendor/linux-x64/cartridges/registry/migrations/20260602181932_initial/schema_snapshot.nbt +8 -0
  128. package/vendor/linux-x64/cartridges/registry/schema.nbt +20 -0
  129. package/vendor/linux-x64/cartridges/workflows/schema.nbt +44 -0
  130. package/vendor/linux-x64/console +0 -0
  131. package/vendor/linux-x64/nbt +0 -0
  132. package/contracts/audit/.dist/contract.json +0 -56
  133. package/contracts/auth/.dist/contract.json +0 -252
  134. package/contracts/calendar/.dist/contract.json +0 -141
  135. package/contracts/chat/.dist/contract.json +0 -229
  136. package/contracts/crm/.dist/contract.json +0 -239
  137. package/contracts/design/.dist/contract.json +0 -85
  138. package/contracts/dns/.dist/contract.json +0 -123
  139. package/contracts/email/.dist/contract.json +0 -267
  140. package/contracts/embed/.dist/contract.json +0 -137
  141. package/contracts/ingest/.dist/contract.json +0 -86
  142. package/contracts/notifications/.dist/contract.json +0 -133
  143. package/contracts/phone/.dist/contract.json +0 -168
  144. package/contracts/registry/.dist/contract.json +0 -49
  145. package/contracts/workflows/.dist/contract.json +0 -106
@@ -1,49 +0,0 @@
1
- {
2
- "cartridge": "registry",
3
- "version": "0.1",
4
- "owns": {
5
- "InstalledCartridge": {
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": "tier", "type": "string", "kind": "scalar" },
11
- { "name": "source", "type": "string", "kind": "scalar" },
12
- { "name": "schemaChecksum", "type": "string", "kind": "scalar" },
13
- { "name": "installedAt", "type": "u64", "kind": "scalar" },
14
- { "name": "status", "type": "string", "kind": "scalar" }
15
- ],
16
- "indices": [],
17
- "searchFields": [],
18
- "methods": [
19
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "InstalledCartridge" } ] },
20
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<InstalledCartridge>" } ] },
21
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
22
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "tier", "type": "string" }, { "name": "source", "type": "string" }, { "name": "schemaChecksum", "type": "string" }, { "name": "installedAt", "type": "u64" }, { "name": "status", "type": "string" }], "outputs": [ { "name": "out", "type": "InstalledCartridge" } ] },
23
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "tier", "type": "string", "optional": true }, { "name": "source", "type": "string", "optional": true }, { "name": "schemaChecksum", "type": "string", "optional": true }, { "name": "installedAt", "type": "u64", "optional": true }, { "name": "status", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "InstalledCartridge" } ] }
24
- ],
25
- "routes": [
26
- { "op": "list", "method": "GET", "path": "/api/registry/installedcartridge" },
27
- { "op": "create", "method": "POST", "path": "/api/registry/installedcartridge" },
28
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/registry/installedcartridge" },
29
- { "op": "count", "method": "GET", "path": "/api/registry/installedcartridge/count" },
30
- { "op": "batch_get", "method": "POST", "path": "/api/registry/installedcartridge/_batch" },
31
- { "op": "get", "method": "GET", "path": "/api/registry/installedcartridge/:id" },
32
- { "op": "update", "method": "PUT", "path": "/api/registry/installedcartridge/:id" },
33
- { "op": "delete", "method": "DELETE", "path": "/api/registry/installedcartridge/:id" }
34
- ],
35
- "exported": false
36
- }
37
- },
38
- "structs": [],
39
- "enums": [],
40
- "imports": {
41
- },
42
- "actions": [],
43
- "middleware": [],
44
- "workflows": [],
45
- "schedules": [],
46
- "tasks": [],
47
- "tools": [],
48
- "widgets": []
49
- }
@@ -1,106 +0,0 @@
1
- {
2
- "cartridge": "workflows",
3
- "owns": {
4
- "Worker": {
5
- "fields": [
6
- { "name": "id", "type": "ULID", "kind": "scalar" },
7
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
8
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
9
- { "name": "source", "type": "blob", "kind": "scalar" },
10
- { "name": "contentHash", "type": "string", "kind": "scalar" },
11
- { "name": "queue", "type": "string", "optional": true, "kind": "scalar" }
12
- ],
13
- "indices": [],
14
- "searchFields": [],
15
- "methods": [
16
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "Worker" } ] },
17
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<Worker>" } ] },
18
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
19
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "source", "type": "blob" }, { "name": "contentHash", "type": "string" }, { "name": "queue", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Worker" } ] },
20
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "source", "type": "blob", "optional": true }, { "name": "contentHash", "type": "string", "optional": true }, { "name": "queue", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "Worker" } ] }
21
- ],
22
- "routes": [
23
- { "op": "list", "method": "GET", "path": "/api/workflows/worker" },
24
- { "op": "create", "method": "POST", "path": "/api/workflows/worker" },
25
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/workflows/worker" },
26
- { "op": "count", "method": "GET", "path": "/api/workflows/worker/count" },
27
- { "op": "batch_get", "method": "POST", "path": "/api/workflows/worker/_batch" },
28
- { "op": "get", "method": "GET", "path": "/api/workflows/worker/:id" },
29
- { "op": "update", "method": "PUT", "path": "/api/workflows/worker/:id" },
30
- { "op": "delete", "method": "DELETE", "path": "/api/workflows/worker/:id" }
31
- ],
32
- "exported": false
33
- },
34
- "WorkflowExecution": {
35
- "fields": [
36
- { "name": "id", "type": "ULID", "kind": "scalar" },
37
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
38
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
39
- { "name": "status", "type": "string", "kind": "scalar" },
40
- { "name": "events", "type": "WorkflowExecutionEvent", "array": true, "kind": "relation", "target": "WorkflowExecutionEvent", "target_cart": "workflows", "relation_kind": "many_to_many" }
41
- ],
42
- "indices": [],
43
- "searchFields": [],
44
- "methods": [
45
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "WorkflowExecution" } ] },
46
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<WorkflowExecution>" } ] },
47
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
48
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "status", "type": "string" }], "outputs": [ { "name": "out", "type": "WorkflowExecution" } ] },
49
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "status", "type": "string", "optional": true }, { "name": "eventsId", "type": "string", "optional": true }], "outputs": [ { "name": "out", "type": "WorkflowExecution" } ] }
50
- ],
51
- "routes": [
52
- { "op": "list", "method": "GET", "path": "/api/workflows/workflowexecution" },
53
- { "op": "create", "method": "POST", "path": "/api/workflows/workflowexecution" },
54
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/workflows/workflowexecution" },
55
- { "op": "count", "method": "GET", "path": "/api/workflows/workflowexecution/count" },
56
- { "op": "batch_get", "method": "POST", "path": "/api/workflows/workflowexecution/_batch" },
57
- { "op": "get", "method": "GET", "path": "/api/workflows/workflowexecution/:id" },
58
- { "op": "update", "method": "PUT", "path": "/api/workflows/workflowexecution/:id" },
59
- { "op": "delete", "method": "DELETE", "path": "/api/workflows/workflowexecution/:id" }
60
- ],
61
- "exported": false
62
- },
63
- "WorkflowExecutionEvent": {
64
- "fields": [
65
- { "name": "id", "type": "ULID", "kind": "scalar" },
66
- { "name": "createdAt", "type": "DateTime", "kind": "scalar" },
67
- { "name": "updatedAt", "type": "DateTime", "kind": "scalar" },
68
- { "name": "kind", "type": "WorkflowExecutionEventKind", "kind": "scalar" }
69
- ],
70
- "indices": [],
71
- "searchFields": [],
72
- "methods": [
73
- { "name": "find_by_id", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [ { "name": "out", "type": "WorkflowExecutionEvent" } ] },
74
- { "name": "list", "inputs": [], "outputs": [ { "name": "out", "type": "list<WorkflowExecutionEvent>" } ] },
75
- { "name": "delete", "inputs": [ { "name": "id", "type": "string" } ], "outputs": [] },
76
- { "name": "create", "inputs": [{ "name": "id", "type": "ULID" }, { "name": "kind", "type": "WorkflowExecutionEventKind" }], "outputs": [ { "name": "out", "type": "WorkflowExecutionEvent" } ] },
77
- { "name": "update", "inputs": [{ "name": "id", "type": "string" }, { "name": "id", "type": "ULID", "optional": true }, { "name": "kind", "type": "WorkflowExecutionEventKind", "optional": true }], "outputs": [ { "name": "out", "type": "WorkflowExecutionEvent" } ] }
78
- ],
79
- "routes": [
80
- { "op": "list", "method": "GET", "path": "/api/workflows/workflowexecutionevent" },
81
- { "op": "create", "method": "POST", "path": "/api/workflows/workflowexecutionevent" },
82
- { "op": "delete_by_query", "method": "DELETE", "path": "/api/workflows/workflowexecutionevent" },
83
- { "op": "count", "method": "GET", "path": "/api/workflows/workflowexecutionevent/count" },
84
- { "op": "batch_get", "method": "POST", "path": "/api/workflows/workflowexecutionevent/_batch" },
85
- { "op": "get", "method": "GET", "path": "/api/workflows/workflowexecutionevent/:id" },
86
- { "op": "update", "method": "PUT", "path": "/api/workflows/workflowexecutionevent/:id" },
87
- { "op": "delete", "method": "DELETE", "path": "/api/workflows/workflowexecutionevent/:id" }
88
- ],
89
- "exported": false
90
- }
91
- },
92
- "structs": [],
93
- "enums": [
94
- {"name":"WorkerStatus","values":["WAITING","RUNNING","TERMINATED"]},
95
- {"name":"WorkflowExecutionEventKind","values":["WORKFLOW_EXECUTION_STARTED","WORKFLOW_STEP_SCHEDULED","WORKFLOW_STEP_STARTED","WORKFLOW_STEP_COMPLETED","WORKFLOW_EXECUTION_COMPLETED"]}
96
- ],
97
- "imports": {
98
- },
99
- "actions": [],
100
- "middleware": [],
101
- "workflows": [],
102
- "schedules": [],
103
- "tasks": [],
104
- "tools": [],
105
- "widgets": []
106
- }