@kanda-libs/ks-component-ts 0.2.395 → 0.2.396

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-component-ts",
3
- "version": "0.2.395",
3
+ "version": "0.2.396",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -8,7 +8,6 @@ export * from "./BankAccount";
8
8
  export * from "./Branding";
9
9
  export * from "./Cache";
10
10
  export * from "./Category";
11
- export * from "./ChargeItem";
12
11
  export * from "./CheckoutOption";
13
12
  export * from "./CommContext";
14
13
  export * from "./CommPreferences";
@@ -26,14 +25,12 @@ export * from "./CustomerOptions";
26
25
  export * from "./DirectorInfo";
27
26
  export * from "./DirectorVerification";
28
27
  export * from "./Document";
29
- export * from "./DownPayment";
30
28
  export * from "./EmployedDetails";
31
29
  export * from "./EmploymentDetails";
32
30
  export * from "./Enterprise";
33
31
  export * from "./EnterpriseUserRole";
34
32
  export * from "./EnterpriseUserType";
35
33
  export * from "./Error";
36
- export * from "./EVChargerConfig";
37
34
  export * from "./Event";
38
35
  export * from "./EventOptions";
39
36
  export * from "./EventProps";
@@ -63,7 +60,6 @@ export * from "./InfoSession";
63
60
  export * from "./InfoStats";
64
61
  export * from "./InfoTrade";
65
62
  export * from "./InfoValidationEmail";
66
- export * from "./Installation";
67
63
  export * from "./Job";
68
64
  export * from "./JobCompanyInfo";
69
65
  export * from "./JobCreditState";
@@ -14,10 +14,6 @@ import {
14
14
  applyCreditOperation,
15
15
  ApplyCreditRequestFunction,
16
16
  } from "./applyCredit";
