@juhuu/sdk-ts 1.3.24 → 1.3.25
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3948,6 +3948,9 @@ declare namespace JUHUU {
|
|
|
3948
3948
|
serviceFeeMax: number;
|
|
3949
3949
|
shortDescription: LocaleString | null;
|
|
3950
3950
|
longDescription: LocaleString | null;
|
|
3951
|
+
secondsToPay: number;
|
|
3952
|
+
defaultPaymentMethodConfigurationId: string;
|
|
3953
|
+
maximumScheduledReadyAtSeconds: number;
|
|
3951
3954
|
};
|
|
3952
3955
|
namespace Create {
|
|
3953
3956
|
type Params = {
|
|
@@ -3957,6 +3960,8 @@ declare namespace JUHUU {
|
|
|
3957
3960
|
amount?: number[];
|
|
3958
3961
|
continue?: number;
|
|
3959
3962
|
currencyCode?: string;
|
|
3963
|
+
secondsToPay?: number;
|
|
3964
|
+
maximumScheduledReadyAtSeconds?: number;
|
|
3960
3965
|
};
|
|
3961
3966
|
type Options = JUHUU.RequestOptions;
|
|
3962
3967
|
type Response = {
|
|
@@ -4427,6 +4432,7 @@ declare namespace JUHUU {
|
|
|
4427
4432
|
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
|
4428
4433
|
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
|
4429
4434
|
postingRowArray: PostingRow[];
|
|
4435
|
+
confirmationDeadlineAt: Date;
|
|
4430
4436
|
};
|
|
4431
4437
|
namespace Retrieve {
|
|
4432
4438
|
type Params = {
|
|
@@ -4450,6 +4456,8 @@ declare namespace JUHUU {
|
|
|
4450
4456
|
salesTaxPercentage: number;
|
|
4451
4457
|
userId: string;
|
|
4452
4458
|
postingRowArray: PostingRow[];
|
|
4459
|
+
secondsToPay: number;
|
|
4460
|
+
defaultPaymentMethodConfigurationId: string;
|
|
4453
4461
|
};
|
|
4454
4462
|
type Options = JUHUU.RequestOptions;
|
|
4455
4463
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -3948,6 +3948,9 @@ declare namespace JUHUU {
|
|
|
3948
3948
|
serviceFeeMax: number;
|
|
3949
3949
|
shortDescription: LocaleString | null;
|
|
3950
3950
|
longDescription: LocaleString | null;
|
|
3951
|
+
secondsToPay: number;
|
|
3952
|
+
defaultPaymentMethodConfigurationId: string;
|
|
3953
|
+
maximumScheduledReadyAtSeconds: number;
|
|
3951
3954
|
};
|
|
3952
3955
|
namespace Create {
|
|
3953
3956
|
type Params = {
|
|
@@ -3957,6 +3960,8 @@ declare namespace JUHUU {
|
|
|
3957
3960
|
amount?: number[];
|
|
3958
3961
|
continue?: number;
|
|
3959
3962
|
currencyCode?: string;
|
|
3963
|
+
secondsToPay?: number;
|
|
3964
|
+
maximumScheduledReadyAtSeconds?: number;
|
|
3960
3965
|
};
|
|
3961
3966
|
type Options = JUHUU.RequestOptions;
|
|
3962
3967
|
type Response = {
|
|
@@ -4427,6 +4432,7 @@ declare namespace JUHUU {
|
|
|
4427
4432
|
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
|
4428
4433
|
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
|
4429
4434
|
postingRowArray: PostingRow[];
|
|
4435
|
+
confirmationDeadlineAt: Date;
|
|
4430
4436
|
};
|
|
4431
4437
|
namespace Retrieve {
|
|
4432
4438
|
type Params = {
|
|
@@ -4450,6 +4456,8 @@ declare namespace JUHUU {
|
|
|
4450
4456
|
salesTaxPercentage: number;
|
|
4451
4457
|
userId: string;
|
|
4452
4458
|
postingRowArray: PostingRow[];
|
|
4459
|
+
secondsToPay: number;
|
|
4460
|
+
defaultPaymentMethodConfigurationId: string;
|
|
4453
4461
|
};
|
|
4454
4462
|
type Options = JUHUU.RequestOptions;
|
|
4455
4463
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -1282,7 +1282,9 @@ var PaymentsService = class extends Service {
|
|
|
1282
1282
|
isOffSession: PaymentCreateParams.isOffSession,
|
|
1283
1283
|
salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
|
|
1284
1284
|
userId: PaymentCreateParams.userId,
|
|
1285
|
-
postingRowArray: PaymentCreateParams.postingRowArray
|
|
1285
|
+
postingRowArray: PaymentCreateParams.postingRowArray,
|
|
1286
|
+
secondsToPay: PaymentCreateParams.secondsToPay,
|
|
1287
|
+
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
|
|
1286
1288
|
},
|
|
1287
1289
|
authenticationNotOptional: true
|
|
1288
1290
|
},
|
|
@@ -2200,7 +2202,9 @@ var TariffsService = class extends Service {
|
|
|
2200
2202
|
currencyCode: TariffCreateParams.currencyCode,
|
|
2201
2203
|
amount: TariffCreateParams.amount,
|
|
2202
2204
|
continue: TariffCreateParams.continue,
|
|
2203
|
-
name: TariffCreateParams.name
|
|
2205
|
+
name: TariffCreateParams.name,
|
|
2206
|
+
secondsToPay: TariffCreateParams.secondsToPay,
|
|
2207
|
+
maximumScheduledReadyAtSeconds: TariffCreateParams.maximumScheduledReadyAtSeconds
|
|
2204
2208
|
},
|
|
2205
2209
|
authenticationNotOptional: true
|
|
2206
2210
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1238,7 +1238,9 @@ var PaymentsService = class extends Service {
|
|
|
1238
1238
|
isOffSession: PaymentCreateParams.isOffSession,
|
|
1239
1239
|
salesTaxPercentage: PaymentCreateParams.salesTaxPercentage,
|
|
1240
1240
|
userId: PaymentCreateParams.userId,
|
|
1241
|
-
postingRowArray: PaymentCreateParams.postingRowArray
|
|
1241
|
+
postingRowArray: PaymentCreateParams.postingRowArray,
|
|
1242
|
+
secondsToPay: PaymentCreateParams.secondsToPay,
|
|
1243
|
+
defaultPaymentMethodConfigurationId: PaymentCreateParams.defaultPaymentMethodConfigurationId
|
|
1242
1244
|
},
|
|
1243
1245
|
authenticationNotOptional: true
|
|
1244
1246
|
},
|
|
@@ -2156,7 +2158,9 @@ var TariffsService = class extends Service {
|
|
|
2156
2158
|
currencyCode: TariffCreateParams.currencyCode,
|
|
2157
2159
|
amount: TariffCreateParams.amount,
|
|
2158
2160
|
continue: TariffCreateParams.continue,
|
|
2159
|
-
name: TariffCreateParams.name
|
|
2161
|
+
name: TariffCreateParams.name,
|
|
2162
|
+
secondsToPay: TariffCreateParams.secondsToPay,
|
|
2163
|
+
maximumScheduledReadyAtSeconds: TariffCreateParams.maximumScheduledReadyAtSeconds
|
|
2160
2164
|
},
|
|
2161
2165
|
authenticationNotOptional: true
|
|
2162
2166
|
},
|