@snowcone-app/sdk 0.1.10 → 0.1.11
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/CHANGELOG.md +2 -2
- package/README.md +7 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -127,8 +127,8 @@ See [ROADMAP.md](../../ROADMAP.md) for planned features and timeline.
|
|
|
127
127
|
|
|
128
128
|
## Support
|
|
129
129
|
|
|
130
|
-
- **Issues**: [GitHub Issues](https://github.com/
|
|
131
|
-
- **Discussions**: [GitHub Discussions](https://github.com/
|
|
130
|
+
- **Issues**: [GitHub Issues](https://github.com/snowcone-app/ui-components/issues)
|
|
131
|
+
- **Discussions**: [GitHub Discussions](https://github.com/snowcone-app/ui-components/discussions)
|
|
132
132
|
- **Docs**: [developers.snowcone.app](https://developers.snowcone.app)
|
|
133
133
|
|
|
134
134
|
---
|
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ import { config } from '@snowcone-app/sdk';
|
|
|
47
47
|
|
|
48
48
|
config({
|
|
49
49
|
endpoint: 'https://api.snowcone.app',
|
|
50
|
-
mockupUrl: 'https://
|
|
50
|
+
mockupUrl: 'https://i.snowcone.app',
|
|
51
51
|
accountId: 'your-account-id',
|
|
52
52
|
mode: 'live' // or 'mock' for development
|
|
53
53
|
});
|
|
@@ -56,7 +56,7 @@ config({
|
|
|
56
56
|
**Environment Variables (Next.js):**
|
|
57
57
|
```bash
|
|
58
58
|
NEXT_PUBLIC_MERCH_ENDPOINT=https://api.snowcone.app
|
|
59
|
-
NEXT_PUBLIC_MERCH_MOCKUP_URL=https://
|
|
59
|
+
NEXT_PUBLIC_MERCH_MOCKUP_URL=https://i.snowcone.app
|
|
60
60
|
NEXT_PUBLIC_MERCH_ACCOUNT_ID=your-account-id
|
|
61
61
|
```
|
|
62
62
|
|
|
@@ -175,18 +175,18 @@ See: [@snowcone-app/ui on npm](https://www.npmjs.com/package/@snowcone-app/ui)
|
|
|
175
175
|
|
|
176
176
|
## Examples
|
|
177
177
|
|
|
178
|
-
- [Next.js Example](https://github.com/
|
|
179
|
-
- [Basic Product Display](https://github.com/
|
|
178
|
+
- [Next.js Example](https://github.com/snowcone-app/ui-components/tree/main/examples/next-ecommerce)
|
|
179
|
+
- [Basic Product Display](https://github.com/snowcone-app/ui-components/tree/main/examples/next-ecommerce/app/demos)
|
|
180
180
|
|
|
181
181
|
## Support
|
|
182
182
|
|
|
183
|
-
- **Issues:** [GitHub Issues](https://github.com/
|
|
184
|
-
- **Discussions:** [GitHub Discussions](https://github.com/
|
|
183
|
+
- **Issues:** [GitHub Issues](https://github.com/snowcone-app/ui-components/issues)
|
|
184
|
+
- **Discussions:** [GitHub Discussions](https://github.com/snowcone-app/ui-components/discussions)
|
|
185
185
|
- **Docs:** [developers.snowcone.app](https://developers.snowcone.app)
|
|
186
186
|
|
|
187
187
|
## License
|
|
188
188
|
|
|
189
|
-
MIT © [
|
|
189
|
+
MIT © [Snowcone](https://snowcone.app)
|
|
190
190
|
|
|
191
191
|
---
|
|
192
192
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowcone-app/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Merch Javascript SDK for product mockups and print-on-demand",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"merch",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"apparel",
|
|
11
11
|
"merchandise"
|
|
12
12
|
],
|
|
13
|
-
"author": "
|
|
13
|
+
"author": "Snowcone <dev@snowcone.app>",
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/snowcone-app/ui-components.git",
|
|
18
18
|
"directory": "packages/sdk"
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://snowcone.app",
|