@replohq/sdk 0.4.0 → 0.5.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/lib/buildMetadata.d.ts +9 -0
- package/lib/buildMetadata.js +7 -0
- package/lib/buildMetadata.js.map +7 -0
- package/package.json +12 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../lib/buildMetadata.ts"],
|
|
4
|
+
"sourcesContent": ["type BuildMetadata = {\n packageName: string;\n version: string;\n branch: string | null;\n commit: string | null;\n builtAt: string | null;\n};\n\nexport const BUILD_METADATA: BuildMetadata = {\n packageName: \"@replohq/sdk\",\n version: \"0.0.0-dev\",\n branch: null,\n commit: null,\n builtAt: null,\n};\n"],
|
|
5
|
+
"mappings": "AAQO,MAAM,iBAAgC;AAAA,EAC3C,aAAa;AAAA,EACb,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,SAAS;AACX;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@replohq/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"reploBuild": {
|
|
5
|
+
"packageName": "@replohq/sdk",
|
|
6
|
+
"version": "0.5.0",
|
|
7
|
+
"branch": "HEAD",
|
|
8
|
+
"commit": "1818d468bc1a4ba23ac3fad1b296eb8f2f94155c",
|
|
9
|
+
"builtAt": "2026-08-19T03:50:47.854Z"
|
|
10
|
+
},
|
|
4
11
|
"description": "Replo SDK — cart, analytics, and data loaders for agent-built Next.js sites.",
|
|
5
12
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
13
|
"type": "module",
|
|
@@ -66,6 +73,10 @@
|
|
|
66
73
|
"types": "./hooks/use-formatted-price.d.ts",
|
|
67
74
|
"default": "./hooks/use-formatted-price.js"
|
|
68
75
|
},
|
|
76
|
+
"./lib/buildMetadata": {
|
|
77
|
+
"types": "./lib/buildMetadata.d.ts",
|
|
78
|
+
"default": "./lib/buildMetadata.js"
|
|
79
|
+
},
|
|
69
80
|
"./analytics/analytics-provider": {
|
|
70
81
|
"types": "./analytics/analytics-provider.d.ts",
|
|
71
82
|
"default": "./analytics/analytics-provider.js"
|