cecon-interfaces 1.9.52 → 1.9.55
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/esm2022/natipay/cards/entities/card-account-provider.entity.mjs +15 -0
- package/dist/esm2022/natipay/cards/entities/card-auth.entity.mjs +15 -0
- package/dist/esm2022/natipay/cards/entities/card-company.entity.mjs +17 -0
- package/dist/esm2022/natipay/cards/entities/card-config.entity.mjs +28 -0
- package/dist/esm2022/natipay/cards/entities/card-data.entity.mjs +18 -0
- package/dist/esm2022/natipay/cards/entities/card-item.entity.mjs +14 -0
- package/dist/esm2022/natipay/cards/entities/card.entity.mjs +39 -0
- package/dist/esm2022/natipay/cards/entities/index.mjs +8 -0
- package/dist/esm2022/natipay/cards/enums/account-provider.enum.mjs +9 -0
- package/dist/esm2022/natipay/cards/enums/index.mjs +6 -0
- package/dist/esm2022/natipay/cards/enums/mode.enum.mjs +8 -0
- package/dist/esm2022/natipay/cards/enums/status-production.enum.mjs +9 -0
- package/dist/esm2022/natipay/cards/enums/status.enum.mjs +11 -0
- package/dist/esm2022/natipay/cards/enums/type.enum.mjs +6 -0
- package/dist/esm2022/natipay/cards/index.mjs +4 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-account-provider.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-auth.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-company.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-config.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-data.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card-item.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/i-card.mjs +2 -0
- package/dist/esm2022/natipay/cards/interfaces/index.mjs +2 -0
- package/dist/esm2022/natipay/index.mjs +2 -1
- package/dist/esm2022/order/interfaces/i-benefits.mjs +1 -1
- package/dist/esm2022/payio/cards/entities/card-config.entity.mjs +2 -8
- package/dist/esm2022/payio/cards/entities/card.entity.mjs +3 -14
- package/dist/esm2022/payio/cards/entities/index.mjs +1 -3
- package/dist/esm2022/payio/cards/enums/mode.enum.mjs +1 -2
- package/dist/esm2022/payio/cards/interfaces/i-card-config.mjs +1 -1
- package/dist/esm2022/payio/cards/interfaces/i-card.mjs +1 -1
- package/dist/esm2022/payio/cards/interfaces/index.mjs +1 -1
- package/dist/esm2022/payio/user/entities/index.mjs +2 -2
- package/dist/esm2022/payio/user/entities/user-report.entity.mjs +1 -1
- package/dist/esm2022/payio/user/entities/user-sessions.entity.mjs +2 -2
- package/dist/esm2022/payio/user/entities/user.entity.mjs +1 -1
- package/dist/esm2022/payio/user/interfaces/i-user-report.mjs +1 -1
- package/dist/esm2022/payio/user/interfaces/i-user-sessions.mjs +1 -1
- package/dist/esm2022/payio/user/interfaces/i-user.mjs +1 -1
- package/dist/esm2022/payio/user/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +184 -50
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/cards/entities/card-account-provider.entity.d.ts +7 -0
- package/dist/natipay/cards/entities/card-account-provider.entity.js +19 -0
- package/dist/natipay/cards/entities/card-auth.entity.d.ts +7 -0
- package/dist/natipay/cards/entities/card-auth.entity.js +19 -0
- package/dist/natipay/cards/entities/card-company.entity.d.ts +9 -0
- package/dist/natipay/cards/entities/card-company.entity.js +21 -0
- package/dist/natipay/cards/entities/card-config.entity.d.ts +22 -0
- package/dist/natipay/cards/entities/card-config.entity.js +31 -0
- package/dist/natipay/cards/entities/card-data.entity.d.ts +10 -0
- package/dist/{payio → natipay}/cards/entities/card-data.entity.js +5 -5
- package/dist/natipay/cards/entities/card-item.entity.d.ts +6 -0
- package/dist/natipay/cards/entities/card-item.entity.js +18 -0
- package/dist/natipay/cards/entities/card.entity.d.ts +30 -0
- package/dist/natipay/cards/entities/card.entity.js +43 -0
- package/dist/natipay/cards/entities/index.d.ts +7 -0
- package/dist/natipay/cards/entities/index.js +17 -0
- package/dist/natipay/cards/enums/account-provider.enum.d.ts +7 -0
- package/dist/natipay/cards/enums/account-provider.enum.js +11 -0
- package/dist/natipay/cards/enums/index.d.ts +5 -0
- package/dist/natipay/cards/enums/index.js +13 -0
- package/dist/natipay/cards/enums/mode.enum.d.ts +6 -0
- package/dist/natipay/cards/enums/mode.enum.js +10 -0
- package/dist/natipay/cards/enums/status-production.enum.d.ts +7 -0
- package/dist/natipay/cards/enums/status-production.enum.js +11 -0
- package/dist/natipay/cards/enums/status.enum.d.ts +9 -0
- package/dist/natipay/cards/enums/status.enum.js +13 -0
- package/dist/natipay/cards/enums/type.enum.d.ts +4 -0
- package/dist/natipay/cards/enums/type.enum.js +8 -0
- package/dist/natipay/cards/index.d.ts +3 -0
- package/dist/natipay/cards/index.js +19 -0
- package/dist/natipay/cards/interfaces/i-card-account-provider.d.ts +5 -0
- package/dist/natipay/cards/interfaces/i-card-auth.d.ts +5 -0
- package/dist/natipay/cards/interfaces/i-card-company.d.ts +7 -0
- package/dist/natipay/cards/interfaces/i-card-company.js +2 -0
- package/dist/natipay/cards/interfaces/i-card-config.d.ts +21 -0
- package/dist/natipay/cards/interfaces/i-card-config.js +2 -0
- package/dist/{payio → natipay}/cards/interfaces/i-card-data.d.ts +1 -1
- package/dist/natipay/cards/interfaces/i-card-data.js +2 -0
- package/dist/natipay/cards/interfaces/i-card-item.d.ts +4 -0
- package/dist/natipay/cards/interfaces/i-card-item.js +2 -0
- package/dist/natipay/cards/interfaces/i-card.d.ts +29 -0
- package/dist/natipay/cards/interfaces/i-card.js +2 -0
- package/dist/natipay/cards/interfaces/index.d.ts +7 -0
- package/dist/natipay/cards/interfaces/index.js +2 -0
- package/dist/natipay/index.d.ts +1 -0
- package/dist/natipay/index.js +1 -0
- package/dist/payio/cards/entities/card-config.entity.d.ts +1 -7
- package/dist/payio/cards/entities/card-config.entity.js +0 -6
- package/dist/payio/cards/entities/card.entity.d.ts +2 -13
- package/dist/payio/cards/entities/card.entity.js +2 -13
- package/dist/payio/cards/entities/index.d.ts +0 -2
- package/dist/payio/cards/entities/index.js +1 -5
- package/dist/payio/cards/enums/mode.enum.d.ts +0 -1
- package/dist/payio/cards/enums/mode.enum.js +0 -1
- package/dist/payio/cards/interfaces/i-card-config.d.ts +1 -7
- package/dist/payio/cards/interfaces/i-card.d.ts +4 -15
- package/dist/payio/cards/interfaces/index.d.ts +0 -2
- package/dist/payio/user/entities/index.d.ts +1 -1
- package/dist/payio/user/entities/index.js +2 -2
- package/dist/payio/user/entities/user-report.entity.d.ts +2 -2
- package/dist/payio/user/entities/user-sessions.entity.d.ts +3 -3
- package/dist/payio/user/entities/user-sessions.entity.js +5 -5
- package/dist/payio/user/entities/user.entity.d.ts +2 -2
- package/dist/payio/user/interfaces/i-user-report.d.ts +2 -2
- package/dist/payio/user/interfaces/i-user-sessions.d.ts +1 -1
- package/dist/payio/user/interfaces/i-user.d.ts +2 -2
- package/dist/payio/user/interfaces/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/esm2022/payio/cards/entities/card-account-provider.entity.mjs +0 -15
- package/dist/esm2022/payio/cards/entities/card-data.entity.mjs +0 -18
- package/dist/esm2022/payio/cards/interfaces/i-card-account-provider.mjs +0 -2
- package/dist/esm2022/payio/cards/interfaces/i-card-data.mjs +0 -2
- package/dist/payio/cards/entities/card-account-provider.entity.d.ts +0 -7
- package/dist/payio/cards/entities/card-account-provider.entity.js +0 -19
- package/dist/payio/cards/entities/card-data.entity.d.ts +0 -10
- package/dist/payio/cards/interfaces/i-card-account-provider.d.ts +0 -5
- /package/dist/{payio → natipay}/cards/interfaces/i-card-account-provider.js +0 -0
- /package/dist/{payio/cards/interfaces/i-card-data.js → natipay/cards/interfaces/i-card-auth.js} +0 -0
@@ -5966,6 +5966,186 @@ class NatiV2ValidateCodeEntity {
|
|
5966
5966
|
}
|
5967
5967
|
}
|
5968
5968
|
|
5969
|
+
class NatipayCardCompanyEntity {
|
5970
|
+
doc = '';
|
5971
|
+
docType = EDocType.CNPJ;
|
5972
|
+
id = '';
|
5973
|
+
name = '';
|
5974
|
+
constructor(data) {
|
5975
|
+
if (data) {
|
5976
|
+
for (let key in data) {
|
5977
|
+
if (data.hasOwnProperty(key) && key in this) {
|
5978
|
+
this[key] = data[key];
|
5979
|
+
}
|
5980
|
+
}
|
5981
|
+
}
|
5982
|
+
}
|
5983
|
+
}
|
5984
|
+
|
5985
|
+
class NatipayCardItemEntity {
|
5986
|
+
externalCode = '';
|
5987
|
+
name = '';
|
5988
|
+
constructor(data) {
|
5989
|
+
if (data) {
|
5990
|
+
for (let key in data) {
|
5991
|
+
if (data.hasOwnProperty(key) && key in this) {
|
5992
|
+
this[key] = data[key];
|
5993
|
+
}
|
5994
|
+
}
|
5995
|
+
}
|
5996
|
+
}
|
5997
|
+
}
|
5998
|
+
|
5999
|
+
class NatipayCardAuthEntity {
|
6000
|
+
basic = null;
|
6001
|
+
password = null;
|
6002
|
+
user = null;
|
6003
|
+
constructor(data) {
|
6004
|
+
if (data) {
|
6005
|
+
for (let key in data) {
|
6006
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6007
|
+
this[key] = data[key];
|
6008
|
+
}
|
6009
|
+
}
|
6010
|
+
}
|
6011
|
+
}
|
6012
|
+
}
|
6013
|
+
|
6014
|
+
class NatipayCardConfigEntity {
|
6015
|
+
appIds = [];
|
6016
|
+
auth;
|
6017
|
+
balance = 0;
|
6018
|
+
billingCycle = ECycle.NONE;
|
6019
|
+
companies = [];
|
6020
|
+
creditLimit = 0;
|
6021
|
+
description = null;
|
6022
|
+
discountAmount = 0;
|
6023
|
+
discountAmountType = EAmountMode.PERCENTAGE;
|
6024
|
+
dueDate = new Date();
|
6025
|
+
invoiceLogs = [];
|
6026
|
+
items = [];
|
6027
|
+
key = null;
|
6028
|
+
password = null;
|
6029
|
+
webhookUrls = [];
|
6030
|
+
constructor(data) {
|
6031
|
+
if (data) {
|
6032
|
+
for (let key in data) {
|
6033
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6034
|
+
this[key] = data[key];
|
6035
|
+
}
|
6036
|
+
}
|
6037
|
+
}
|
6038
|
+
}
|
6039
|
+
}
|
6040
|
+
|
6041
|
+
class NatipayCardDataEntity {
|
6042
|
+
cvv = '';
|
6043
|
+
formattedNumber = '';
|
6044
|
+
isValid = false;
|
6045
|
+
maskedNumber = '';
|
6046
|
+
number = '';
|
6047
|
+
validThru = '';
|
6048
|
+
constructor(data) {
|
6049
|
+
if (data) {
|
6050
|
+
for (let key in data) {
|
6051
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6052
|
+
this[key] = data[key];
|
6053
|
+
}
|
6054
|
+
}
|
6055
|
+
}
|
6056
|
+
}
|
6057
|
+
}
|
6058
|
+
|
6059
|
+
var ENatipayCardAccountProvider;
|
6060
|
+
(function (ENatipayCardAccountProvider) {
|
6061
|
+
ENatipayCardAccountProvider["NATIPAY"] = "NATIPAY";
|
6062
|
+
ENatipayCardAccountProvider["IUGU"] = "IUGU";
|
6063
|
+
ENatipayCardAccountProvider["ASAAS"] = "ASAAS";
|
6064
|
+
ENatipayCardAccountProvider["MERCADOPAGO"] = "MERCADOPAGO";
|
6065
|
+
ENatipayCardAccountProvider["PAGARME"] = "PAGARME";
|
6066
|
+
})(ENatipayCardAccountProvider || (ENatipayCardAccountProvider = {}));
|
6067
|
+
|
6068
|
+
var ENatipayCardMode;
|
6069
|
+
(function (ENatipayCardMode) {
|
6070
|
+
ENatipayCardMode["DISCOUNT"] = "DISCOUNT";
|
6071
|
+
ENatipayCardMode["ACCOUNT"] = "ACCOUNT";
|
6072
|
+
ENatipayCardMode["HYBRID"] = "HYBRID";
|
6073
|
+
ENatipayCardMode["MANAGER"] = "MANAGER";
|
6074
|
+
})(ENatipayCardMode || (ENatipayCardMode = {}));
|
6075
|
+
|
6076
|
+
var ENatipayCardStatus;
|
6077
|
+
(function (ENatipayCardStatus) {
|
6078
|
+
ENatipayCardStatus["ACTIVE"] = "ACTIVE";
|
6079
|
+
ENatipayCardStatus["REVOKED"] = "REVOKED";
|
6080
|
+
ENatipayCardStatus["INACTIVE"] = "INACTIVE";
|
6081
|
+
ENatipayCardStatus["CANCELLED"] = "CANCELLED";
|
6082
|
+
ENatipayCardStatus["BLOCKED"] = "BLOCKED";
|
6083
|
+
ENatipayCardStatus["SUSPENDED"] = "SUSPENDED";
|
6084
|
+
ENatipayCardStatus["LOCKED"] = "LOCKED";
|
6085
|
+
})(ENatipayCardStatus || (ENatipayCardStatus = {}));
|
6086
|
+
|
6087
|
+
var ENatipayCardStatusProduction;
|
6088
|
+
(function (ENatipayCardStatusProduction) {
|
6089
|
+
ENatipayCardStatusProduction["READY"] = "READY";
|
6090
|
+
ENatipayCardStatusProduction["DISPATCHED"] = "DISPATCHED";
|
6091
|
+
ENatipayCardStatusProduction["DELIVERED"] = "DELIVERED";
|
6092
|
+
ENatipayCardStatusProduction["PENDING"] = "PENDING";
|
6093
|
+
ENatipayCardStatusProduction["IN_PRODUCTION"] = "IN_PRODUCTION";
|
6094
|
+
})(ENatipayCardStatusProduction || (ENatipayCardStatusProduction = {}));
|
6095
|
+
|
6096
|
+
var ENatipayCardType;
|
6097
|
+
(function (ENatipayCardType) {
|
6098
|
+
ENatipayCardType["VIRTUAL"] = "VIRTUAL";
|
6099
|
+
ENatipayCardType["PHYSICAL"] = "PHYSICAL";
|
6100
|
+
})(ENatipayCardType || (ENatipayCardType = {}));
|
6101
|
+
|
6102
|
+
class NatipayCardAccountProviderEntity {
|
6103
|
+
reference = '';
|
6104
|
+
type = ENatipayCardAccountProvider.NATIPAY;
|
6105
|
+
constructor(data) {
|
6106
|
+
if (data) {
|
6107
|
+
for (let key in data) {
|
6108
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6109
|
+
this[key] = data[key];
|
6110
|
+
}
|
6111
|
+
}
|
6112
|
+
}
|
6113
|
+
}
|
6114
|
+
}
|
6115
|
+
|
6116
|
+
class NatipayCardEntity {
|
6117
|
+
accountProvider = new NatipayCardAccountProviderEntity();
|
6118
|
+
active = false;
|
6119
|
+
companyId = '';
|
6120
|
+
config = new NatipayCardConfigEntity();
|
6121
|
+
consumerExternalReference = null;
|
6122
|
+
consumerId = null;
|
6123
|
+
consumerMetadata = null;
|
6124
|
+
containerId = null;
|
6125
|
+
createdAt = new Date();
|
6126
|
+
data = new NatipayCardDataEntity();
|
6127
|
+
id = '';
|
6128
|
+
label = '';
|
6129
|
+
logs = [];
|
6130
|
+
mode = ENatipayCardMode.HYBRID;
|
6131
|
+
status = ENatipayCardStatus.BLOCKED;
|
6132
|
+
statusProduction = ENatipayCardStatusProduction.PENDING;
|
6133
|
+
tags = [];
|
6134
|
+
type = ENatipayCardType.VIRTUAL;
|
6135
|
+
unlockCode = null;
|
6136
|
+
unlockedAt = null;
|
6137
|
+
updatedAt = new Date();
|
6138
|
+
constructor(data) {
|
6139
|
+
if (data) {
|
6140
|
+
for (let key in data) {
|
6141
|
+
if (data.hasOwnProperty(key) && key in this) {
|
6142
|
+
this[key] = data[key];
|
6143
|
+
}
|
6144
|
+
}
|
6145
|
+
}
|
6146
|
+
}
|
6147
|
+
}
|
6148
|
+
|
5969
6149
|
class NatiapyAddressEntity {
|
5970
6150
|
// #region Properties (11)
|
5971
6151
|
city = '';
|
@@ -8643,7 +8823,7 @@ class PayioUserReportEvidenceEntity {
|
|
8643
8823
|
url;
|
8644
8824
|
}
|
8645
8825
|
|
8646
|
-
class
|
8826
|
+
class PayioUserSessionEntity {
|
8647
8827
|
companyId = null;
|
8648
8828
|
companyName = null;
|
8649
8829
|
deviceId = null;
|
@@ -8968,37 +9148,13 @@ class PayioCardAuthEntity {
|
|
8968
9148
|
class PayioCardConfigEntity {
|
8969
9149
|
appIds = [];
|
8970
9150
|
auth;
|
8971
|
-
balance = 0;
|
8972
|
-
billingCycle = ECycle.NONE;
|
8973
9151
|
companies = [];
|
8974
|
-
creditLimit = 0;
|
8975
9152
|
description = null;
|
8976
9153
|
discountAmount = 0;
|
8977
9154
|
discountAmountType = EAmountMode.PERCENTAGE;
|
8978
|
-
dueDate = new Date();
|
8979
|
-
invoiceLogs = [];
|
8980
9155
|
items = [];
|
8981
9156
|
key = null;
|
8982
9157
|
password = null;
|
8983
|
-
webhookUrls = [];
|
8984
|
-
constructor(data) {
|
8985
|
-
if (data) {
|
8986
|
-
for (let key in data) {
|
8987
|
-
if (data.hasOwnProperty(key) && key in this) {
|
8988
|
-
this[key] = data[key];
|
8989
|
-
}
|
8990
|
-
}
|
8991
|
-
}
|
8992
|
-
}
|
8993
|
-
}
|
8994
|
-
|
8995
|
-
class PayioCardDataEntity {
|
8996
|
-
cvv = '';
|
8997
|
-
formattedNumber = '';
|
8998
|
-
isValid = false;
|
8999
|
-
maskedNumber = '';
|
9000
|
-
number = '';
|
9001
|
-
validThru = '';
|
9002
9158
|
constructor(data) {
|
9003
9159
|
if (data) {
|
9004
9160
|
for (let key in data) {
|
@@ -9022,7 +9178,6 @@ var EPayioCardAccountProvider;
|
|
9022
9178
|
var ECardMode;
|
9023
9179
|
(function (ECardMode) {
|
9024
9180
|
ECardMode["DISCOUNT"] = "DISCOUNT";
|
9025
|
-
ECardMode["ACCOUNT"] = "ACCOUNT";
|
9026
9181
|
ECardMode["HYBRID"] = "HYBRID";
|
9027
9182
|
ECardMode["MANAGER"] = "MANAGER";
|
9028
9183
|
})(ECardMode || (ECardMode = {}));
|
@@ -9053,41 +9208,20 @@ var EPayioCardType;
|
|
9053
9208
|
EPayioCardType["PHYSICAL"] = "PHYSICAL";
|
9054
9209
|
})(EPayioCardType || (EPayioCardType = {}));
|
9055
9210
|
|
9056
|
-
class PayioCardAccountProviderEntity {
|
9057
|
-
reference = '';
|
9058
|
-
type = EPayioCardAccountProvider.NATIPAY;
|
9059
|
-
constructor(data) {
|
9060
|
-
if (data) {
|
9061
|
-
for (let key in data) {
|
9062
|
-
if (data.hasOwnProperty(key) && key in this) {
|
9063
|
-
this[key] = data[key];
|
9064
|
-
}
|
9065
|
-
}
|
9066
|
-
}
|
9067
|
-
}
|
9068
|
-
}
|
9069
|
-
|
9070
9211
|
class PayioCardEntity {
|
9071
|
-
accountProvider = new PayioCardAccountProviderEntity();
|
9072
9212
|
active = false;
|
9073
9213
|
companyId = '';
|
9074
9214
|
config = new PayioCardConfigEntity();
|
9075
|
-
consumerExternalReference = null;
|
9076
|
-
consumerId = null;
|
9077
|
-
consumerMetadata = null;
|
9078
9215
|
containerId = null;
|
9079
9216
|
createdAt = new Date();
|
9080
|
-
data = new PayioCardDataEntity();
|
9081
9217
|
id = '';
|
9082
9218
|
label = '';
|
9083
9219
|
logs = [];
|
9084
9220
|
mode = ECardMode.HYBRID;
|
9085
9221
|
status = EPayioCardStatus.BLOCKED;
|
9086
|
-
statusProduction = EPayioCardStatusProduction.PENDING;
|
9087
9222
|
tags = [];
|
9088
|
-
|
9089
|
-
|
9090
|
-
unLockedAt = null;
|
9223
|
+
unlockCode = null;
|
9224
|
+
unlockedAt = null;
|
9091
9225
|
updatedAt = new Date();
|
9092
9226
|
constructor(data) {
|
9093
9227
|
if (data) {
|
@@ -10060,5 +10194,5 @@ var BinanceSymbol;
|
|
10060
10194
|
* Generated bundle index. Do not edit.
|
10061
10195
|
*/
|
10062
10196
|
|
10063
|
-
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, BinanceStatus, BinanceSymbol, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppActivationMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECardMode, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, ECycle, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EGender, EGlobalSettingsExchange, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayJwtTokenType, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioActivationBatchStatus, EPayioActivationKeyStatus, EPayioAdminRole, EPayioAppSlug, EPayioCardAccountProvider, EPayioCardStatus, EPayioCardStatusProduction, EPayioCardType, EPayioCatalogContext, EPayioCatalogStatus, EPayioCategoryTemplate, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioEngines, EPayioImportStatus, EPayioJwtTokenType, EPayioLicenseType, EPayioMeasure, EPayioPreparationPlaceMode, EPayioRole, EPayioScheduleSkill, EPayioTabStatus, EPayioTransactionType, EPayioUserType, EPayioVisionTerminalModel, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EWorkShiftType, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingBinanceEntity, GlobalSettingBinanceRateEntity, GlobalSettingBlockchainEntity, GlobalSettingBlockchainSpreadEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIfoodCredentialsEntity, GlobalSettingIfoodEntity, GlobalSettingIfoodProductionEntity, GlobalSettingIfoodSandboxEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, N8nChatApiCallbackEntity, N8nChatContextEntity, N8nChatResponseEntity, N8nChatTriggerEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationBatchEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioBigChefConfigEntity, PayioBigChefConfigOperationEntity, PayioBigChefConfigPrinterEntity, PayioBigChefConfigScaleEntity, PayioCardAccountProviderEntity, PayioCardAuthEntity, PayioCardCompanyEntity, PayioCardConfigEntity, PayioCardDataEntity, PayioCardEntity, PayioCardItemEntity, PayioCardTransactionEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioCatalogCategoryEntity, PayioCatalogEntity, PayioCatalogItemEntity, PayioCatalogOptionEntity, PayioCatalogOptionGroupEntity, PayioCatalogPizzaCrustEntity, PayioCatalogPizzaEdgeEntity, PayioCatalogPizzaEntity, PayioCatalogPizzaSizeEntity, PayioCatalogPizzaToppingEntity, PayioCatalogShiftEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioConsumerEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioPreparationPlaceEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTerminalEntity, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserSessionsEntity, PayioUserTypeEnum, PayioWebhookEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SpreadAmountMode, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
|
10197
|
+
export { AccountInformationsEntity, AddressEntity, AppEntity, AppInfoEntity, BaseEntity, BillingEntity, BillingOrderEntity, BillingPaymentEntity, BillingTotalEntity, BinanceStatus, BinanceSymbol, CampaignRuleEntity, CarouselImageEntity, ClientAplicationCredentialEntity, ClientAplicationEntity, ClientEntity, CompanyContactEntity, CompanyCustomDataEntity, CompanyEntity, CompanyRemoteAccessEntity, CompanySettingsEntity, CompanySettingsWaServerEntity, CompanyTrialPlansUsedEntity, ContainerEntity, CoordsEntity, CustomVariableEntity, CustomerCreditLimitEntity, CustomerEntity, CustomerMemberEntity, CustomerMobyoEntity, DelivererMobyoEntity, DeliveryAreaEntity, DeliveryAreaFixedEntity, DesenfilaConfigEntity, DesenfilaConfigMercadoPagoEntity, DesenfilaContainerOrderEntity, DesenfilaContainerOrderItemEntity, DesenfilaContainerOrderPaymentEntity, DesenfilaContainerOrderPixEntity, DesenfilaEntity, DesenfilaFeeEntity, DesenfilaInfoEntity, DesenfilaMerchantAddressEntity, DesenfilaMerchantEntity, DesenfilaMerchantV2PaymentProviderEntity, DesenfilaTokenEntity, DeveloperAppCredentialsEntity, DeveloperAppEntity, DeveloperAppStatusEnum, DeveloperEntity, DeveloperMemberEntity, DeviceEntity, EAmountMode, EAppActivationMode, EAppCategory, EAppHeaderType, EAppMode, EAppType, EBankSlipStatus, EBarcodeFormat, EBillingStatus, EBooleanString, ECardMode, ECollectionsTypes, ECompanyKeys, ECompanyMessageType, ECustomerInterval, ECustomerStatus, ECustomerType, ECycle, EPaymentType as EDeprecatedPaymentType, EDeviceAppImages, EDeviceCheckoutImages, EDeviceStatus, EDiscountType, EDocType, EEventMessage, EEvolutionEvent, EEvolutionInstanceType, EEvolutionIntegrationType, EFcmSkill, EFeePayer, EFirebankTransactionStatus, EFirebankWithdrawDetailsKey, EFiscalDocModelCode, EFrom, EGender, EGlobalSettingsExchange, EIFoodCatalogContext, EIFoodDietaryRestrictions, EIFoodSellingOptions, EIFoodServing, EIFoodUnit, EImageFolder, EIndoorMode, EInstallationStatus, EIntDocType, EIntervalType, EInvoiceStatus, EJwtStatus, ELeadOrigin, ELegalEntiy, EMimeTypeFile, EMpStatus, EMpStatusDetail, ENatipayCardAccountProvider, ENatipayCardMode, ENatipayCardStatus, ENatipayCardStatusProduction, ENatipayCardType, ENatipayJwtTokenType, ENatipayOrderStatus, ENatipaySaleChannel, ENineNineCurrency, ENineNinePackageType, ENineNinePackageWeight, ENineNineVehicleType, EOperationType, EOperator, EOrderDeliveryMode, EOrderExtraInfo, EOrderStatus, EOrderTiming, EOrderType, EOs, EPayioActivationBatchStatus, EPayioActivationKeyStatus, EPayioAdminRole, EPayioAppSlug, EPayioCardAccountProvider, EPayioCardStatus, EPayioCardStatusProduction, EPayioCardType, EPayioCatalogContext, EPayioCatalogStatus, EPayioCategoryTemplate, EPayioChefOperationMode, EPayioChefTabMode, EPayioDistributorStatus, EPayioEngines, EPayioImportStatus, EPayioJwtTokenType, EPayioLicenseType, EPayioMeasure, EPayioPreparationPlaceMode, EPayioRole, EPayioScheduleSkill, EPayioTabStatus, EPayioTransactionType, EPayioUserType, EPayioVisionTerminalModel, EPaymentChannel, EPaymentMethodId, EPaymentMode, EPaymentProvider, EPaymentStatus, EPaymentType$1 as EPaymentType, EPaymentTypeId, EPixKeyType, EPlanFeatureType, EPlanIdentifier, EPlatform, EPubSub, EPubSubTopicType, EReleaseStatus, EResumeIntervalType, EResumeType, ERole, EOperationType as ESponsorIdentifier, ESponsorshipValues, ESubsStatus, ESubscriptionStatus, ETefProvider, ETransactionOperation, ETransactionProvider, ETransactionResumesTargetType, ETransactionStatus, ETypeFile, EVoucherRuleType, EVoucherStatus, EVoucherTargetTypes, EWaServerStatus, EWebhookMethod, EWebhookType, EWithdrawRequestStatus, EWorkShiftType, EventMessageEntity, EvolutionChatWootEntity, EvolutionDatabaseQueueEntity, EvolutionEntity, EvolutionHashEntity, EvolutionInstanceEntity, EvolutionMessageKeyResponseEntity, EvolutionMessageResponseEntity, EvolutionQrcodeEntity, EvolutionTypeBotEntity, EvolutionWebhookEntity, ExchangeEntity, FcmDataReceivedDesenfilaPaymentEntity, FcmDataRequestItemsEntity, FcmTokenMessageEntity, FeatureEntity, FeeDetailEntity, FeeEntity, FeeFromEntity, FeeSaleChannelEntity, FirebankCallbackEntity, FirebankCallbackErrorEntity, FirebankPaymentPostAddressEntity, FirebankPaymentPostContactEntity, FirebankPaymentPostEntity, FirebankPaymentPostPayerEntity, FirebankPaymentPostSplitEntity, FirebankPaymentPostTransactionEntity, FirebankTransactionCalendarioEntity, FirebankTransactionDevedorEntity, FirebankTransactionEntity, FirebankTransactionHistoryEntity, FirebankTransactionInfoEntity, FirebankTransactionLocEntity, FirebankTransactionNegotiatorEntity, FirebankTransactionOperationEntity, FirebankTransactionProviderResponseEntity, FirebankTransactionResponseBodyEntity, FirebankTransactionValorEntity, FirebankWithdrawPostDetailsEntity, FirebankWithdrawPostEntity, FirebankWithdrawPostResponseEntity, FirebaseQueryEntity, EGtintype as GTINTypeEnum, GeneralResumeTotalEntity, GlobalSettingBinanceEntity, GlobalSettingBinanceRateEntity, GlobalSettingBlockchainEntity, GlobalSettingBlockchainSpreadEntity, GlobalSettingEntity, GlobalSettingFirebankEntity, GlobalSettingIfoodCredentialsEntity, GlobalSettingIfoodEntity, GlobalSettingIfoodProductionEntity, GlobalSettingIfoodSandboxEntity, GlobalSettingIuguEntity, GlobalSettingMasterEntity, GlobalSettingMercadoPagoEntity, GlobalSettingNatiPayEntity, GlobalSettingTaxesEntity, InfoEntity, InstallationAppEntity, InstallationEntity, InviteEntity, InviteStatusEnum, InvoiceBankSlipEntity, InvoiceCreditCardEntity, InvoiceEntity, InvoiceItemEntity, InvoiceLogEntity, InvoicePayerEntity, InvoicePixEntity, IuguAccountEntity, IuguAutoAdvanceEnum, IuguBankEnum, IuguChargeCreditCardEntity, IuguCustomerEntity, IuguInvoiceBankSlipEntity, IuguInvoiceEntity, IuguInvoiceStatusEnum, IuguPaymentTokenDataEntity, IuguPaymentTokenEntity, LastVerificationRequestDataEntity, LeadEntity, LeadStatusEnum, LogsEntity, MasterEntity, MasterV1Entity, MemberAccessEntity, MemberAccessRoleEntity, MemberAccessRolePermissionEntity, MemberEntity, MemberRulesEnum, MemberTypeEnum, MessagerChannelEntity, MetadataEntity, MobyoApiConfigEntity, ECampaignRuleType as MobyoECampaignRuleType, ECompanyMessageChannel as MobyoECompanyMessageChannel, EDeviceAppMode as MobyoEDeviceAppMode, EDeviceAppStatus as MobyoEDeviceAppStatus, EDeviceCheckoutStatus as MobyoEDeviceCheckoutStatus, EDeviceCustomerName as MobyoEDeviceCustomerName, EDeviceMode as MobyoEDeviceMode, EDeviceScreenMode as MobyoEDeviceScreenMode, EDeviceTefType as MobyoEDeviceTefType, EEngineType as MobyoEEngineType, EIuguInvoicesStatus as MobyoEIuguInvoicesStatus, EMemberRules as MobyoEMemberRules, EOrderCancelReasons as MobyoEOrderCancelReasons, EOrderDeliveredBy as MobyoEOrderDeliveredBy, EOrderOccurrenceType as MobyoEOrderOccurrenceType, EOrderPaymentId as MobyoEOrderPaymentId, EOrderPaymentMethod as MobyoEOrderPaymentMethod, EOrderV3DeliveryMode as MobyoEOrderV3DeliveryMode, EOrderV3SalesChannel as MobyoEOrderV3SalesChannel, EOrderV3Timing as MobyoEOrderV3Timing, EOrderV3Type as MobyoEOrderV3Type, EPreferenceAutoReturn as MobyoEPreferenceAutoReturn, EPreparingStatus as MobyoEPreparingStatus, EProductHighlight as MobyoEProductHighlight, EProductSkillV2 as MobyoEProductSkillV2, EQuestionTypes as MobyoEQuestionTypes, ETopics as MobyoETopics, IEntity as MobyoIEntity, IPaymentMethod as MobyoIPaymentMethod, MobyoInfoEntity, MonitorEntity, MottuAddressEntity, MottuEventDeliveryManEntity, MottuEventEntity, MottuEventRequestedByEntity, MottuOrderDelivererEntity, MottuOrderDeliveryManEntity, MottuOrderEntity, MottuOrderPreviewEntity, MottuOrderStoreEntity, MottuStoreEntity, MottuStoreMatrixEntity, MottuStoreResponsibleEntity, N8nChatApiCallbackEntity, N8nChatContextEntity, N8nChatResponseEntity, N8nChatTriggerEntity, NatiGoEntity, NatiV1CartDesenfilaEntity, NatiV1CartEntity, NatiV1CartItemEntity, NatiV2ValidateCodeEntity, NatiWaEntity, NatiapyAddressEntity, NatipayCardAccountProviderEntity, NatipayCardAuthEntity, NatipayCardCompanyEntity, NatipayCardConfigEntity, NatipayCardDataEntity, NatipayCardEntity, NatipayCardItemEntity, NatipayCompanyEntity, NatipayCompanyExternalFeeEntity, NatipayEntity, NatipayFeeEntity, NatipayJwtPayloadAppEntity, NatipayJwtPayloadDeviceEntity, NatipayJwtPayloadEntity, NatipayJwtPayloadInfoEntity, NatipayJwtPayloadUserEntity, NatipayMemberEntity, NatipayMemberRulesEnum, NatipayMemberTypeEnum, NatipayMercadoPagoEntity, NatipayOrderEntity, NatipayOrderItemEntity, NatipaySponsorFeeEntity, NatipayTokenEntity, NatipayUserEntity, NotificationActionEntity, NotificationActionTypeEnum, NotificationCategoryEnum, NotificationEntity, NotificationPriorityEnum, NotificationStatusEnum, OrderAdditionalFeeEntity, OrderBenefitsEntity, OrderCancellationEntity, OrderCustomerEntity, OrderDeliveryEntity, OrderEntity, OrderItemCompositionEntity, OrderItemEntity, OrderItemOptionEntity, OrderMerchantEntity, OrderPaymentCardEntity, OrderPaymentCashEntity, OrderPaymentEntity, OrderPaymentMethodEntity, OrderPaymentPixEntity, OrderPaymentWalletEntity, OrderScaleEntity, OrderScaleItemEntity, OrderTotalEntity, OrdersCustomerPhoneEntity, OriginEntity, PartnerEntity, PayioActivationBatchEntity, PayioActivationKeyEntity, PayioAddressEntity, PayioAdminEntity, PayioAppEntity, PayioBigChefConfigEntity, PayioBigChefConfigOperationEntity, PayioBigChefConfigPrinterEntity, PayioBigChefConfigScaleEntity, PayioCardAuthEntity, PayioCardCompanyEntity, PayioCardConfigEntity, PayioCardEntity, PayioCardItemEntity, PayioCardTransactionEntity, PayioCashConfigEntity, PayioCashConfigOperationEntity, PayioCashConfigOperationTefEntity, PayioCatalogCategoryEntity, PayioCatalogEntity, PayioCatalogItemEntity, PayioCatalogOptionEntity, PayioCatalogOptionGroupEntity, PayioCatalogPizzaCrustEntity, PayioCatalogPizzaEdgeEntity, PayioCatalogPizzaEntity, PayioCatalogPizzaSizeEntity, PayioCatalogPizzaToppingEntity, PayioCatalogShiftEntity, PayioChefConfigEntity, PayioChefConfigOperationEntity, PayioChefConfigPrinterEntity, PayioChefConfigScaleEntity, PayioCompanyEntity, PayioCompanyNatipayCredentialEntity, PayioConsumerEntity, PayioDeviceChefEntity, PayioDeviceEntity, PayioDistributorEntity, PayioDistributorResponsibleEntity, PayioEntitiesEnum, PayioGlobalProductEntity, PayioJwtPayloadAppEntity, PayioJwtPayloadDeviceEntity, PayioJwtPayloadEntity, PayioJwtPayloadInfoEntity, PayioJwtPayloadSubscriptionEntity, PayioJwtPayloadUserEntity, PayioMemberEntity, PayioOrderEntity, PayioOrderIndoorEntity, PayioOrderQueueEntity, PayioOrderQueueStatusEnum, PayioPartnerEntity, PayioPermissionEntity, PayioPreparationPlaceEntity, PayioProductEntity, PayioResumeCompanyEntity, PayioResumeCompanyItemDetailEntity, PayioResumeCompanyItemEntity, PayioResumeQueueActionEnum, PayioResumeQueueEntity, PayioResumeQueueStatusEnum, PayioScheduleDayEntity, PayioScheduleEntity, PayioScheduleProductEntity, PayioScheduleSlotEntity, PayioTabEntity, PayioTerminalEntity, PayioTokenEntity, PayioUserEntity, PayioUserReportEntity, PayioUserReportEvidenceEntity, PayioUserSessionEntity, PayioUserTypeEnum, PayioWebhookEntity, PaymentCardEntity, PaymentCashEntity, PaymentEntity, PaymentMethodEntity, PaymentMethodOptionEntity, PaymentPixEntity, PaymentProviderAgentEntity, PaymentProviderEntity, PaymentTokenDataEntity, PaymentTokenEntity, PaymentWalletEntity, PixKeyEntity, PlanEntity, PlanFeatureEntity, PrivacySettingEntity, ProductBrandEntity, ProductCompanyEntity, ProductContainerEntity, ProductGlobalEntity, ProductNcmEntity, PubsubSubscriptionChangeStatusEntity, PurchaseEntity, QueryEntity, RabbitEntity, RatingEntity, RequestedItemDataEntity, RequestedItemsEntity, ResumeChildEntity, ResumeCustomerEntity, ResumeEnginesEntity, ResumeEntity, ResumeItemDetailEntity, ResumeItemEntity, ResumeOrderEntity, ResumeProductEntity, ResumeVoucherEntity, SponsorEntity, SponsorshipValueEntity, SpreadAmountMode, SubscriptionBaseEntity, SubscriptionBaseItemEntity, SubscriptionBaseLogEntity, SubscriptionCompanyEntity, SubscriptionCompanyProfileEntity, SubscriptionCustomerEntity, SubscriptionCustomerProfileEntity, TokenEntity, TransactionBalanceEntity, TransactionEntity, TransactionInfoResumeEntity, TransactionPaymentMethodEntity, TransactionResumeEntity, TransactionTotalEntity, TransferRequestEntity, UserEntity, UserTypeEnum, VerifierTokenEntity, VoucherCustomerEntity, VoucherEntity, VoucherSponsorshipEntity, WaServerEntity, WithDrawRequestEntity, factoryEnvelope, factoryEnvelopeArray, factoryEnvelopeArrayPagination };
|
10064
10198
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|