primitive-admin 1.0.60 → 1.0.62

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 (310) hide show
  1. package/README.md +125 -69
  2. package/assets/skill/skills/primitive-platform/SKILL.md +336 -37
  3. package/dist/bin/primitive.js +29 -14
  4. package/dist/bin/primitive.js.map +1 -1
  5. package/dist/src/commands/admins.js +22 -8
  6. package/dist/src/commands/admins.js.map +1 -1
  7. package/dist/src/commands/analytics.js +96 -16
  8. package/dist/src/commands/analytics.js.map +1 -1
  9. package/dist/src/commands/apps.js +49 -188
  10. package/dist/src/commands/apps.js.map +1 -1
  11. package/dist/src/commands/blob-buckets.js +50 -155
  12. package/dist/src/commands/blob-buckets.js.map +1 -1
  13. package/dist/src/commands/collection-type-configs.js +14 -100
  14. package/dist/src/commands/collection-type-configs.js.map +1 -1
  15. package/dist/src/commands/collections.js +47 -8
  16. package/dist/src/commands/collections.js.map +1 -1
  17. package/dist/src/commands/config.d.ts +46 -0
  18. package/dist/src/commands/config.js +479 -0
  19. package/dist/src/commands/config.js.map +1 -0
  20. package/dist/src/commands/connections.d.ts +2 -0
  21. package/dist/src/commands/connections.js +100 -0
  22. package/dist/src/commands/connections.js.map +1 -0
  23. package/dist/src/commands/cron-triggers.js +84 -176
  24. package/dist/src/commands/cron-triggers.js.map +1 -1
  25. package/dist/src/commands/database-type-configs.d.ts +2 -0
  26. package/dist/src/commands/database-type-configs.js +171 -0
  27. package/dist/src/commands/database-type-configs.js.map +1 -0
  28. package/dist/src/commands/database-types.js +4 -4
  29. package/dist/src/commands/database-types.js.map +1 -1
  30. package/dist/src/commands/databases.d.ts +63 -0
  31. package/dist/src/commands/databases.js +649 -87
  32. package/dist/src/commands/databases.js.map +1 -1
  33. package/dist/src/commands/documents.js +869 -12
  34. package/dist/src/commands/documents.js.map +1 -1
  35. package/dist/src/commands/email-templates.js +18 -125
  36. package/dist/src/commands/email-templates.js.map +1 -1
  37. package/dist/src/commands/env.d.ts +12 -1
  38. package/dist/src/commands/env.js +98 -25
  39. package/dist/src/commands/env.js.map +1 -1
  40. package/dist/src/commands/feature-flags.d.ts +14 -0
  41. package/dist/src/commands/feature-flags.js +116 -0
  42. package/dist/src/commands/feature-flags.js.map +1 -0
  43. package/dist/src/commands/group-type-configs.js +14 -109
  44. package/dist/src/commands/group-type-configs.js.map +1 -1
  45. package/dist/src/commands/init.d.ts +9 -1
  46. package/dist/src/commands/init.js +1058 -279
  47. package/dist/src/commands/init.js.map +1 -1
  48. package/dist/src/commands/integrations.js +136 -421
  49. package/dist/src/commands/integrations.js.map +1 -1
  50. package/dist/src/commands/metadata-category-configs.d.ts +12 -0
  51. package/dist/src/commands/metadata-category-configs.js +112 -0
  52. package/dist/src/commands/metadata-category-configs.js.map +1 -0
  53. package/dist/src/commands/metadata.js +33 -141
  54. package/dist/src/commands/metadata.js.map +1 -1
  55. package/dist/src/commands/prompts.js +206 -563
  56. package/dist/src/commands/prompts.js.map +1 -1
  57. package/dist/src/commands/rule-sets.d.ts +1 -1
  58. package/dist/src/commands/rule-sets.js +16 -132
  59. package/dist/src/commands/rule-sets.js.map +1 -1
  60. package/dist/src/commands/scripts.js +67 -234
  61. package/dist/src/commands/scripts.js.map +1 -1
  62. package/dist/src/commands/sessions.d.ts +2 -0
  63. package/dist/src/commands/sessions.js +75 -0
  64. package/dist/src/commands/sessions.js.map +1 -0
  65. package/dist/src/commands/skill.js +2 -2
  66. package/dist/src/commands/skill.js.map +1 -1
  67. package/dist/src/commands/sync-app-settings.d.ts +113 -70
  68. package/dist/src/commands/sync-app-settings.js +193 -242
  69. package/dist/src/commands/sync-app-settings.js.map +1 -1
  70. package/dist/src/commands/sync.d.ts +1932 -49
  71. package/dist/src/commands/sync.js +9584 -1725
  72. package/dist/src/commands/sync.js.map +1 -1
  73. package/dist/src/commands/tokens.js +8 -2
  74. package/dist/src/commands/tokens.js.map +1 -1
  75. package/dist/src/commands/users.js +92 -1
  76. package/dist/src/commands/users.js.map +1 -1
  77. package/dist/src/commands/vars.js +44 -58
  78. package/dist/src/commands/vars.js.map +1 -1
  79. package/dist/src/commands/webhooks.js +318 -156
  80. package/dist/src/commands/webhooks.js.map +1 -1
  81. package/dist/src/commands/workflows.d.ts +49 -12
  82. package/dist/src/commands/workflows.js +652 -1043
  83. package/dist/src/commands/workflows.js.map +1 -1
  84. package/dist/src/lib/access-rule-display.d.ts +21 -0
  85. package/dist/src/lib/access-rule-display.js +34 -0
  86. package/dist/src/lib/access-rule-display.js.map +1 -0
  87. package/dist/src/lib/api-client.d.ts +630 -61
  88. package/dist/src/lib/api-client.js +676 -116
  89. package/dist/src/lib/api-client.js.map +1 -1
  90. package/dist/src/lib/app-settings-descriptor.d.ts +180 -25
  91. package/dist/src/lib/app-settings-descriptor.js +403 -82
  92. package/dist/src/lib/app-settings-descriptor.js.map +1 -1
  93. package/dist/src/lib/canonical-json.d.ts +12 -0
  94. package/dist/src/lib/canonical-json.js +35 -0
  95. package/dist/src/lib/canonical-json.js.map +1 -0
  96. package/dist/src/lib/cli-manifest.d.ts +8 -0
  97. package/dist/src/lib/cli-manifest.js +1 -0
  98. package/dist/src/lib/cli-manifest.js.map +1 -1
  99. package/dist/src/lib/codegen-shared/generatedFiles.d.ts +6 -2
  100. package/dist/src/lib/codegen-shared/generatedFiles.js +9 -2
  101. package/dist/src/lib/codegen-shared/generatedFiles.js.map +1 -1
  102. package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.d.ts +6 -6
  103. package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.js +8 -8
  104. package/dist/src/lib/codegen-shared/resolveCodegenSourceDir.js.map +1 -1
  105. package/dist/src/lib/config-object-descriptor.d.ts +127 -0
  106. package/dist/src/lib/config-object-descriptor.js +658 -0
  107. package/dist/src/lib/config-object-descriptor.js.map +1 -0
  108. package/dist/src/lib/config-payload.d.ts +85 -0
  109. package/dist/src/lib/config-payload.js +116 -0
  110. package/dist/src/lib/config-payload.js.map +1 -0
  111. package/dist/src/lib/config-surface.d.ts +130 -0
  112. package/dist/src/lib/config-surface.js +300 -0
  113. package/dist/src/lib/config-surface.js.map +1 -0
  114. package/dist/src/lib/credentials-store.d.ts +10 -0
  115. package/dist/src/lib/credentials-store.js +23 -0
  116. package/dist/src/lib/credentials-store.js.map +1 -1
  117. package/dist/src/lib/data-input.d.ts +23 -0
  118. package/dist/src/lib/data-input.js +50 -0
  119. package/dist/src/lib/data-input.js.map +1 -0
  120. package/dist/src/lib/db-codegen/dbTemplates.js +1 -1
  121. package/dist/src/lib/db-codegen/dbTemplates.js.map +1 -1
  122. package/dist/src/lib/db-codegen/dbTypeIR.d.ts +1 -1
  123. package/dist/src/lib/env-resolver-core.d.ts +147 -0
  124. package/dist/src/lib/env-resolver-core.js +265 -0
  125. package/dist/src/lib/env-resolver-core.js.map +1 -0
  126. package/dist/src/lib/env-resolver.d.ts +28 -6
  127. package/dist/src/lib/env-resolver.js +44 -32
  128. package/dist/src/lib/env-resolver.js.map +1 -1
  129. package/dist/src/lib/generated-allowlist.js +13 -0
  130. package/dist/src/lib/generated-allowlist.js.map +1 -1
  131. package/dist/src/lib/generated-config-surfaces.d.ts +682 -0
  132. package/dist/src/lib/generated-config-surfaces.js +4058 -0
  133. package/dist/src/lib/generated-config-surfaces.js.map +1 -0
  134. package/dist/src/lib/generated-template-lint.d.ts +212 -0
  135. package/dist/src/lib/generated-template-lint.js +624 -0
  136. package/dist/src/lib/generated-template-lint.js.map +1 -0
  137. package/dist/src/lib/init-adopt.d.ts +16 -0
  138. package/dist/src/lib/init-adopt.js +34 -0
  139. package/dist/src/lib/init-adopt.js.map +1 -0
  140. package/dist/src/lib/init-assets.d.ts +39 -0
  141. package/dist/src/lib/init-assets.js +97 -0
  142. package/dist/src/lib/init-assets.js.map +1 -0
  143. package/dist/src/lib/init-config.d.ts +44 -5
  144. package/dist/src/lib/init-config.js +80 -7
  145. package/dist/src/lib/init-config.js.map +1 -1
  146. package/dist/src/lib/init-ios-links.d.ts +50 -0
  147. package/dist/src/lib/init-ios-links.js +153 -0
  148. package/dist/src/lib/init-ios-links.js.map +1 -0
  149. package/dist/src/lib/init-plan.d.ts +80 -0
  150. package/dist/src/lib/init-plan.js +95 -0
  151. package/dist/src/lib/init-plan.js.map +1 -0
  152. package/dist/src/lib/init-production-env.d.ts +48 -0
  153. package/dist/src/lib/init-production-env.js +59 -0
  154. package/dist/src/lib/init-production-env.js.map +1 -0
  155. package/dist/src/lib/init-schema.d.ts +74 -0
  156. package/dist/src/lib/init-schema.js +358 -0
  157. package/dist/src/lib/init-schema.js.map +1 -0
  158. package/dist/src/lib/init-xcode.d.ts +33 -0
  159. package/dist/src/lib/init-xcode.js +114 -0
  160. package/dist/src/lib/init-xcode.js.map +1 -0
  161. package/dist/src/lib/integration-request-config.d.ts +30 -0
  162. package/dist/src/lib/integration-request-config.js +145 -0
  163. package/dist/src/lib/integration-request-config.js.map +1 -0
  164. package/dist/src/lib/local-state.d.ts +55 -0
  165. package/dist/src/lib/local-state.js +167 -0
  166. package/dist/src/lib/local-state.js.map +1 -0
  167. package/dist/src/lib/log-inspection.d.ts +568 -0
  168. package/dist/src/lib/log-inspection.js +639 -0
  169. package/dist/src/lib/log-inspection.js.map +1 -0
  170. package/dist/src/lib/migration-nag.d.ts +2 -2
  171. package/dist/src/lib/migration-nag.js +3 -3
  172. package/dist/src/lib/object-status-filter.d.ts +22 -0
  173. package/dist/src/lib/object-status-filter.js +45 -0
  174. package/dist/src/lib/object-status-filter.js.map +1 -0
  175. package/dist/src/lib/output.d.ts +24 -1
  176. package/dist/src/lib/output.js +42 -1
  177. package/dist/src/lib/output.js.map +1 -1
  178. package/dist/src/lib/package-manager.d.ts +140 -0
  179. package/dist/src/lib/package-manager.js +305 -0
  180. package/dist/src/lib/package-manager.js.map +1 -0
  181. package/dist/src/lib/paginate.d.ts +50 -0
  182. package/dist/src/lib/paginate.js +53 -0
  183. package/dist/src/lib/paginate.js.map +1 -1
  184. package/dist/src/lib/platform-owned.d.ts +29 -3
  185. package/dist/src/lib/platform-owned.js +42 -3
  186. package/dist/src/lib/platform-owned.js.map +1 -1
  187. package/dist/src/lib/project-config.js +13 -5
  188. package/dist/src/lib/project-config.js.map +1 -1
  189. package/dist/src/lib/query-operators.d.ts +1 -1
  190. package/dist/src/lib/query-operators.js +1 -1
  191. package/dist/src/lib/record-filter.d.ts +18 -0
  192. package/dist/src/lib/record-filter.js +55 -0
  193. package/dist/src/lib/record-filter.js.map +1 -0
  194. package/dist/src/lib/resolve-init-dev-port.d.ts +56 -0
  195. package/dist/src/lib/resolve-init-dev-port.js +55 -0
  196. package/dist/src/lib/resolve-init-dev-port.js.map +1 -0
  197. package/dist/src/lib/resolve-init-server.d.ts +64 -0
  198. package/dist/src/lib/resolve-init-server.js +77 -0
  199. package/dist/src/lib/resolve-init-server.js.map +1 -0
  200. package/dist/src/lib/resolve-platform.d.ts +43 -14
  201. package/dist/src/lib/resolve-platform.js +74 -12
  202. package/dist/src/lib/resolve-platform.js.map +1 -1
  203. package/dist/src/lib/run-status.d.ts +19 -0
  204. package/dist/src/lib/run-status.generated.d.ts +39 -0
  205. package/dist/src/lib/run-status.generated.js +66 -0
  206. package/dist/src/lib/run-status.generated.js.map +1 -0
  207. package/dist/src/lib/run-status.js +19 -0
  208. package/dist/src/lib/run-status.js.map +1 -0
  209. package/dist/src/lib/server-text-normalization.d.ts +51 -0
  210. package/dist/src/lib/server-text-normalization.js +90 -0
  211. package/dist/src/lib/server-text-normalization.js.map +1 -0
  212. package/dist/src/lib/server-url.d.ts +22 -0
  213. package/dist/src/lib/server-url.js +33 -0
  214. package/dist/src/lib/server-url.js.map +1 -0
  215. package/dist/src/lib/signing-secret-status.d.ts +81 -0
  216. package/dist/src/lib/signing-secret-status.js +116 -0
  217. package/dist/src/lib/signing-secret-status.js.map +1 -0
  218. package/dist/src/lib/skill-installer.d.ts +4 -2
  219. package/dist/src/lib/skill-installer.js +143 -12
  220. package/dist/src/lib/skill-installer.js.map +1 -1
  221. package/dist/src/lib/snapshots.d.ts +2 -2
  222. package/dist/src/lib/snapshots.js +2 -2
  223. package/dist/src/lib/swift-codegen/dbGenerator.d.ts +15 -2
  224. package/dist/src/lib/swift-codegen/dbGenerator.js +250 -18
  225. package/dist/src/lib/swift-codegen/dbGenerator.js.map +1 -1
  226. package/dist/src/lib/swift-codegen/generator.d.ts +11 -2
  227. package/dist/src/lib/swift-codegen/generator.js +181 -7
  228. package/dist/src/lib/swift-codegen/generator.js.map +1 -1
  229. package/dist/src/lib/swift-codegen/siblingSymbols.d.ts +7 -3
  230. package/dist/src/lib/swift-codegen/siblingSymbols.js +4 -1
  231. package/dist/src/lib/swift-codegen/siblingSymbols.js.map +1 -1
  232. package/dist/src/lib/sync-dir-selector.d.ts +21 -0
  233. package/dist/src/lib/sync-dir-selector.js +30 -0
  234. package/dist/src/lib/sync-dir-selector.js.map +1 -0
  235. package/dist/src/lib/sync-paths.d.ts +39 -0
  236. package/dist/src/lib/sync-paths.js +70 -2
  237. package/dist/src/lib/sync-paths.js.map +1 -1
  238. package/dist/src/lib/sync-resource-types.d.ts +138 -31
  239. package/dist/src/lib/sync-resource-types.js +241 -47
  240. package/dist/src/lib/sync-resource-types.js.map +1 -1
  241. package/dist/src/lib/sync-selectors.d.ts +95 -0
  242. package/dist/src/lib/sync-selectors.js +228 -0
  243. package/dist/src/lib/sync-selectors.js.map +1 -0
  244. package/dist/src/lib/template.d.ts +62 -4
  245. package/dist/src/lib/template.js +147 -39
  246. package/dist/src/lib/template.js.map +1 -1
  247. package/dist/src/lib/test-case-keys.d.ts +29 -0
  248. package/dist/src/lib/test-case-keys.js +55 -0
  249. package/dist/src/lib/test-case-keys.js.map +1 -0
  250. package/dist/src/lib/test-case-variables.d.ts +15 -0
  251. package/dist/src/lib/test-case-variables.js +29 -0
  252. package/dist/src/lib/test-case-variables.js.map +1 -0
  253. package/dist/src/lib/toml-database-config.d.ts +4 -4
  254. package/dist/src/lib/toml-database-config.js +27 -34
  255. package/dist/src/lib/toml-database-config.js.map +1 -1
  256. package/dist/src/lib/toml-metadata-config.d.ts +9 -5
  257. package/dist/src/lib/toml-metadata-config.js +40 -45
  258. package/dist/src/lib/toml-metadata-config.js.map +1 -1
  259. package/dist/src/lib/toml-native-form.d.ts +1 -1
  260. package/dist/src/lib/toml-native-form.js +1 -1
  261. package/dist/src/lib/toml-params-validator.d.ts +1 -1
  262. package/dist/src/lib/toml-params-validator.js +1 -1
  263. package/dist/src/lib/toml-scalar-edit.d.ts +43 -0
  264. package/dist/src/lib/toml-scalar-edit.js +283 -0
  265. package/dist/src/lib/toml-scalar-edit.js.map +1 -0
  266. package/dist/src/lib/user-selector.d.ts +24 -0
  267. package/dist/src/lib/user-selector.js +33 -0
  268. package/dist/src/lib/user-selector.js.map +1 -0
  269. package/dist/src/lib/version-check.d.ts +25 -0
  270. package/dist/src/lib/version-check.js +77 -8
  271. package/dist/src/lib/version-check.js.map +1 -1
  272. package/dist/src/lib/watch.d.ts +121 -0
  273. package/dist/src/lib/watch.js +169 -0
  274. package/dist/src/lib/watch.js.map +1 -0
  275. package/dist/src/lib/workflow-apply.d.ts +69 -45
  276. package/dist/src/lib/workflow-apply.js +99 -72
  277. package/dist/src/lib/workflow-apply.js.map +1 -1
  278. package/dist/src/lib/workflow-codegen/generator.js +4 -4
  279. package/dist/src/lib/workflow-codegen/generator.js.map +1 -1
  280. package/dist/src/lib/workflow-codegen/invokerIR.d.ts +11 -0
  281. package/dist/src/lib/workflow-codegen/invokerIR.js +5 -0
  282. package/dist/src/lib/workflow-codegen/invokerIR.js.map +1 -1
  283. package/dist/src/lib/workflow-config-apply.d.ts +70 -0
  284. package/dist/src/lib/workflow-config-apply.js +137 -0
  285. package/dist/src/lib/workflow-config-apply.js.map +1 -0
  286. package/dist/src/lib/workflow-config-sidecar.d.ts +63 -0
  287. package/dist/src/lib/workflow-config-sidecar.js +96 -0
  288. package/dist/src/lib/workflow-config-sidecar.js.map +1 -0
  289. package/dist/src/lib/workflow-defaults.d.ts +29 -0
  290. package/dist/src/lib/workflow-defaults.js +41 -0
  291. package/dist/src/lib/workflow-defaults.js.map +1 -0
  292. package/dist/src/lib/workflow-fragments.d.ts +23 -0
  293. package/dist/src/lib/workflow-fragments.js +229 -8
  294. package/dist/src/lib/workflow-fragments.js.map +1 -1
  295. package/dist/src/lib/workflow-include-preserve.d.ts +76 -0
  296. package/dist/src/lib/workflow-include-preserve.js +286 -0
  297. package/dist/src/lib/workflow-include-preserve.js.map +1 -0
  298. package/dist/src/lib/workflow-payload.d.ts +31 -20
  299. package/dist/src/lib/workflow-payload.js +100 -93
  300. package/dist/src/lib/workflow-payload.js.map +1 -1
  301. package/dist/src/lib/workflow-toml-validator.d.ts +80 -3
  302. package/dist/src/lib/workflow-toml-validator.js +231 -3
  303. package/dist/src/lib/workflow-toml-validator.js.map +1 -1
  304. package/dist/src/types/index.d.ts +78 -22
  305. package/dist/src/validators.d.ts +7 -7
  306. package/dist/src/validators.js +6 -6
  307. package/package.json +11 -6
  308. package/dist/src/commands/settings.d.ts +0 -15
  309. package/dist/src/commands/settings.js +0 -102
  310. package/dist/src/commands/settings.js.map +0 -1
