@kanda-libs/ks-component-ts 0.3.37 → 0.3.38
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/index.d.ts +13377 -13332
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/components/schemas/InfoIntroductionStats.ts +2 -2
- package/src/generated/components/schemas/IntroductionStats.ts +12 -12
- package/src/generated/widget/index.tsx +62044 -62033
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
2
|
|
|
3
|
-
export const InfoIntroductionStats = t.
|
|
3
|
+
export const InfoIntroductionStats = t.type({
|
|
4
4
|
report: t.UnknownRecord,
|
|
5
5
|
});
|
|
6
6
|
|
|
7
7
|
export interface InfoIntroductionStats {
|
|
8
|
-
report
|
|
8
|
+
report: Record<string, unknown>;
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
2
|
import { Pence } from "./Pence";
|
|
3
3
|
|
|
4
|
-
export const IntroductionStats = t.
|
|
4
|
+
export const IntroductionStats = t.type({
|
|
5
5
|
branch_code: t.string,
|
|
6
6
|
introductions_sent: Pence,
|
|
7
7
|
introductions_completed: Pence,
|
|
@@ -16,15 +16,15 @@ export const IntroductionStats = t.partial({
|
|
|
16
16
|
});
|
|
17
17
|
|
|
18
18
|
export interface IntroductionStats {
|
|
19
|
-
branch_code
|
|
20
|
-
introductions_sent
|
|
21
|
-
introductions_completed
|
|
22
|
-
order_details_added
|
|
23
|
-
tradesperson_approved
|
|
24
|
-
finance_applications
|
|
25
|
-
approve_applications
|
|
26
|
-
potential_revenue
|
|
27
|
-
total_revenue
|
|
28
|
-
average_order_value
|
|
29
|
-
approval_rate
|
|
19
|
+
branch_code: string;
|
|
20
|
+
introductions_sent: Pence;
|
|
21
|
+
introductions_completed: Pence;
|
|
22
|
+
order_details_added: Pence;
|
|
23
|
+
tradesperson_approved: Pence;
|
|
24
|
+
finance_applications: Pence;
|
|
25
|
+
approve_applications: Pence;
|
|
26
|
+
potential_revenue: Pence;
|
|
27
|
+
total_revenue: Pence;
|
|
28
|
+
average_order_value: Pence;
|
|
29
|
+
approval_rate: Pence;
|
|
30
30
|
}
|