@juhuu/sdk-ts 1.3.34 → 1.3.36

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
@@ -1733,6 +1733,10 @@ interface PaymentCreateBlock extends BaseBlock {
1733
1733
  isOffSession: DataEdgeConnection;
1734
1734
  salesTaxPercentage: DataEdgeConnection;
1735
1735
  postingRowArray: DataEdgeConnection;
1736
+ confirmationDeadlineAt: DataEdgeConnection;
1737
+ defaultPaymentMethodConfigurationId: DataEdgeConnection;
1738
+ delayedPaymentMethodConfigurationId: DataEdgeConnection;
1739
+ secondsToPay: DataEdgeConnection;
1736
1740
  };
1737
1741
  out: {
1738
1742
  payment: DataEdgeConnection;
@@ -1746,6 +1750,10 @@ interface PaymentCreateBlock extends BaseBlock {
1746
1750
  isOffSession?: boolean | null;
1747
1751
  salesTaxPercentage?: number | null;
1748
1752
  postingRowArray?: PostingRow[] | null;
1753
+ confirmationDeadlineAt?: Date | null;
1754
+ defaultPaymentMethodConfigurationId?: string | null;
1755
+ delayedPaymentMethodConfigurationId?: string | null;
1756
+ secondsToPay?: number | null;
1749
1757
  };
1750
1758
  }
1751
1759
  interface PaymentCreateBlockInputs {
@@ -4149,6 +4157,7 @@ declare namespace JUHUU {
4149
4157
  longDescription: LocaleString | null;
4150
4158
  secondsToPay: number;
4151
4159
  defaultPaymentMethodConfigurationId: string;
4160
+ delayedPaymentMethodConfigurationId: string;
4152
4161
  maximumScheduledReadyAtSeconds: number;
4153
4162
  };
4154
4163
  namespace Create {
@@ -4653,8 +4662,9 @@ declare namespace JUHUU {
4653
4662
  salesTaxPercentage: number;
4654
4663
  userId: string;
4655
4664
  postingRowArray: PostingRow[];
4656
- secondsToPay: number;
4665
+ confirmationDeadlineAt: Date;
4657
4666
  defaultPaymentMethodConfigurationId?: string;
4667
+ delayedPaymentMethodConfigurationId?: string;
4658
4668
  };
4659
4669
  type Options = JUHUU.RequestOptions;
4660
4670
  type Response = {
package/dist/index.d.ts CHANGED
@@ -1733,6 +1733,10 @@ interface PaymentCreateBlock extends BaseBlock {
1733
1733
  isOffSession: DataEdgeConnection;
1734
1734
  salesTaxPercentage: DataEdgeConnection;
1735
1735
  postingRowArray: DataEdgeConnection;
1736
+ confirmationDeadlineAt: DataEdgeConnection;
1737
+ defaultPaymentMethodConfigurationId: DataEdgeConnection;
1738
+ delayedPaymentMethodConfigurationId: DataEdgeConnection;
1739
+ secondsToPay: DataEdgeConnection;
1736
1740
  };
1737
1741
  out: {
1738
1742
  payment: DataEdgeConnection;
@@ -1746,6 +1750,10 @@ interface PaymentCreateBlock extends BaseBlock {
1746
1750
  isOffSession?: boolean | null;
1747
1751
  salesTaxPercentage?: number | null;
1748
1752
  postingRowArray?: PostingRow[] | null;
1753
+ confirmationDeadlineAt?: Date | null;
1754
+ defaultPaymentMethodConfigurationId?: string | null;
1755
+ delayedPaymentMethodConfigurationId?: string | null;
1756
+ secondsToPay?: number | null;
1749
1757
  };
1750
1758
  }
1751
1759
  interface PaymentCreateBlockInputs {
@@ -4149,6 +4157,7 @@ declare namespace JUHUU {
4149
4157
  longDescription: LocaleString | null;
4150
4158
  secondsToPay: number;
4151
4159
  defaultPaymentMethodConfigurationId: string;
4160
+ delayedPaymentMethodConfigurationId: string;
4152
4161
  maximumScheduledReadyAtSeconds: number;
4153
4162
  };
4154
4163
  namespace Create {
@@ -4653,8 +4662,9 @@ declare namespace JUHUU {
4653
4662
  salesTaxPercentage: number;
4654
4663
  userId: string;
4655
4664
  postingRowArray: PostingRow[];
4656
- secondsToPay: number;
4665
+ confirmationDeadlineAt: Date;
4657
4666
  defaultPaymentMethodConfigurationId?: string;
4667
+ delayedPaymentMethodConfigurationId?: string;
4658
4668
  };
4659
4669
  type Options = JUHUU.RequestOptions;
4660
4670
  type Response = {
package/dist/index.js CHANGED
@@ -1281,8 +1281,9 @@ var PaymentsService = class extends Service {
1281
1281
  salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
1282
1282
  userId: PaymentCreateParams.userId,
1283
1283
  postingRowArray: PaymentCreateParams.postingRowArray,
1284
- secondsToPay: PaymentCreateParams.secondsToPay,
1285
- defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
1284
+ confirmationDeadlineAt: PaymentCreateParams.confirmationDeadlineAt,
1285
+ defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId,
1286
+ delayedPaymentMethodConfigurationId: PaymentCreateParams.delayedPaymentMethodConfigurationId
1286
1287
  },
1287
1288
  authenticationNotOptional: true
1288
1289
  },
package/dist/index.mjs CHANGED
@@ -1237,8 +1237,9 @@ var PaymentsService = class extends Service {
1237
1237
  salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
1238
1238
  userId: PaymentCreateParams.userId,
1239
1239
  postingRowArray: PaymentCreateParams.postingRowArray,
1240
- secondsToPay: PaymentCreateParams.secondsToPay,
1241
- defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
1240
+ confirmationDeadlineAt: PaymentCreateParams.confirmationDeadlineAt,
1241
+ defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId,
1242
+ delayedPaymentMethodConfigurationId: PaymentCreateParams.delayedPaymentMethodConfigurationId
1242
1243
  },
1243
1244
  authenticationNotOptional: true
1244
1245
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.34",
6
+ "version": "1.3.36",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",