@maxio-com/self-service 1.14.0 → 1.15.0

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.
@@ -4,6 +4,12 @@ object-assign
4
4
  @license MIT
5
5
  */
6
6
 
7
+ /*!
8
+ * Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com
9
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
10
+ * Copyright 2024 Fonticons, Inc.
11
+ */
12
+
7
13
  /*!
8
14
  * js-logger - http://github.com/jonnyreeves/js-logger
9
15
  * Jonny Reeves, http://jonnyreeves.co.uk/
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "module": "dist/maxio-components.esm.js",
6
6
  "browser": "dist/maxio-components.umd.js",
7
7
  "types": "typings/sdk/components-sdk/src/index.d.ts",
8
- "version": "1.14.0",
8
+ "version": "1.15.0",
9
9
  "exports": {
10
10
  ".": {
11
11
  "import": "./dist/maxio-components.esm.js",
@@ -1,6 +1,7 @@
1
1
  import { PaymentProfile, PaymentProfileStatus } from '../../models/paymentProfile';
2
2
  export declare const serializePaymentProfiles: (items: PaymentProfile[], vaultCurrencies: Record<string, string[]>, subscriptionCurrency: string, subscriptionPaymentProfileId: number) => {
3
3
  status: PaymentProfileStatus;
4
+ isPaymentProfileConnected: boolean;
4
5
  id: number;
5
6
  expired?: boolean;
6
7
  type: import("../../models/paymentProfile").PaymentProfileType;
@@ -25,6 +25,7 @@ export type PaymentProfile = {
25
25
  bankAccount?: BankAccount;
26
26
  creditCard: CreditCard | null;
27
27
  address?: Address;
28
+ isPaymentProfileConnected?: boolean;
28
29
  };
29
30
  export type PaymentProfileType = 'bank_account' | 'credit_card';
30
31
  export declare const enum PaymentProfileStatus {