@boboddy/sdk 0.4.3 → 0.5.1
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.
- package/dist/boboddy-config-parser.js +2 -2
- package/dist/client.js +20 -43
- package/dist/contracts/artifacts.js +948 -948
- package/dist/defaults/index.js +11 -11
- package/dist/definitions/advancement-policies/define-advancement-policy.d.ts +30 -5
- package/dist/definitions/advancement-policies/index.js +21 -11
- package/dist/definitions/pipelines/bindings.d.ts +62 -0
- package/dist/definitions/pipelines/builder-helpers.d.ts +19 -106
- package/dist/definitions/pipelines/chain-graph.d.ts +15 -14
- package/dist/definitions/pipelines/compile-node-definitions.d.ts +27 -0
- package/dist/definitions/pipelines/define-pipeline.d.ts +101 -154
- package/dist/definitions/pipelines/index.d.ts +0 -2
- package/dist/definitions/pipelines/index.js +1457 -1602
- package/dist/definitions/pipelines/node-input-ctx.d.ts +31 -0
- package/dist/definitions/pipelines/pipeline-definitions-client.d.ts +18 -4
- package/dist/definitions/pipelines/pipeline-states.d.ts +104 -0
- package/dist/definitions/steps/define-code-step.d.ts +50 -0
- package/dist/definitions/steps/define-step.d.ts +22 -1
- package/dist/definitions/steps/index.d.ts +1 -0
- package/dist/definitions/steps/index.js +13782 -13765
- package/dist/definitions/steps/step-definitions-client.d.ts +29 -5
- package/dist/definitions/validation/index.js +15152 -98
- package/dist/definitions/validation/validate-definition-specs.d.ts +19 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/sdk.gen.d.ts +1 -4
- package/dist/generated/types.gen.d.ts +296 -878
- package/dist/health-checks.js +950 -950
- package/dist/index.js +1624 -1729
- package/dist/jsonc.js +2 -2
- package/dist/opencode-mcp.js +946 -946
- package/dist/opencode-plugin.js +950 -950
- package/dist/push/collect-definitions.d.ts +40 -1
- package/dist/push/index.d.ts +2 -2
- package/dist/push/index.js +14595 -14545
- package/dist/step-execution-plane-client.d.ts +9 -4
- package/package.json +2 -2
- package/dist/definitions/pipelines/builder.d.ts +0 -80
- package/dist/definitions/pipelines/fan-out-builder.d.ts +0 -66
- package/dist/definitions/pipelines/input-accessor.d.ts +0 -25
package/dist/client.js
CHANGED
|
@@ -1093,29 +1093,6 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
1093
1093
|
unarchivePipelineDefinition(options) {
|
|
1094
1094
|
return (options.client ?? this.client).put({ url: "/api/pipeline-definitions/{pipelineDefinitionId}/unarchive", ...options });
|
|
1095
1095
|
}
|
|
1096
|
-
addPipelineStep(options) {
|
|
1097
|
-
return (options.client ?? this.client).post({
|
|
1098
|
-
url: "/api/pipeline-definitions/{pipelineDefinitionId}/steps",
|
|
1099
|
-
...options,
|
|
1100
|
-
headers: {
|
|
1101
|
-
"Content-Type": "application/json",
|
|
1102
|
-
...options.headers
|
|
1103
|
-
}
|
|
1104
|
-
});
|
|
1105
|
-
}
|
|
1106
|
-
removePipelineStep(options) {
|
|
1107
|
-
return (options.client ?? this.client).delete({ url: "/api/pipeline-definitions/{pipelineDefinitionId}/steps/{pipelineStepDefinitionId}", ...options });
|
|
1108
|
-
}
|
|
1109
|
-
updatePipelineStep(options) {
|
|
1110
|
-
return (options.client ?? this.client).put({
|
|
1111
|
-
url: "/api/pipeline-definitions/{pipelineDefinitionId}/steps/{pipelineStepDefinitionId}",
|
|
1112
|
-
...options,
|
|
1113
|
-
headers: {
|
|
1114
|
-
"Content-Type": "application/json",
|
|
1115
|
-
...options.headers
|
|
1116
|
-
}
|
|
1117
|
-
});
|
|
1118
|
-
}
|
|
1119
1096
|
setPipelineStepAdvancementPolicy(options) {
|
|
1120
1097
|
return (options.client ?? this.client).put({
|
|
1121
1098
|
url: "/api/pipeline-definitions/{pipelineDefinitionId}/steps/{pipelineStepDefinitionId}/advancement-policy",
|
|
@@ -1735,25 +1712,25 @@ function createBoboddyClient(baseUrl) {
|
|
|
1735
1712
|
return new BoboddyClient({ client: client2 });
|
|
1736
1713
|
}
|
|
1737
1714
|
export {
|
|
1738
|
-
|
|
1739
|
-
createBoboddyClient,
|
|
1740
|
-
WorkItems,
|
|
1741
|
-
WorkItemComments,
|
|
1742
|
-
WorkItemBlocks,
|
|
1743
|
-
Username,
|
|
1744
|
-
UserNotifications,
|
|
1745
|
-
StepExecutions,
|
|
1746
|
-
StepDefinitions,
|
|
1747
|
-
StepDefinitionTemplates,
|
|
1748
|
-
Projects,
|
|
1749
|
-
ProjectInvites,
|
|
1750
|
-
ProjectIntegrations,
|
|
1751
|
-
ProjectContext,
|
|
1752
|
-
PipelineExecutions,
|
|
1753
|
-
PipelineDefinitions,
|
|
1754
|
-
NotificationRules,
|
|
1755
|
-
GitHubIntegrations,
|
|
1756
|
-
BoboddyClient,
|
|
1715
|
+
Api,
|
|
1757
1716
|
Billing,
|
|
1758
|
-
|
|
1717
|
+
BoboddyClient,
|
|
1718
|
+
GitHubIntegrations,
|
|
1719
|
+
NotificationRules,
|
|
1720
|
+
PipelineDefinitions,
|
|
1721
|
+
PipelineExecutions,
|
|
1722
|
+
ProjectContext,
|
|
1723
|
+
ProjectIntegrations,
|
|
1724
|
+
ProjectInvites,
|
|
1725
|
+
Projects,
|
|
1726
|
+
StepDefinitionTemplates,
|
|
1727
|
+
StepDefinitions,
|
|
1728
|
+
StepExecutions,
|
|
1729
|
+
UserNotifications,
|
|
1730
|
+
Username,
|
|
1731
|
+
WorkItemBlocks,
|
|
1732
|
+
WorkItemComments,
|
|
1733
|
+
WorkItems,
|
|
1734
|
+
createBoboddyClient,
|
|
1735
|
+
createStepExecutionPlaneClient
|
|
1759
1736
|
};
|