cecon-interfaces 1.9.50 → 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 -1
- package/dist/esm2022/payio/user/entities/user-report.entity.mjs +1 -1
- package/dist/esm2022/payio/user/entities/user-sessions.entity.mjs +15 -0
- package/dist/esm2022/payio/user/entities/user.entity.mjs +2 -3
- package/dist/esm2022/payio/user/interfaces/i-user-report.mjs +1 -1
- package/dist/esm2022/payio/user/interfaces/i-user-sessions.mjs +2 -0
- 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 +199 -51
- 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 +2 -13
- package/dist/payio/cards/interfaces/index.d.ts +0 -2
- package/dist/payio/user/entities/index.d.ts +1 -0
- package/dist/payio/user/entities/index.js +3 -1
- package/dist/payio/user/entities/user-report.entity.d.ts +2 -2
- package/dist/payio/user/entities/user-sessions.entity.d.ts +7 -0
- package/dist/payio/user/entities/user-sessions.entity.js +19 -0
- package/dist/payio/user/entities/user.entity.d.ts +2 -2
- package/dist/payio/user/entities/user.entity.js +1 -2
- package/dist/payio/user/interfaces/i-user-report.d.ts +2 -2
- package/dist/payio/user/interfaces/i-user-sessions.d.ts +5 -0
- package/dist/payio/user/interfaces/i-user-sessions.js +2 -0
- package/dist/payio/user/interfaces/i-user.d.ts +2 -2
- package/dist/payio/user/interfaces/index.d.ts +2 -1
- 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,16 +8823,30 @@ class PayioUserReportEvidenceEntity {
|
|
8643
8823
|
url;
|
8644
8824
|
}
|
8645
8825
|
|
8826
|
+
class PayioUserSessionEntity {
|
8827
|
+
companyId = null;
|
8828
|
+
companyName = null;
|
8829
|
+
deviceId = null;
|
8830
|
+
constructor(data) {
|
8831
|
+
if (data) {
|
8832
|
+
for (let key in data) {
|
8833
|
+
if (data.hasOwnProperty(key) && key in this) {
|
8834
|
+
this[key] = data[key];
|
8835
|
+
}
|
8836
|
+
}
|
8837
|
+
}
|
8838
|
+
}
|
8839
|
+
}
|
8840
|
+
|
8646
8841
|
class PayioUserEntity extends UserEntity {
|
8647
8842
|
accessCode = null;
|
8648
8843
|
accessCodeExpiration = null;
|
8649
8844
|
code = null;
|
8650
|
-
currentCompanyId = null;
|
8651
|
-
currentCompanyName = null;
|
8652
8845
|
faceId = null;
|
8653
8846
|
faceImage64 = null;
|
8654
8847
|
faceLastUpdate = null;
|
8655
8848
|
reports = [];
|
8849
|
+
sessions = [];
|
8656
8850
|
constructor(data) {
|
8657
8851
|
super();
|
8658
8852
|
if (data) {
|
@@ -8954,37 +9148,13 @@ class PayioCardAuthEntity {
|
|
8954
9148
|
class PayioCardConfigEntity {
|
8955
9149
|
appIds = [];
|
8956
9150
|
auth;
|
8957
|
-
balance = 0;
|
8958
|
-
billingCycle = ECycle.NONE;
|
8959
9151
|
companies = [];
|
8960
|
-
creditLimit = 0;
|
8961
9152
|
description = null;
|
8962
9153
|
discountAmount = 0;
|
8963
9154
|
discountAmountType = EAmountMode.PERCENTAGE;
|
8964
|
-
dueDate = new Date();
|
8965
|
-
invoiceLogs = [];
|
8966
9155
|
items = [];
|
8967
9156
|
key = null;
|
8968
9157
|
password = null;
|
8969
|
-
webhookUrls = [];
|
8970
|
-
constructor(data) {
|
8971
|
-
if (data) {
|
8972
|
-
for (let key in data) {
|
8973
|
-
if (data.hasOwnProperty(key) && key in this) {
|
8974
|
-
this[key] = data[key];
|
8975
|
-
}
|
8976
|
-
}
|
8977
|
-
}
|
8978
|
-
}
|
8979
|
-
}
|
8980
|
-
|
8981
|
-
class PayioCardDataEntity {
|
8982
|
-
cvv = '';
|
8983
|
-
formattedNumber = '';
|
8984
|
-
isValid = false;
|
8985
|
-
maskedNumber = '';
|
8986
|
-
number = '';
|
8987
|
-
validThru = '';
|
8988
9158
|
constructor(data) {
|
8989
9159
|
if (data) {
|
8990
9160
|
for (let key in data) {
|
@@ -9008,7 +9178,6 @@ var EPayioCardAccountProvider;
|
|
9008
9178
|
var ECardMode;
|
9009
9179
|
(function (ECardMode) {
|
9010
9180
|
ECardMode["DISCOUNT"] = "DISCOUNT";
|
9011
|
-
ECardMode["ACCOUNT"] = "ACCOUNT";
|
9012
9181
|
ECardMode["HYBRID"] = "HYBRID";
|
9013
9182
|
ECardMode["MANAGER"] = "MANAGER";
|
9014
9183
|
})(ECardMode || (ECardMode = {}));
|
@@ -9039,41 +9208,20 @@ var EPayioCardType;
|
|
9039
9208
|
EPayioCardType["PHYSICAL"] = "PHYSICAL";
|
9040
9209
|
})(EPayioCardType || (EPayioCardType = {}));
|
9041
9210
|
|
9042
|
-
class PayioCardAccountProviderEntity {
|
9043
|
-
reference = '';
|
9044
|
-
type = EPayioCardAccountProvider.NATIPAY;
|
9045
|
-
constructor(data) {
|
9046
|
-
if (data) {
|
9047
|
-
for (let key in data) {
|
9048
|
-
if (data.hasOwnProperty(key) && key in this) {
|
9049
|
-
this[key] = data[key];
|
9050
|
-
}
|
9051
|
-
}
|
9052
|
-
}
|
9053
|
-
}
|
9054
|
-
}
|
9055
|
-
|
9056
9211
|
class PayioCardEntity {
|
9057
|
-
accountProvider = new PayioCardAccountProviderEntity();
|
9058
9212
|
active = false;
|
9059
9213
|
companyId = '';
|
9060
9214
|
config = new PayioCardConfigEntity();
|
9061
|
-
consumerExternalReference = null;
|
9062
|
-
consumerId = null;
|
9063
|
-
consumerMetadata = null;
|
9064
9215
|
containerId = null;
|
9065
9216
|
createdAt = new Date();
|
9066
|
-
data = new PayioCardDataEntity();
|
9067
9217
|
id = '';
|
9068
9218
|
label = '';
|
9069
9219
|
logs = [];
|
9070
9220
|
mode = ECardMode.HYBRID;
|
9071
9221
|
status = EPayioCardStatus.BLOCKED;
|
9072
|
-
statusProduction = EPayioCardStatusProduction.PENDING;
|
9073
9222
|
tags = [];
|
9074
|
-
|
9075
|
-
|
9076
|
-
unblockedAt = null;
|
9223
|
+
unlockCode = null;
|
9224
|
+
unlockedAt = null;
|
9077
9225
|
updatedAt = new Date();
|
9078
9226
|
constructor(data) {
|
9079
9227
|
if (data) {
|
@@ -10046,5 +10194,5 @@ var BinanceSymbol;
|
|
10046
10194
|
* Generated bundle index. Do not edit.
|
10047
10195
|
*/
|
10048
10196
|
|
10049
|
-
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, 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 };
|
10050
10198
|
//# sourceMappingURL=cecon-interfaces.mjs.map
|