@replohq/sdk 0.13.0 → 0.14.0
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/_vendor/replo-utils/lib/json.mjs +2 -42
- package/_vendor/replo-utils/lib/misc.mjs +3 -0
- package/_vendor/schemas/contentCollection.d.ts +231 -0
- package/_vendor/schemas/contentCollection.mjs +2 -0
- package/_vendor/schemas/contentEntry.d.ts +53 -0
- package/_vendor/schemas/contentEntry.mjs +3 -0
- package/_vendor/schemas/contentFrontmatter.d.ts +18 -0
- package/_vendor/schemas/contentManifest.d.ts +44 -0
- package/_vendor/schemas/contentManifest.mjs +197 -0
- package/_vendor/schemas/money.mjs +2 -0
- package/_vendor/schemas/routing/locale.mjs +2 -0
- package/_vendor/schemas/routing/rules.mjs +2 -0
- package/chunk-AL3F36PH.mjs +1514 -0
- package/chunk-GV5FY7ZZ.mjs +89 -0
- package/chunk-I23U2PUI.mjs +151 -0
- package/chunk-IQ5GRTXO.mjs +182 -0
- package/chunk-VKO7P3ED.mjs +41 -0
- package/content.d.ts +126 -0
- package/content.js +594 -0
- package/content.js.map +7 -0
- package/lib/buildMetadata.js +3 -3
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@replohq/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"reploBuild": {
|
|
5
5
|
"packageName": "@replohq/sdk",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.14.0",
|
|
7
7
|
"branch": "HEAD",
|
|
8
|
-
"commit": "
|
|
9
|
-
"builtAt": "2026-08-
|
|
8
|
+
"commit": "417543dc4cd3b28bb31df939f348125643aa08fa",
|
|
9
|
+
"builtAt": "2026-08-26T22:26:21.043Z"
|
|
10
10
|
},
|
|
11
11
|
"description": "Replo SDK — cart, analytics, and data loaders for agent-built Next.js sites.",
|
|
12
12
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -205,6 +205,10 @@
|
|
|
205
205
|
"types": "./orders/order-status-schema.d.ts",
|
|
206
206
|
"default": "./orders/order-status-schema.js"
|
|
207
207
|
},
|
|
208
|
+
"./content": {
|
|
209
|
+
"types": "./content.d.ts",
|
|
210
|
+
"default": "./content.js"
|
|
211
|
+
},
|
|
208
212
|
"./next/config": {
|
|
209
213
|
"types": "./next/config.d.ts",
|
|
210
214
|
"default": "./next/config.js"
|
|
@@ -242,8 +246,12 @@
|
|
|
242
246
|
"dependencies": {
|
|
243
247
|
"@formatjs/intl-localematcher": "^0.8.13",
|
|
244
248
|
"negotiator": "^1.0.0",
|
|
249
|
+
"react-markdown": "^9.1.0",
|
|
250
|
+
"remark-gfm": "^4.0.1",
|
|
251
|
+
"server-only": "^0.0.1",
|
|
245
252
|
"tiny-jsonc": "^1.0.2",
|
|
246
253
|
"uuid": "^11.1.0",
|
|
254
|
+
"yaml": "^2.8.3",
|
|
247
255
|
"zod": "^4.3.6"
|
|
248
256
|
},
|
|
249
257
|
"peerDependencies": {
|