@boboddy/sdk 0.5.2 → 0.5.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.
- package/dist/definitions/steps/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/push/index.js +1 -1
- package/package.json +1 -1
|
@@ -13731,7 +13731,7 @@ var buildStepDefinitionsClient = (stepDefinitions) => {
|
|
|
13731
13731
|
key: spec.key,
|
|
13732
13732
|
name: spec.name,
|
|
13733
13733
|
description: spec.description,
|
|
13734
|
-
prompt: spec.prompt ??
|
|
13734
|
+
prompt: spec.prompt ?? null,
|
|
13735
13735
|
version: spec.version,
|
|
13736
13736
|
kind: spec.kind,
|
|
13737
13737
|
entrypointJson: spec.entrypointJson ?? null,
|
package/dist/index.js
CHANGED
|
@@ -16195,7 +16195,7 @@ var buildStepDefinitionsClient = (stepDefinitions) => {
|
|
|
16195
16195
|
key: spec.key,
|
|
16196
16196
|
name: spec.name,
|
|
16197
16197
|
description: spec.description,
|
|
16198
|
-
prompt: spec.prompt ??
|
|
16198
|
+
prompt: spec.prompt ?? null,
|
|
16199
16199
|
version: spec.version,
|
|
16200
16200
|
kind: spec.kind,
|
|
16201
16201
|
entrypointJson: spec.entrypointJson ?? null,
|
package/dist/push/index.js
CHANGED
|
@@ -13731,7 +13731,7 @@ var buildStepDefinitionsClient = (stepDefinitions) => {
|
|
|
13731
13731
|
key: spec.key,
|
|
13732
13732
|
name: spec.name,
|
|
13733
13733
|
description: spec.description,
|
|
13734
|
-
prompt: spec.prompt ??
|
|
13734
|
+
prompt: spec.prompt ?? null,
|
|
13735
13735
|
version: spec.version,
|
|
13736
13736
|
kind: spec.kind,
|
|
13737
13737
|
entrypointJson: spec.entrypointJson ?? null,
|