adamo-types 2.0.102-sit → 2.0.104-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.
@@ -103,7 +103,7 @@ export declare const ServiceSpecificationCharacteristicNames: {
103
103
  readonly FIXED_IP: "FIXED_IP";
104
104
  readonly GESCAL37: "GESCAL37";
105
105
  readonly ICCID: "ICCID";
106
- readonly IUA_DONOR: "IUA_DONOR";
106
+ readonly IUA_DONOR: "IUA_DONANTE";
107
107
  readonly LATITUDE: "LATITUDE";
108
108
  readonly LINE_ID: "LINE_ID";
109
109
  readonly LONGITUDE_V2: "LONGITUDE_V2";
@@ -111,7 +111,7 @@ export declare const ServiceSpecificationCharacteristicNames: {
111
111
  readonly MASMOVIL_ID: "MASMOVILID";
112
112
  readonly MSISDN: "MSISDN";
113
113
  readonly NOTES_FOR_INSTALLER: "NOTES_FOR_INSTALLER";
114
- readonly OFFNET_INSTALLATION_TYPE: "OFFNET_INSTALLATION_TYPE";
114
+ readonly OFFNET: "OFFNET";
115
115
  readonly OPERATOR_WE_PORTIN_FROM: "Operator we Port-In from";
116
116
  readonly PARAMETERS: "PARAMETROS";
117
117
  readonly PHONE_NUMBER: "PHONE_NUMBER";
@@ -130,7 +130,7 @@ exports.ServiceSpecificationCharacteristicNames = {
130
130
  FIXED_IP: 'FIXED_IP',
131
131
  GESCAL37: 'GESCAL37',
132
132
  ICCID: 'ICCID',
133
- IUA_DONOR: 'IUA_DONOR',
133
+ IUA_DONOR: 'IUA_DONANTE',
134
134
  LATITUDE: 'LATITUDE',
135
135
  LINE_ID: 'LINE_ID',
136
136
  LONGITUDE_V2: 'LONGITUDE_V2',
@@ -138,7 +138,7 @@ exports.ServiceSpecificationCharacteristicNames = {
138
138
  MASMOVIL_ID: 'MASMOVILID',
139
139
  MSISDN: 'MSISDN',
140
140
  NOTES_FOR_INSTALLER: 'NOTES_FOR_INSTALLER',
141
- OFFNET_INSTALLATION_TYPE: 'OFFNET_INSTALLATION_TYPE',
141
+ OFFNET: 'OFFNET',
142
142
  OPERATOR_WE_PORTIN_FROM: 'Operator we Port-In from',
143
143
  PARAMETERS: 'PARAMETROS',
144
144
  PHONE_NUMBER: 'PHONE_NUMBER',
@@ -185,7 +185,7 @@ exports.ServiceSpecificationDictionary = {
185
185
  [exports.ServiceSpecificationCharacteristicNames.MASMOVIL_ID]: ServiceSpecificationType.STRING,
186
186
  [exports.ServiceSpecificationCharacteristicNames.MSISDN]: ServiceSpecificationType.STRING,
187
187
  [exports.ServiceSpecificationCharacteristicNames.NOTES_FOR_INSTALLER]: ServiceSpecificationType.STRING,
188
- [exports.ServiceSpecificationCharacteristicNames.OFFNET_INSTALLATION_TYPE]: ServiceSpecificationType.SELECT,
188
+ [exports.ServiceSpecificationCharacteristicNames.OFFNET]: ServiceSpecificationType.SELECT,
189
189
  [exports.ServiceSpecificationCharacteristicNames.OPERATOR_WE_PORTIN_FROM]: ServiceSpecificationType.SELECT,
190
190
  [exports.ServiceSpecificationCharacteristicNames.PARAMETERS]: ServiceSpecificationType.STRING,
191
191
  [exports.ServiceSpecificationCharacteristicNames.PHONE_NUMBER]: ServiceSpecificationType.STRING,
@@ -0,0 +1,7 @@
1
+ export declare enum AreaAddressesOrderBy {
2
+ ADDRESS = "address",
3
+ DISTANCE = "distance"
4
+ }
5
+ export declare enum ApartmentNetworkType {
6
+ GRUPO_AIRE = "AIRE NETWORKS"
7
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ApartmentNetworkType = exports.AreaAddressesOrderBy = void 0;
4
+ var AreaAddressesOrderBy;
5
+ (function (AreaAddressesOrderBy) {
6
+ AreaAddressesOrderBy["ADDRESS"] = "address";
7
+ AreaAddressesOrderBy["DISTANCE"] = "distance";
8
+ })(AreaAddressesOrderBy || (exports.AreaAddressesOrderBy = AreaAddressesOrderBy = {}));
9
+ var ApartmentNetworkType;
10
+ (function (ApartmentNetworkType) {
11
+ ApartmentNetworkType["GRUPO_AIRE"] = "AIRE NETWORKS";
12
+ })(ApartmentNetworkType || (exports.ApartmentNetworkType = ApartmentNetworkType = {}));
@@ -1,3 +1,4 @@
1
+ import { AreaAddressesOrderBy } from './address.constants';
1
2
  export declare class AddressDto {
2
3
  id: string;
3
4
  address: string;
@@ -64,10 +65,6 @@ export declare class ApartmentDto {
64
65
  network: string;
65
66
  fiberhood: string;
66
67
  }
67
- export declare enum AreaAddressesOrderBy {
68
- ADDRESS = "address",
69
- DISTANCE = "distance"
70
- }
71
68
  export declare class BaseAreaAddressesQueryDto {
72
69
  orderBy?: AreaAddressesOrderBy;
73
70
  }
@@ -9,10 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.SearchByAreaParamsDto = exports.AreaAddressesQueryDto = exports.BaseAreaAddressesQueryDto = exports.AreaAddressesOrderBy = exports.ApartmentDto = exports.AreaAddressDto = exports.AddressApartmentDto = exports.AddressDto = void 0;
12
+ exports.SearchByAreaParamsDto = exports.AreaAddressesQueryDto = exports.BaseAreaAddressesQueryDto = exports.ApartmentDto = exports.AreaAddressDto = exports.AddressApartmentDto = exports.AddressDto = void 0;
13
13
  const openapi = require("@nestjs/swagger");
14
14
  const _validators_1 = require("../../validators/index");
15
15
  const class_validator_1 = require("class-validator");
16
+ const address_constants_1 = require("./address.constants");
16
17
  class AddressDto {
17
18
  static _OPENAPI_METADATA_FACTORY() {
18
19
  return { id: { required: true, type: () => String }, address: { required: true, type: () => String }, city: { required: true, type: () => String }, province: { required: true, type: () => String }, postcode: { required: true, type: () => String }, status: { required: true, type: () => String }, salesArea: { required: true, type: () => String }, note: { required: false, type: () => String }, zone: { required: false, type: () => String }, serviceableDate: { required: true, type: () => Date }, serviceableAge: { required: true, type: () => Number }, lng: { required: true, type: () => String }, lat: { required: true, type: () => String }, gescal24: { required: false, type: () => String }, apartments: { required: true, type: () => [require("./address.entity").AddressApartmentDto] } };
@@ -37,19 +38,14 @@ class ApartmentDto {
37
38
  }
38
39
  }
39
40
  exports.ApartmentDto = ApartmentDto;
40
- var AreaAddressesOrderBy;
41
- (function (AreaAddressesOrderBy) {
42
- AreaAddressesOrderBy["ADDRESS"] = "address";
43
- AreaAddressesOrderBy["DISTANCE"] = "distance";
44
- })(AreaAddressesOrderBy || (exports.AreaAddressesOrderBy = AreaAddressesOrderBy = {}));
45
41
  class BaseAreaAddressesQueryDto {
46
42
  static _OPENAPI_METADATA_FACTORY() {
47
- return { orderBy: { required: false, enum: require("./address.entity").AreaAddressesOrderBy } };
43
+ return { orderBy: { required: false, enum: require("./address.constants").AreaAddressesOrderBy } };
48
44
  }
49
45
  }
50
46
  exports.BaseAreaAddressesQueryDto = BaseAreaAddressesQueryDto;
51
47
  __decorate([
52
- (0, class_validator_1.IsEnum)(AreaAddressesOrderBy),
48
+ (0, class_validator_1.IsEnum)(address_constants_1.AreaAddressesOrderBy),
53
49
  (0, class_validator_1.IsOptional)(),
54
50
  __metadata("design:type", String)
55
51
  ], BaseAreaAddressesQueryDto.prototype, "orderBy", void 0);
@@ -1 +1,2 @@
1
+ export * from './address.constants';
1
2
  export * from './address.entity';
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./address.constants"), exports);
17
18
  __exportStar(require("./address.entity"), exports);