@proveanything/smartlinks 1.3.1 → 1.3.2
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/README.md +13 -4
- package/dist/API_SUMMARY.md +3230 -0
- package/dist/i18n.md +287 -0
- package/dist/liquid-templates.md +484 -0
- package/dist/realtime.md +764 -0
- package/dist/theme-defaults.md +100 -0
- package/dist/theme.system.md +338 -0
- package/dist/widgets.md +510 -0
- package/docs/API_SUMMARY.md +3230 -0
- package/docs/i18n.md +287 -0
- package/docs/liquid-templates.md +484 -0
- package/docs/realtime.md +764 -0
- package/docs/theme-defaults.md +100 -0
- package/docs/theme.system.md +338 -0
- package/docs/widgets.md +510 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -151,9 +151,7 @@ try {
|
|
|
151
151
|
- `error.isRateLimited()` - 429
|
|
152
152
|
- `error.toJSON()` - Serializable object for logging
|
|
153
153
|
|
|
154
|
-
For comprehensive error handling examples and migration guidance, see
|
|
155
|
-
- [examples/error-handling-demo.ts](examples/error-handling-demo.ts) - Complete error handling patterns
|
|
156
|
-
- [docs/ERROR_HANDLING_MIGRATION.md](docs/ERROR_HANDLING_MIGRATION.md) - Migration guide from old error handling
|
|
154
|
+
For comprehensive error handling examples and migration guidance, see [examples/error-handling-demo.ts](examples/error-handling-demo.ts).
|
|
157
155
|
|
|
158
156
|
## Common tasks
|
|
159
157
|
|
|
@@ -556,7 +554,18 @@ setExtraHeaders({ 'X-Debug': '1' })
|
|
|
556
554
|
|
|
557
555
|
Explore every function, parameter, and type here:
|
|
558
556
|
|
|
559
|
-
-
|
|
557
|
+
- [API_SUMMARY.md](docs/API_SUMMARY.md) - Complete API reference
|
|
558
|
+
|
|
559
|
+
## Additional Documentation
|
|
560
|
+
|
|
561
|
+
The SDK includes comprehensive guides for advanced features:
|
|
562
|
+
|
|
563
|
+
- **[Liquid Templates](docs/liquid-templates.md)** - Dynamic templating for emails and notifications with personalized data
|
|
564
|
+
- **[Real-Time Messaging](docs/realtime.md)** - Ably integration for live chat, presence, and real-time updates
|
|
565
|
+
- **[Theme System](docs/theme.system.md)** - Dynamic theming for iframe apps with CSS variables and postMessage
|
|
566
|
+
- **[Theme Defaults](docs/theme-defaults.md)** - Default theme configuration reference
|
|
567
|
+
- **[Widgets](docs/widgets.md)** - React widget system for embeddable components
|
|
568
|
+
- **[Internationalization](docs/i18n.md)** - Multi-language support and localization
|
|
560
569
|
|
|
561
570
|
## Requirements
|
|
562
571
|
|