@flarehr/apollo-super-selection 3.95.13475 → 4.0.14518

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 (29) hide show
  1. package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
  2. package/dist/lib/apollo-super-selection/assets/logo-first.svg +15 -0
  3. package/dist/lib/apollo-super-selection/p-2d18a805.system.entry.js +69 -0
  4. package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
  5. package/dist/lib/apollo-super-selection/p-e367fcf2.entry.js +14 -0
  6. package/dist/lib/cjs/sss-button_29.cjs.entry.js +54 -11
  7. package/dist/lib/collection/components/super-selection-app/api/super-selection.api.dto.js +6 -0
  8. package/dist/lib/collection/components/super-selection-app/funds/constants.js +14 -1
  9. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +3 -2
  10. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +2 -1
  11. package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +3 -1
  12. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +2 -1
  13. package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +2 -1
  14. package/dist/lib/collection/components/super-selection-app/funds/slate-super/services/slate-iframe-builder.js +3 -1
  15. package/dist/lib/collection/components/super-selection-app/services/super-selection-app.service.js +5 -0
  16. package/dist/lib/collection/components/super-selection-app/services/super-selection.store.js +1 -0
  17. package/dist/lib/collection/components/super-selection-app/super-choice-page/assets/logo-first.svg +15 -0
  18. package/dist/lib/collection/components/super-selection-app/super-choice-page/super-choice-page.js +29 -2
  19. package/dist/lib/esm/sss-button_29.entry.js +54 -11
  20. package/dist/lib/esm-es5/sss-button_29.entry.js +3 -3
  21. package/dist/lib/types/components/super-selection-app/api/super-selection-events.model.d.ts +5 -0
  22. package/dist/lib/types/components/super-selection-app/api/super-selection.api.dto.d.ts +9 -0
  23. package/dist/lib/types/components/super-selection-app/funds/constants.d.ts +7 -0
  24. package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +1 -0
  25. package/dist/lib/types/components/super-selection-app/funds/slate-super/api/slate-choice.api.dto.d.ts +1 -0
  26. package/dist/lib/types/components/super-selection-app/services/super-selection.store.d.ts +2 -1
  27. package/package.json +1 -1
  28. package/dist/lib/apollo-super-selection/p-898aa97e.entry.js +0 -14
  29. package/dist/lib/apollo-super-selection/p-ef84114b.system.entry.js +0 -69
@@ -28,17 +28,21 @@ export declare type ViewedPromotedFundDetail = {
28
28
  fundName: string;
29
29
  promotedFundId: string;
30
30
  promotedFundsShown: Array<string>;
31
+ defaultFundUsiSet?: string;
31
32
  };
32
33
  export declare type ViewedMyOwnFundDetail = {
33
34
  promotedFundsShown: Array<string>;
35
+ defaultFundUsiSet?: string;
34
36
  };
35
37
  export declare type ViewedSmsfDetail = {
36
38
  promotedFundsShown: Array<string>;
39
+ defaultFundUsiSet?: string;
37
40
  };
38
41
  export declare type ViewedDefaultFundDetail = {
39
42
  fundUsi: string;
40
43
  fundName: string;
41
44
  promotedFundsShown: Array<string>;
45
+ defaultFundUsiSet?: string;
42
46
  };
43
47
  export declare type SuperFundNominationViewedDetail = {
44
48
  fundType: string;
@@ -64,6 +68,7 @@ export declare type SuperFundDisclaimerAcceptedDetail = {
64
68
  };
65
69
  export declare type SuperFundPanelViewedDetail = {
66
70
  promotedFundsShown: Array<string>;
71
+ defaultFundUsiSet?: string;
67
72
  };
68
73
  export declare type SuperFundDetailViewedDetail = {
69
74
  PromotedFund: ViewedPromotedFundDetail;
@@ -54,6 +54,11 @@ declare type PromotedFundChoiceDto = {
54
54
  usi: string;
55
55
  memberNumber: string;
56
56
  };
57
+ } | {
58
+ firstSuper: {
59
+ usi: string;
60
+ memberNumber: string;
61
+ };
57
62
  };
58
63
  export declare function getSuperChoiceUsi(dto: SuperChoiceDetailsDto): Option<string>;
59
64
  export declare function getSuperChoiceMemberNumber(dto: SuperChoiceDetailsDto): Option<string>;
@@ -94,6 +99,9 @@ export declare type AccountConfigurationDto = {
94
99
  accountId: string;
95
100
  defaultFundUsi: string | null;
96
101
  };
102
+ export declare type ProfileConfigurationDto = {
103
+ defaultFundUsi: string | null;
104
+ };
97
105
  export declare type AustralianFundDto = {
98
106
  abn: string;
99
107
  fundName: string;
@@ -108,6 +116,7 @@ export declare type AustralianFundsLookupResponseDto = Array<AustralianFundDto>;
108
116
  export declare type AppStateDto = {
109
117
  superBuyer: SuperBuyerDto;
110
118
  accountConfiguration: AccountConfigurationDto;
119
+ profileConfiguration: ProfileConfigurationDto;
111
120
  promotedFunds: string[];
112
121
  };
113
122
  export {};
@@ -48,6 +48,13 @@ export declare const Spirit: {
48
48
  PdsUrl: string;
49
49
  Abn: string;
50
50
  };
51
+ export declare const First: {
52
+ Id: string;
53
+ Name: string;
54
+ Logo: string;
55
+ PdsUrl: string;
56
+ Abn: string;
57
+ };
51
58
  export declare const PromotedFundIdList: {
52
59
  dtoPropName: string;
53
60
  id: string;
@@ -4,4 +4,5 @@ export declare type PromotedFundChoiceRequestDto = {
4
4
  memberNumber: string;
5
5
  standardChoiceFormSignature: string;
6
6
  shownFunds: string[];
7
+ defaultFundUsiSet?: string;
7
8
  };
@@ -2,4 +2,5 @@ export declare type SlateFundForm = {
2
2
  memberNumber: string;
3
3
  standardChoiceFormSignature: string;
4
4
  shownFunds: string[];
5
+ defaultFundUsiSet?: string;
5
6
  };
@@ -1,5 +1,5 @@
1
1
  import * as O from 'fp-ts/lib/Option';
2
- import { AccountConfigurationDto, SuperBuyerDto } from '../api/super-selection.api.dto';
2
+ import { AccountConfigurationDto, ProfileConfigurationDto, SuperBuyerDto } from '../api/super-selection.api.dto';
3
3
  export declare type AppContextState = {
4
4
  apiBaseUrl: O.Option<string>;
5
5
  appBaseUrl: O.Option<string>;
@@ -8,6 +8,7 @@ export declare type AppContextState = {
8
8
  superBuyer: O.Option<SuperBuyerDto>;
9
9
  promotedFunds: O.Option<string[]>;
10
10
  accountConfiguration: O.Option<AccountConfigurationDto>;
11
+ profileConfiguration: O.Option<ProfileConfigurationDto>;
11
12
  hasSuccessPageBeenAcknowledged: boolean;
12
13
  hasSuperSelectionBeenSubmitted: boolean;
13
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarehr/apollo-super-selection",
3
- "version": "3.95.13475",
3
+ "version": "4.0.14518",
4
4
  "description": "Apollo Super Selection",
5
5
  "main": "dist/lib/index.cjs.js",
6
6
  "module": "dist/lib/index.js",