@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.
- package/dist/lib/apollo-super-selection/apollo-super-selection.css +1 -1
- package/dist/lib/apollo-super-selection/apollo-super-selection.esm.js +1 -1
- package/dist/lib/apollo-super-selection/{p-f078b2b7.system.entry.js → p-2158618c.system.entry.js} +8 -8
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/apollo-super-selection/p-d6c596db.entry.js +14 -0
- package/dist/lib/cjs/sss-button_29.cjs.entry.js +33 -9
- package/dist/lib/collection/apollo-super-selection.css +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/custom-fund.store.js +6 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.js +28 -3
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +5 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund-inputs.js +13 -2
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +3 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v1-iframe-builder.js +1 -1
- package/dist/lib/collection/components/super-selection-app/funds/promoted-fund/services/promoted-fund-join-v2-iframe-builder.js +1 -1
- package/dist/lib/esm/sss-button_29.entry.js +33 -9
- package/dist/lib/esm-es5/sss-button_29.entry.js +4 -4
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +4 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/custom-fund.store.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund-inputs.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.form.d.ts +2 -0
- package/dist/lib/types/components/super-selection-app/funds/promoted-fund/api/promoted-fund-choice.api.dto.d.ts +2 -0
- package/package.json +1 -1
- 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;
|
package/dist/lib/types/components/super-selection-app/funds/custom-fund/custom-fund.store.d.ts
CHANGED
|
@@ -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;
|