adamo-types 2.1.15-uat → 2.1.16-fix.0

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.
@@ -21,6 +21,10 @@ export declare enum ShoppingCartParametersShoppingCartReplicaType {
21
21
  CLONE = "clone",
22
22
  CONFIGURED = "configured"
23
23
  }
24
+ export declare enum ShoppingCartParametersOffnetType {
25
+ FREE = "par_vacante",
26
+ BUSY = "par_ocupado"
27
+ }
24
28
  export declare class ShoppingCartEntityParametersDto {
25
29
  originalId?: string;
26
30
  originalAction?: string;
@@ -59,6 +63,8 @@ export declare class ShoppingCartParametersDto {
59
63
  streetNumber?: string;
60
64
  streetType?: string;
61
65
  technology?: string;
66
+ iuaDonor?: string;
67
+ offnet?: ShoppingCartParametersOffnetType;
62
68
  shoppingCartProcess?: ShoppingCartParametersShoppingCartProcess;
63
69
  shoppingCartReplicaType?: ShoppingCartParametersShoppingCartReplicaType;
64
70
  originalId?: string;
@@ -76,6 +82,7 @@ export declare class ShoppingCartParametersDto {
76
82
  referenceInstanceAction?: CustomerProductInstanceAction;
77
83
  referenceProductMobileServiceProfile?: string;
78
84
  }
85
+ export type ShoppingCartParametersOffnetDetails = Pick<ShoppingCartParametersDto, 'offnet' | 'iuaDonor'>;
79
86
  export declare class ShoppingCartParametersDtoBuilder extends Builder<ShoppingCartParametersDto> {
80
87
  setDefaults(): ShoppingCartParametersDto;
81
88
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ShoppingCartParametersDtoBuilder = exports.ShoppingCartParametersDto = exports.ShoppingCartEntityParametersDto = exports.ShoppingCartParametersShoppingCartReplicaType = exports.ShoppingCartParametersShoppingCartProcess = void 0;
3
+ exports.ShoppingCartParametersDtoBuilder = exports.ShoppingCartParametersDto = exports.ShoppingCartEntityParametersDto = exports.ShoppingCartParametersOffnetType = exports.ShoppingCartParametersShoppingCartReplicaType = exports.ShoppingCartParametersShoppingCartProcess = void 0;
4
4
  const openapi = require("@nestjs/swagger");
5
5
  const helpers_1 = require("../../../common/helpers/helpers");
6
6
  var ShoppingCartParametersShoppingCartProcess;
@@ -26,6 +26,11 @@ var ShoppingCartParametersShoppingCartReplicaType;
26
26
  ShoppingCartParametersShoppingCartReplicaType["CLONE"] = "clone";
27
27
  ShoppingCartParametersShoppingCartReplicaType["CONFIGURED"] = "configured";
28
28
  })(ShoppingCartParametersShoppingCartReplicaType || (exports.ShoppingCartParametersShoppingCartReplicaType = ShoppingCartParametersShoppingCartReplicaType = {}));
29
+ var ShoppingCartParametersOffnetType;
30
+ (function (ShoppingCartParametersOffnetType) {
31
+ ShoppingCartParametersOffnetType["FREE"] = "par_vacante";
32
+ ShoppingCartParametersOffnetType["BUSY"] = "par_ocupado";
33
+ })(ShoppingCartParametersOffnetType || (exports.ShoppingCartParametersOffnetType = ShoppingCartParametersOffnetType = {}));
29
34
  class ShoppingCartEntityParametersDto {
30
35
  static _OPENAPI_METADATA_FACTORY() {
31
36
  return { originalId: { required: false, type: () => String }, originalAction: { required: false, type: () => String }, originalServiceCharacteristics: { required: false, type: () => String } };
@@ -34,7 +39,7 @@ class ShoppingCartEntityParametersDto {
34
39
  exports.ShoppingCartEntityParametersDto = ShoppingCartEntityParametersDto;
35
40
  class ShoppingCartParametersDto {
36
41
  static _OPENAPI_METADATA_FACTORY() {
37
- return { cartCreatedBy: { required: false, type: () => String }, referenceCartCreatedBy: { required: false, type: () => String }, salesPerson: { required: false, type: () => String }, addressInfo: { required: false, type: () => String }, apartmentId: { required: false, type: () => String }, gescal37: { required: false, type: () => String }, block: { required: false, type: () => String }, city: { required: false, type: () => String }, competition: { required: false, type: () => String }, country: { required: false, type: () => String }, customerType: { required: false, type: () => String }, door: { required: false, type: () => String }, entrance: { required: false, type: () => String }, fiberhood: { required: false, type: () => String }, floor: { required: false, type: () => String }, lat: { required: false, type: () => String }, lng: { required: false, type: () => String }, municipality: { required: false, type: () => String }, network: { required: false, type: () => String }, postcode: { required: false, type: () => String }, projectCode: { required: false, type: () => String }, projectId: { required: false, type: () => String }, province: { required: false, type: () => String }, salesAreaId: { required: false, type: () => String }, salesAreaName: { required: false, type: () => String }, serviceableAge: { required: false, type: () => String }, serviceableStatus: { required: false, type: () => String }, streetAddressId: { required: false, type: () => String }, streetName: { required: false, type: () => String }, streetNumber: { required: false, type: () => String }, streetType: { required: false, type: () => String }, technology: { required: false, type: () => String }, shoppingCartProcess: { required: false, enum: require("./shopping-cart-parameters.entity").ShoppingCartParametersShoppingCartProcess }, shoppingCartReplicaType: { required: false, enum: require("./shopping-cart-parameters.entity").ShoppingCartParametersShoppingCartReplicaType }, originalId: { required: false, type: () => String }, originalAction: { required: false, type: () => String }, originalSourceProduct: { required: false, type: () => String }, originalProductOffering: { required: false, type: () => String }, originalReason: { required: false, type: () => String }, originalProducts: { required: false, type: () => String }, originalProductCharacteristics: { required: false, type: () => String }, originalServices: { required: false, type: () => String }, referenceProductId: { required: false, type: () => String }, referenceProductName: { required: false, type: () => String }, referenceProductServiceCharacteristicName: { required: false, type: () => String }, referenceProductServiceCharacteristicValue: { required: false, type: () => String }, referenceInstanceAction: { required: false, enum: require("../../../sys03/customer/customer.constants").CustomerProductInstanceAction }, referenceProductMobileServiceProfile: { required: false, type: () => String } };
42
+ return { cartCreatedBy: { required: false, type: () => String }, referenceCartCreatedBy: { required: false, type: () => String }, salesPerson: { required: false, type: () => String }, addressInfo: { required: false, type: () => String }, apartmentId: { required: false, type: () => String }, gescal37: { required: false, type: () => String }, block: { required: false, type: () => String }, city: { required: false, type: () => String }, competition: { required: false, type: () => String }, country: { required: false, type: () => String }, customerType: { required: false, type: () => String }, door: { required: false, type: () => String }, entrance: { required: false, type: () => String }, fiberhood: { required: false, type: () => String }, floor: { required: false, type: () => String }, lat: { required: false, type: () => String }, lng: { required: false, type: () => String }, municipality: { required: false, type: () => String }, network: { required: false, type: () => String }, postcode: { required: false, type: () => String }, projectCode: { required: false, type: () => String }, projectId: { required: false, type: () => String }, province: { required: false, type: () => String }, salesAreaId: { required: false, type: () => String }, salesAreaName: { required: false, type: () => String }, serviceableAge: { required: false, type: () => String }, serviceableStatus: { required: false, type: () => String }, streetAddressId: { required: false, type: () => String }, streetName: { required: false, type: () => String }, streetNumber: { required: false, type: () => String }, streetType: { required: false, type: () => String }, technology: { required: false, type: () => String }, iuaDonor: { required: false, type: () => String }, offnet: { required: false, enum: require("./shopping-cart-parameters.entity").ShoppingCartParametersOffnetType }, shoppingCartProcess: { required: false, enum: require("./shopping-cart-parameters.entity").ShoppingCartParametersShoppingCartProcess }, shoppingCartReplicaType: { required: false, enum: require("./shopping-cart-parameters.entity").ShoppingCartParametersShoppingCartReplicaType }, originalId: { required: false, type: () => String }, originalAction: { required: false, type: () => String }, originalSourceProduct: { required: false, type: () => String }, originalProductOffering: { required: false, type: () => String }, originalReason: { required: false, type: () => String }, originalProducts: { required: false, type: () => String }, originalProductCharacteristics: { required: false, type: () => String }, originalServices: { required: false, type: () => String }, referenceProductId: { required: false, type: () => String }, referenceProductName: { required: false, type: () => String }, referenceProductServiceCharacteristicName: { required: false, type: () => String }, referenceProductServiceCharacteristicValue: { required: false, type: () => String }, referenceInstanceAction: { required: false, enum: require("../../../sys03/customer/customer.constants").CustomerProductInstanceAction }, referenceProductMobileServiceProfile: { required: false, type: () => String } };
38
43
  }
39
44
  }
40
45
  exports.ShoppingCartParametersDto = ShoppingCartParametersDto;
@@ -98,7 +98,11 @@ export declare const ServiceSpecificationCharacteristicNames: {
98
98
  readonly BANDWIDTH: "BANDWIDTH";
99
99
  readonly CHANGE_OF_ADDRESS: "CHANGE_OF_ADDRESS";
100
100
  readonly DELIVERY_ADDRESS: "DELIVERY_ADDRESS";
101
+ readonly DELIVERY_DAY_LOWERCASE: "delivery_day";
101
102
  readonly DEVICE_STATIC_IP: "DEVICE_STATIC_IP";
103
+ readonly DOCUMENT_LOWERCASE: "document";
104
+ readonly EBOOK_ID_LOWERCASE: "ebookid";
105
+ readonly EMAIL_LOWERCASE: "email";
102
106
  readonly EXTENDER: "EXTENDER";
103
107
  readonly FIXED_IP: "FIXED_IP";
104
108
  readonly GESCAL37: "GESCAL37";
@@ -109,6 +113,7 @@ export declare const ServiceSpecificationCharacteristicNames: {
109
113
  readonly LONGITUDE_V2: "LONGITUDE_V2";
110
114
  readonly MASMEDIA_ID: "MASMEDIAID";
111
115
  readonly MASMOVIL_ID: "MASMOVILID";
116
+ readonly MSISDN_LOWERCASE: "msisdn";
112
117
  readonly MSISDN: "MSISDN";
113
118
  readonly NOTES_FOR_INSTALLER: "NOTES_FOR_INSTALLER";
114
119
  readonly OFFNET: "OFFNET";
@@ -125,6 +130,7 @@ export declare const ServiceSpecificationCharacteristicNames: {
125
130
  readonly PORTIN_NUMBER: "PORTIN_NUMBER";
126
131
  readonly PORTIN_OPERATOR: "PORTIN_OPERATOR";
127
132
  readonly PORTIN_PASSPORT_COUNTRY: "PORTIN_PASSPORT_COUNTRY";
133
+ readonly PROFILE_LOWERCASE: "profile";
128
134
  readonly PROFILE_SD: "PROFILE_SD";
129
135
  readonly PROFILE: "PROFILE";
130
136
  readonly REFERENCE_ID: "REFERENCE_ID";
@@ -125,7 +125,11 @@ exports.ServiceSpecificationCharacteristicNames = {
125
125
  BANDWIDTH: 'BANDWIDTH',
126
126
  CHANGE_OF_ADDRESS: 'CHANGE_OF_ADDRESS',
127
127
  DELIVERY_ADDRESS: 'DELIVERY_ADDRESS',
128
+ DELIVERY_DAY_LOWERCASE: 'delivery_day',
128
129
  DEVICE_STATIC_IP: 'DEVICE_STATIC_IP',
130
+ DOCUMENT_LOWERCASE: 'document',
131
+ EBOOK_ID_LOWERCASE: 'ebookid',
132
+ EMAIL_LOWERCASE: 'email',
129
133
  EXTENDER: 'EXTENDER',
130
134
  FIXED_IP: 'FIXED_IP',
131
135
  GESCAL37: 'GESCAL37',
@@ -136,6 +140,7 @@ exports.ServiceSpecificationCharacteristicNames = {
136
140
  LONGITUDE_V2: 'LONGITUDE_V2',
137
141
  MASMEDIA_ID: 'MASMEDIAID',
138
142
  MASMOVIL_ID: 'MASMOVILID',
143
+ MSISDN_LOWERCASE: 'msisdn',
139
144
  MSISDN: 'MSISDN',
140
145
  NOTES_FOR_INSTALLER: 'NOTES_FOR_INSTALLER',
141
146
  OFFNET: 'OFFNET',
@@ -152,6 +157,7 @@ exports.ServiceSpecificationCharacteristicNames = {
152
157
  PORTIN_NUMBER: 'PORTIN_NUMBER',
153
158
  PORTIN_OPERATOR: 'PORTIN_OPERATOR',
154
159
  PORTIN_PASSPORT_COUNTRY: 'PORTIN_PASSPORT_COUNTRY',
160
+ PROFILE_LOWERCASE: 'profile',
155
161
  PROFILE_SD: 'PROFILE_SD',
156
162
  PROFILE: 'PROFILE',
157
163
  REFERENCE_ID: 'REFERENCE_ID',
@@ -172,7 +178,11 @@ exports.ServiceSpecificationDictionary = {
172
178
  [exports.ServiceSpecificationCharacteristicNames.BANDWIDTH]: ServiceSpecificationType.SELECT,
173
179
  [exports.ServiceSpecificationCharacteristicNames.CHANGE_OF_ADDRESS]: ServiceSpecificationType.SELECT,
174
180
  [exports.ServiceSpecificationCharacteristicNames.DELIVERY_ADDRESS]: ServiceSpecificationType.ADDRESS,
181
+ [exports.ServiceSpecificationCharacteristicNames.DELIVERY_DAY_LOWERCASE]: ServiceSpecificationType.STRING,
175
182
  [exports.ServiceSpecificationCharacteristicNames.DEVICE_STATIC_IP]: ServiceSpecificationType.STRING,
183
+ [exports.ServiceSpecificationCharacteristicNames.DOCUMENT_LOWERCASE]: ServiceSpecificationType.STRING,
184
+ [exports.ServiceSpecificationCharacteristicNames.EBOOK_ID_LOWERCASE]: ServiceSpecificationType.STRING,
185
+ [exports.ServiceSpecificationCharacteristicNames.EMAIL_LOWERCASE]: ServiceSpecificationType.STRING,
176
186
  [exports.ServiceSpecificationCharacteristicNames.EXTENDER]: ServiceSpecificationType.SELECT,
177
187
  [exports.ServiceSpecificationCharacteristicNames.FIXED_IP]: ServiceSpecificationType.NONE,
178
188
  [exports.ServiceSpecificationCharacteristicNames.GESCAL37]: ServiceSpecificationType.STRING,
@@ -183,6 +193,7 @@ exports.ServiceSpecificationDictionary = {
183
193
  [exports.ServiceSpecificationCharacteristicNames.LONGITUDE_V2]: ServiceSpecificationType.STRING,
184
194
  [exports.ServiceSpecificationCharacteristicNames.MASMEDIA_ID]: ServiceSpecificationType.STRING,
185
195
  [exports.ServiceSpecificationCharacteristicNames.MASMOVIL_ID]: ServiceSpecificationType.STRING,
196
+ [exports.ServiceSpecificationCharacteristicNames.MSISDN_LOWERCASE]: ServiceSpecificationType.STRING,
186
197
  [exports.ServiceSpecificationCharacteristicNames.MSISDN]: ServiceSpecificationType.STRING,
187
198
  [exports.ServiceSpecificationCharacteristicNames.NOTES_FOR_INSTALLER]: ServiceSpecificationType.STRING,
188
199
  [exports.ServiceSpecificationCharacteristicNames.OFFNET]: ServiceSpecificationType.SELECT,
@@ -199,6 +210,7 @@ exports.ServiceSpecificationDictionary = {
199
210
  [exports.ServiceSpecificationCharacteristicNames.PORTIN_NUMBER]: ServiceSpecificationType.STRING,
200
211
  [exports.ServiceSpecificationCharacteristicNames.PORTIN_OPERATOR]: ServiceSpecificationType.STRING,
201
212
  [exports.ServiceSpecificationCharacteristicNames.PORTIN_PASSPORT_COUNTRY]: ServiceSpecificationType.STRING,
213
+ [exports.ServiceSpecificationCharacteristicNames.PROFILE_LOWERCASE]: ServiceSpecificationType.SELECT,
202
214
  [exports.ServiceSpecificationCharacteristicNames.PROFILE_SD]: ServiceSpecificationType.SELECT,
203
215
  [exports.ServiceSpecificationCharacteristicNames.PROFILE]: ServiceSpecificationType.SELECT,
204
216
  [exports.ServiceSpecificationCharacteristicNames.REFERENCE_ID]: ServiceSpecificationType.STRING,
@@ -54,6 +54,7 @@ exports.CustomerProductTypeToServiceCharacteristicName = {
54
54
  [constants_1.ShoppingCartProductType.MOBILE]: ['MSISDN', 'PORTIN_NUMBER'],
55
55
  [constants_1.ShoppingCartProductType.VOIP]: ['PHONE_NUMBER', 'PORTIN_NUMBER'],
56
56
  [constants_1.ShoppingCartProductType.TV]: ['PROFILE'],
57
+ [constants_1.ShoppingCartProductType.EBOOK]: ['PROFILE'],
57
58
  [constants_1.ShoppingCartProductType.VOIP_CLOUDPBX]: ['VOIP_CLOUDPBX_SID'],
58
59
  [constants_1.ShoppingCartProductType.VOIP_SIPTRUNK]: ['VOIP_SIPTRUNK_SID'],
59
60
  [constants_1.ShoppingCartProductType.DIGITAL_SERVICES]: ['PROFILE_SD'],
@@ -64,6 +65,7 @@ exports.CustomerProductTypeToServiceCharacteristicInstanceName = {
64
65
  [constants_1.ShoppingCartProductType.MOBILE]: ['MSISDN'],
65
66
  [constants_1.ShoppingCartProductType.VOIP]: ['PHONE_NUMBER', 'PORTIN_NUMBER'],
66
67
  [constants_1.ShoppingCartProductType.TV]: [],
68
+ [constants_1.ShoppingCartProductType.EBOOK]: [],
67
69
  [constants_1.ShoppingCartProductType.VOIP_CLOUDPBX]: [],
68
70
  [constants_1.ShoppingCartProductType.VOIP_SIPTRUNK]: [],
69
71
  [constants_1.ShoppingCartProductType.DIGITAL_SERVICES]: [],
@@ -23,13 +23,14 @@ var ProductInventoryRelationshipType;
23
23
  ProductInventoryRelationshipType["CHILD"] = "Child";
24
24
  })(ProductInventoryRelationshipType || (exports.ProductInventoryRelationshipType = ProductInventoryRelationshipType = {}));
25
25
  exports.BpServiceNameToProductType = {
26
+ DIGITAL_SERVICES: constants_1.ShoppingCartProductType.DIGITAL_SERVICES,
27
+ EBOOK: constants_1.ShoppingCartProductType.EBOOK,
26
28
  FIBRE: constants_1.ShoppingCartProductType.FIBER,
27
29
  MOBILE: constants_1.ShoppingCartProductType.MOBILE,
28
30
  TV: constants_1.ShoppingCartProductType.TV,
29
31
  VOIP_CLOUDPBX: constants_1.ShoppingCartProductType.VOIP_CLOUDPBX,
30
32
  VOIP_SIPTRUNK: constants_1.ShoppingCartProductType.VOIP_SIPTRUNK,
31
- VOIP: constants_1.ShoppingCartProductType.VOIP,
32
- DIGITAL_SERVICES: constants_1.ShoppingCartProductType.DIGITAL_SERVICES
33
+ VOIP: constants_1.ShoppingCartProductType.VOIP
33
34
  };
34
35
  var ProductOrderType;
35
36
  (function (ProductOrderType) {
@@ -21,14 +21,15 @@ export declare enum BusinessCustomerType {
21
21
  UNKNOWN = "UNKNOWN"
22
22
  }
23
23
  export declare enum ShoppingCartProductType {
24
+ DIGITAL_SERVICES = "DIGITAL_SERVICES",
25
+ EBOOK = "EBOOK",
24
26
  FIBER = "FIBRE",
25
- VOIP = "VOIP",
26
27
  MOBILE = "MOBILE",
27
28
  TV = "TV",
29
+ UNKNOWN = "UNKNOWN",
30
+ VOIP = "VOIP",
28
31
  VOIP_CLOUDPBX = "VOIP_CLOUDPBX",
29
- VOIP_SIPTRUNK = "VOIP_SIPTRUNK",
30
- DIGITAL_SERVICES = "DIGITAL_SERVICES",
31
- UNKNOWN = "UNKNOWN"
32
+ VOIP_SIPTRUNK = "VOIP_SIPTRUNK"
32
33
  }
33
34
  export declare const ShoppingCartProductTypeDisplayOrder: Record<ShoppingCartProductType, number>;
34
35
  export declare enum StorageConfiguration {
@@ -94,7 +95,8 @@ export declare enum MicroserviceType {
94
95
  RETAIL_BATCH_HUB = "RETAIL BATCH HUB",
95
96
  SENDGRID = "SENDGRID",
96
97
  SFTP = "SFTP",
97
- TASK4WORK = "TASK4WORK"
98
+ TASK4WORK = "TASK4WORK",
99
+ TESA = "TESA"
98
100
  }
99
101
  export declare enum Templates {
100
102
  ADMIN_NOTIFICATION_TEMPLATE = "ADMIN_NOTIFICATION_TEMPLATE",
@@ -31,19 +31,21 @@ var BusinessCustomerType;
31
31
  })(BusinessCustomerType || (exports.BusinessCustomerType = BusinessCustomerType = {}));
32
32
  var ShoppingCartProductType;
33
33
  (function (ShoppingCartProductType) {
34
+ ShoppingCartProductType["DIGITAL_SERVICES"] = "DIGITAL_SERVICES";
35
+ ShoppingCartProductType["EBOOK"] = "EBOOK";
34
36
  ShoppingCartProductType["FIBER"] = "FIBRE";
35
- ShoppingCartProductType["VOIP"] = "VOIP";
36
37
  ShoppingCartProductType["MOBILE"] = "MOBILE";
37
38
  ShoppingCartProductType["TV"] = "TV";
39
+ ShoppingCartProductType["UNKNOWN"] = "UNKNOWN";
40
+ ShoppingCartProductType["VOIP"] = "VOIP";
38
41
  ShoppingCartProductType["VOIP_CLOUDPBX"] = "VOIP_CLOUDPBX";
39
42
  ShoppingCartProductType["VOIP_SIPTRUNK"] = "VOIP_SIPTRUNK";
40
- ShoppingCartProductType["DIGITAL_SERVICES"] = "DIGITAL_SERVICES";
41
- ShoppingCartProductType["UNKNOWN"] = "UNKNOWN";
42
43
  })(ShoppingCartProductType || (exports.ShoppingCartProductType = ShoppingCartProductType = {}));
43
44
  exports.ShoppingCartProductTypeDisplayOrder = {
44
45
  [ShoppingCartProductType.FIBER]: 1,
45
46
  [ShoppingCartProductType.MOBILE]: 2,
46
47
  [ShoppingCartProductType.VOIP]: 3,
48
+ [ShoppingCartProductType.EBOOK]: 4,
47
49
  [ShoppingCartProductType.TV]: 4,
48
50
  [ShoppingCartProductType.VOIP_CLOUDPBX]: 5,
49
51
  [ShoppingCartProductType.VOIP_SIPTRUNK]: 6,
@@ -119,6 +121,7 @@ var MicroserviceType;
119
121
  MicroserviceType["SENDGRID"] = "SENDGRID";
120
122
  MicroserviceType["SFTP"] = "SFTP";
121
123
  MicroserviceType["TASK4WORK"] = "TASK4WORK";
124
+ MicroserviceType["TESA"] = "TESA";
122
125
  })(MicroserviceType || (exports.MicroserviceType = MicroserviceType = {}));
123
126
  var Templates;
124
127
  (function (Templates) {
@@ -120,7 +120,7 @@ export declare const AmsError: {
120
120
  prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
121
121
  stackTraceLimit: number;
122
122
  };
123
- export declare const GrupoAireError: {
123
+ export declare const DigitelError: {
124
124
  new (errorArgs: ErrorArgs): {
125
125
  code: string;
126
126
  source: MicroserviceType;
@@ -136,7 +136,7 @@ export declare const GrupoAireError: {
136
136
  prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
137
137
  stackTraceLimit: number;
138
138
  };
139
- export declare const DigitelError: {
139
+ export declare const FtpError: {
140
140
  new (errorArgs: ErrorArgs): {
141
141
  code: string;
142
142
  source: MicroserviceType;
@@ -152,7 +152,23 @@ export declare const DigitelError: {
152
152
  prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
153
153
  stackTraceLimit: number;
154
154
  };
155
- export declare const FtpError: {
155
+ export declare const GrupoAireError: {
156
+ new (errorArgs: ErrorArgs): {
157
+ code: string;
158
+ source: MicroserviceType;
159
+ statusCode?: number;
160
+ parameters?: ErrorParameters;
161
+ superMessage: string;
162
+ messages?: MessagePayloadDto[];
163
+ name: string;
164
+ message: string;
165
+ stack?: string;
166
+ };
167
+ captureStackTrace(targetObject: object, constructorOpt?: Function): void;
168
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
169
+ stackTraceLimit: number;
170
+ };
171
+ export declare const JiraError: {
156
172
  new (errorArgs: ErrorArgs): {
157
173
  code: string;
158
174
  source: MicroserviceType;
@@ -232,7 +248,7 @@ export declare const SftpError: {
232
248
  prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
233
249
  stackTraceLimit: number;
234
250
  };
235
- export declare const JiraError: {
251
+ export declare const TesaError: {
236
252
  new (errorArgs: ErrorArgs): {
237
253
  code: string;
238
254
  source: MicroserviceType;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.JiraError = exports.SftpError = exports.SendGridError = exports.OtrsError = exports.MsgMediaError = exports.FtpError = exports.DigitelError = exports.GrupoAireError = exports.AmsError = exports.RetailBatchHubError = exports.DigitelBridgeError = exports.DbBridgeError = exports.BssBridgeError = exports.ArsEdgeError = exports.AcsEdgeError = void 0;
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.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");
@@ -54,11 +54,12 @@ exports.DbBridgeError = createErrorFactory({ name: 'DbBridgeError', source: cons
54
54
  exports.DigitelBridgeError = createErrorFactory({ name: 'DigitelBridgeError', source: constants_1.MicroserviceType.DIGITEL_BRIDGE });
55
55
  exports.RetailBatchHubError = createErrorFactory({ name: 'RetailBatchHubError', source: constants_1.MicroserviceType.RETAIL_BATCH_HUB });
56
56
  exports.AmsError = createErrorFactory({ name: 'AmsError', source: constants_1.MicroserviceType.AMS });
57
- exports.GrupoAireError = createErrorFactory({ name: 'GrupoAireError', source: constants_1.MicroserviceType.GRUPO_AIRE });
58
57
  exports.DigitelError = createErrorFactory({ name: 'DigitelError', source: constants_1.MicroserviceType.DIGITEL });
59
58
  exports.FtpError = createErrorFactory({ name: 'FtpError', source: constants_1.MicroserviceType.FTP });
59
+ exports.GrupoAireError = createErrorFactory({ name: 'GrupoAireError', source: constants_1.MicroserviceType.GRUPO_AIRE });
60
+ exports.JiraError = createErrorFactory({ name: 'JiraError', source: constants_1.MicroserviceType.JIRA });
60
61
  exports.MsgMediaError = createErrorFactory({ name: 'MsgMediaError', source: constants_1.MicroserviceType.MESSAGE_MEDIA });
61
62
  exports.OtrsError = createErrorFactory({ name: 'OtrsError', source: constants_1.MicroserviceType.OTRS });
62
63
  exports.SendGridError = createErrorFactory({ name: 'SendGridError', source: constants_1.MicroserviceType.SENDGRID });
63
64
  exports.SftpError = createErrorFactory({ name: 'SftpError', source: constants_1.MicroserviceType.SFTP });
64
- exports.JiraError = createErrorFactory({ name: 'JiraError', source: constants_1.MicroserviceType.JIRA });
65
+ exports.TesaError = createErrorFactory({ name: 'TesaError', source: constants_1.MicroserviceType.TESA });
@@ -55,7 +55,7 @@ export declare class CustomerProductChangeOfAddressProcessDto {
55
55
  created: ProcessAuditFieldsDto;
56
56
  updated: ProcessAuditFieldsDto;
57
57
  }
58
- declare const CreateCustomerProductChangeOfAddressProcessDto_base: import("@nestjs/common").Type<Pick<CustomerProductChangeOfAddressProcessDto, "product" | "customerId" | "status" | "salesPerson" | "created">>;
58
+ declare const CreateCustomerProductChangeOfAddressProcessDto_base: import("@nestjs/common").Type<Pick<CustomerProductChangeOfAddressProcessDto, "product" | "salesPerson" | "customerId" | "status" | "created">>;
59
59
  export declare class CreateCustomerProductChangeOfAddressProcessDto extends CreateCustomerProductChangeOfAddressProcessDto_base {
60
60
  }
61
61
  declare const UpdateCustomerProductChangeOfAddressProcessDto_base: import("@nestjs/common").Type<Omit<CustomerProductChangeOfAddressProcessDto, "product" | "id" | "customerId" | "created" | "steps">>;