@silexpert/core 1.0.204 → 1.0.206
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/es/api/resources/FirstStep.d.ts +2 -1
- package/es/api/resources/FirstStep.d.ts.map +1 -1
- package/es/api/resources/FirstStep.js +3 -0
- package/es/api/resources/FirstStep.js.map +1 -1
- package/es/types/Enum/BrandClems.d.ts +164 -0
- package/es/types/Enum/BrandClems.d.ts.map +1 -0
- package/es/types/Enum/BrandClems.js +155 -0
- package/es/types/Enum/BrandClems.js.map +1 -0
- package/es/types/Enum/BrandPourcentage.js +2 -2
- package/es/types/Enum/BrandPourcentage.js.map +1 -1
- package/es/types/Enum/Country.d.ts +200 -0
- package/es/types/Enum/Country.d.ts.map +1 -1
- package/es/types/Enum/Country.js +393 -0
- package/es/types/Enum/Country.js.map +1 -1
- package/es/types/Enum/PaymentExpectation.d.ts +18 -0
- package/es/types/Enum/PaymentExpectation.d.ts.map +1 -0
- package/es/types/Enum/PaymentExpectation.js +66 -0
- package/es/types/Enum/PaymentExpectation.js.map +1 -0
- package/es/types/Interface/api/firstStep/Create.d.ts +10 -0
- package/es/types/Interface/api/firstStep/Create.d.ts.map +1 -0
- package/es/types/Interface/api/firstStep/Create.js +56 -0
- package/es/types/Interface/api/firstStep/Create.js.map +1 -0
- package/es/types/index.d.ts +2 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +2 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/FirstStep.js +3 -0
- package/js/api/resources/FirstStep.js.map +1 -1
- package/js/types/Enum/BrandClems.js +157 -0
- package/js/types/Enum/BrandClems.js.map +1 -0
- package/js/types/Enum/BrandPourcentage.js +2 -2
- package/js/types/Enum/BrandPourcentage.js.map +1 -1
- package/js/types/Enum/Country.js +780 -0
- package/js/types/Enum/Country.js.map +1 -1
- package/js/types/Enum/PaymentExpectation.js +60 -0
- package/js/types/Enum/PaymentExpectation.js.map +1 -0
- package/js/types/Interface/api/firstStep/Create.js +28 -0
- package/js/types/Interface/api/firstStep/Create.js.map +1 -0
- package/js/types/index.js +47 -27
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/FirstStep.ts +5 -1
- package/ts/types/Enum/BrandClems.ts +154 -0
- package/ts/types/Enum/BrandPourcentage.ts +2 -2
- package/ts/types/Enum/Country.ts +394 -0
- package/ts/types/Enum/PaymentExpectation.ts +65 -0
- package/ts/types/Interface/api/firstStep/Create.ts +39 -0
- package/ts/types/index.ts +2 -0
package/ts/types/index.ts
CHANGED
|
@@ -462,6 +462,7 @@ export * from './Enum/EntityType';
|
|
|
462
462
|
export * from './Enum/Compensation';
|
|
463
463
|
export * from './Enum/CashDeskTransactionType';
|
|
464
464
|
export * from './Enum/ThirdParty';
|
|
465
|
+
export * from './Enum/PaymentExpectation';
|
|
465
466
|
|
|
466
467
|
// Interfaces API
|
|
467
468
|
export * from './Interface/api/partnerTransactionType/ReadPartnerTransactionType';
|
|
@@ -476,6 +477,7 @@ export * from './Interface/api/accountingEntry/CreateManualEntry';
|
|
|
476
477
|
export * from './Interface/api/immobilization/ReadFormattedImmobilization';
|
|
477
478
|
export * from './Interface/api/immobilization/CreateImmobilization';
|
|
478
479
|
export * from './Interface/api/payment/QueryMonthlyPayment';
|
|
480
|
+
export * from './Interface/api/firstStep/Create';
|
|
479
481
|
export * from './Interface/api/registration/QueryRegistration';
|
|
480
482
|
export * from './Interface/api/paymentExpectationCustomer/ReadPaymentExpectationCustomer';
|
|
481
483
|
export * from './Interface/api/paymentExpectationCustomer/QueryPaymentExpectationCustomer';
|