17
- import {
18
- applyInstallationWithFinanceOperation,
19
- ApplyInstallationWithFinanceRequestFunction,
20
- } from "./applyInstallationWithFinance";
21
17
  import {
22
18
  applyInviteLeadOperation,
23
19
  ApplyInviteLeadRequestFunction,
@@ -74,10 +70,6 @@ import {
74
70
  deleteEnterpriseOperation,
75
71
  DeleteEnterpriseRequestFunction,
76
72
  } from "./deleteEnterprise";
77
- import {
78
- deleteInstallationOperation,
79
- DeleteInstallationRequestFunction,
80
- } from "./deleteInstallation";
81
73
  import { deleteJobOperation, DeleteJobRequestFunction } from "./deleteJob";
82
74
  import { deleteLeadOperation, DeleteLeadRequestFunction } from "./deleteLead";
83
75
  import {
@@ -148,14 +140,6 @@ import {
148
140
  getInfoEntityOperation,
149
141
  GetInfoEntityRequestFunction,
150
142
  } from "./getInfoEntity";
151
- import {
152
- getInstallationOperation,
153
- GetInstallationRequestFunction,
154
- } from "./getInstallation";
155
- import {
156
- getInstallationsOperation,
157
- GetInstallationsRequestFunction,
158
- } from "./getInstallations";
159
143
  import { getJobOperation, GetJobRequestFunction } from "./getJob";
160
144
  import { getJobsOperation, GetJobsRequestFunction } from "./getJobs";
161
145
  import { getLeadOperation, GetLeadRequestFunction } from "./getLead";
@@ -353,10 +337,6 @@ import {
353
337
  PostEnterpriseBranchesRequestFunction,
354
338
  } from "./postEnterpriseBranches";
355
339
  import { postEventOperation, PostEventRequestFunction } from "./postEvent";
356
- import {
357
- postInstallationOperation,
358
- PostInstallationRequestFunction,
359
- } from "./postInstallation";
360
340
  import { postJobOperation, PostJobRequestFunction } from "./postJob";
361
341
  import { postLeadOperation, PostLeadRequestFunction } from "./postLead";
362
342
  import { postMeOperation, PostMeRequestFunction } from "./postMe";
@@ -415,10 +395,6 @@ import {
415
395
  putEnterpriseOperation,
416
396
  PutEnterpriseRequestFunction,
417
397
  } from "./putEnterprise";
418
- import {
419
- putInstallationOperation,
420
- PutInstallationRequestFunction,
421
- } from "./putInstallation";
422
398
  import { putJobOperation, PutJobRequestFunction } from "./putJob";
423
399
  import { putLeadOperation, PutLeadRequestFunction } from "./putLead";
424
400
  import { putMeOperation, PutMeRequestFunction } from "./putMe";
@@ -600,12 +576,6 @@ export const operations: Operations = {
600
576
  connectTradesLead: connectTradesLeadOperation,
601
577
  acceptedJobSummaryLead: acceptedJobSummaryLeadOperation,
602
578
  referLead: referLeadOperation,
603
- getInstallations: getInstallationsOperation,
604
- postInstallation: postInstallationOperation,
605
- getInstallation: getInstallationOperation,
606
- putInstallation: putInstallationOperation,
607
- deleteInstallation: deleteInstallationOperation,
608
- applyInstallationWithFinance: applyInstallationWithFinanceOperation,
609
579
  getSubscriptions: getSubscriptionsOperation,
610
580
  postSubscription: postSubscriptionOperation,
611
581
  getSubscription: getSubscriptionOperation,
@@ -763,12 +733,6 @@ export interface OperationRequestFunctionMap {
763
733
  connectTradesLead: ConnectTradesLeadRequestFunction;
764
734
  acceptedJobSummaryLead: AcceptedJobSummaryLeadRequestFunction;
765
735
  referLead: ReferLeadRequestFunction;
766
- getInstallations: GetInstallationsRequestFunction;
767
- postInstallation: PostInstallationRequestFunction;
768
- getInstallation: GetInstallationRequestFunction;
769
- putInstallation: PutInstallationRequestFunction;
770
- deleteInstallation: DeleteInstallationRequestFunction;
771
- applyInstallationWithFinance: ApplyInstallationWithFinanceRequestFunction;
772
736
  getSubscriptions: GetSubscriptionsRequestFunction;
773
737
  postSubscription: PostSubscriptionRequestFunction;
774
738
  getSubscription: GetSubscriptionRequestFunction;
@@ -1087,30 +1051,6 @@ export const requestFunctionsBuilder = (
1087
1051
  requestAdapter
1088
1052
  ),
1089
1053
  referLead: requestFunctionBuilder(operations.referLead, requestAdapter),
1090
- getInstallations: requestFunctionBuilder(
1091
- operations.getInstallations,
1092
- requestAdapter
1093
- ),
1094
- postInstallation: requestFunctionBuilder(
1095
- operations.postInstallation,
1096
- requestAdapter
1097
- ),
1098
- getInstallation: requestFunctionBuilder(
1099
- operations.getInstallation,
1100
- requestAdapter
1101
- ),
1102
- putInstallation: requestFunctionBuilder(
1103
- operations.putInstallation,
1104
- requestAdapter
1105
- ),
1106
- deleteInstallation: requestFunctionBuilder(
1107
- operations.deleteInstallation,
1108
- requestAdapter
1109
- ),
1110
- applyInstallationWithFinance: requestFunctionBuilder(
1111
- operations.applyInstallationWithFinance,
1112
- requestAdapter
1113
- ),
1114
1054
  getSubscriptions: requestFunctionBuilder(
1115
1055
  operations.getSubscriptions,
1116
1056
  requestAdapter
@@ -1457,17 +1397,6 @@ export const leadServiceBuilder = (
1457
1397
  referLead: requestFunctions.referLead,
1458
1398
  });
1459
1399
 
1460
- export const installationServiceBuilder = (
1461
- requestFunctions: OperationRequestFunctionMap
1462
- ) => ({
1463
- getInstallations: requestFunctions.getInstallations,
1464
- postInstallation: requestFunctions.postInstallation,
1465
- getInstallation: requestFunctions.getInstallation,
1466
- putInstallation: requestFunctions.putInstallation,
1467
- deleteInstallation: requestFunctions.deleteInstallation,
1468
- applyInstallationWithFinance: requestFunctions.applyInstallationWithFinance,
1469
- });
1470
-
1471
1400
  export const subscriptionServiceBuilder = (
1472
1401
  requestFunctions: OperationRequestFunctionMap
1473
1402
  ) => ({
@@ -1653,12 +1582,6 @@ export interface Operations {
1653
1582
  connectTradesLead: typeof connectTradesLeadOperation;
1654
1583
  acceptedJobSummaryLead: typeof acceptedJobSummaryLeadOperation;
1655
1584
  referLead: typeof referLeadOperation;
1656
- getInstallations: typeof getInstallationsOperation;
1657
- postInstallation: typeof postInstallationOperation;
1658
- getInstallation: typeof getInstallationOperation;
1659
- putInstallation: typeof putInstallationOperation;
1660
- deleteInstallation: typeof deleteInstallationOperation;
1661
- applyInstallationWithFinance: typeof applyInstallationWithFinanceOperation;
1662
1585
  getSubscriptions: typeof getSubscriptionsOperation;
1663
1586
  postSubscription: typeof postSubscriptionOperation;
1664
1587
  getSubscription: typeof getSubscriptionOperation;