@boboddy/sdk 0.5.0 → 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 -20
- package/dist/contracts/artifacts.js +948 -948
- package/dist/defaults/index.js +11 -11
- package/dist/definitions/advancement-policies/index.js +11 -11
- package/dist/definitions/pipelines/index.js +947 -947
- package/dist/definitions/steps/index.js +13783 -13783
- package/dist/definitions/validation/index.js +948 -948
- package/dist/health-checks.js +950 -950
- package/dist/index.js +944 -944
- package/dist/jsonc.js +2 -2
- package/dist/opencode-mcp.js +946 -946
- package/dist/opencode-plugin.js +950 -950
- package/dist/push/index.js +13783 -13783
- package/package.json +1 -1
package/dist/defaults/index.js
CHANGED
|
@@ -338,16 +338,16 @@ async function loadPushDefaults(opts) {
|
|
|
338
338
|
return { baseUrl, projectId, accessToken };
|
|
339
339
|
}
|
|
340
340
|
export {
|
|
341
|
-
|
|
342
|
-
saveAuthProfile,
|
|
343
|
-
resolveBoboddyBaseUrl,
|
|
344
|
-
loadPushDefaults,
|
|
345
|
-
loadProjectConfig,
|
|
346
|
-
loadAuthProfile,
|
|
347
|
-
loadAuthFile,
|
|
348
|
-
isTelemetryDisabled,
|
|
349
|
-
getOrCreateAnonymousId,
|
|
350
|
-
getAuthFilePath,
|
|
341
|
+
PROJECT_CONFIG_RELATIVE_PATH,
|
|
351
342
|
deleteAuthProfile,
|
|
352
|
-
|
|
343
|
+
getAuthFilePath,
|
|
344
|
+
getOrCreateAnonymousId,
|
|
345
|
+
isTelemetryDisabled,
|
|
346
|
+
loadAuthFile,
|
|
347
|
+
loadAuthProfile,
|
|
348
|
+
loadProjectConfig,
|
|
349
|
+
loadPushDefaults,
|
|
350
|
+
resolveBoboddyBaseUrl,
|
|
351
|
+
saveAuthProfile,
|
|
352
|
+
setTelemetryDisabled
|
|
353
353
|
};
|
|
@@ -488,16 +488,16 @@ function makeAdvanceAllCtx() {
|
|
|
488
488
|
};
|
|
489
489
|
}
|
|
490
490
|
export {
|
|
491
|
-
|
|
492
|
-
serializeCohortAdvancementPolicy,
|
|
493
|
-
serializeAdvancementPolicy,
|
|
494
|
-
makeAdvanceEachCtx,
|
|
495
|
-
makeAdvanceCtx,
|
|
496
|
-
makeAdvanceAllCtx,
|
|
497
|
-
extractInlineStepSignalsListDefinitions,
|
|
498
|
-
extractInlineComputedSignals,
|
|
499
|
-
cohortAdvancementEventTypeValues,
|
|
500
|
-
branchOutcomeValues,
|
|
491
|
+
Computed,
|
|
501
492
|
Rule,
|
|
502
|
-
|
|
493
|
+
branchOutcomeValues,
|
|
494
|
+
cohortAdvancementEventTypeValues,
|
|
495
|
+
extractInlineComputedSignals,
|
|
496
|
+
extractInlineStepSignalsListDefinitions,
|
|
497
|
+
makeAdvanceAllCtx,
|
|
498
|
+
makeAdvanceCtx,
|
|
499
|
+
makeAdvanceEachCtx,
|
|
500
|
+
serializeAdvancementPolicy,
|
|
501
|
+
serializeCohortAdvancementPolicy,
|
|
502
|
+
serializeCondition
|
|
503
503
|
};
|