@silexpert/core 1.1.49 → 1.1.50
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/AccountsSectors.d.ts +2 -1
- package/es/api/resources/AccountsSectors.d.ts.map +1 -1
- package/es/api/resources/AccountsSectors.js +3 -0
- package/es/api/resources/AccountsSectors.js.map +1 -1
- package/es/api/resources/BusinessSector.d.ts +8 -0
- package/es/api/resources/BusinessSector.d.ts.map +1 -0
- package/es/api/resources/BusinessSector.js +13 -0
- package/es/api/resources/BusinessSector.js.map +1 -0
- package/es/api/resources/Payment.d.ts +2 -1
- package/es/api/resources/Payment.d.ts.map +1 -1
- package/es/api/resources/Payment.js +9 -0
- package/es/api/resources/Payment.js.map +1 -1
- package/es/api/resources.d.ts +2 -0
- package/es/api/resources.d.ts.map +1 -1
- package/es/api/resources.js +2 -0
- package/es/api/resources.js.map +1 -1
- package/es/types/Enum/Sector.d.ts +33 -3
- package/es/types/Enum/Sector.d.ts.map +1 -1
- package/es/types/Enum/Sector.js +288 -3
- package/es/types/Enum/Sector.js.map +1 -1
- package/es/types/Interface/api/account/QueryAccounts.d.ts +3 -0
- package/es/types/Interface/api/account/QueryAccounts.d.ts.map +1 -1
- package/es/types/Interface/api/account/QueryAccounts.js +12 -0
- package/es/types/Interface/api/account/QueryAccounts.js.map +1 -1
- package/es/types/Interface/api/accountsSectors/Query.d.ts +4 -0
- package/es/types/Interface/api/accountsSectors/Query.d.ts.map +1 -0
- package/es/types/Interface/api/accountsSectors/Query.js +19 -0
- package/es/types/Interface/api/accountsSectors/Query.js.map +1 -0
- package/es/types/Interface/api/businessSector/Create.d.ts +4 -0
- package/es/types/Interface/api/businessSector/Create.d.ts.map +1 -0
- package/es/types/Interface/api/businessSector/Create.js +17 -0
- package/es/types/Interface/api/businessSector/Create.js.map +1 -0
- package/es/types/Interface/api/businessSector/Delete.d.ts +4 -0
- package/es/types/Interface/api/businessSector/Delete.d.ts.map +1 -0
- package/es/types/Interface/api/businessSector/Delete.js +17 -0
- package/es/types/Interface/api/businessSector/Delete.js.map +1 -0
- package/es/types/Interface/api/businessSector/Query.d.ts +4 -0
- package/es/types/Interface/api/businessSector/Query.d.ts.map +1 -0
- package/es/types/Interface/api/businessSector/Query.js +17 -0
- package/es/types/Interface/api/businessSector/Query.js.map +1 -0
- package/es/types/Interface/api/payment/QueryPayment.d.ts +5 -0
- package/es/types/Interface/api/payment/QueryPayment.d.ts.map +1 -0
- package/es/types/Interface/api/payment/QueryPayment.js +34 -0
- package/es/types/Interface/api/payment/QueryPayment.js.map +1 -0
- package/es/types/Interface/models/IBusinessSector.d.ts +10 -0
- package/es/types/Interface/models/IBusinessSector.d.ts.map +1 -0
- package/es/types/Interface/models/IBusinessSector.js +2 -0
- package/es/types/Interface/models/IBusinessSector.js.map +1 -0
- package/es/types/index.d.ts +6 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +6 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/AccountsSectors.js +5 -0
- package/js/api/resources/AccountsSectors.js.map +1 -1
- package/js/api/resources/BusinessSector.js +24 -0
- package/js/api/resources/BusinessSector.js.map +1 -0
- package/js/api/resources/Payment.js +9 -0
- package/js/api/resources/Payment.js.map +1 -1
- package/js/api/resources.js +3 -1
- package/js/api/resources.js.map +1 -1
- package/js/types/Enum/Sector.js +244 -3
- package/js/types/Enum/Sector.js.map +1 -1
- package/js/types/Interface/api/account/QueryAccounts.js +3 -0
- package/js/types/Interface/api/account/QueryAccounts.js.map +1 -1
- package/js/types/Interface/api/accountsSectors/Query.js +22 -0
- package/js/types/Interface/api/accountsSectors/Query.js.map +1 -0
- package/js/types/Interface/api/businessSector/Create.js +21 -0
- package/js/types/Interface/api/businessSector/Create.js.map +1 -0
- package/js/types/Interface/api/businessSector/Delete.js +21 -0
- package/js/types/Interface/api/businessSector/Delete.js.map +1 -0
- package/js/types/Interface/api/businessSector/Query.js +21 -0
- package/js/types/Interface/api/businessSector/Query.js.map +1 -0
- package/js/types/Interface/api/payment/QueryPayment.js +33 -0
- package/js/types/Interface/api/payment/QueryPayment.js.map +1 -0
- package/js/types/Interface/models/IBusinessSector.js +6 -0
- package/js/types/Interface/models/IBusinessSector.js.map +1 -0
- package/js/types/index.js +60 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/AccountsSectors.ts +7 -1
- package/ts/api/resources/BusinessSector.ts +17 -0
- package/ts/api/resources/Payment.ts +11 -1
- package/ts/api/resources.ts +2 -0
- package/ts/types/Enum/Sector.ts +308 -4
- package/ts/types/Interface/api/account/QueryAccounts.ts +9 -0
- package/ts/types/Interface/api/accountsSectors/Query.ts +8 -0
- package/ts/types/Interface/api/businessSector/Create.ts +6 -0
- package/ts/types/Interface/api/businessSector/Delete.ts +6 -0
- package/ts/types/Interface/api/businessSector/Query.ts +6 -0
- package/ts/types/Interface/api/payment/QueryPayment.ts +22 -0
- package/ts/types/Interface/models/IBusinessSector.ts +12 -0
- package/ts/types/index.ts +6 -0
package/js/types/index.js
CHANGED
|
@@ -3053,6 +3053,16 @@ Object.keys(_IAppNotification).forEach(function (key) {
|
|
|
3053
3053
|
}
|
|
3054
3054
|
});
|
|
3055
3055
|
});
|
|
3056
|
+
var _IBusinessSector = require("./Interface/models/IBusinessSector");
|
|
3057
|
+
Object.keys(_IBusinessSector).forEach(function (key) {
|
|
3058
|
+
if (key === "default" || key === "__esModule") return;
|
|
3059
|
+
Object.defineProperty(exports, key, {
|
|
3060
|
+
enumerable: true,
|
|
3061
|
+
get: function () {
|
|
3062
|
+
return _IBusinessSector[key];
|
|
3063
|
+
}
|
|
3064
|
+
});
|
|
3065
|
+
});
|
|
3056
3066
|
var _IRegistrationDetail = require("./Interface/schemas/IRegistrationDetail");
|
|
3057
3067
|
Object.keys(_IRegistrationDetail).forEach(function (key) {
|
|
3058
3068
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -4833,6 +4843,16 @@ Object.keys(_QueryMonthlyPayment).forEach(function (key) {
|
|
|
4833
4843
|
}
|
|
4834
4844
|
});
|
|
4835
4845
|
});
|
|
4846
|
+
var _QueryPayment = require("./Interface/api/payment/QueryPayment");
|
|
4847
|
+
Object.keys(_QueryPayment).forEach(function (key) {
|
|
4848
|
+
if (key === "default" || key === "__esModule") return;
|
|
4849
|
+
Object.defineProperty(exports, key, {
|
|
4850
|
+
enumerable: true,
|
|
4851
|
+
get: function () {
|
|
4852
|
+
return _QueryPayment[key];
|
|
4853
|
+
}
|
|
4854
|
+
});
|
|
4855
|
+
});
|
|
4836
4856
|
var _Create2 = require("./Interface/api/firstStep/Create");
|
|
4837
4857
|
Object.keys(_Create2).forEach(function (key) {
|
|
4838
4858
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -9043,6 +9063,46 @@ Object.keys(_Create12).forEach(function (key) {
|
|
|
9043
9063
|
}
|
|
9044
9064
|
});
|
|
9045
9065
|
});
|
|
9066
|
+
var _Create13 = require("./Interface/api/businessSector/Create");
|
|
9067
|
+
Object.keys(_Create13).forEach(function (key) {
|
|
9068
|
+
if (key === "default" || key === "__esModule") return;
|
|
9069
|
+
Object.defineProperty(exports, key, {
|
|
9070
|
+
enumerable: true,
|
|
9071
|
+
get: function () {
|
|
9072
|
+
return _Create13[key];
|
|
9073
|
+
}
|
|
9074
|
+
});
|
|
9075
|
+
});
|
|
9076
|
+
var _Query12 = require("./Interface/api/businessSector/Query");
|
|
9077
|
+
Object.keys(_Query12).forEach(function (key) {
|
|
9078
|
+
if (key === "default" || key === "__esModule") return;
|
|
9079
|
+
Object.defineProperty(exports, key, {
|
|
9080
|
+
enumerable: true,
|
|
9081
|
+
get: function () {
|
|
9082
|
+
return _Query12[key];
|
|
9083
|
+
}
|
|
9084
|
+
});
|
|
9085
|
+
});
|
|
9086
|
+
var _Delete = require("./Interface/api/businessSector/Delete");
|
|
9087
|
+
Object.keys(_Delete).forEach(function (key) {
|
|
9088
|
+
if (key === "default" || key === "__esModule") return;
|
|
9089
|
+
Object.defineProperty(exports, key, {
|
|
9090
|
+
enumerable: true,
|
|
9091
|
+
get: function () {
|
|
9092
|
+
return _Delete[key];
|
|
9093
|
+
}
|
|
9094
|
+
});
|
|
9095
|
+
});
|
|
9096
|
+
var _Query13 = require("./Interface/api/accountsSectors/Query");
|
|
9097
|
+
Object.keys(_Query13).forEach(function (key) {
|
|
9098
|
+
if (key === "default" || key === "__esModule") return;
|
|
9099
|
+
Object.defineProperty(exports, key, {
|
|
9100
|
+
enumerable: true,
|
|
9101
|
+
get: function () {
|
|
9102
|
+
return _Query13[key];
|
|
9103
|
+
}
|
|
9104
|
+
});
|
|
9105
|
+
});
|
|
9046
9106
|
var _Util4 = require("./Interface/enum/Util");
|
|
9047
9107
|
Object.keys(_Util4).forEach(function (key) {
|
|
9048
9108
|
if (key === "default" || key === "__esModule") return;
|