@spawnco/sdk-types 0.0.32 → 0.0.33

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/index.d.mts CHANGED
@@ -127,6 +127,9 @@ interface SpawnServerSDK__V1<TConfig = any> {
127
127
  }>;
128
128
  };
129
129
  };
130
+ sparks: {
131
+ verifyPurchase(purchaseId: string): Promise<boolean>;
132
+ };
130
133
  config: {
131
134
  get(): Promise<TConfig>;
132
135
  version(): Promise<string>;
package/dist/index.d.ts CHANGED
@@ -127,6 +127,9 @@ interface SpawnServerSDK__V1<TConfig = any> {
127
127
  }>;
128
128
  };
129
129
  };
130
+ sparks: {
131
+ verifyPurchase(purchaseId: string): Promise<boolean>;
132
+ };
130
133
  config: {
131
134
  get(): Promise<TConfig>;
132
135
  version(): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spawnco/sdk-types",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "description": "TypeScript type definitions for Spawn SDK",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
package/src/v1.ts CHANGED
@@ -147,6 +147,10 @@ export interface SpawnServerSDK__V1<TConfig = any> {
147
147
  };
148
148
  };
149
149
 
150
+ sparks: {
151
+ verifyPurchase(purchaseId: string): Promise<boolean>;
152
+ };
153
+
150
154
  config: {
151
155
  get(): Promise<TConfig>;
152
156
  version(): Promise<string>;