arky-sdk 0.3.50 → 0.3.52

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.cts CHANGED
@@ -330,11 +330,11 @@ interface GetCollectionSubscribersParams {
330
330
  id: string;
331
331
  }
332
332
  interface UserSubscribeParams {
333
- target: string;
334
- token?: string;
335
- planId: string;
336
- successUrl: string;
337
- cancelUrl: string;
333
+ target?: string;
334
+ token: string;
335
+ planId?: string;
336
+ successUrl?: string;
337
+ cancelUrl?: string;
338
338
  }
339
339
  interface CreateProductParams {
340
340
  name: string;
package/dist/types.d.ts CHANGED
@@ -330,11 +330,11 @@ interface GetCollectionSubscribersParams {
330
330
  id: string;
331
331
  }
332
332
  interface UserSubscribeParams {
333
- target: string;
334
- token?: string;
335
- planId: string;
336
- successUrl: string;
337
- cancelUrl: string;
333
+ target?: string;
334
+ token: string;
335
+ planId?: string;
336
+ successUrl?: string;
337
+ cancelUrl?: string;
338
338
  }
339
339
  interface CreateProductParams {
340
340
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.3.50",
3
+ "version": "0.3.52",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one business platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",