@juhuu/sdk-ts 1.2.85 → 1.2.87

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
@@ -2606,7 +2606,7 @@ declare namespace JUHUU {
2606
2606
  type Object = {
2607
2607
  id: string;
2608
2608
  readonly object: "sim";
2609
- iccid: string;
2609
+ iccid: string | null;
2610
2610
  status: SimStatus;
2611
2611
  provider: "1nce" | null;
2612
2612
  countryCode: CountryCode | null;
@@ -2628,7 +2628,7 @@ declare namespace JUHUU {
2628
2628
  };
2629
2629
  type Options = JUHUU.RequestOptions;
2630
2630
  type Response = {
2631
- payout: JUHUU.Sim.Object;
2631
+ sim: JUHUU.Sim.Object;
2632
2632
  };
2633
2633
  }
2634
2634
  namespace Retrieve {
package/dist/index.d.ts CHANGED
@@ -2606,7 +2606,7 @@ declare namespace JUHUU {
2606
2606
  type Object = {
2607
2607
  id: string;
2608
2608
  readonly object: "sim";
2609
- iccid: string;
2609
+ iccid: string | null;
2610
2610
  status: SimStatus;
2611
2611
  provider: "1nce" | null;
2612
2612
  countryCode: CountryCode | null;
@@ -2628,7 +2628,7 @@ declare namespace JUHUU {
2628
2628
  };
2629
2629
  type Options = JUHUU.RequestOptions;
2630
2630
  type Response = {
2631
- payout: JUHUU.Sim.Object;
2631
+ sim: JUHUU.Sim.Object;
2632
2632
  };
2633
2633
  }
2634
2634
  namespace Retrieve {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.85",
3
+ "version": "1.2.87",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",