@juhuu/sdk-ts 1.2.47 → 1.2.48

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
@@ -509,7 +509,6 @@ interface LocaleString {
509
509
  sv?: string;
510
510
  cs?: string;
511
511
  et?: string;
512
- gsw?: string;
513
512
  }
514
513
 
515
514
  declare class Service {
package/dist/index.d.ts CHANGED
@@ -509,7 +509,6 @@ interface LocaleString {
509
509
  sv?: string;
510
510
  cs?: string;
511
511
  et?: string;
512
- gsw?: string;
513
512
  }
514
513
 
515
514
  declare class Service {
package/dist/index.js CHANGED
@@ -1237,7 +1237,7 @@ var TariffsService = class extends Service {
1237
1237
  method: "POST",
1238
1238
  url: "tariffs",
1239
1239
  body: {
1240
- tariffId: TariffCreateParams.propertyId,
1240
+ propertyId: TariffCreateParams.propertyId,
1241
1241
  duration: TariffCreateParams.duration,
1242
1242
  currencyCode: TariffCreateParams.currencyCode,
1243
1243
  amount: TariffCreateParams.amount,
@@ -1708,7 +1708,7 @@ var SimsService = class extends Service {
1708
1708
  method: "POST",
1709
1709
  url: "sims",
1710
1710
  body: {
1711
- simId: SimCreateParams.propertyId,
1711
+ propertyId: SimCreateParams.propertyId,
1712
1712
  iccid: SimCreateParams.iccid,
1713
1713
  name: SimCreateParams.name
1714
1714
  },
package/dist/index.mjs CHANGED
@@ -1192,7 +1192,7 @@ var TariffsService = class extends Service {
1192
1192
  method: "POST",
1193
1193
  url: "tariffs",
1194
1194
  body: {
1195
- tariffId: TariffCreateParams.propertyId,
1195
+ propertyId: TariffCreateParams.propertyId,
1196
1196
  duration: TariffCreateParams.duration,
1197
1197
  currencyCode: TariffCreateParams.currencyCode,
1198
1198
  amount: TariffCreateParams.amount,
@@ -1663,7 +1663,7 @@ var SimsService = class extends Service {
1663
1663
  method: "POST",
1664
1664
  url: "sims",
1665
1665
  body: {
1666
- simId: SimCreateParams.propertyId,
1666
+ propertyId: SimCreateParams.propertyId,
1667
1667
  iccid: SimCreateParams.iccid,
1668
1668
  name: SimCreateParams.name
1669
1669
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.47",
3
+ "version": "1.2.48",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",