@@ -22,6 +22,7 @@
22
22
  import { parseConfigToml } from "../config-toml.js";
23
23
  import { safeJsonParse } from "../workflow-payload.js";
24
24
  import { schemaRejectsEmptyObject } from "./schemaToTs.js";
25
+ import { describeSchema } from "./generated-schema-descriptor.js";
25
26
  import { INTERNAL_WORKFLOW_KEY_PREFIX, isPlatformOwnedWorkflowKey, } from "../platform-owned.js";
26
27
  // Re-export so existing importers of these codegen symbols keep working; the
27
28
  // single source of truth is now `../platform-owned.js` (#1660), shared with the
@@ -64,6 +65,10 @@ export function describeWorkflowInvoker(source) {
64
65
  // server applies when it decides whether a completed run needs a client
65
66
  // apply. An absent key means apply-mode.
66
67
  requiresClientApply: workflow.requiresClientApply !== false,
68
+ // Object-shaped only when the schema declares exactly `type: "object"` —
69
+ // the one case a cron `rootInput` may legitimately be partial.
70
+ inputIsObjectShaped: inputSchema !== undefined &&
71
+ describeSchema(inputSchema).singularType === "object",
67
72
  inputSchema,
68
73
  outputSchema,
69
74
  };
@@ -1 +1 @@
1
- {"version":3,"file":"invokerIR.js","sourceRoot":"","sources":["../../../../src/lib/workflow-codegen/invokerIR.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EACL,4BAA4B,EAC5B,0BAA0B,GAC3B,MAAM,sBAAsB,CAAC;AAE9B,6EAA6E;AAC7E,gFAAgF;AAChF,qEAAqE;AACrE,OAAO,EAAE,4BAA4B,EAAE,CAAC;AAiDxC;;;GAGG;AACH,MAAM,UAAU,qBAAqB,CAAC,GAAW;IAC/C,OAAO,0BAA0B,CAAC,GAAG,CAAC,CAAC;AACzC,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,uBAAuB,CACrC,MAA6B;IAE7B,MAAM,IAAI,GAAG,eAAe,CAAC,MAAM,CAAC,WAAW,CAAQ,CAAC;IACxD,MAAM,QAAQ,GAAG,IAAI,EAAE,QAAQ,IAAI,EAAE,CAAC;IACtC,MAAM,GAAG,GACP,OAAO,QAAQ,CAAC,GAAG,KAAK,QAAQ,IAAI,QAAQ,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC;QACzD,CAAC,CAAC,QAAQ,CAAC,GAAG;QACd,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC;IAEtB,IAAI,qBAAqB,CAAC,GAAG,CAAC;QAAE,OAAO,IAAI,CAAC;IAE5C,2EAA2E;IAC3E,MAAM,WAAW,GAAG,aAAa,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;IACxD,MAAM,YAAY,GAAG,aAAa,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAE1D,OAAO;QACL,GAAG;QACH,YAAY,EAAE,QAAQ,CAAC,YAAY,KAAK,IAAI;QAC5C,yEAAyE;QACzE,oEAAoE;QACpE,aAAa,EACX,WAAW,KAAK,SAAS,IAAI,wBAAwB,CAAC,WAAW,CAAC;QACpE,2EAA2E;QAC3E,wEAAwE;QACxE,yCAAyC;QACzC,mBAAmB,EAAE,QAAQ,CAAC,mBAAmB,KAAK,KAAK;QAC3D,WAAW;QACX,YAAY;KACb,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"invokerIR.js","sourceRoot":"","sources":["../../../../src/lib/workflow-codegen/invokerIR.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EACL,4BAA4B,EAC5B,0BAA0B,GAC3B,MAAM,sBAAsB,CAAC;AAE9B,6EAA6E;AAC7E,gFAAgF;AAChF,qEAAqE;AACrE,OAAO,EAAE,4BAA4B,EAAE,CAAC;AA4DxC;;;GAGG;AACH,MAAM,UAAU,qBAAqB,CAAC,GAAW;IAC/C,OAAO,0BAA0B,CAAC,GAAG,CAAC,CAAC;AACzC,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,uBAAuB,CACrC,MAA6B;IAE7B,MAAM,IAAI,GAAG,eAAe,CAAC,MAAM,CAAC,WAAW,CAAQ,CAAC;IACxD,MAAM,QAAQ,GAAG,IAAI,EAAE,QAAQ,IAAI,EAAE,CAAC;IACtC,MAAM,GAAG,GACP,OAAO,QAAQ,CAAC,GAAG,KAAK,QAAQ,IAAI,QAAQ,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC;QACzD,CAAC,CAAC,QAAQ,CAAC,GAAG;QACd,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC;IAEtB,IAAI,qBAAqB,CAAC,GAAG,CAAC;QAAE,OAAO,IAAI,CAAC;IAE5C,2EAA2E;IAC3E,MAAM,WAAW,GAAG,aAAa,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAC;IACxD,MAAM,YAAY,GAAG,aAAa,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;IAE1D,OAAO;QACL,GAAG;QACH,YAAY,EAAE,QAAQ,CAAC,YAAY,KAAK,IAAI;QAC5C,yEAAyE;QACzE,oEAAoE;QACpE,aAAa,EACX,WAAW,KAAK,SAAS,IAAI,wBAAwB,CAAC,WAAW,CAAC;QACpE,2EAA2E;QAC3E,wEAAwE;QACxE,yCAAyC;QACzC,mBAAmB,EAAE,QAAQ,CAAC,mBAAmB,KAAK,KAAK;QAC3D,yEAAyE;QACzE,+DAA+D;QAC/D,mBAAmB,EACjB,WAAW,KAAK,SAAS;YACzB,cAAc,CAAC,WAAW,CAAC,CAAC,YAAY,KAAK,QAAQ;QACvD,WAAW;QACX,YAAY;KACb,CAAC;AACJ,CAAC"}
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Apply a workflow's named config sidecars, and honor `activeConfigName`
3
+ * (issue #2645, spec §Contracts/Named configs).
4
+ *
5
+ * ── What this is for ─────────────────────────────────────────────────────
6
+ * Named configs used to be reachable only through `workflows configs
7
+ * create/update/duplicate/activate`. Those verbs are removed, so `config push`
8
+ * has to apply the bodies now — otherwise the capability would have been
9
+ * deleted rather than moved to TOML, which the spec's criterion 2 forbids.
10
+ *
11
+ * ── Division of labour with `applyWorkflowBody` ──────────────────────────
12
+ * The ACTIVE config's body stays where it already is: the `steps` at the top of
13
+ * `workflows/<key>.toml`, written through `applyWorkflowBody`'s
14
+ * ordering-sensitive sequence (metadata PATCH → steps → deferred `syncCallable`
15
+ * PATCH, #807). That path is deliberately untouched — a second single-object
16
+ * apply is what broke that ordering before. This module handles the OTHER named
17
+ * configs, each from its own sidecar, and then the activation.
18
+ *
19
+ * So each config body is declared exactly once: the live one at the top of the
20
+ * workflow file, every other one in `workflows/<key>.configs/<name>.toml`.
21
+ * After a pull that follows an `activeConfigName` change, the two swap roles.
22
+ *
23
+ * ── Ordering ─────────────────────────────────────────────────────────────
24
+ * Bodies first, activation last. Activating a config before writing its steps
25
+ * would put an empty or stale body into service for the width of one call.
26
+ */
27
+ import type { ApiClient } from "./api-client.js";
28
+ import type { WorkflowConfigSidecar } from "./workflow-config-sidecar.js";
29
+ export interface ApplyWorkflowConfigsOptions {
30
+ /** The workflow's configs as the server currently has them. */
31
+ serverConfigs: any[];
32
+ /** `[workflow].activeConfigName` from the TOML, when the author set one. */
33
+ activeConfigName?: string;
34
+ /** The config that is live right now, so a no-op activation is skipped. */
35
+ currentActiveConfigId?: string;
36
+ /**
37
+ * Let `activeConfigName` NAME the config that just received the workflow
38
+ * file's body, instead of requiring it to already exist.
39
+ *
40
+ * Create only. A workflow the server has just made carries one config it
41
+ * named itself ("default"), holding the body from `workflows/<key>.toml` —
42
+ * and pull never writes a sidecar for the active config, so on a fresh app
43
+ * there is nothing else `activeConfigName` could be referring to.
44
+ *
45
+ * Deliberately NOT set on update: there, an `activeConfigName` matching no
46
+ * config and no sidecar is far more likely a typo than a rename, and
47
+ * renaming the live config out from under that typo would be a silent
48
+ * mutation. Update keeps failing with the message that names the file to
49
+ * author.
50
+ */
51
+ adoptActiveConfigName?: boolean;
52
+ log?: (message: string) => void;
53
+ }
54
+ export interface ApplyWorkflowConfigsResult {
55
+ /** Config name → id, which the rest of push needs to resolve test cases. */
56
+ configIds: Map<string, string>;
57
+ /** Whether this call moved the live config. */
58
+ activated: boolean;
59
+ /** The config that is live once this call returns, when known. */
60
+ activeConfigId?: string;
61
+ }
62
+ /**
63
+ * Create or update each sidecar's config, then activate the named one.
64
+ *
65
+ * Reports whether it activated anything: activation writes the workflow
66
+ * DEFINITION (`activeConfigId`, and with it a fresh `modifiedAt`), so the
67
+ * caller's sync state is stale afterwards unless it re-reads — which is how a
68
+ * push that only switched the active config left the next one to conflict.
69
+ */
70
+ export declare function applyWorkflowConfigSidecars(client: ApiClient, appId: string, workflowId: string, sidecars: readonly WorkflowConfigSidecar[], options: ApplyWorkflowConfigsOptions): Promise<ApplyWorkflowConfigsResult>;
@@ -0,0 +1,137 @@
1
+ /**
2
+ * Apply a workflow's named config sidecars, and honor `activeConfigName`
3
+ * (issue #2645, spec §Contracts/Named configs).
4
+ *
5
+ * ── What this is for ─────────────────────────────────────────────────────
6
+ * Named configs used to be reachable only through `workflows configs
7
+ * create/update/duplicate/activate`. Those verbs are removed, so `config push`
8
+ * has to apply the bodies now — otherwise the capability would have been
9
+ * deleted rather than moved to TOML, which the spec's criterion 2 forbids.
10
+ *
11
+ * ── Division of labour with `applyWorkflowBody` ──────────────────────────
12
+ * The ACTIVE config's body stays where it already is: the `steps` at the top of
13
+ * `workflows/<key>.toml`, written through `applyWorkflowBody`'s
14
+ * ordering-sensitive sequence (metadata PATCH → steps → deferred `syncCallable`
15
+ * PATCH, #807). That path is deliberately untouched — a second single-object
16
+ * apply is what broke that ordering before. This module handles the OTHER named
17
+ * configs, each from its own sidecar, and then the activation.
18
+ *
19
+ * So each config body is declared exactly once: the live one at the top of the
20
+ * workflow file, every other one in `workflows/<key>.configs/<name>.toml`.
21
+ * After a pull that follows an `activeConfigName` change, the two swap roles.
22
+ *
23
+ * ── Ordering ─────────────────────────────────────────────────────────────
24
+ * Bodies first, activation last. Activating a config before writing its steps
25
+ * would put an empty or stale body into service for the width of one call.
26
+ */
27
+ /**
28
+ * Create or update each sidecar's config, then activate the named one.
29
+ *
30
+ * Reports whether it activated anything: activation writes the workflow
31
+ * DEFINITION (`activeConfigId`, and with it a fresh `modifiedAt`), so the
32
+ * caller's sync state is stale afterwards unless it re-reads — which is how a
33
+ * push that only switched the active config left the next one to conflict.
34
+ */
35
+ export async function applyWorkflowConfigSidecars(client, appId, workflowId, sidecars, options) {
36
+ const { serverConfigs, activeConfigName, currentActiveConfigId, adoptActiveConfigName, } = options;
37
+ const log = options.log ?? (() => { });
38
+ const nameToId = new Map();
39
+ for (const config of serverConfigs ?? []) {
40
+ if (config?.configName && config?.configId) {
41
+ nameToId.set(config.configName, config.configId);
42
+ }
43
+ }
44
+ // The workflow file's own `[[steps]]` IS the active config's body — pull
45
+ // deliberately does not repeat it as a sidecar
46
+ // (`workflowConfigSidecarsToWrite`). So when `activeConfigName` names no
47
+ // config the server knows, the config that just received that body is the
48
+ // one the file is naming, and it takes the authored name.
49
+ //
50
+ // Without this, a pulled tree could not be pushed back: the server names a
51
+ // new workflow's first config "default" (`admin-api.ts`), so any workflow
52
+ // whose active config is called something else pulled to a tree whose
53
+ // `activeConfigName` matched no sidecar and no server config — push then
54
+ // refused a file pull had just written. This runs BEFORE the sidecar loop so
55
+ // a `default.toml` sidecar creates its own config rather than overwriting
56
+ // the active body on its way past.
57
+ if (adoptActiveConfigName &&
58
+ activeConfigName &&
59
+ !nameToId.has(activeConfigName) &&
60
+ currentActiveConfigId) {
61
+ await client.updateWorkflowConfig(appId, workflowId, currentActiveConfigId, { configName: activeConfigName });
62
+ // The name it had is now free, and the map must say so. Leaving the old
63
+ // entry pointing at this id makes the sidecar of that name look like an
64
+ // existing config: the loop below UPDATES the just-renamed one instead of
65
+ // creating its own, both sidecars collapse onto a single config, and
66
+ // whichever is applied last silently wins. A fresh cross-app push of a
67
+ // two-config workflow landed exactly one config because of this.
68
+ for (const [name, id] of nameToId) {
69
+ if (id === currentActiveConfigId)
70
+ nameToId.delete(name);
71
+ }
72
+ nameToId.set(activeConfigName, currentActiveConfigId);
73
+ log(` Named the active config "${activeConfigName}"`);
74
+ }
75
+ for (const sidecar of sidecars) {
76
+ const existingId = nameToId.get(sidecar.name);
77
+ if (existingId) {
78
+ // In place: the config keeps its id, so anything pointing at it (a test
79
+ // case, a running trigger) keeps working across the edit.
80
+ //
81
+ // `description` and `status` travel with the steps: they are in the file,
82
+ // so the file owns them (#1567's convention — an omitted `description`
83
+ // sends `null` and clears, since that is what the round-trip means). An
84
+ // update that sent steps alone silently ignored half of what the author
85
+ // wrote, which is the same invisibility the flag removal was about.
86
+ await client.updateWorkflowConfig(appId, workflowId, existingId, {
87
+ steps: sidecar.steps,
88
+ expressions: sidecar.expressions,
89
+ description: sidecar.description ?? null,
90
+ // A defaulted enum, so there is no "clear": an absent key leaves the
91
+ // server's value alone rather than inventing one.
92
+ status: sidecar.status,
93
+ });
94
+ log(` Updated config "${sidecar.name}"`);
95
+ }
96
+ else {
97
+ const created = await client.createWorkflowConfig(appId, workflowId, {
98
+ configName: sidecar.name,
99
+ description: sidecar.description,
100
+ steps: sidecar.steps,
101
+ expressions: sidecar.expressions,
102
+ });
103
+ if (created?.configId)
104
+ nameToId.set(sidecar.name, created.configId);
105
+ log(` Created config "${sidecar.name}"`);
106
+ // Create always mints an ACTIVE config (admin-api.ts, createWorkflowConfig
107
+ // hard-codes it), so a sidecar that says otherwise needs the follow-up
108
+ // write or its `status` would be silently dropped on a fresh app.
109
+ if (created?.configId && sidecar.status && sidecar.status !== "active") {
110
+ await client.updateWorkflowConfig(appId, workflowId, created.configId, {
111
+ status: sidecar.status,
112
+ });
113
+ }
114
+ }
115
+ }
116
+ let activated = false;
117
+ let activeConfigId = currentActiveConfigId;
118
+ if (activeConfigName) {
119
+ const targetId = nameToId.get(activeConfigName);
120
+ if (!targetId) {
121
+ // Leaving the old config live would mean the committed file says one
122
+ // config is running and another is — the exact drift this issue removes.
123
+ // A typo has to stop the push, not be absorbed by it.
124
+ throw new Error(`activeConfigName "${activeConfigName}" names no configuration. ` +
125
+ `Author it at workflows/<key>.configs/${activeConfigName}.toml, or ` +
126
+ `correct the name in workflows/<key>.toml.`);
127
+ }
128
+ if (targetId !== currentActiveConfigId) {
129
+ await client.activateWorkflowConfig(appId, workflowId, targetId);
130
+ log(` Activated config "${activeConfigName}"`);
131
+ activated = true;
132
+ }
133
+ activeConfigId = targetId;
134
+ }
135
+ return { configIds: nameToId, activated, activeConfigId };
136
+ }
137
+ //# sourceMappingURL=workflow-config-apply.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-config-apply.js","sourceRoot":"","sources":["../../../src/lib/workflow-config-apply.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,63 @@
1
+ /**
2
+ * Named workflow configs as files (issue #2645, spec §Contracts/Named configs).
3
+ *
4
+ * A workflow's named configurations used to reach the server only through
5
+ * `workflows configs create/update/duplicate/activate` — verbs, not files. That
6
+ * made the live body of a running workflow invisible to the repo and to review,
7
+ * which is precisely the failure #1976 records and the reason this issue exists.
8
+ * The design-gate decision was "TOML wins": each config body is a file at
9
+ * `workflows/<key>.configs/<name>.toml`, and `activeConfigName` in
10
+ * `workflows/<key>.toml` names the live one.
11
+ *
12
+ * The layout mirrors the `<key>.tests/` sidecar convention the sync tree
13
+ * already uses, so there is one directory idiom rather than two.
14
+ *
15
+ * workflows/order-intake.toml # the workflow, incl. activeConfigName
16
+ * workflows/order-intake.configs/v2.toml # a named config body
17
+ * workflows/order-intake.tests/*.toml # test cases (pre-existing)
18
+ *
19
+ * File shape:
20
+ *
21
+ * [config]
22
+ * description = "second cut"
23
+ * status = "active"
24
+ *
25
+ * [[steps]]
26
+ * id = "greet"
27
+ * kind = "noop"
28
+ *
29
+ * [expr.cel]
30
+ * ready = "input.ok == true"
31
+ *
32
+ * The config's NAME is the file name and is deliberately not restated inside
33
+ * the file: a second declaration would be a second thing to change and a
34
+ * mismatch to adjudicate, which is the shape of problem this issue removes.
35
+ */
36
+ /** Directory holding a workflow's named config bodies. */
37
+ export declare function workflowConfigsDir(configDir: string, key: string): string;
38
+ /** The config name a sidecar file declares — its base name. */
39
+ export declare function workflowConfigNameFromFile(file: string): string;
40
+ /** A named config body, as authored on disk. */
41
+ export interface WorkflowConfigSidecar {
42
+ name: string;
43
+ description?: string;
44
+ status?: string;
45
+ /** Always an array once parsed: an empty body is a real, pushable state. */
46
+ steps: any[];
47
+ /** `[expr.cel]` named guards travelling with these steps (#1614). */
48
+ expressions?: {
49
+ cel: Record<string, string>;
50
+ };
51
+ }
52
+ /** Emit a server config record as its sidecar file body. */
53
+ export declare function serializeWorkflowConfigSidecar(config: any): string;
54
+ /** Read a parsed sidecar back into the body `config push` applies. */
55
+ export declare function parseWorkflowConfigSidecar(name: string, tomlData: any): WorkflowConfigSidecar;
56
+ /**
57
+ * Every named config authored for a workflow, in file-name order.
58
+ *
59
+ * An absent directory returns an empty list rather than throwing: a workflow
60
+ * with no sidecars is the ordinary single-config case, where the body is the
61
+ * `steps` in `workflows/<key>.toml`.
62
+ */
63
+ export declare function readWorkflowConfigSidecars(configDir: string, key: string, readToml?: (path: string) => any): WorkflowConfigSidecar[];
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Named workflow configs as files (issue #2645, spec §Contracts/Named configs).
3
+ *
4
+ * A workflow's named configurations used to reach the server only through
5
+ * `workflows configs create/update/duplicate/activate` — verbs, not files. That
6
+ * made the live body of a running workflow invisible to the repo and to review,
7
+ * which is precisely the failure #1976 records and the reason this issue exists.
8
+ * The design-gate decision was "TOML wins": each config body is a file at
9
+ * `workflows/<key>.configs/<name>.toml`, and `activeConfigName` in
10
+ * `workflows/<key>.toml` names the live one.
11
+ *
12
+ * The layout mirrors the `<key>.tests/` sidecar convention the sync tree
13
+ * already uses, so there is one directory idiom rather than two.
14
+ *
15
+ * workflows/order-intake.toml # the workflow, incl. activeConfigName
16
+ * workflows/order-intake.configs/v2.toml # a named config body
17
+ * workflows/order-intake.tests/*.toml # test cases (pre-existing)
18
+ *
19
+ * File shape:
20
+ *
21
+ * [config]
22
+ * description = "second cut"
23
+ * status = "active"
24
+ *
25
+ * [[steps]]
26
+ * id = "greet"
27
+ * kind = "noop"
28
+ *
29
+ * [expr.cel]
30
+ * ready = "input.ok == true"
31
+ *
32
+ * The config's NAME is the file name and is deliberately not restated inside
33
+ * the file: a second declaration would be a second thing to change and a
34
+ * mismatch to adjudicate, which is the shape of problem this issue removes.
35
+ */
36
+ import { existsSync, readdirSync, readFileSync } from "fs";
37
+ import { basename, join } from "path";
38
+ import { parseConfigToml, stringifyConfigToml } from "./config-toml.js";
39
+ /** Directory holding a workflow's named config bodies. */
40
+ export function workflowConfigsDir(configDir, key) {
41
+ return join(configDir, "workflows", `${key}.configs`);
42
+ }
43
+ /** The config name a sidecar file declares — its base name. */
44
+ export function workflowConfigNameFromFile(file) {
45
+ return basename(file, ".toml");
46
+ }
47
+ /** Emit a server config record as its sidecar file body. */
48
+ export function serializeWorkflowConfigSidecar(config) {
49
+ const cel = config?.expressions?.cel && typeof config.expressions.cel === "object"
50
+ ? config.expressions.cel
51
+ : undefined;
52
+ const data = {
53
+ config: {
54
+ description: config?.description || undefined,
55
+ status: config?.status || undefined,
56
+ },
57
+ steps: Array.isArray(config?.steps) ? config.steps : [],
58
+ ...(cel && Object.keys(cel).length > 0 ? { expr: { cel } } : {}),
59
+ };
60
+ for (const k of Object.keys(data.config)) {
61
+ if (data.config[k] === undefined)
62
+ delete data.config[k];
63
+ }
64
+ return stringifyConfigToml(data);
65
+ }
66
+ /** Read a parsed sidecar back into the body `config push` applies. */
67
+ export function parseWorkflowConfigSidecar(name, tomlData) {
68
+ const config = tomlData?.config || {};
69
+ const cel = tomlData?.expr?.cel && typeof tomlData.expr.cel === "object"
70
+ ? tomlData.expr.cel
71
+ : undefined;
72
+ return {
73
+ name,
74
+ description: config.description ?? undefined,
75
+ status: config.status ?? undefined,
76
+ steps: Array.isArray(tomlData?.steps) ? tomlData.steps : [],
77
+ ...(cel ? { expressions: { cel } } : {}),
78
+ };
79
+ }
80
+ /**
81
+ * Every named config authored for a workflow, in file-name order.
82
+ *
83
+ * An absent directory returns an empty list rather than throwing: a workflow
84
+ * with no sidecars is the ordinary single-config case, where the body is the
85
+ * `steps` in `workflows/<key>.toml`.
86
+ */
87
+ export function readWorkflowConfigSidecars(configDir, key, readToml = (p) => parseConfigToml(readFileSync(p, "utf-8"))) {
88
+ const dir = workflowConfigsDir(configDir, key);
89
+ if (!existsSync(dir))
90
+ return [];
91
+ return readdirSync(dir)
92
+ .filter((f) => f.endsWith(".toml"))
93
+ .sort()
94
+ .map((f) => parseWorkflowConfigSidecar(workflowConfigNameFromFile(f), readToml(join(dir, f))));
95
+ }
96
+ //# sourceMappingURL=workflow-config-sidecar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-config-sidecar.js","sourceRoot":"","sources":["../../../src/lib/workflow-config-sidecar.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * The `[workflow]` fields whose model default the CLI has to know (#2743).
3
+ *
4
+ * Two call sites need the same map, and they must not drift:
5
+ * - `buildWorkflowPayloadFromToml` (update mode) sends the CONCRETE default
6
+ * for a field the TOML omits, so the push converges the server instead of
7
+ * preserving the old value. It deliberately does NOT send `null` for these:
8
+ * a server predating #2743 coerces a queue-limit `null` to `0`
9
+ * (`Number(null)`), so an explicit default is the only value that converges
10
+ * identically on both.
11
+ * - `normalizeWorkflowTomlDefaults` (`config diff`) fills the same defaults into
12
+ * the local side, so a hand-authored file that omits them compares equal to
13
+ * a server holding the defaults — and unequal to one holding a real
14
+ * override.
15
+ *
16
+ * These mirror `models.yaml` (`WorkflowDefinition`): `perUserMaxRunning=4`,
17
+ * `perUserMaxQueued=100`, `perAppMaxRunning=25`, `perAppMaxQueued=10000`,
18
+ * `queueTtlSeconds=43200`, `dequeueOrder="fifo"`, `requiresClientApply=true`,
19
+ * `syncCallable=false`.
20
+ *
21
+ * This is deliberately NOT a generic `models.yaml` default importer — the model
22
+ * carries defaults the serializer never writes. Only the serializer-emitted
23
+ * surface with a concrete default belongs here, because the remote side of a
24
+ * diff is hashed via `serializeWorkflow`. Emit-when-set fields whose GET value
25
+ * is null/empty when unset (`description`, `accessRule`, `runAs`,
26
+ * `capabilities`, the schemas, `lock`) have no default: push sends `null` for
27
+ * them and both sides of the diff simply omit the key.
28
+ */
29
+ export declare const WORKFLOW_MODEL_DEFAULTS: Record<string, unknown>;
@@ -0,0 +1,41 @@
1
+ /**
2
+ * The `[workflow]` fields whose model default the CLI has to know (#2743).
3
+ *
4
+ * Two call sites need the same map, and they must not drift:
5
+ * - `buildWorkflowPayloadFromToml` (update mode) sends the CONCRETE default
6
+ * for a field the TOML omits, so the push converges the server instead of
7
+ * preserving the old value. It deliberately does NOT send `null` for these:
8
+ * a server predating #2743 coerces a queue-limit `null` to `0`
9
+ * (`Number(null)`), so an explicit default is the only value that converges
10
+ * identically on both.
11
+ * - `normalizeWorkflowTomlDefaults` (`config diff`) fills the same defaults into
12
+ * the local side, so a hand-authored file that omits them compares equal to
13
+ * a server holding the defaults — and unequal to one holding a real
14
+ * override.
15
+ *
16
+ * These mirror `models.yaml` (`WorkflowDefinition`): `perUserMaxRunning=4`,
17
+ * `perUserMaxQueued=100`, `perAppMaxRunning=25`, `perAppMaxQueued=10000`,
18
+ * `queueTtlSeconds=43200`, `dequeueOrder="fifo"`, `requiresClientApply=true`,
19
+ * `syncCallable=false`.
20
+ *
21
+ * This is deliberately NOT a generic `models.yaml` default importer — the model
22
+ * carries defaults the serializer never writes. Only the serializer-emitted
23
+ * surface with a concrete default belongs here, because the remote side of a
24
+ * diff is hashed via `serializeWorkflow`. Emit-when-set fields whose GET value
25
+ * is null/empty when unset (`description`, `accessRule`, `runAs`,
26
+ * `capabilities`, the schemas, `lock`) have no default: push sends `null` for
27
+ * them and both sides of the diff simply omit the key.
28
+ */
29
+ export const WORKFLOW_MODEL_DEFAULTS = {
30
+ // #2803 — no `status`. Availability is server-owned and off the config wire,
31
+ // so the file has no status line for a diff to normalize or a push to send.
32
+ perUserMaxRunning: 4,
33
+ perUserMaxQueued: 100,
34
+ perAppMaxRunning: 25,
35
+ perAppMaxQueued: 10000,
36
+ queueTtlSeconds: 43200,
37
+ dequeueOrder: "fifo",
38
+ requiresClientApply: true,
39
+ syncCallable: false,
40
+ };
41
+ //# sourceMappingURL=workflow-defaults.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-defaults.js","sourceRoot":"","sources":["../../../src/lib/workflow-defaults.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAA4B;IAC9D,6EAA6E;IAC7E,4EAA4E;IAC5E,iBAAiB,EAAE,CAAC;IACpB,gBAAgB,EAAE,GAAG;IACrB,gBAAgB,EAAE,EAAE;IACpB,eAAe,EAAE,KAAK;IACtB,eAAe,EAAE,KAAK;IACtB,YAAY,EAAE,MAAM;IACpB,mBAAmB,EAAE,IAAI;IACzB,YAAY,EAAE,KAAK;CACpB,CAAC"}
@@ -14,6 +14,29 @@
14
14
  * - Unique step ids validated post-expansion; collisions name both
15
15
  * locations in the error message.
16
16
  *
17
+ * Parameterized includes (#1448):
18
+ * - Two include forms are supported. The bare form
19
+ * `include = ["name", ...]` (an array of fragment-name strings) is
20
+ * unchanged. The parameterized form uses `[[include]]` array-of-tables:
21
+ *
22
+ * [[include]]
23
+ * fragment = "lifecycle-email" # required
24
+ * runIf = "input.type == 'x'" # optional; ANDed onto each step
25
+ * with = { id = "...", subject = "..." } # params, exposed as {{ params.* }}
26
+ *
27
+ * - A file uses one form or the other — mixing string and table entries in a
28
+ * single `include` array is an error.
29
+ * - `{{ params.* }}` references inside the fragment's steps are substituted
30
+ * at EXPAND time from the include's `with` table. A whole-string
31
+ * `{{ params.x }}` splices the raw typed value (number/bool/table);
32
+ * an embedded `{{ params.x }}` inside a larger string stringifies it.
33
+ * A missing param is a hard error. Only the `params.` namespace is
34
+ * touched — every other `{{ ... }}` template passes through to the server
35
+ * verbatim, and `params.` never survives into the expanded output.
36
+ * - The include-level `runIf` (CEL) is ANDed onto every expanded step:
37
+ * both present → `(<includeRunIf>) && (<stepRunIf>)`; one present → that
38
+ * one; neither → no runIf.
39
+ *
17
40
  * Wiring: `parseTomlFile()` in `cli/src/commands/sync.ts` calls
18
41
  * `expandWorkflowTomlData()` after parsing. All 24 push parse sites in
19
42
  * sync.ts route through that single seam, so the expansion is uniform.