deepline 0.1.244 → 0.1.245

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.
@@ -5,13 +5,13 @@
5
5
  * happens at publish time: on push to main, `.github/workflows/sdk-release.yml`
6
6
  * (via `scripts/sdk-release-autobump.ts`) compares the built package against
7
7
  * the latest published npm tarball and, when the content changed, stamps the
8
- * next unpublished patch into `version` + `supportPolicy.latest` in the CI
9
- * workspace only and publishes it in the same run. That patch stamp is not
8
+ * next unpublished patch into `version` in the CI workspace only and
9
+ * publishes it in the same run. That patch stamp is not
10
10
  * committed back to main; production endpoints read npm metadata when they
11
11
  * need the newest patch-level SDK/CLI version.
12
12
  *
13
13
  * Edit THIS file by hand only for deliberate release decisions:
14
- * - minor/major version bumps (set `version` and `supportPolicy.latest`),
14
+ * - minor/major version bumps (set `version`),
15
15
  * - `apiContract` cutovers (see `docs/sdk-runtime-compatibility.md`),
16
16
  * - support-window moves (`minimumSupported` / `deprecatedBelow`).
17
17
  * The automation never touches `apiContract`, `minimumSupported`, or
@@ -36,8 +36,6 @@
36
36
  export type SdkReleaseChannel = 'latest' | 'next' | 'beta';
37
37
 
38
38
  export type SdkSupportPolicy = {
39
- /** Checked-in latest policy value; publish-time patch latest is read from npm. */
40
- latest: string;
41
39
  /**
42
40
  * Anything strictly below this returns `status: "unsupported"` from
43
41
  * `/api/v2/sdk/compat` and the CLI must hard-fail with the update command.
@@ -115,10 +113,9 @@ export const SDK_RELEASE = {
115
113
  // runtime intentionally no longer compiles at publish or launch time.
116
114
  // 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
117
115
  // deploy-time artifact migration. Play authoring now has one CJS contract.
118
- version: '0.1.244',
116
+ version: '0.1.245',
119
117
  apiContract: '2026-07-cjs-absurd-only-play-runtime-hard-cutover',
120
118
  supportPolicy: {
121
- latest: '0.1.244',
122
119
  minimumSupported: '0.1.53',
123
120
  deprecatedBelow: '0.1.219',
124
121
  commandMinimumSupported: [
package/dist/cli/index.js CHANGED
@@ -632,10 +632,9 @@ var SDK_RELEASE = {
632
632
  // runtime intentionally no longer compiles at publish or launch time.
633
633
  // 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
634
634
  // deploy-time artifact migration. Play authoring now has one CJS contract.
635
- version: "0.1.244",
635
+ version: "0.1.245",
636
636
  apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
637
637
  supportPolicy: {
638
- latest: "0.1.244",
639
638
  minimumSupported: "0.1.53",
640
639
  deprecatedBelow: "0.1.219",
641
640
  commandMinimumSupported: [
@@ -617,10 +617,9 @@ var SDK_RELEASE = {
617
617
  // runtime intentionally no longer compiles at publish or launch time.
618
618
  // 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
619
619
  // deploy-time artifact migration. Play authoring now has one CJS contract.
620
- version: "0.1.244",
620
+ version: "0.1.245",
621
621
  apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
622
622
  supportPolicy: {
623
- latest: "0.1.244",
624
623
  minimumSupported: "0.1.53",
625
624
  deprecatedBelow: "0.1.219",
626
625
  commandMinimumSupported: [
package/dist/index.js CHANGED
@@ -431,10 +431,9 @@ var SDK_RELEASE = {
431
431
  // runtime intentionally no longer compiles at publish or launch time.
432
432
  // 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
433
433
  // deploy-time artifact migration. Play authoring now has one CJS contract.
434
- version: "0.1.244",
434
+ version: "0.1.245",
435
435
  apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
436
436
  supportPolicy: {
437
- latest: "0.1.244",
438
437
  minimumSupported: "0.1.53",
439
438
  deprecatedBelow: "0.1.219",
440
439
  commandMinimumSupported: [
package/dist/index.mjs CHANGED
@@ -361,10 +361,9 @@ var SDK_RELEASE = {
361
361
  // runtime intentionally no longer compiles at publish or launch time.
362
362
  // 0.1.242 removes the retired Workers/ESM compiler, generated bundles, and
363
363
  // deploy-time artifact migration. Play authoring now has one CJS contract.
364
- version: "0.1.244",
364
+ version: "0.1.245",
365
365
  apiContract: "2026-07-cjs-absurd-only-play-runtime-hard-cutover",
366
366
  supportPolicy: {
367
- latest: "0.1.244",
368
367
  minimumSupported: "0.1.53",
369
368
  deprecatedBelow: "0.1.219",
370
369
  commandMinimumSupported: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.244",
3
+ "version": "0.1.245",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {