@juhuu/sdk-ts 1.3.70 → 1.3.71

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
@@ -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 = {
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 = {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.70",
6
+ "version": "1.3.71",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",