@flarehr/apollo-super-selection 4.15.24792 → 4.16.26580

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.
Files changed (23) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
  2. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  3. package/dist/lib/apollo-super-selection/{p-f078b2b7.system.entry.js → p-2158618c.system.entry.js} +8 -8
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/apollo-super-selection/p-d6c596db.entry.js +14 -0
  6. package/dist/lib/cjs/sss-button_29.cjs.entry.js +33 -9
  7. package/dist/lib/collection/apollo-super-selection.css +1 -1
  8. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/custom-fund.store.js +6 -2
  9. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +28 -3
  10. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +5 -1
  11. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +13 -2
  12. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +3 -1
  13. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +1 -1
  14. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +1 -1
  15. package/dist/lib/esm/sss-button_29.entry.js +33 -9
  16. package/dist/lib/esm-es5/sss-button_29.entry.js +4 -4
  17. package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +4 -0
  18. package/dist/lib/types/components/super-selection-app/funds/custom-fund/custom-fund.store.d.ts +2 -0
  19. package/dist/lib/types/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.d.ts +2 -0
  20. package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.d.ts +2 -0
  21. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +2 -0
  22. package/package.json +1 -1
  23. package/dist/lib/apollo-super-selection/p-af33b1bd.entry.js +0 -14
@@ -1,6 +1,8 @@
1
1
  export declare type MyOwnFundDto = {
2
2
  fundUsi: string;
3
3
  memberNumber: string;
4
+ memberFirstName: string;
5
+ memberFamilyName: string;
4
6
  standardChoiceFormSignature: string;
5
7
  };
6
8
  export declare type DefaultFundForm = {
@@ -21,6 +23,8 @@ export declare type SelfManagedFundDto = {
21
23
  bankAccountName: string;
22
24
  bankAccountNumber: string;
23
25
  electronicServiceAddress: string;
26
+ memberFirstName: string;
27
+ memberFamilyName: string;
24
28
  };
25
29
  export declare type SelfManagedFundRequestDto = {
26
30
  smsfChoice: SelfManagedFundDto;
@@ -13,6 +13,8 @@ export declare type MyOwnFundFormState = {
13
13
  fundUsi: O.Option<string>;
14
14
  fundName: O.Option<string>;
15
15
  memberNumber: O.Option<string>;
16
+ memberFirstName: O.Option<string>;
17
+ memberFamilyName: O.Option<string>;
16
18
  };
17
19
  export declare type CustomFundState = {
18
20
  continueAllowed: boolean;
@@ -10,4 +10,6 @@ export declare class MyOwnFundInputs {
10
10
  private searchFundsAsync;
11
11
  private updateFund;
12
12
  private updateMemberNumber;
13
+ private updateMemberFirstName;
14
+ private updateMemberFamilyName;
13
15
  }
@@ -10,4 +10,6 @@ export declare type SelfManagedFundForm = {
10
10
  bankAccountName: string;
11
11
  bsb: string;
12
12
  bankAccountNumber: string;
13
+ memberFirstName: string;
14
+ memberFamilyName: string;
13
15
  };
@@ -2,6 +2,8 @@ export declare type PromotedFundChoiceRequestDto = {
2
2
  fundId: string;
3
3
  usi?: string;
4
4
  memberNumber: string;
5
+ memberFirstName?: string;
6
+ memberFamilyName?: string;
5
7
  standardChoiceFormSignature: string;
6
8
  shownFunds: string[];
7
9
  defaultFundUsiSet?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "4.15.24792",
3
+ "version": "4.16.26580",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",