@flarehr/apollo-super-selection 1.2.29346 → 1.2.29605
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.esm.js +1 -1
- package/dist/lib/apollo-super-selection/{p-8c6f12f4.system.entry.js → p-09d5c1ef.system.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/{p-1b841208.entry.js → p-4ebe07da.entry.js} +1 -1
- package/dist/lib/apollo-super-selection/p-bdcfc026.system.js +1 -1
- package/dist/lib/cjs/sss-button_30.cjs.entry.js +9 -4
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/default-fund/default-fund.js +4 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/my-own-fund/my-own-fund.js +2 -1
- package/dist/lib/collection/components/super-selection-app/funds/custom-fund/self-managed-fund/self-managed-fund.js +2 -1
- package/dist/lib/esm/sss-button_30.entry.js +9 -4
- package/dist/lib/esm-es5/sss-button_30.entry.js +1 -1
- package/dist/lib/types/components/super-selection-app/funds/custom-fund/api/custom-fund-choice.api.dto.d.ts +8 -7
- package/package.json +1 -1
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
declare type CommonDto = {
|
|
2
|
+
standardChoiceFormSignature: string;
|
|
3
|
+
shownFunds: string[];
|
|
4
|
+
};
|
|
1
5
|
export declare type MyOwnFundDto = {
|
|
2
6
|
fundUsi: string;
|
|
3
7
|
memberNumber: string;
|
|
4
8
|
memberFirstName: string;
|
|
5
9
|
memberFamilyName: string;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export declare type DefaultFundForm = {
|
|
9
|
-
standardChoiceFormSignature: string;
|
|
10
|
-
};
|
|
10
|
+
} & CommonDto;
|
|
11
|
+
export declare type DefaultFundForm = CommonDto;
|
|
11
12
|
export declare type AustralianFundAddressDto = {
|
|
12
13
|
addressLine1: string;
|
|
13
14
|
addressLine2?: string;
|
|
@@ -28,8 +29,8 @@ export declare type SelfManagedFundDto = {
|
|
|
28
29
|
};
|
|
29
30
|
export declare type SelfManagedFundRequestDto = {
|
|
30
31
|
smsfChoice: SelfManagedFundDto;
|
|
31
|
-
|
|
32
|
-
};
|
|
32
|
+
} & CommonDto;
|
|
33
33
|
export declare type AbnUsedForRegulatedFundResponseDto = {
|
|
34
34
|
result: boolean;
|
|
35
35
|
};
|
|
36
|
+
export {};
|