@juhuu/sdk-ts 1.3.70 → 1.3.72
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4916,9 +4916,10 @@ declare namespace JUHUU {
|
|
|
4916
4916
|
cancelledAt: Date | null;
|
|
4917
4917
|
cancelledByUserId: string | null;
|
|
4918
4918
|
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
|
4919
|
-
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
|
4919
|
+
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | "authorizationExpired" | null;
|
|
4920
4920
|
postingRowArray: PostingRow[];
|
|
4921
4921
|
confirmationDeadlineAt: Date;
|
|
4922
|
+
statementDescriptorSuffix: string | null;
|
|
4922
4923
|
};
|
|
4923
4924
|
namespace Retrieve {
|
|
4924
4925
|
type Params = {
|
|
@@ -4945,6 +4946,11 @@ declare namespace JUHUU {
|
|
|
4945
4946
|
confirmationDeadlineAt: Date;
|
|
4946
4947
|
defaultPaymentMethodConfigurationId?: string;
|
|
4947
4948
|
delayedPaymentMethodConfigurationId?: string;
|
|
4949
|
+
/**
|
|
4950
|
+
* Max 15 characters, no < > ' " * and not digits only. Appended to the
|
|
4951
|
+
* account's prefix, e.g. "JUHUU* OPG Monatsmiete". Card charges only.
|
|
4952
|
+
*/
|
|
4953
|
+
statementDescriptorSuffix?: string;
|
|
4948
4954
|
};
|
|
4949
4955
|
type Options = JUHUU.RequestOptions;
|
|
4950
4956
|
type Response = {
|
|
@@ -8040,6 +8046,8 @@ declare namespace JUHUU {
|
|
|
8040
8046
|
mapMarkerIconsDark: MapMarkerIcons | null;
|
|
8041
8047
|
fontUrlTitle: string | null;
|
|
8042
8048
|
fontUrlBody: string | null;
|
|
8049
|
+
fontUrlTitleWeb: string | null;
|
|
8050
|
+
fontUrlBodyWeb: string | null;
|
|
8043
8051
|
status: AppStatus;
|
|
8044
8052
|
iosBundleIdentifier: string;
|
|
8045
8053
|
webTitle: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4916,9 +4916,10 @@ declare namespace JUHUU {
|
|
|
4916
4916
|
cancelledAt: Date | null;
|
|
4917
4917
|
cancelledByUserId: string | null;
|
|
4918
4918
|
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
|
4919
|
-
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
|
4919
|
+
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | "authorizationExpired" | null;
|
|
4920
4920
|
postingRowArray: PostingRow[];
|
|
4921
4921
|
confirmationDeadlineAt: Date;
|
|
4922
|
+
statementDescriptorSuffix: string | null;
|
|
4922
4923
|
};
|
|
4923
4924
|
namespace Retrieve {
|
|
4924
4925
|
type Params = {
|
|
@@ -4945,6 +4946,11 @@ declare namespace JUHUU {
|
|
|
4945
4946
|
confirmationDeadlineAt: Date;
|
|
4946
4947
|
defaultPaymentMethodConfigurationId?: string;
|
|
4947
4948
|
delayedPaymentMethodConfigurationId?: string;
|
|
4949
|
+
/**
|
|
4950
|
+
* Max 15 characters, no < > ' " * and not digits only. Appended to the
|
|
4951
|
+
* account's prefix, e.g. "JUHUU* OPG Monatsmiete". Card charges only.
|
|
4952
|
+
*/
|
|
4953
|
+
statementDescriptorSuffix?: string;
|
|
4948
4954
|
};
|
|
4949
4955
|
type Options = JUHUU.RequestOptions;
|
|
4950
4956
|
type Response = {
|
|
@@ -8040,6 +8046,8 @@ declare namespace JUHUU {
|
|
|
8040
8046
|
mapMarkerIconsDark: MapMarkerIcons | null;
|
|
8041
8047
|
fontUrlTitle: string | null;
|
|
8042
8048
|
fontUrlBody: string | null;
|
|
8049
|
+
fontUrlTitleWeb: string | null;
|
|
8050
|
+
fontUrlBodyWeb: string | null;
|
|
8043
8051
|
status: AppStatus;
|
|
8044
8052
|
iosBundleIdentifier: string;
|
|
8045
8053
|
webTitle: string;
|