@juhuu/sdk-ts 1.3.34 → 1.3.35

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,9 @@ 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;
1736
1739
  };
1737
1740
  out: {
1738
1741
  payment: DataEdgeConnection;
@@ -1746,6 +1749,9 @@ interface PaymentCreateBlock extends BaseBlock {
1746
1749
  isOffSession?: boolean | null;
1747
1750
  salesTaxPercentage?: number | null;
1748
1751
  postingRowArray?: PostingRow[] | null;
1752
+ confirmationDeadlineAt?: Date | null;
1753
+ defaultPaymentMethodConfigurationId?: string | null;
1754
+ delayedPaymentMethodConfigurationId?: string | null;
1749
1755
  };
1750
1756
  }
1751
1757
  interface PaymentCreateBlockInputs {
@@ -4149,6 +4155,7 @@ declare namespace JUHUU {
4149
4155
  longDescription: LocaleString | null;
4150
4156
  secondsToPay: number;
4151
4157
  defaultPaymentMethodConfigurationId: string;
4158
+ delayedPaymentMethodConfigurationId: string;
4152
4159
  maximumScheduledReadyAtSeconds: number;
4153
4160
  };
4154
4161
  namespace Create {
@@ -4653,8 +4660,9 @@ declare namespace JUHUU {
4653
4660
  salesTaxPercentage: number;
4654
4661
  userId: string;
4655
4662
  postingRowArray: PostingRow[];
4656
- secondsToPay: number;
4663
+ confirmationDeadlineAt: Date;
4657
4664
  defaultPaymentMethodConfigurationId?: string;
4665
+ delayedPaymentMethodConfigurationId?: string;
4658
4666
  };
4659
4667
  type Options = JUHUU.RequestOptions;
4660
4668
  type Response = {
package/dist/index.d.ts CHANGED
@@ -1733,6 +1733,9 @@ 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;
1736
1739
  };
1737
1740
  out: {
1738
1741
  payment: DataEdgeConnection;
@@ -1746,6 +1749,9 @@ interface PaymentCreateBlock extends BaseBlock {
1746
1749
  isOffSession?: boolean | null;
1747
1750
  salesTaxPercentage?: number | null;
1748
1751
  postingRowArray?: PostingRow[] | null;
1752
+ confirmationDeadlineAt?: Date | null;
1753
+ defaultPaymentMethodConfigurationId?: string | null;
1754
+ delayedPaymentMethodConfigurationId?: string | null;
1749
1755
  };
1750
1756
  }
1751
1757
  interface PaymentCreateBlockInputs {
@@ -4149,6 +4155,7 @@ declare namespace JUHUU {
4149
4155
  longDescription: LocaleString | null;
4150
4156
  secondsToPay: number;
4151
4157
  defaultPaymentMethodConfigurationId: string;
4158
+ delayedPaymentMethodConfigurationId: string;
4152
4159
  maximumScheduledReadyAtSeconds: number;
4153
4160
  };
4154
4161
  namespace Create {
@@ -4653,8 +4660,9 @@ declare namespace JUHUU {
4653
4660
  salesTaxPercentage: number;
4654
4661
  userId: string;
4655
4662
  postingRowArray: PostingRow[];
4656
- secondsToPay: number;
4663
+ confirmationDeadlineAt: Date;
4657
4664
  defaultPaymentMethodConfigurationId?: string;
4665
+ delayedPaymentMethodConfigurationId?: string;
4658
4666
  };
4659
4667
  type Options = JUHUU.RequestOptions;
4660
4668
  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.35",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",