@emblemvault/hustle-react 1.0.0 → 1.1.1
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/dist/browser/hustle-react.js +856 -45
- package/dist/browser/hustle-react.js.map +1 -1
- package/dist/components/index.cjs +807 -45
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +807 -45
- package/dist/components/index.js.map +1 -1
- package/dist/hooks/index.cjs +80 -14
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.cts +3 -2
- package/dist/hooks/index.d.ts +3 -2
- package/dist/hooks/index.js +80 -14
- package/dist/hooks/index.js.map +1 -1
- package/dist/index.cjs +856 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +856 -45
- package/dist/index.js.map +1 -1
- package/dist/{plugin-BUg7vMxe.d.cts → plugin-COr42J6-.d.cts} +3 -1
- package/dist/{plugin-BUg7vMxe.d.ts → plugin-COr42J6-.d.ts} +3 -1
- package/dist/plugins/index.cjs +777 -31
- package/dist/plugins/index.cjs.map +1 -1
- package/dist/plugins/index.d.cts +14 -2
- package/dist/plugins/index.d.ts +14 -2
- package/dist/plugins/index.js +777 -32
- package/dist/plugins/index.js.map +1 -1
- package/dist/providers/index.cjs +80 -14
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.js +80 -14
- package/dist/providers/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -141,7 +141,7 @@ interface HustlePlugin {
|
|
|
141
141
|
* Plugin with enabled state (stored in localStorage)
|
|
142
142
|
* Tools include executorCode for function persistence
|
|
143
143
|
*
|
|
144
|
-
*
|
|
144
|
+
* Security: Use pluginSecurity utilities to sign and verify.
|
|
145
145
|
*/
|
|
146
146
|
interface StoredPlugin {
|
|
147
147
|
/** Unique plugin identifier */
|
|
@@ -158,6 +158,8 @@ interface StoredPlugin {
|
|
|
158
158
|
enabled: boolean;
|
|
159
159
|
/** Timestamp when plugin was installed */
|
|
160
160
|
installedAt?: string;
|
|
161
|
+
/** HMAC-SHA256 signature for verification */
|
|
162
|
+
signature?: string;
|
|
161
163
|
}
|
|
162
164
|
/**
|
|
163
165
|
* Plugin with hydrated executors (ready for use)
|
|
@@ -141,7 +141,7 @@ interface HustlePlugin {
|
|
|
141
141
|
* Plugin with enabled state (stored in localStorage)
|
|
142
142
|
* Tools include executorCode for function persistence
|
|
143
143
|
*
|
|
144
|
-
*
|
|
144
|
+
* Security: Use pluginSecurity utilities to sign and verify.
|
|
145
145
|
*/
|
|
146
146
|
interface StoredPlugin {
|
|
147
147
|
/** Unique plugin identifier */
|
|
@@ -158,6 +158,8 @@ interface StoredPlugin {
|
|
|
158
158
|
enabled: boolean;
|
|
159
159
|
/** Timestamp when plugin was installed */
|
|
160
160
|
installedAt?: string;
|
|
161
|
+
/** HMAC-SHA256 signature for verification */
|
|
162
|
+
signature?: string;
|
|
161
163
|
}
|
|
162
164
|
/**
|
|
163
165
|
* Plugin with hydrated executors (ready for use)
|