adamo-types 2.1.23-sit → 2.1.25-sit
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/bss/constants/bss.constants.d.ts +1 -0
- package/dist/bss/constants/bss.constants.js +2 -0
- package/dist/bss/shopping-cart/shopping-cart-configuration.entity.d.ts +1 -1
- package/dist/bss/shopping-cart/shopping-cart-configuration.entity.js +2 -2
- package/dist/common/constants/common.constants.d.ts +1 -0
- package/dist/common/constants/common.constants.js +1 -0
- package/dist/common/edge-digitel/index.d.ts +0 -1
- package/dist/common/edge-digitel/index.js +0 -1
- package/dist/common/exception/service.exception.entity.d.ts +16 -0
- package/dist/common/exception/service.exception.entity.js +2 -1
- package/dist/sys03/address/address.constants.d.ts +3 -1
- package/dist/sys03/address/address.constants.js +3 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/common/edge-digitel/pdf/pdf.d.ts +0 -4
- package/dist/common/edge-digitel/pdf/pdf.js +0 -6
|
@@ -19,6 +19,7 @@ export declare enum BssChargeType {
|
|
|
19
19
|
}
|
|
20
20
|
export declare enum CacheKeyType {
|
|
21
21
|
GRUPO_AIRE_APARTMENT = "grupo-aire:apartment",
|
|
22
|
+
SUMA_APARTMENT = "suma:apartment",
|
|
22
23
|
AMS_ADDRESS_V2 = "ams:v2:address",
|
|
23
24
|
AMS_APARTMENT = "ams:apartment",
|
|
24
25
|
AMS_AREA_V2 = "ams:v2:area",
|
|
@@ -80,6 +80,7 @@ var BssChargeType;
|
|
|
80
80
|
var CacheKeyType;
|
|
81
81
|
(function (CacheKeyType) {
|
|
82
82
|
CacheKeyType["GRUPO_AIRE_APARTMENT"] = "grupo-aire:apartment";
|
|
83
|
+
CacheKeyType["SUMA_APARTMENT"] = "suma:apartment";
|
|
83
84
|
CacheKeyType["AMS_ADDRESS_V2"] = "ams:v2:address";
|
|
84
85
|
CacheKeyType["AMS_APARTMENT"] = "ams:apartment";
|
|
85
86
|
CacheKeyType["AMS_AREA_V2"] = "ams:v2:area";
|
|
@@ -128,6 +129,7 @@ exports.CacheKeyTypeTtl = {
|
|
|
128
129
|
[CacheKeyType.AMS_ADDRESS_V2]: 1000 * 60 * 60,
|
|
129
130
|
[CacheKeyType.AMS_APARTMENT]: 1000 * 60 * 60,
|
|
130
131
|
[CacheKeyType.GRUPO_AIRE_APARTMENT]: 1000 * 60 * 60 * 24 * 90,
|
|
132
|
+
[CacheKeyType.SUMA_APARTMENT]: 1000 * 60 * 60 * 24 * 90,
|
|
131
133
|
[CacheKeyType.AMS_AREA_V2]: 1000 * 60 * 60,
|
|
132
134
|
[CacheKeyType.AMS_ZIP_V2]: 1000 * 60 * 60,
|
|
133
135
|
[CacheKeyType.AVAILABLE_PRODUCTS]: 1000 * 60 * 60 * 24 * 90,
|
|
@@ -43,12 +43,12 @@ export declare class ShoppingCartConfigurationServiceSpecificationCharacteristic
|
|
|
43
43
|
required: boolean;
|
|
44
44
|
enabled: boolean;
|
|
45
45
|
included: boolean;
|
|
46
|
+
hidden: boolean;
|
|
46
47
|
value?: ShoppingCartConfigurationServiceSpecificationCharacteristicValue;
|
|
47
48
|
values?: ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto[];
|
|
48
49
|
}
|
|
49
50
|
declare const ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto_base: import("@nestjs/common").Type<Omit<ShoppingCartConfigurationServiceSpecificationCharacteristicDto, "included">>;
|
|
50
51
|
export declare class ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto extends ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto_base {
|
|
51
52
|
group: string;
|
|
52
|
-
hidden: boolean;
|
|
53
53
|
}
|
|
54
54
|
export {};
|
|
@@ -151,13 +151,13 @@ class ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto
|
|
|
151
151
|
exports.ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto = ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto;
|
|
152
152
|
class ShoppingCartConfigurationServiceSpecificationCharacteristicDto {
|
|
153
153
|
static _OPENAPI_METADATA_FACTORY() {
|
|
154
|
-
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, type: { required: true, enum: require("../constants/bp.constants").ServiceSpecificationType }, required: { required: true, type: () => Boolean }, enabled: { required: true, type: () => Boolean }, included: { required: true, type: () => Boolean }, value: { required: false, type: () => Object }, values: { required: false, type: () => [require("./shopping-cart-configuration.entity").ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto] } };
|
|
154
|
+
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, type: { required: true, enum: require("../constants/bp.constants").ServiceSpecificationType }, required: { required: true, type: () => Boolean }, enabled: { required: true, type: () => Boolean }, included: { required: true, type: () => Boolean }, hidden: { required: true, type: () => Boolean }, value: { required: false, type: () => Object }, values: { required: false, type: () => [require("./shopping-cart-configuration.entity").ShoppingCartConfigurationServiceSpecificationSelectCharacteristicOptionDto] } };
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
exports.ShoppingCartConfigurationServiceSpecificationCharacteristicDto = ShoppingCartConfigurationServiceSpecificationCharacteristicDto;
|
|
158
158
|
class ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto extends (0, swagger_1.OmitType)(ShoppingCartConfigurationServiceSpecificationCharacteristicDto, ['included']) {
|
|
159
159
|
static _OPENAPI_METADATA_FACTORY() {
|
|
160
|
-
return { group: { required: true, type: () => String }
|
|
160
|
+
return { group: { required: true, type: () => String } };
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
exports.ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto = ExtendedShoppingCartConfigurationServiceSpecificationCharacteristicDto;
|
|
@@ -126,6 +126,7 @@ var MicroserviceType;
|
|
|
126
126
|
MicroserviceType["FTP"] = "FTP";
|
|
127
127
|
MicroserviceType["GRUPO_AIRE"] = "GRUPO AIRE";
|
|
128
128
|
MicroserviceType["INFONOVA"] = "INFONOVA";
|
|
129
|
+
MicroserviceType["IOSMVNA"] = "IOSMVNA";
|
|
129
130
|
MicroserviceType["JIRA"] = "JIRA";
|
|
130
131
|
MicroserviceType["MESSAGE_MEDIA"] = "MESSAGE MEDIA";
|
|
131
132
|
MicroserviceType["OTRS"] = "OTRS";
|
|
@@ -184,6 +184,22 @@ export declare const GrupoAireError: {
|
|
|
184
184
|
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
185
185
|
stackTraceLimit: number;
|
|
186
186
|
};
|
|
187
|
+
export declare const IosmvnaError: {
|
|
188
|
+
new (errorArgs: ErrorArgs): {
|
|
189
|
+
code: string;
|
|
190
|
+
source: MicroserviceType;
|
|
191
|
+
statusCode?: number;
|
|
192
|
+
parameters?: ErrorParameters;
|
|
193
|
+
superMessage: string;
|
|
194
|
+
messages?: MessagePayloadDto[];
|
|
195
|
+
name: string;
|
|
196
|
+
message: string;
|
|
197
|
+
stack?: string;
|
|
198
|
+
};
|
|
199
|
+
captureStackTrace(targetObject: object, constructorOpt?: Function): void;
|
|
200
|
+
prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
|
|
201
|
+
stackTraceLimit: number;
|
|
202
|
+
};
|
|
187
203
|
export declare const JiraError: {
|
|
188
204
|
new (errorArgs: ErrorArgs): {
|
|
189
205
|
code: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TesaError = exports.SftpError = exports.SendGridError = exports.OtrsError = exports.MsgMediaError = exports.JiraError = exports.GrupoAireError = exports.FtpError = exports.DigitelError = exports.AmsError = exports.RetailBatchHubError = exports.DigitelBridgeError = exports.DbBridgeError = exports.BssBridgeError = exports.ArsEventEdgeError = exports.ArsEdgeError = exports.AcsEdgeError = void 0;
|
|
3
|
+
exports.TesaError = exports.SftpError = exports.SendGridError = exports.OtrsError = exports.MsgMediaError = exports.JiraError = exports.IosmvnaError = exports.GrupoAireError = exports.FtpError = exports.DigitelError = exports.AmsError = exports.RetailBatchHubError = exports.DigitelBridgeError = exports.DbBridgeError = exports.BssBridgeError = exports.ArsEventEdgeError = exports.ArsEdgeError = exports.AcsEdgeError = void 0;
|
|
4
4
|
const openapi = require("@nestjs/swagger");
|
|
5
5
|
const constants_1 = require("../constants");
|
|
6
6
|
const exception_entity_1 = require("./exception.entity");
|
|
@@ -58,6 +58,7 @@ exports.AmsError = createErrorFactory({ name: 'AmsError', source: constants_1.Mi
|
|
|
58
58
|
exports.DigitelError = createErrorFactory({ name: 'DigitelError', source: constants_1.MicroserviceType.DIGITEL });
|
|
59
59
|
exports.FtpError = createErrorFactory({ name: 'FtpError', source: constants_1.MicroserviceType.FTP });
|
|
60
60
|
exports.GrupoAireError = createErrorFactory({ name: 'GrupoAireError', source: constants_1.MicroserviceType.GRUPO_AIRE });
|
|
61
|
+
exports.IosmvnaError = createErrorFactory({ name: 'IosmvnaError', source: constants_1.MicroserviceType.IOSMVNA });
|
|
61
62
|
exports.JiraError = createErrorFactory({ name: 'JiraError', source: constants_1.MicroserviceType.JIRA });
|
|
62
63
|
exports.MsgMediaError = createErrorFactory({ name: 'MsgMediaError', source: constants_1.MicroserviceType.MESSAGE_MEDIA });
|
|
63
64
|
exports.OtrsError = createErrorFactory({ name: 'OtrsError', source: constants_1.MicroserviceType.OTRS });
|
|
@@ -3,6 +3,8 @@ export declare enum AreaAddressesOrderBy {
|
|
|
3
3
|
DISTANCE = "distance"
|
|
4
4
|
}
|
|
5
5
|
export declare enum ApartmentNetworkType {
|
|
6
|
-
GRUPO_AIRE = "AIRE NETWORKS"
|
|
6
|
+
GRUPO_AIRE = "AIRE NETWORKS",
|
|
7
|
+
SUMA = "SUMA"
|
|
7
8
|
}
|
|
8
9
|
export declare const GRUPO_AIRE_ADDRESS_APARMENT_ID_PREFIX = "T";
|
|
10
|
+
export declare const SUMA_ADDRESS_APARMENT_ID_PREFIX = "S";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GRUPO_AIRE_ADDRESS_APARMENT_ID_PREFIX = exports.ApartmentNetworkType = exports.AreaAddressesOrderBy = void 0;
|
|
3
|
+
exports.SUMA_ADDRESS_APARMENT_ID_PREFIX = exports.GRUPO_AIRE_ADDRESS_APARMENT_ID_PREFIX = exports.ApartmentNetworkType = exports.AreaAddressesOrderBy = void 0;
|
|
4
4
|
var AreaAddressesOrderBy;
|
|
5
5
|
(function (AreaAddressesOrderBy) {
|
|
6
6
|
AreaAddressesOrderBy["ADDRESS"] = "address";
|
|
@@ -9,5 +9,7 @@ var AreaAddressesOrderBy;
|
|
|
9
9
|
var ApartmentNetworkType;
|
|
10
10
|
(function (ApartmentNetworkType) {
|
|
11
11
|
ApartmentNetworkType["GRUPO_AIRE"] = "AIRE NETWORKS";
|
|
12
|
+
ApartmentNetworkType["SUMA"] = "SUMA";
|
|
12
13
|
})(ApartmentNetworkType || (exports.ApartmentNetworkType = ApartmentNetworkType = {}));
|
|
13
14
|
exports.GRUPO_AIRE_ADDRESS_APARMENT_ID_PREFIX = 'T';
|
|
15
|
+
exports.SUMA_ADDRESS_APARMENT_ID_PREFIX = 'S';
|