@sparkvault/sdk-mobile 4.6.2 → 4.6.3

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/types.d.ts CHANGED
@@ -162,8 +162,13 @@ export interface SparkVaultSubscription {
162
162
  unlicensed_members: number;
163
163
  };
164
164
  blocks: {
165
+ /** Effective capacity blocks (this subscription plus any add-on rail). */
165
166
  storage: number;
166
167
  bandwidth: number;
168
+ /** Blocks THIS subscription bills — the IAP-owned add-on count is
169
+ * effective minus base. Absent on older API payloads. */
170
+ storage_base?: number;
171
+ bandwidth_base?: number;
167
172
  };
168
173
  pools: SubscriptionPools;
169
174
  identity: SubscriptionIdentityStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sparkvault/sdk-mobile",
3
- "version": "4.6.2",
3
+ "version": "4.6.3",
4
4
  "description": "Mobile SDK for SparkVault Identity, vault, folder, and ingot workflows",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/types.ts CHANGED
@@ -184,8 +184,13 @@ export interface SparkVaultSubscription {
184
184
  unlicensed_members: number;
185
185
  };
186
186
  blocks: {
187
+ /** Effective capacity blocks (this subscription plus any add-on rail). */
187
188
  storage: number;
188
189
  bandwidth: number;
190
+ /** Blocks THIS subscription bills — the IAP-owned add-on count is
191
+ * effective minus base. Absent on older API payloads. */
192
+ storage_base?: number;
193
+ bandwidth_base?: number;
189
194
  };
190
195
  pools: SubscriptionPools;
191
196
  identity: SubscriptionIdentityStatus;