diff --git a/.changeset/twenty-pumas-smash.md b/.changeset/twenty-pumas-smash.md new file mode 100644 index 00000000..339aae21 --- /dev/null +++ b/.changeset/twenty-pumas-smash.md @@ -0,0 +1,5 @@ +--- +'@onehop/js': patch +--- + +Add entrypoint to deployment config diff --git a/src/rest/types/ignite.ts b/src/rest/types/ignite.ts index 0d2e26ad..4481305f 100644 --- a/src/rest/types/ignite.ts +++ b/src/rest/types/ignite.ts @@ -392,6 +392,11 @@ export type DeploymentConfig = { * This can only be used when .type is 'stateful' */ volume?: VolumeDefinition; + + /** + * Entrypoint for this deployment + */ + entrypoint?: string[]; }; /**