adamo-types 2.1.24-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.
@@ -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,
@@ -101,6 +101,7 @@ export declare enum MicroserviceType {
101
101
  FTP = "FTP",
102
102
  GRUPO_AIRE = "GRUPO AIRE",
103
103
  INFONOVA = "INFONOVA",
104
+ IOSMVNA = "IOSMVNA",
104
105
  JIRA = "JIRA",
105
106
  MESSAGE_MEDIA = "MESSAGE MEDIA",
106
107
  OTRS = "OTRS",
@@ -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';