@revturbine/sdk 0.2.54 → 0.2.56

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.
@@ -72,4 +72,14 @@ export type { SurfaceSlotComponentProps as RTSlotProps } from './placements/Surf
72
72
  * `Playbook`.
73
73
  */
74
74
  export type { Playbook } from './generated';
75
+ /**
76
+ * Legacy alias of {@link Playbook} — the pre-plan-139 name for the same config
77
+ * artifact. Prefer `Playbook` in new code.
78
+ */
79
+ export type { Playbook as ExportedConfig } from './generated';
80
+ /**
81
+ * Legacy alias of {@link Playbook} — the original name for the same config
82
+ * artifact. Prefer `Playbook` in new code.
83
+ */
84
+ export type { Playbook as RevTurbineConfig } from './generated';
75
85
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AAGH,cAAc,YAAY,CAAC;AAG3B,cAAc,SAAS,CAAC;AAGxB,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAKxB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAK9C,OAAO,EACL,0BAA0B,EAC1B,0BAA0B,EAC1B,4BAA4B,GAC7B,MAAM,qCAAqC,CAAC;AAO7C;;;;GAIG;AACH,OAAO,EAAE,oBAAoB,IAAI,IAAI,EAAE,MAAM,mCAAmC,CAAC;AACjF,YAAY,EAAE,yBAAyB,IAAI,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAEhG;;;;GAIG;AACH,OAAO,EAAE,qBAAqB,IAAI,IAAI,EAAE,MAAM,oCAAoC,CAAC;AACnF,YAAY,EAAE,0BAA0B,IAAI,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAIlG,gFAAgF;AAChF,OAAO,EAAE,oBAAoB,IAAI,MAAM,EAAE,MAAM,mCAAmC,CAAC;AACnF,YAAY,EAAE,yBAAyB,IAAI,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAMlG;;;;;;;GAOG;AACH,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AAGH,cAAc,YAAY,CAAC;AAG3B,cAAc,SAAS,CAAC;AAGxB,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAKxB,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAK9C,OAAO,EACL,0BAA0B,EAC1B,0BAA0B,EAC1B,4BAA4B,GAC7B,MAAM,qCAAqC,CAAC;AAO7C;;;;GAIG;AACH,OAAO,EAAE,oBAAoB,IAAI,IAAI,EAAE,MAAM,mCAAmC,CAAC;AACjF,YAAY,EAAE,yBAAyB,IAAI,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAEhG;;;;GAIG;AACH,OAAO,EAAE,qBAAqB,IAAI,IAAI,EAAE,MAAM,oCAAoC,CAAC;AACnF,YAAY,EAAE,0BAA0B,IAAI,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAIlG,gFAAgF;AAChF,OAAO,EAAE,oBAAoB,IAAI,MAAM,EAAE,MAAM,mCAAmC,CAAC;AACnF,YAAY,EAAE,yBAAyB,IAAI,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAWlG;;;;;;;GAOG;AACH,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAC5C;;;GAGG;AACH,YAAY,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,aAAa,CAAC;AAC9D;;;GAGG;AACH,YAAY,EAAE,QAAQ,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revturbine/sdk",
3
- "version": "0.2.54",
3
+ "version": "0.2.56",
4
4
  "description": "RevTurbine customer-facing SDK — placement decisioning, entitlement checks, and usage tracking.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.12.0",
@@ -10,11 +10,11 @@
10
10
  "exports": {
11
11
  ".": {
12
12
  "import": "./dist/index.js",
13
- "types": "./dist/types/web-sdk/index.d.ts"
13
+ "types": "./dist/index.d.ts"
14
14
  },
15
15
  "./headless": {
16
16
  "import": "./dist/headless.js",
17
- "types": "./dist/types/web-sdk/headless.d.ts"
17
+ "types": "./dist/headless.d.ts"
18
18
  },
19
19
  "./source": "./index.ts",
20
20
  "./source/headless": "./headless.ts"
@@ -35,13 +35,15 @@
35
35
  }
36
36
  },
37
37
  "devDependencies": {
38
- "@revt-eng/core": "0.1.153",
39
- "@revt-eng/schema": "0.1.153",
38
+ "@revt-eng/core": "0.1.156",
39
+ "@revt-eng/schema": "0.1.156",
40
40
  "@revt-eng/schema-external": "0.1.142",
41
41
  "@types/react": "^19.2.17",
42
42
  "@types/react-dom": "^19.2.3",
43
43
  "openapi-fetch": "^0.17.0",
44
44
  "playwright": "^1.61.1",
45
+ "rollup": "^4.62.4",
46
+ "rollup-plugin-dts": "^6.5.1",
45
47
  "tsup": "^8.5.1",
46
48
  "typescript": "^6.0.3"
47
49
  },
@@ -54,6 +56,9 @@
54
56
  "url": "git+https://github.com/revt-eng/revturbine-sdk.git"
55
57
  },
56
58
  "license": "MIT",
59
+ "dependencies": {
60
+ "zod": "4.4.3"
61
+ },
57
62
  "homepage": "https://revt-eng.github.io/revturbine-sdk/",
58
63
  "bugs": {
59
64
  "url": "https://github.com/revt-eng/revturbine-sdk/issues"