@solvapay/server 1.0.0-preview.4 → 1.0.0-preview.5

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/edge.d.ts CHANGED
@@ -330,6 +330,7 @@ type CustomerResponseMapped = {
330
330
  email?: string;
331
331
  name?: string;
332
332
  plan?: string;
333
+ subscriptions?: components['schemas']['SubscriptionInfo'][];
333
334
  };
334
335
  /**
335
336
  * SolvaPay API Client Interface
@@ -698,6 +699,13 @@ interface SolvaPay {
698
699
  email?: string;
699
700
  name?: string;
700
701
  plan?: string;
702
+ subscriptions?: Array<{
703
+ reference: string;
704
+ planName: string;
705
+ agentName: string;
706
+ status: string;
707
+ startDate: string;
708
+ }>;
701
709
  }>;
702
710
  /**
703
711
  * Direct access to the API client for advanced operations
package/dist/index.d.cts CHANGED
@@ -330,6 +330,7 @@ type CustomerResponseMapped = {
330
330
  email?: string;
331
331
  name?: string;
332
332
  plan?: string;
333
+ subscriptions?: components['schemas']['SubscriptionInfo'][];
333
334
  };
334
335
  /**
335
336
  * SolvaPay API Client Interface
@@ -658,6 +659,13 @@ interface SolvaPay {
658
659
  email?: string;
659
660
  name?: string;
660
661
  plan?: string;
662
+ subscriptions?: Array<{
663
+ reference: string;
664
+ planName: string;
665
+ agentName: string;
666
+ status: string;
667
+ startDate: string;
668
+ }>;
661
669
  }>;
662
670
  /**
663
671
  * Direct access to the API client for advanced operations
package/dist/index.d.ts CHANGED
@@ -330,6 +330,7 @@ type CustomerResponseMapped = {
330
330
  email?: string;
331
331
  name?: string;
332
332
  plan?: string;
333
+ subscriptions?: components['schemas']['SubscriptionInfo'][];
333
334
  };
334
335
  /**
335
336
  * SolvaPay API Client Interface
@@ -658,6 +659,13 @@ interface SolvaPay {
658
659
  email?: string;
659
660
  name?: string;
660
661
  plan?: string;
662
+ subscriptions?: Array<{
663
+ reference: string;
664
+ planName: string;
665
+ agentName: string;
666
+ status: string;
667
+ startDate: string;
668
+ }>;
661
669
  }>;
662
670
  /**
663
671
  * Direct access to the API client for advanced operations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solvapay/server",
3
- "version": "1.0.0-preview.4",
3
+ "version": "1.0.0-preview.5",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "sideEffects": false,
39
39
  "dependencies": {
40
- "@solvapay/core": "1.0.0-preview.4"
40
+ "@solvapay/core": "1.0.0-preview.5"
41
41
  },
42
42
  "devDependencies": {
43
43
  "dotenv": "^17.2.3",