deepline 0.1.49 → 0.1.50
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/cli/index.js +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/repo/sdk/src/play.ts +1 -1
- package/dist/repo/sdk/src/version.ts +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/cli/index.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1541,7 +1541,7 @@ declare class DeeplineClient {
|
|
|
1541
1541
|
}>;
|
|
1542
1542
|
}
|
|
1543
1543
|
|
|
1544
|
-
declare const SDK_VERSION = "0.1.
|
|
1544
|
+
declare const SDK_VERSION = "0.1.50";
|
|
1545
1545
|
declare const SDK_API_CONTRACT = "2026-05-stripe-promo-checkout";
|
|
1546
1546
|
|
|
1547
1547
|
/**
|
|
@@ -2051,7 +2051,7 @@ interface DeeplinePlayRuntimeContext {
|
|
|
2051
2051
|
staleAfterSeconds?: number;
|
|
2052
2052
|
}): Promise<ToolExecuteResult<TOutput>>;
|
|
2053
2053
|
};
|
|
2054
|
-
runSteps<TInput extends Record<string, unknown>, TOutput>(program: StepProgram<TInput,
|
|
2054
|
+
runSteps<TInput extends Record<string, unknown>, TOutput>(program: StepProgram<TInput, unknown, TOutput>, input: TInput, options?: {
|
|
2055
2055
|
description?: string;
|
|
2056
2056
|
}): Promise<TOutput>;
|
|
2057
2057
|
step<T>(id: string, run: () => T | Promise<T>, options?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1541,7 +1541,7 @@ declare class DeeplineClient {
|
|
|
1541
1541
|
}>;
|
|
1542
1542
|
}
|
|
1543
1543
|
|
|
1544
|
-
declare const SDK_VERSION = "0.1.
|
|
1544
|
+
declare const SDK_VERSION = "0.1.50";
|
|
1545
1545
|
declare const SDK_API_CONTRACT = "2026-05-stripe-promo-checkout";
|
|
1546
1546
|
|
|
1547
1547
|
/**
|
|
@@ -2051,7 +2051,7 @@ interface DeeplinePlayRuntimeContext {
|
|
|
2051
2051
|
staleAfterSeconds?: number;
|
|
2052
2052
|
}): Promise<ToolExecuteResult<TOutput>>;
|
|
2053
2053
|
};
|
|
2054
|
-
runSteps<TInput extends Record<string, unknown>, TOutput>(program: StepProgram<TInput,
|
|
2054
|
+
runSteps<TInput extends Record<string, unknown>, TOutput>(program: StepProgram<TInput, unknown, TOutput>, input: TInput, options?: {
|
|
2055
2055
|
description?: string;
|
|
2056
2056
|
}): Promise<TOutput>;
|
|
2057
2057
|
step<T>(id: string, run: () => T | Promise<T>, options?: {
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -415,7 +415,7 @@ export interface DeeplinePlayRuntimeContext {
|
|
|
415
415
|
): Promise<ToolExecuteResult<TOutput>>;
|
|
416
416
|
};
|
|
417
417
|
runSteps<TInput extends Record<string, unknown>, TOutput>(
|
|
418
|
-
program: StepProgram<TInput,
|
|
418
|
+
program: StepProgram<TInput, unknown, TOutput>,
|
|
419
419
|
input: TInput,
|
|
420
420
|
options?: { description?: string },
|
|
421
421
|
): Promise<TOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const SDK_VERSION = "0.1.
|
|
1
|
+
export const SDK_VERSION = "0.1.50";
|
|
2
2
|
export const SDK_API_CONTRACT = "2026-05-stripe-promo-checkout";
|