@autologix-engineering/shared 1.0.5 → 1.0.6
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/package.json +1 -1
- package/src/lib/data-transfer-objects/src/command/add.ph.passenger.external.dto.js.map +1 -1
- package/src/lib/data-transfer-objects/src/command/add.placeholder.passenger.dto.js.map +1 -1
- package/src/lib/data-transfer-objects/src/gatekeeper/create.registered.user.dto.d.ts +4 -1
- package/src/lib/data-transfer-objects/src/gatekeeper/create.registered.user.dto.js +16 -1
- package/src/lib/data-transfer-objects/src/gatekeeper/create.registered.user.dto.js.map +1 -1
- package/src/lib/definitions/src/location/address.type.d.ts +155 -34
- package/src/lib/definitions/src/location/address.type.js +1 -84
- package/src/lib/definitions/src/location/address.type.js.map +1 -1
- package/src/lib/enums/src/countries.enum.d.ts +242 -0
- package/src/lib/enums/src/countries.enum.js +244 -0
- package/src/lib/enums/src/countries.enum.js.map +1 -0
- package/src/lib/enums/src/index.d.ts +1 -0
- package/src/lib/enums/src/index.js +1 -0
- package/src/lib/enums/src/index.js.map +1 -1
- package/src/lib/models/src/placeholder.user.model.d.ts +8 -1
- package/src/lib/models/src/placeholder.user.model.js +3 -0
- package/src/lib/models/src/placeholder.user.model.js.map +1 -1
- package/src/lib/models/src/registered.user.model.d.ts +8 -2
- package/src/lib/models/src/registered.user.model.js +3 -0
- package/src/lib/models/src/registered.user.model.js.map +1 -1
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add.ph.passenger.external.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/add.ph.passenger.external.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,QAAQ,
|
|
1
|
+
{"version":3,"file":"add.ph.passenger.external.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/add.ph.passenger.external.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE1D,MAAM,OAAO,yBAAyB;IAOrC,YAAY,GAAwC;QACnD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AARA;IADC,QAAQ,EAAE;;4DACO;AAGlB;IADC,aAAa,CAAC,IAAI,CAAC;;8DACA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add.placeholder.passenger.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/add.placeholder.passenger.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EACN,SAAS,EACT,MAAM,EACN,UAAU,EACV,QAAQ,EACR,MAAM,GACN,MAAM,iBAAiB,CAAC;AAEzB,MAAM,OAAO,0BAA0B;IA+
|
|
1
|
+
{"version":3,"file":"add.placeholder.passenger.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/add.placeholder.passenger.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EACN,SAAS,EACT,MAAM,EACN,UAAU,EACV,QAAQ,EACR,MAAM,GACN,MAAM,iBAAiB,CAAC;AAEzB,MAAM,OAAO,0BAA0B;IA+BtC,YAAY,GAAyC;QACpD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AAhCA;IADC,MAAM,EAAE;;6DACS;AAGlB;IADC,MAAM,EAAE;;+DACW;AAGpB;IADC,QAAQ,EAAE;;wDACE;AAIb;IAFC,MAAM,EAAE;IACR,UAAU,EAAE;;6DACM;AAInB;IAFC,SAAS,EAAE;IACX,UAAU,EAAE;;2EACqB;AAIlC;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,mBAAmB,CAAC;;wDACD;AAG3B;IADC,UAAU,EAAE;;8DACO;AAGpB;IADC,UAAU,EAAE;;+DACQ;AAGrB;IADC,UAAU,EAAE;;yDACE"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import 'reflect-metadata';
|
|
2
|
-
import { Gender } from '../../../enums/src/index';
|
|
2
|
+
import { Countries, Gender } from '../../../enums/src/index';
|
|
3
3
|
export declare class CreateRegisteredUserDTO {
|
|
4
4
|
onboardingUserId: string;
|
|
5
5
|
name: string;
|
|
@@ -7,6 +7,9 @@ export declare class CreateRegisteredUserDTO {
|
|
|
7
7
|
email?: string;
|
|
8
8
|
gender: Gender;
|
|
9
9
|
url?: string;
|
|
10
|
+
contactPhone?: string;
|
|
11
|
+
contactEmail?: string;
|
|
12
|
+
country?: Countries;
|
|
10
13
|
constructor(obj?: Partial<CreateRegisteredUserDTO>);
|
|
11
14
|
}
|
|
12
15
|
export declare class CreateRegisteredUserRequestDTO extends CreateRegisteredUserDTO {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
2
|
import 'reflect-metadata';
|
|
3
3
|
import { IsEmail, IsEnum, IsJWT, IsOptional, IsString, IsUUID, } from 'class-validator';
|
|
4
|
-
import { Gender } from '../../../enums/src/index';
|
|
4
|
+
import { Countries, Gender } from '../../../enums/src/index';
|
|
5
5
|
export class CreateRegisteredUserDTO {
|
|
6
6
|
constructor(obj) {
|
|
7
7
|
Object.assign(this, obj);
|
|
@@ -34,6 +34,21 @@ __decorate([
|
|
|
34
34
|
IsString(),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], CreateRegisteredUserDTO.prototype, "url", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
IsOptional(),
|
|
39
|
+
IsString(),
|
|
40
|
+
__metadata("design:type", String)
|
|
41
|
+
], CreateRegisteredUserDTO.prototype, "contactPhone", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
IsOptional(),
|
|
44
|
+
IsString(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], CreateRegisteredUserDTO.prototype, "contactEmail", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
IsOptional(),
|
|
49
|
+
IsEnum(Countries),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], CreateRegisteredUserDTO.prototype, "country", void 0);
|
|
37
52
|
export class CreateRegisteredUserRequestDTO extends CreateRegisteredUserDTO {
|
|
38
53
|
constructor(obj) {
|
|
39
54
|
super(obj);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.registered.user.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/gatekeeper/create.registered.user.dto.ts"],"names":[],"mappings":";AAAA,OAAO,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"create.registered.user.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/gatekeeper/create.registered.user.dto.ts"],"names":[],"mappings":";AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EACN,OAAO,EACP,MAAM,EACN,KAAK,EACL,UAAU,EACV,QAAQ,EACR,MAAM,GACN,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAE7D,MAAM,OAAO,uBAAuB;IAkCnC,YAAY,GAAsC;QACjD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AAnCA;IADC,MAAM,CAAC,GAAG,CAAC;;iEACa;AAGzB;IADC,QAAQ,EAAE;;qDACE;AAIb;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;yDACO;AAIlB;IAFC,UAAU,EAAE;IACZ,OAAO,EAAE;;sDACK;AAGf;IADC,MAAM,CAAC,MAAM,CAAC;;uDACA;AAIf;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;oDACE;AAIb;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;6DACW;AAItB;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;6DACW;AAItB;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,SAAS,CAAC;;wDACE;AAOrB,MAAM,OAAO,8BAA+B,SAAQ,uBAAuB;IAI1E,YAAY,GAA6C;QACxD,KAAK,CAAC,GAAG,CAAC,CAAC;QACX,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AANA;IADC,KAAK,EAAE;;6DACM"}
|
|
@@ -1,14 +1,119 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
/** indicates
|
|
11
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Table 1: Types supported in place search and addition
|
|
3
|
+
*
|
|
4
|
+
* You can use the following values in the types filter for place searches and when adding a place.
|
|
5
|
+
*
|
|
6
|
+
* @see https://developers.google.com/places/web-service/supported_types#table1
|
|
7
|
+
*/
|
|
8
|
+
export declare enum PlaceType1 {
|
|
9
|
+
accounting = "accounting",
|
|
10
|
+
/** indicates an airport. */
|
|
11
|
+
airport = "airport",
|
|
12
|
+
amusement_park = "amusement_park",
|
|
13
|
+
aquarium = "aquarium",
|
|
14
|
+
art_gallery = "art_gallery",
|
|
15
|
+
atm = "atm",
|
|
16
|
+
bakery = "bakery",
|
|
17
|
+
bank = "bank",
|
|
18
|
+
bar = "bar",
|
|
19
|
+
beauty_salon = "beauty_salon",
|
|
20
|
+
bicycle_store = "bicycle_store",
|
|
21
|
+
book_store = "book_store",
|
|
22
|
+
bowling_alley = "bowling_alley",
|
|
23
|
+
bus_station = "bus_station",
|
|
24
|
+
cafe = "cafe",
|
|
25
|
+
campground = "campground",
|
|
26
|
+
car_dealer = "car_dealer",
|
|
27
|
+
car_rental = "car_rental",
|
|
28
|
+
car_repair = "car_repair",
|
|
29
|
+
car_wash = "car_wash",
|
|
30
|
+
casino = "casino",
|
|
31
|
+
cemetery = "cemetery",
|
|
32
|
+
church = "church",
|
|
33
|
+
city_hall = "city_hall",
|
|
34
|
+
clothing_store = "clothing_store",
|
|
35
|
+
convenience_store = "convenience_store",
|
|
36
|
+
courthouse = "courthouse",
|
|
37
|
+
dentist = "dentist",
|
|
38
|
+
department_store = "department_store",
|
|
39
|
+
doctor = "doctor",
|
|
40
|
+
drugstore = "drugstore",
|
|
41
|
+
electrician = "electrician",
|
|
42
|
+
electronics_store = "electronics_store",
|
|
43
|
+
embassy = "embassy",
|
|
44
|
+
fire_station = "fire_station",
|
|
45
|
+
florist = "florist",
|
|
46
|
+
funeral_home = "funeral_home",
|
|
47
|
+
furniture_store = "furniture_store",
|
|
48
|
+
gas_station = "gas_station",
|
|
49
|
+
gym = "gym",
|
|
50
|
+
hair_care = "hair_care",
|
|
51
|
+
hardware_store = "hardware_store",
|
|
52
|
+
hindu_temple = "hindu_temple",
|
|
53
|
+
home_goods_store = "home_goods_store",
|
|
54
|
+
hospital = "hospital",
|
|
55
|
+
insurance_agency = "insurance_agency",
|
|
56
|
+
jewelry_store = "jewelry_store",
|
|
57
|
+
laundry = "laundry",
|
|
58
|
+
lawyer = "lawyer",
|
|
59
|
+
library = "library",
|
|
60
|
+
light_rail_station = "light_rail_station",
|
|
61
|
+
liquor_store = "liquor_store",
|
|
62
|
+
local_government_office = "local_government_office",
|
|
63
|
+
locksmith = "locksmith",
|
|
64
|
+
lodging = "lodging",
|
|
65
|
+
meal_delivery = "meal_delivery",
|
|
66
|
+
meal_takeaway = "meal_takeaway",
|
|
67
|
+
mosque = "mosque",
|
|
68
|
+
movie_rental = "movie_rental",
|
|
69
|
+
movie_theater = "movie_theater",
|
|
70
|
+
moving_company = "moving_company",
|
|
71
|
+
museum = "museum",
|
|
72
|
+
night_club = "night_club",
|
|
73
|
+
painter = "painter",
|
|
74
|
+
/** indicates a named park. */
|
|
75
|
+
park = "park",
|
|
76
|
+
parking = "parking",
|
|
77
|
+
pet_store = "pet_store",
|
|
78
|
+
pharmacy = "pharmacy",
|
|
79
|
+
physiotherapist = "physiotherapist",
|
|
80
|
+
plumber = "plumber",
|
|
81
|
+
police = "police",
|
|
82
|
+
post_office = "post_office",
|
|
83
|
+
real_estate_agency = "real_estate_agency",
|
|
84
|
+
restaurant = "restaurant",
|
|
85
|
+
roofing_contractor = "roofing_contractor",
|
|
86
|
+
rv_park = "rv_park",
|
|
87
|
+
school = "school",
|
|
88
|
+
secondary_school = "secondary_school",
|
|
89
|
+
shoe_store = "shoe_store",
|
|
90
|
+
shopping_mall = "shopping_mall",
|
|
91
|
+
spa = "spa",
|
|
92
|
+
stadium = "stadium",
|
|
93
|
+
storage = "storage",
|
|
94
|
+
store = "store",
|
|
95
|
+
subway_station = "subway_station",
|
|
96
|
+
supermarket = "supermarket",
|
|
97
|
+
synagogue = "synagogue",
|
|
98
|
+
taxi_stand = "taxi_stand",
|
|
99
|
+
tourist_attraction = "tourist_attraction",
|
|
100
|
+
train_station = "train_station",
|
|
101
|
+
transit_station = "transit_station",
|
|
102
|
+
travel_agency = "travel_agency",
|
|
103
|
+
university = "university",
|
|
104
|
+
veterinary_care = "veterinary_care",
|
|
105
|
+
zoo = "zoo"
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Table 2: Additional types returned by the Places service
|
|
109
|
+
*
|
|
110
|
+
* The following types may be returned in the results of a place search, in addition to the types in table 1 above.
|
|
111
|
+
* For more details on these types, refer to [Address Types](https://developers.google.com/maps/documentation/geocoding/intro#Types)
|
|
112
|
+
* in Geocoding Responses.
|
|
113
|
+
*
|
|
114
|
+
* @see https://developers.google.com/places/web-service/supported_types#table2
|
|
115
|
+
*/
|
|
116
|
+
export declare enum PlaceType2 {
|
|
12
117
|
/**
|
|
13
118
|
* indicates a first-order civil entity below the country level. Within the United States, these administrative levels are states.
|
|
14
119
|
* Not all nations exhibit these administrative levels. In most cases, `administrative_area_level_1` short names will closely match
|
|
@@ -36,15 +141,46 @@ export declare enum AddressType {
|
|
|
36
141
|
* Not all nations exhibit these administrative levels.
|
|
37
142
|
*/
|
|
38
143
|
administrative_area_level_5 = "administrative_area_level_5",
|
|
144
|
+
archipelago = "archipelago",
|
|
39
145
|
/** indicates a commonly-used alternative name for the entity. */
|
|
40
146
|
colloquial_area = "colloquial_area",
|
|
147
|
+
continent = "continent",
|
|
148
|
+
/** indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
149
|
+
country = "country",
|
|
150
|
+
establishment = "establishment",
|
|
151
|
+
finance = "finance",
|
|
152
|
+
floor = "floor",
|
|
153
|
+
food = "food",
|
|
154
|
+
general_contractor = "general_contractor",
|
|
155
|
+
geocode = "geocode",
|
|
156
|
+
health = "health",
|
|
157
|
+
/** indicates a major intersection, usually of two major roads. */
|
|
158
|
+
intersection = "intersection",
|
|
159
|
+
landmark = "landmark",
|
|
41
160
|
/** indicates an incorporated city or town political entity. */
|
|
42
161
|
locality = "locality",
|
|
43
|
-
/**
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
162
|
+
/** indicates a prominent natural feature. */
|
|
163
|
+
natural_feature = "natural_feature",
|
|
164
|
+
/** indicates a named neighborhood */
|
|
165
|
+
neighborhood = "neighborhood",
|
|
166
|
+
place_of_worship = "place_of_worship",
|
|
167
|
+
plus_code = "plus_code",
|
|
168
|
+
point_of_interest = "point_of_interest",
|
|
169
|
+
/** indicates a political entity. Usually, this type indicates a polygon of some civil administration. */
|
|
170
|
+
political = "political",
|
|
171
|
+
post_box = "post_box",
|
|
172
|
+
/** indicates a postal code as used to address postal mail within the country. */
|
|
173
|
+
postal_code = "postal_code",
|
|
174
|
+
postal_code_prefix = "postal_code_prefix",
|
|
175
|
+
postal_code_suffix = "postal_code_suffix",
|
|
176
|
+
postal_town = "postal_town",
|
|
177
|
+
/** indicates a named location, usually a building or collection of buildings with a common name */
|
|
178
|
+
premise = "premise",
|
|
179
|
+
room = "room",
|
|
180
|
+
/** indicates a named route (such as "US 101"). */
|
|
181
|
+
route = "route",
|
|
182
|
+
street_address = "street_address",
|
|
183
|
+
street_number = "street_number",
|
|
48
184
|
/**
|
|
49
185
|
* indicates a first-order civil entity below a locality. For some locations may receive one of the additional types:
|
|
50
186
|
* `sublocality_level_1` to `sublocality_level_5`. Each sublocality level is a civil entity. Larger numbers indicate a smaller
|
|
@@ -56,27 +192,12 @@ export declare enum AddressType {
|
|
|
56
192
|
sublocality_level_3 = "sublocality_level_3",
|
|
57
193
|
sublocality_level_4 = "sublocality_level_4",
|
|
58
194
|
sublocality_level_5 = "sublocality_level_5",
|
|
59
|
-
/** indicates a named neighborhood */
|
|
60
|
-
neighborhood = "neighborhood",
|
|
61
|
-
/** indicates a named location, usually a building or collection of buildings with a common name */
|
|
62
|
-
premise = "premise",
|
|
63
195
|
/**
|
|
64
196
|
* indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a
|
|
65
197
|
* common name.
|
|
66
198
|
*/
|
|
67
199
|
subpremise = "subpremise",
|
|
68
|
-
|
|
69
|
-
postal_code = "postal_code",
|
|
70
|
-
/** indicates a prominent natural feature. */
|
|
71
|
-
natural_feature = "natural_feature",
|
|
72
|
-
/** indicates an airport. */
|
|
73
|
-
airport = "airport",
|
|
74
|
-
/** indicates a named park. */
|
|
75
|
-
park = "park",
|
|
76
|
-
/**
|
|
77
|
-
* indicates a named point of interest. Typically, these "POI"s are prominent local entities that don't easily fit in another category,
|
|
78
|
-
* such as "Empire State Building" or "Statue of Liberty".
|
|
79
|
-
*/
|
|
80
|
-
point_of_interest = "point_of_interest",
|
|
81
|
-
establishment = "establishment"
|
|
200
|
+
town_square = "town_square"
|
|
82
201
|
}
|
|
202
|
+
export declare const AddressType: typeof PlaceType1 & typeof PlaceType2;
|
|
203
|
+
export type AddressType = PlaceType1 | PlaceType2;
|
|
@@ -1,85 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export var AddressType;
|
|
3
|
-
(function (AddressType) {
|
|
4
|
-
/** indicates a precise street address. */
|
|
5
|
-
AddressType["street_address"] = "street_address";
|
|
6
|
-
/** indicates a named route (such as "US 101"). */
|
|
7
|
-
AddressType["route"] = "route";
|
|
8
|
-
/** indicates a major intersection, usually of two major roads. */
|
|
9
|
-
AddressType["intersection"] = "intersection";
|
|
10
|
-
/** indicates a political entity. Usually, this type indicates a polygon of some civil administration. */
|
|
11
|
-
AddressType["political"] = "political";
|
|
12
|
-
/** indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
13
|
-
AddressType["country"] = "country";
|
|
14
|
-
/**
|
|
15
|
-
* indicates a first-order civil entity below the country level. Within the United States, these administrative levels are states.
|
|
16
|
-
* Not all nations exhibit these administrative levels. In most cases, `administrative_area_level_1` short names will closely match
|
|
17
|
-
* ISO 3166-2 subdivisions and other widely circulated lists; however this is not guaranteed as our geocoding results are based
|
|
18
|
-
* on a variety of signals and location data.
|
|
19
|
-
*/
|
|
20
|
-
AddressType["administrative_area_level_1"] = "administrative_area_level_1";
|
|
21
|
-
/**
|
|
22
|
-
* indicates a second-order civil entity below the country level. Within the United States, these administrative levels are counties.
|
|
23
|
-
* Not all nations exhibit these administrative levels.
|
|
24
|
-
*/
|
|
25
|
-
AddressType["administrative_area_level_2"] = "administrative_area_level_2";
|
|
26
|
-
/**
|
|
27
|
-
* indicates a third-order civil entity below the country level. This type indicates a minor civil division.
|
|
28
|
-
* Not all nations exhibit these administrative levels.
|
|
29
|
-
*/
|
|
30
|
-
AddressType["administrative_area_level_3"] = "administrative_area_level_3";
|
|
31
|
-
/**
|
|
32
|
-
* indicates a fourth-order civil entity below the country level. This type indicates a minor civil division.
|
|
33
|
-
* Not all nations exhibit these administrative levels.
|
|
34
|
-
*/
|
|
35
|
-
AddressType["administrative_area_level_4"] = "administrative_area_level_4";
|
|
36
|
-
/**
|
|
37
|
-
* indicates a fifth-order civil entity below the country level. This type indicates a minor civil division.
|
|
38
|
-
* Not all nations exhibit these administrative levels.
|
|
39
|
-
*/
|
|
40
|
-
AddressType["administrative_area_level_5"] = "administrative_area_level_5";
|
|
41
|
-
/** indicates a commonly-used alternative name for the entity. */
|
|
42
|
-
AddressType["colloquial_area"] = "colloquial_area";
|
|
43
|
-
/** indicates an incorporated city or town political entity. */
|
|
44
|
-
AddressType["locality"] = "locality";
|
|
45
|
-
/**
|
|
46
|
-
* indicates a specific type of Japanese locality, to facilitate distinction between multiple locality components within a
|
|
47
|
-
* Japanese address.
|
|
48
|
-
*/
|
|
49
|
-
AddressType["ward"] = "ward";
|
|
50
|
-
/**
|
|
51
|
-
* indicates a first-order civil entity below a locality. For some locations may receive one of the additional types:
|
|
52
|
-
* `sublocality_level_1` to `sublocality_level_5`. Each sublocality level is a civil entity. Larger numbers indicate a smaller
|
|
53
|
-
* geographic area.
|
|
54
|
-
*/
|
|
55
|
-
AddressType["sublocality"] = "sublocality";
|
|
56
|
-
AddressType["sublocality_level_1"] = "sublocality_level_1";
|
|
57
|
-
AddressType["sublocality_level_2"] = "sublocality_level_2";
|
|
58
|
-
AddressType["sublocality_level_3"] = "sublocality_level_3";
|
|
59
|
-
AddressType["sublocality_level_4"] = "sublocality_level_4";
|
|
60
|
-
AddressType["sublocality_level_5"] = "sublocality_level_5";
|
|
61
|
-
/** indicates a named neighborhood */
|
|
62
|
-
AddressType["neighborhood"] = "neighborhood";
|
|
63
|
-
/** indicates a named location, usually a building or collection of buildings with a common name */
|
|
64
|
-
AddressType["premise"] = "premise";
|
|
65
|
-
/**
|
|
66
|
-
* indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a
|
|
67
|
-
* common name.
|
|
68
|
-
*/
|
|
69
|
-
AddressType["subpremise"] = "subpremise";
|
|
70
|
-
/** indicates a postal code as used to address postal mail within the country. */
|
|
71
|
-
AddressType["postal_code"] = "postal_code";
|
|
72
|
-
/** indicates a prominent natural feature. */
|
|
73
|
-
AddressType["natural_feature"] = "natural_feature";
|
|
74
|
-
/** indicates an airport. */
|
|
75
|
-
AddressType["airport"] = "airport";
|
|
76
|
-
/** indicates a named park. */
|
|
77
|
-
AddressType["park"] = "park";
|
|
78
|
-
/**
|
|
79
|
-
* indicates a named point of interest. Typically, these "POI"s are prominent local entities that don't easily fit in another category,
|
|
80
|
-
* such as "Empire State Building" or "Statue of Liberty".
|
|
81
|
-
*/
|
|
82
|
-
AddressType["point_of_interest"] = "point_of_interest";
|
|
83
|
-
AddressType["establishment"] = "establishment";
|
|
84
|
-
})(AddressType || (AddressType = {}));
|
|
1
|
+
export {};
|
|
85
2
|
//# sourceMappingURL=address.type.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.type.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/definitions/src/location/address.type.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"address.type.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/definitions/src/location/address.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
export declare enum Countries {
|
|
2
|
+
Afghanistan = "Afghanistan",
|
|
3
|
+
Albania = "Albania",
|
|
4
|
+
Algeria = "Algeria",
|
|
5
|
+
AmericanSamoa = "American Samoa",
|
|
6
|
+
Andorra = "Andorra",
|
|
7
|
+
Angola = "Angola",
|
|
8
|
+
Anguilla = "Anguilla",
|
|
9
|
+
Antarctica = "Antarctica",
|
|
10
|
+
AntiguaandBarbuda = "Antigua and Barbuda",
|
|
11
|
+
Argentina = "Argentina",
|
|
12
|
+
Armenia = "Armenia",
|
|
13
|
+
Aruba = "Aruba",
|
|
14
|
+
Australia = "Australia",
|
|
15
|
+
Austria = "Austria",
|
|
16
|
+
Azerbaijan = "Azerbaijan",
|
|
17
|
+
Bahamas = "Bahamas",
|
|
18
|
+
Bahrain = "Bahrain",
|
|
19
|
+
Bangladesh = "Bangladesh",
|
|
20
|
+
Barbados = "Barbados",
|
|
21
|
+
Belarus = "Belarus",
|
|
22
|
+
Belgium = "Belgium",
|
|
23
|
+
Belize = "Belize",
|
|
24
|
+
Benin = "Benin",
|
|
25
|
+
Bermuda = "Bermuda",
|
|
26
|
+
Bhutan = "Bhutan",
|
|
27
|
+
Bolivia = "Bolivia",
|
|
28
|
+
BosniaandHerzegovina = "Bosniaand Herzegovina",
|
|
29
|
+
Botswana = "Botswana",
|
|
30
|
+
Brazil = "Brazil",
|
|
31
|
+
BritishIndianOceanTerritory = "British Indian Ocean Territory",
|
|
32
|
+
BritishVirginIslands = "British Virgin Islands",
|
|
33
|
+
Brunei = "Brunei",
|
|
34
|
+
Bulgaria = "Bulgaria",
|
|
35
|
+
BurkinaFaso = "Burkina Faso",
|
|
36
|
+
Burundi = "Burundi",
|
|
37
|
+
Cambodia = "Cambodia",
|
|
38
|
+
Cameroon = "Cameroon",
|
|
39
|
+
Canada = "Canada",
|
|
40
|
+
CapeVerde = "Cape Verde",
|
|
41
|
+
CaymanIslands = "Cayman Islands",
|
|
42
|
+
CentralAfricanRepublic = "Central African Republic",
|
|
43
|
+
Chad = "Chad",
|
|
44
|
+
Chile = "Chile",
|
|
45
|
+
China = "China",
|
|
46
|
+
ChristmasIsland = "Christmas Island",
|
|
47
|
+
CocosIslands = "Cocos Islands",
|
|
48
|
+
Colombia = "Colombia",
|
|
49
|
+
Comoros = "Comoros",
|
|
50
|
+
CookIslands = "Cook Islands",
|
|
51
|
+
CostaRica = "Costa Rica",
|
|
52
|
+
Croatia = "Croatia",
|
|
53
|
+
Cuba = "Cuba",
|
|
54
|
+
Curacao = "Curacao",
|
|
55
|
+
Cyprus = "Cyprus",
|
|
56
|
+
CzechRepublic = "Czech Republic",
|
|
57
|
+
DemocraticRepublicoftheCongo = "Democratic Republic of the Congo",
|
|
58
|
+
Denmark = "Denmark",
|
|
59
|
+
Djibouti = "Djibouti",
|
|
60
|
+
Dominica = "Dominica",
|
|
61
|
+
DominicanRepublic = "Dominican Republic",
|
|
62
|
+
EastTimor = "East Timor",
|
|
63
|
+
Ecuador = "Ecuador",
|
|
64
|
+
Egypt = "Egypt",
|
|
65
|
+
ElSalvador = "El Salvador",
|
|
66
|
+
EquatorialGuinea = "Equatorial Guinea",
|
|
67
|
+
Eritrea = "Eritrea",
|
|
68
|
+
Estonia = "Estonia",
|
|
69
|
+
Ethiopia = "Ethiopia",
|
|
70
|
+
FalklandIslands = "Falkland Islands",
|
|
71
|
+
FaroeIslands = "Faroe Islands",
|
|
72
|
+
Fiji = "Fiji",
|
|
73
|
+
Finland = "Finland",
|
|
74
|
+
France = "France",
|
|
75
|
+
FrenchPolynesia = "French Polynesia",
|
|
76
|
+
Gabon = "Gabon",
|
|
77
|
+
Gambia = "Gambia",
|
|
78
|
+
Georgia = "Georgia",
|
|
79
|
+
Germany = "Germany",
|
|
80
|
+
Ghana = "Ghana",
|
|
81
|
+
Gibraltar = "Gibraltar",
|
|
82
|
+
Greece = "Greece",
|
|
83
|
+
Greenland = "Greenland",
|
|
84
|
+
Grenada = "Grenada",
|
|
85
|
+
Guam = "Guam",
|
|
86
|
+
Guatemala = "Guatemala",
|
|
87
|
+
Guernsey = "Guernsey",
|
|
88
|
+
Guinea = "Guinea",
|
|
89
|
+
GuineaBissau = "Guinea-Bissau",
|
|
90
|
+
Guyana = "Guyana",
|
|
91
|
+
Haiti = "Haiti",
|
|
92
|
+
Honduras = "Honduras",
|
|
93
|
+
HongKong = "Hong Kong",
|
|
94
|
+
Hungary = "Hungary",
|
|
95
|
+
Iceland = "Iceland",
|
|
96
|
+
India = "India",
|
|
97
|
+
Indonesia = "Indonesia",
|
|
98
|
+
Iran = "Iran",
|
|
99
|
+
Iraq = "Iraq",
|
|
100
|
+
Ireland = "Ireland",
|
|
101
|
+
IsleofMan = "Isle of Man",
|
|
102
|
+
Israel = "Israel",
|
|
103
|
+
Italy = "Italy",
|
|
104
|
+
IvoryCoast = "Ivory Coast",
|
|
105
|
+
Jamaica = "Jamaica",
|
|
106
|
+
Japan = "Japan",
|
|
107
|
+
Jersey = "Jersey",
|
|
108
|
+
Jordan = "Jordan",
|
|
109
|
+
Kazakhstan = "Kazakhstan",
|
|
110
|
+
Kenya = "Kenya",
|
|
111
|
+
Kiribati = "Kiribati",
|
|
112
|
+
Kosovo = "Kosovo",
|
|
113
|
+
Kuwait = "Kuwait",
|
|
114
|
+
Kyrgyzstan = "Kyrgyzstan",
|
|
115
|
+
Laos = "Laos",
|
|
116
|
+
Latvia = "Latvia",
|
|
117
|
+
Lebanon = "Lebanon",
|
|
118
|
+
Lesotho = "Lesotho",
|
|
119
|
+
Liberia = "Liberia",
|
|
120
|
+
Libya = "Libya",
|
|
121
|
+
Liechtenstein = "Liechtenstein",
|
|
122
|
+
Lithuania = "Lithuania",
|
|
123
|
+
Luxembourg = "Luxembourg",
|
|
124
|
+
Macau = "Macau",
|
|
125
|
+
Macedonia = "Macedonia",
|
|
126
|
+
Madagascar = "Madagascar",
|
|
127
|
+
Malawi = "Malawi",
|
|
128
|
+
Malaysia = "Malaysia",
|
|
129
|
+
Maldives = "Maldives",
|
|
130
|
+
Mali = "Mali",
|
|
131
|
+
Malta = "Malta",
|
|
132
|
+
MarshallIslands = "Marshall Islands",
|
|
133
|
+
Mauritania = "Mauritania",
|
|
134
|
+
Mauritius = "Mauritius",
|
|
135
|
+
Mayotte = "Mayotte",
|
|
136
|
+
Mexico = "Mexico",
|
|
137
|
+
Micronesia = "Micronesia",
|
|
138
|
+
Moldova = "Moldova",
|
|
139
|
+
Monaco = "Monaco",
|
|
140
|
+
Mongolia = "Mongolia",
|
|
141
|
+
Montenegro = "Montenegro",
|
|
142
|
+
Montserrat = "Montserrat",
|
|
143
|
+
Morocco = "Morocco",
|
|
144
|
+
Mozambique = "Mozambique",
|
|
145
|
+
Myanmar = "Myanmar",
|
|
146
|
+
Namibia = "Namibia",
|
|
147
|
+
Nauru = "Nauru",
|
|
148
|
+
Nepal = "Nepal",
|
|
149
|
+
Netherlands = "Netherlands",
|
|
150
|
+
NetherlandsAntilles = "Netherlands Antilles",
|
|
151
|
+
NewCaledonia = "New Caledonia",
|
|
152
|
+
NewZealand = "New Zealand",
|
|
153
|
+
Nicaragua = "Nicaragua",
|
|
154
|
+
Niger = "Niger",
|
|
155
|
+
Nigeria = "Nigeria",
|
|
156
|
+
Niue = "Niue",
|
|
157
|
+
NorthKorea = "North Korea",
|
|
158
|
+
NorthernMarianaIslands = "Northern Mariana Islands",
|
|
159
|
+
Norway = "Norway",
|
|
160
|
+
Oman = "Oman",
|
|
161
|
+
Pakistan = "Pakistan",
|
|
162
|
+
Palau = "Palau",
|
|
163
|
+
Palestine = "Palestine",
|
|
164
|
+
Panama = "Panama",
|
|
165
|
+
PapuaNewGuinea = "Papua New Guinea",
|
|
166
|
+
Paraguay = "Paraguay",
|
|
167
|
+
Peru = "Peru",
|
|
168
|
+
Philippines = "Philippines",
|
|
169
|
+
Pitcairn = "Pitcairn",
|
|
170
|
+
Poland = "Poland",
|
|
171
|
+
Portugal = "Portugal",
|
|
172
|
+
PuertoRico = "Puerto Rico",
|
|
173
|
+
Qatar = "Qatar",
|
|
174
|
+
RepublicoftheCongo = "Republic of the Congo",
|
|
175
|
+
Reunion = "Reunion",
|
|
176
|
+
Romania = "Romania",
|
|
177
|
+
Russia = "Russia",
|
|
178
|
+
Rwanda = "Rwanda",
|
|
179
|
+
SaintBarthelemy = "Saint Barthelemy",
|
|
180
|
+
SaintHelena = "Saint Helena",
|
|
181
|
+
SaintKittsandNevis = "Saint Kitts and Nevis",
|
|
182
|
+
SaintLucia = "Saint Lucia",
|
|
183
|
+
SaintMartin = "Saint Martin",
|
|
184
|
+
SaintPierreandMiquelon = "Saint Pierre and Miquelon",
|
|
185
|
+
SaintVincentandtheGrenadines = "Saint Vincent and the Grenadines",
|
|
186
|
+
Samoa = "Samoa",
|
|
187
|
+
SanMarino = "San Marino",
|
|
188
|
+
SaoTomeandPrincipe = "Sao Tome and Principe",
|
|
189
|
+
SaudiArabia = "Saudi Arabia",
|
|
190
|
+
Senegal = "Senegal",
|
|
191
|
+
Serbia = "Serbia",
|
|
192
|
+
Seychelles = "Seychelles",
|
|
193
|
+
SierraLeone = "Sierra Leone",
|
|
194
|
+
Singapore = "Singapore",
|
|
195
|
+
SintMaarten = "Sint Maarten",
|
|
196
|
+
Slovakia = "Slovakia",
|
|
197
|
+
Slovenia = "Slovenia",
|
|
198
|
+
SolomonIslands = "Solomon Islands",
|
|
199
|
+
Somalia = "Somalia",
|
|
200
|
+
SouthAfrica = "South Africa",
|
|
201
|
+
SouthKorea = "South Korea",
|
|
202
|
+
SouthSudan = "South Sudan",
|
|
203
|
+
Spain = "Spain",
|
|
204
|
+
SriLanka = "Sri Lanka",
|
|
205
|
+
Sudan = "Sudan",
|
|
206
|
+
Suriname = "Suriname",
|
|
207
|
+
SvalbardandJanMayen = "Svalbard and Jan Mayen",
|
|
208
|
+
Swaziland = "Swaziland",
|
|
209
|
+
Sweden = "Sweden",
|
|
210
|
+
Switzerland = "Switzerland",
|
|
211
|
+
Syria = "Syria",
|
|
212
|
+
Taiwan = "Taiwan",
|
|
213
|
+
Tajikistan = "Tajikistan",
|
|
214
|
+
Tanzania = "Tanzania",
|
|
215
|
+
Thailand = "Thailand",
|
|
216
|
+
Togo = "Togo",
|
|
217
|
+
Tokelau = "Tokelau",
|
|
218
|
+
Tonga = "Tonga",
|
|
219
|
+
TrinidadandTobago = "Trinidad and Tobago",
|
|
220
|
+
Tunisia = "Tunisia",
|
|
221
|
+
Turkey = "Turkey",
|
|
222
|
+
Turkmenistan = "Turkmenistan",
|
|
223
|
+
TurksandCaicosIslands = "Turksand Caicos Islands",
|
|
224
|
+
Tuvalu = "Tuvalu",
|
|
225
|
+
USVirginIslands = "U.S.VirginIslands",
|
|
226
|
+
Uganda = "Uganda",
|
|
227
|
+
Ukraine = "Ukraine",
|
|
228
|
+
UnitedArabEmirates = "United Arab Emirates",
|
|
229
|
+
UnitedKingdom = "United Kingdom",
|
|
230
|
+
UnitedStates = "United States",
|
|
231
|
+
Uruguay = "Uruguay",
|
|
232
|
+
Uzbekistan = "Uzbekistan",
|
|
233
|
+
Vanuatu = "Vanuatu",
|
|
234
|
+
Vatican = "Vatican",
|
|
235
|
+
Venezuela = "Venezuela",
|
|
236
|
+
Vietnam = "Vietnam",
|
|
237
|
+
WallisandFutuna = "Wallisand Futuna",
|
|
238
|
+
WesternSahara = "Western Sahara",
|
|
239
|
+
Yemen = "Yemen",
|
|
240
|
+
Zambia = "Zambia",
|
|
241
|
+
Zimbabwe = "Zimbabwe"
|
|
242
|
+
}
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
export var Countries;
|
|
2
|
+
(function (Countries) {
|
|
3
|
+
Countries["Afghanistan"] = "Afghanistan";
|
|
4
|
+
Countries["Albania"] = "Albania";
|
|
5
|
+
Countries["Algeria"] = "Algeria";
|
|
6
|
+
Countries["AmericanSamoa"] = "American Samoa";
|
|
7
|
+
Countries["Andorra"] = "Andorra";
|
|
8
|
+
Countries["Angola"] = "Angola";
|
|
9
|
+
Countries["Anguilla"] = "Anguilla";
|
|
10
|
+
Countries["Antarctica"] = "Antarctica";
|
|
11
|
+
Countries["AntiguaandBarbuda"] = "Antigua and Barbuda";
|
|
12
|
+
Countries["Argentina"] = "Argentina";
|
|
13
|
+
Countries["Armenia"] = "Armenia";
|
|
14
|
+
Countries["Aruba"] = "Aruba";
|
|
15
|
+
Countries["Australia"] = "Australia";
|
|
16
|
+
Countries["Austria"] = "Austria";
|
|
17
|
+
Countries["Azerbaijan"] = "Azerbaijan";
|
|
18
|
+
Countries["Bahamas"] = "Bahamas";
|
|
19
|
+
Countries["Bahrain"] = "Bahrain";
|
|
20
|
+
Countries["Bangladesh"] = "Bangladesh";
|
|
21
|
+
Countries["Barbados"] = "Barbados";
|
|
22
|
+
Countries["Belarus"] = "Belarus";
|
|
23
|
+
Countries["Belgium"] = "Belgium";
|
|
24
|
+
Countries["Belize"] = "Belize";
|
|
25
|
+
Countries["Benin"] = "Benin";
|
|
26
|
+
Countries["Bermuda"] = "Bermuda";
|
|
27
|
+
Countries["Bhutan"] = "Bhutan";
|
|
28
|
+
Countries["Bolivia"] = "Bolivia";
|
|
29
|
+
Countries["BosniaandHerzegovina"] = "Bosniaand Herzegovina";
|
|
30
|
+
Countries["Botswana"] = "Botswana";
|
|
31
|
+
Countries["Brazil"] = "Brazil";
|
|
32
|
+
Countries["BritishIndianOceanTerritory"] = "British Indian Ocean Territory";
|
|
33
|
+
Countries["BritishVirginIslands"] = "British Virgin Islands";
|
|
34
|
+
Countries["Brunei"] = "Brunei";
|
|
35
|
+
Countries["Bulgaria"] = "Bulgaria";
|
|
36
|
+
Countries["BurkinaFaso"] = "Burkina Faso";
|
|
37
|
+
Countries["Burundi"] = "Burundi";
|
|
38
|
+
Countries["Cambodia"] = "Cambodia";
|
|
39
|
+
Countries["Cameroon"] = "Cameroon";
|
|
40
|
+
Countries["Canada"] = "Canada";
|
|
41
|
+
Countries["CapeVerde"] = "Cape Verde";
|
|
42
|
+
Countries["CaymanIslands"] = "Cayman Islands";
|
|
43
|
+
Countries["CentralAfricanRepublic"] = "Central African Republic";
|
|
44
|
+
Countries["Chad"] = "Chad";
|
|
45
|
+
Countries["Chile"] = "Chile";
|
|
46
|
+
Countries["China"] = "China";
|
|
47
|
+
Countries["ChristmasIsland"] = "Christmas Island";
|
|
48
|
+
Countries["CocosIslands"] = "Cocos Islands";
|
|
49
|
+
Countries["Colombia"] = "Colombia";
|
|
50
|
+
Countries["Comoros"] = "Comoros";
|
|
51
|
+
Countries["CookIslands"] = "Cook Islands";
|
|
52
|
+
Countries["CostaRica"] = "Costa Rica";
|
|
53
|
+
Countries["Croatia"] = "Croatia";
|
|
54
|
+
Countries["Cuba"] = "Cuba";
|
|
55
|
+
Countries["Curacao"] = "Curacao";
|
|
56
|
+
Countries["Cyprus"] = "Cyprus";
|
|
57
|
+
Countries["CzechRepublic"] = "Czech Republic";
|
|
58
|
+
Countries["DemocraticRepublicoftheCongo"] = "Democratic Republic of the Congo";
|
|
59
|
+
Countries["Denmark"] = "Denmark";
|
|
60
|
+
Countries["Djibouti"] = "Djibouti";
|
|
61
|
+
Countries["Dominica"] = "Dominica";
|
|
62
|
+
Countries["DominicanRepublic"] = "Dominican Republic";
|
|
63
|
+
Countries["EastTimor"] = "East Timor";
|
|
64
|
+
Countries["Ecuador"] = "Ecuador";
|
|
65
|
+
Countries["Egypt"] = "Egypt";
|
|
66
|
+
Countries["ElSalvador"] = "El Salvador";
|
|
67
|
+
Countries["EquatorialGuinea"] = "Equatorial Guinea";
|
|
68
|
+
Countries["Eritrea"] = "Eritrea";
|
|
69
|
+
Countries["Estonia"] = "Estonia";
|
|
70
|
+
Countries["Ethiopia"] = "Ethiopia";
|
|
71
|
+
Countries["FalklandIslands"] = "Falkland Islands";
|
|
72
|
+
Countries["FaroeIslands"] = "Faroe Islands";
|
|
73
|
+
Countries["Fiji"] = "Fiji";
|
|
74
|
+
Countries["Finland"] = "Finland";
|
|
75
|
+
Countries["France"] = "France";
|
|
76
|
+
Countries["FrenchPolynesia"] = "French Polynesia";
|
|
77
|
+
Countries["Gabon"] = "Gabon";
|
|
78
|
+
Countries["Gambia"] = "Gambia";
|
|
79
|
+
Countries["Georgia"] = "Georgia";
|
|
80
|
+
Countries["Germany"] = "Germany";
|
|
81
|
+
Countries["Ghana"] = "Ghana";
|
|
82
|
+
Countries["Gibraltar"] = "Gibraltar";
|
|
83
|
+
Countries["Greece"] = "Greece";
|
|
84
|
+
Countries["Greenland"] = "Greenland";
|
|
85
|
+
Countries["Grenada"] = "Grenada";
|
|
86
|
+
Countries["Guam"] = "Guam";
|
|
87
|
+
Countries["Guatemala"] = "Guatemala";
|
|
88
|
+
Countries["Guernsey"] = "Guernsey";
|
|
89
|
+
Countries["Guinea"] = "Guinea";
|
|
90
|
+
Countries["GuineaBissau"] = "Guinea-Bissau";
|
|
91
|
+
Countries["Guyana"] = "Guyana";
|
|
92
|
+
Countries["Haiti"] = "Haiti";
|
|
93
|
+
Countries["Honduras"] = "Honduras";
|
|
94
|
+
Countries["HongKong"] = "Hong Kong";
|
|
95
|
+
Countries["Hungary"] = "Hungary";
|
|
96
|
+
Countries["Iceland"] = "Iceland";
|
|
97
|
+
Countries["India"] = "India";
|
|
98
|
+
Countries["Indonesia"] = "Indonesia";
|
|
99
|
+
Countries["Iran"] = "Iran";
|
|
100
|
+
Countries["Iraq"] = "Iraq";
|
|
101
|
+
Countries["Ireland"] = "Ireland";
|
|
102
|
+
Countries["IsleofMan"] = "Isle of Man";
|
|
103
|
+
Countries["Israel"] = "Israel";
|
|
104
|
+
Countries["Italy"] = "Italy";
|
|
105
|
+
Countries["IvoryCoast"] = "Ivory Coast";
|
|
106
|
+
Countries["Jamaica"] = "Jamaica";
|
|
107
|
+
Countries["Japan"] = "Japan";
|
|
108
|
+
Countries["Jersey"] = "Jersey";
|
|
109
|
+
Countries["Jordan"] = "Jordan";
|
|
110
|
+
Countries["Kazakhstan"] = "Kazakhstan";
|
|
111
|
+
Countries["Kenya"] = "Kenya";
|
|
112
|
+
Countries["Kiribati"] = "Kiribati";
|
|
113
|
+
Countries["Kosovo"] = "Kosovo";
|
|
114
|
+
Countries["Kuwait"] = "Kuwait";
|
|
115
|
+
Countries["Kyrgyzstan"] = "Kyrgyzstan";
|
|
116
|
+
Countries["Laos"] = "Laos";
|
|
117
|
+
Countries["Latvia"] = "Latvia";
|
|
118
|
+
Countries["Lebanon"] = "Lebanon";
|
|
119
|
+
Countries["Lesotho"] = "Lesotho";
|
|
120
|
+
Countries["Liberia"] = "Liberia";
|
|
121
|
+
Countries["Libya"] = "Libya";
|
|
122
|
+
Countries["Liechtenstein"] = "Liechtenstein";
|
|
123
|
+
Countries["Lithuania"] = "Lithuania";
|
|
124
|
+
Countries["Luxembourg"] = "Luxembourg";
|
|
125
|
+
Countries["Macau"] = "Macau";
|
|
126
|
+
Countries["Macedonia"] = "Macedonia";
|
|
127
|
+
Countries["Madagascar"] = "Madagascar";
|
|
128
|
+
Countries["Malawi"] = "Malawi";
|
|
129
|
+
Countries["Malaysia"] = "Malaysia";
|
|
130
|
+
Countries["Maldives"] = "Maldives";
|
|
131
|
+
Countries["Mali"] = "Mali";
|
|
132
|
+
Countries["Malta"] = "Malta";
|
|
133
|
+
Countries["MarshallIslands"] = "Marshall Islands";
|
|
134
|
+
Countries["Mauritania"] = "Mauritania";
|
|
135
|
+
Countries["Mauritius"] = "Mauritius";
|
|
136
|
+
Countries["Mayotte"] = "Mayotte";
|
|
137
|
+
Countries["Mexico"] = "Mexico";
|
|
138
|
+
Countries["Micronesia"] = "Micronesia";
|
|
139
|
+
Countries["Moldova"] = "Moldova";
|
|
140
|
+
Countries["Monaco"] = "Monaco";
|
|
141
|
+
Countries["Mongolia"] = "Mongolia";
|
|
142
|
+
Countries["Montenegro"] = "Montenegro";
|
|
143
|
+
Countries["Montserrat"] = "Montserrat";
|
|
144
|
+
Countries["Morocco"] = "Morocco";
|
|
145
|
+
Countries["Mozambique"] = "Mozambique";
|
|
146
|
+
Countries["Myanmar"] = "Myanmar";
|
|
147
|
+
Countries["Namibia"] = "Namibia";
|
|
148
|
+
Countries["Nauru"] = "Nauru";
|
|
149
|
+
Countries["Nepal"] = "Nepal";
|
|
150
|
+
Countries["Netherlands"] = "Netherlands";
|
|
151
|
+
Countries["NetherlandsAntilles"] = "Netherlands Antilles";
|
|
152
|
+
Countries["NewCaledonia"] = "New Caledonia";
|
|
153
|
+
Countries["NewZealand"] = "New Zealand";
|
|
154
|
+
Countries["Nicaragua"] = "Nicaragua";
|
|
155
|
+
Countries["Niger"] = "Niger";
|
|
156
|
+
Countries["Nigeria"] = "Nigeria";
|
|
157
|
+
Countries["Niue"] = "Niue";
|
|
158
|
+
Countries["NorthKorea"] = "North Korea";
|
|
159
|
+
Countries["NorthernMarianaIslands"] = "Northern Mariana Islands";
|
|
160
|
+
Countries["Norway"] = "Norway";
|
|
161
|
+
Countries["Oman"] = "Oman";
|
|
162
|
+
Countries["Pakistan"] = "Pakistan";
|
|
163
|
+
Countries["Palau"] = "Palau";
|
|
164
|
+
Countries["Palestine"] = "Palestine";
|
|
165
|
+
Countries["Panama"] = "Panama";
|
|
166
|
+
Countries["PapuaNewGuinea"] = "Papua New Guinea";
|
|
167
|
+
Countries["Paraguay"] = "Paraguay";
|
|
168
|
+
Countries["Peru"] = "Peru";
|
|
169
|
+
Countries["Philippines"] = "Philippines";
|
|
170
|
+
Countries["Pitcairn"] = "Pitcairn";
|
|
171
|
+
Countries["Poland"] = "Poland";
|
|
172
|
+
Countries["Portugal"] = "Portugal";
|
|
173
|
+
Countries["PuertoRico"] = "Puerto Rico";
|
|
174
|
+
Countries["Qatar"] = "Qatar";
|
|
175
|
+
Countries["RepublicoftheCongo"] = "Republic of the Congo";
|
|
176
|
+
Countries["Reunion"] = "Reunion";
|
|
177
|
+
Countries["Romania"] = "Romania";
|
|
178
|
+
Countries["Russia"] = "Russia";
|
|
179
|
+
Countries["Rwanda"] = "Rwanda";
|
|
180
|
+
Countries["SaintBarthelemy"] = "Saint Barthelemy";
|
|
181
|
+
Countries["SaintHelena"] = "Saint Helena";
|
|
182
|
+
Countries["SaintKittsandNevis"] = "Saint Kitts and Nevis";
|
|
183
|
+
Countries["SaintLucia"] = "Saint Lucia";
|
|
184
|
+
Countries["SaintMartin"] = "Saint Martin";
|
|
185
|
+
Countries["SaintPierreandMiquelon"] = "Saint Pierre and Miquelon";
|
|
186
|
+
Countries["SaintVincentandtheGrenadines"] = "Saint Vincent and the Grenadines";
|
|
187
|
+
Countries["Samoa"] = "Samoa";
|
|
188
|
+
Countries["SanMarino"] = "San Marino";
|
|
189
|
+
Countries["SaoTomeandPrincipe"] = "Sao Tome and Principe";
|
|
190
|
+
Countries["SaudiArabia"] = "Saudi Arabia";
|
|
191
|
+
Countries["Senegal"] = "Senegal";
|
|
192
|
+
Countries["Serbia"] = "Serbia";
|
|
193
|
+
Countries["Seychelles"] = "Seychelles";
|
|
194
|
+
Countries["SierraLeone"] = "Sierra Leone";
|
|
195
|
+
Countries["Singapore"] = "Singapore";
|
|
196
|
+
Countries["SintMaarten"] = "Sint Maarten";
|
|
197
|
+
Countries["Slovakia"] = "Slovakia";
|
|
198
|
+
Countries["Slovenia"] = "Slovenia";
|
|
199
|
+
Countries["SolomonIslands"] = "Solomon Islands";
|
|
200
|
+
Countries["Somalia"] = "Somalia";
|
|
201
|
+
Countries["SouthAfrica"] = "South Africa";
|
|
202
|
+
Countries["SouthKorea"] = "South Korea";
|
|
203
|
+
Countries["SouthSudan"] = "South Sudan";
|
|
204
|
+
Countries["Spain"] = "Spain";
|
|
205
|
+
Countries["SriLanka"] = "Sri Lanka";
|
|
206
|
+
Countries["Sudan"] = "Sudan";
|
|
207
|
+
Countries["Suriname"] = "Suriname";
|
|
208
|
+
Countries["SvalbardandJanMayen"] = "Svalbard and Jan Mayen";
|
|
209
|
+
Countries["Swaziland"] = "Swaziland";
|
|
210
|
+
Countries["Sweden"] = "Sweden";
|
|
211
|
+
Countries["Switzerland"] = "Switzerland";
|
|
212
|
+
Countries["Syria"] = "Syria";
|
|
213
|
+
Countries["Taiwan"] = "Taiwan";
|
|
214
|
+
Countries["Tajikistan"] = "Tajikistan";
|
|
215
|
+
Countries["Tanzania"] = "Tanzania";
|
|
216
|
+
Countries["Thailand"] = "Thailand";
|
|
217
|
+
Countries["Togo"] = "Togo";
|
|
218
|
+
Countries["Tokelau"] = "Tokelau";
|
|
219
|
+
Countries["Tonga"] = "Tonga";
|
|
220
|
+
Countries["TrinidadandTobago"] = "Trinidad and Tobago";
|
|
221
|
+
Countries["Tunisia"] = "Tunisia";
|
|
222
|
+
Countries["Turkey"] = "Turkey";
|
|
223
|
+
Countries["Turkmenistan"] = "Turkmenistan";
|
|
224
|
+
Countries["TurksandCaicosIslands"] = "Turksand Caicos Islands";
|
|
225
|
+
Countries["Tuvalu"] = "Tuvalu";
|
|
226
|
+
Countries["USVirginIslands"] = "U.S.VirginIslands";
|
|
227
|
+
Countries["Uganda"] = "Uganda";
|
|
228
|
+
Countries["Ukraine"] = "Ukraine";
|
|
229
|
+
Countries["UnitedArabEmirates"] = "United Arab Emirates";
|
|
230
|
+
Countries["UnitedKingdom"] = "United Kingdom";
|
|
231
|
+
Countries["UnitedStates"] = "United States";
|
|
232
|
+
Countries["Uruguay"] = "Uruguay";
|
|
233
|
+
Countries["Uzbekistan"] = "Uzbekistan";
|
|
234
|
+
Countries["Vanuatu"] = "Vanuatu";
|
|
235
|
+
Countries["Vatican"] = "Vatican";
|
|
236
|
+
Countries["Venezuela"] = "Venezuela";
|
|
237
|
+
Countries["Vietnam"] = "Vietnam";
|
|
238
|
+
Countries["WallisandFutuna"] = "Wallisand Futuna";
|
|
239
|
+
Countries["WesternSahara"] = "Western Sahara";
|
|
240
|
+
Countries["Yemen"] = "Yemen";
|
|
241
|
+
Countries["Zambia"] = "Zambia";
|
|
242
|
+
Countries["Zimbabwe"] = "Zimbabwe";
|
|
243
|
+
})(Countries || (Countries = {}));
|
|
244
|
+
//# sourceMappingURL=countries.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"countries.enum.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/enums/src/countries.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,SAiPX;AAjPD,WAAY,SAAS;IACpB,wCAA2B,CAAA;IAC3B,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,6CAAgC,CAAA;IAChC,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,sCAAyB,CAAA;IACzB,sDAAyC,CAAA;IACzC,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,sCAAyB,CAAA;IACzB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,sCAAyB,CAAA;IACzB,kCAAqB,CAAA;IACrB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,4BAAe,CAAA;IACf,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,2DAA8C,CAAA;IAC9C,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,2EAA8D,CAAA;IAC9D,4DAA+C,CAAA;IAC/C,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,yCAA4B,CAAA;IAC5B,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,qCAAwB,CAAA;IACxB,6CAAgC,CAAA;IAChC,gEAAmD,CAAA;IACnD,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,iDAAoC,CAAA;IACpC,2CAA8B,CAAA;IAC9B,kCAAqB,CAAA;IACrB,gCAAmB,CAAA;IACnB,yCAA4B,CAAA;IAC5B,qCAAwB,CAAA;IACxB,gCAAmB,CAAA;IACnB,0BAAa,CAAA;IACb,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,6CAAgC,CAAA;IAChC,8EAAiE,CAAA;IACjE,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,qDAAwC,CAAA;IACxC,qCAAwB,CAAA;IACxB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,uCAA0B,CAAA;IAC1B,mDAAsC,CAAA;IACtC,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,iDAAoC,CAAA;IACpC,2CAA8B,CAAA;IAC9B,0BAAa,CAAA;IACb,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,iDAAoC,CAAA;IACpC,4BAAe,CAAA;IACf,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,8BAAiB,CAAA;IACjB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,0BAAa,CAAA;IACb,oCAAuB,CAAA;IACvB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,2CAA8B,CAAA;IAC9B,8BAAiB,CAAA;IACjB,4BAAe,CAAA;IACf,kCAAqB,CAAA;IACrB,mCAAsB,CAAA;IACtB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,0BAAa,CAAA;IACb,0BAAa,CAAA;IACb,gCAAmB,CAAA;IACnB,sCAAyB,CAAA;IACzB,8BAAiB,CAAA;IACjB,4BAAe,CAAA;IACf,uCAA0B,CAAA;IAC1B,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,4BAAe,CAAA;IACf,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,0BAAa,CAAA;IACb,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,4CAA+B,CAAA;IAC/B,oCAAuB,CAAA;IACvB,sCAAyB,CAAA;IACzB,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,sCAAyB,CAAA;IACzB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,iDAAoC,CAAA;IACpC,sCAAyB,CAAA;IACzB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,sCAAyB,CAAA;IACzB,sCAAyB,CAAA;IACzB,gCAAmB,CAAA;IACnB,sCAAyB,CAAA;IACzB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,wCAA2B,CAAA;IAC3B,yDAA4C,CAAA;IAC5C,2CAA8B,CAAA;IAC9B,uCAA0B,CAAA;IAC1B,oCAAuB,CAAA;IACvB,4BAAe,CAAA;IACf,gCAAmB,CAAA;IACnB,0BAAa,CAAA;IACb,uCAA0B,CAAA;IAC1B,gEAAmD,CAAA;IACnD,8BAAiB,CAAA;IACjB,0BAAa,CAAA;IACb,kCAAqB,CAAA;IACrB,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,8BAAiB,CAAA;IACjB,gDAAmC,CAAA;IACnC,kCAAqB,CAAA;IACrB,0BAAa,CAAA;IACb,wCAA2B,CAAA;IAC3B,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;IACrB,uCAA0B,CAAA;IAC1B,4BAAe,CAAA;IACf,yDAA4C,CAAA;IAC5C,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,iDAAoC,CAAA;IACpC,yCAA4B,CAAA;IAC5B,yDAA4C,CAAA;IAC5C,uCAA0B,CAAA;IAC1B,yCAA4B,CAAA;IAC5B,iEAAoD,CAAA;IACpD,8EAAiE,CAAA;IACjE,4BAAe,CAAA;IACf,qCAAwB,CAAA;IACxB,yDAA4C,CAAA;IAC5C,yCAA4B,CAAA;IAC5B,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,yCAA4B,CAAA;IAC5B,oCAAuB,CAAA;IACvB,yCAA4B,CAAA;IAC5B,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,+CAAkC,CAAA;IAClC,gCAAmB,CAAA;IACnB,yCAA4B,CAAA;IAC5B,uCAA0B,CAAA;IAC1B,uCAA0B,CAAA;IAC1B,4BAAe,CAAA;IACf,mCAAsB,CAAA;IACtB,4BAAe,CAAA;IACf,kCAAqB,CAAA;IACrB,2DAA8C,CAAA;IAC9C,oCAAuB,CAAA;IACvB,8BAAiB,CAAA;IACjB,wCAA2B,CAAA;IAC3B,4BAAe,CAAA;IACf,8BAAiB,CAAA;IACjB,sCAAyB,CAAA;IACzB,kCAAqB,CAAA;IACrB,kCAAqB,CAAA;IACrB,0BAAa,CAAA;IACb,gCAAmB,CAAA;IACnB,4BAAe,CAAA;IACf,sDAAyC,CAAA;IACzC,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,0CAA6B,CAAA;IAC7B,8DAAiD,CAAA;IACjD,8BAAiB,CAAA;IACjB,kDAAqC,CAAA;IACrC,8BAAiB,CAAA;IACjB,gCAAmB,CAAA;IACnB,wDAA2C,CAAA;IAC3C,6CAAgC,CAAA;IAChC,2CAA8B,CAAA;IAC9B,gCAAmB,CAAA;IACnB,sCAAyB,CAAA;IACzB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,oCAAuB,CAAA;IACvB,gCAAmB,CAAA;IACnB,iDAAoC,CAAA;IACpC,6CAAgC,CAAA;IAChC,4BAAe,CAAA;IACf,8BAAiB,CAAA;IACjB,kCAAqB,CAAA;AACtB,CAAC,EAjPW,SAAS,KAAT,SAAS,QAiPpB"}
|
|
@@ -115,4 +115,5 @@ export * from './escort.price.intime';
|
|
|
115
115
|
export * from './receipt.status.enum';
|
|
116
116
|
export * from './ongoing.trip.changes.actors.enum';
|
|
117
117
|
export * from './recaptcha.error.codes.enum';
|
|
118
|
+
export * from './countries.enum';
|
|
118
119
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/enums/src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/enums/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Countries } from '../../enums/src/index';
|
|
1
2
|
import { IBusinessContextOwner } from './business.context.owner.model';
|
|
2
3
|
import { IDriver } from './driver.model';
|
|
3
4
|
import { IPassenger } from './passenger.model';
|
|
@@ -16,7 +17,10 @@ export declare enum PlaceholderUserField {
|
|
|
16
17
|
CreatedBy = "crdBy",
|
|
17
18
|
CreatedById = "crdById",
|
|
18
19
|
OTP = "otp",
|
|
19
|
-
OTPExpiryAt = "otpExpAt"
|
|
20
|
+
OTPExpiryAt = "otpExpAt",
|
|
21
|
+
ContactPhone = "cntPh",
|
|
22
|
+
ContactEmail = "cntEm",
|
|
23
|
+
Country = "cntry"
|
|
20
24
|
}
|
|
21
25
|
export interface IPlaceholderUser extends TypedModel {
|
|
22
26
|
[PlaceholderUserField.PlaceholderUserId]: string;
|
|
@@ -33,4 +37,7 @@ export interface IPlaceholderUser extends TypedModel {
|
|
|
33
37
|
[PlaceholderUserField.CreatedById]: string;
|
|
34
38
|
[PlaceholderUserField.OTP]: string;
|
|
35
39
|
[PlaceholderUserField.OTPExpiryAt]: Date;
|
|
40
|
+
[PlaceholderUserField.ContactPhone]?: string;
|
|
41
|
+
[PlaceholderUserField.ContactEmail]?: string;
|
|
42
|
+
[PlaceholderUserField.Country]?: Countries;
|
|
36
43
|
}
|
|
@@ -14,5 +14,8 @@ export var PlaceholderUserField;
|
|
|
14
14
|
PlaceholderUserField["CreatedById"] = "crdById";
|
|
15
15
|
PlaceholderUserField["OTP"] = "otp";
|
|
16
16
|
PlaceholderUserField["OTPExpiryAt"] = "otpExpAt";
|
|
17
|
+
PlaceholderUserField["ContactPhone"] = "cntPh";
|
|
18
|
+
PlaceholderUserField["ContactEmail"] = "cntEm";
|
|
19
|
+
PlaceholderUserField["Country"] = "cntry";
|
|
17
20
|
})(PlaceholderUserField || (PlaceholderUserField = {}));
|
|
18
21
|
//# sourceMappingURL=placeholder.user.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"placeholder.user.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/placeholder.user.model.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"placeholder.user.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/placeholder.user.model.ts"],"names":[],"mappings":"AAMA,MAAM,CAAN,IAAY,oBAkBX;AAlBD,WAAY,oBAAoB;IAC/B,qDAA6B,CAAA;IAC7B,uCAAe,CAAA;IACf,uCAAe,CAAA;IACf,qEAA6C,CAAA;IAC7C,yEAAiD,CAAA;IACjD,+DAAuC,CAAA;IACvC,mEAA2C,CAAA;IAC3C,2CAAmB,CAAA;IACnB,+CAAuB,CAAA;IACvB,2CAAmB,CAAA;IACnB,2CAAmB,CAAA;IACnB,+CAAuB,CAAA;IACvB,mCAAW,CAAA;IACX,gDAAwB,CAAA;IACxB,8CAAsB,CAAA;IACtB,8CAAsB,CAAA;IACtB,yCAAiB,CAAA;AAClB,CAAC,EAlBW,oBAAoB,KAApB,oBAAoB,QAkB/B"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Gender } from '../../enums/src/index';
|
|
1
|
+
import { Countries, Gender } from '../../enums/src/index';
|
|
2
2
|
import { IAuthProfile } from './auth.profile.model';
|
|
3
3
|
import { IAvatar } from './avatar.model';
|
|
4
4
|
import { IBusinessContextOwner } from './business.context.owner.model';
|
|
@@ -38,7 +38,10 @@ export declare enum RegisteredUserField {
|
|
|
38
38
|
FilesCreated = "filesCreated",
|
|
39
39
|
DefaultContext = "defaultContext",
|
|
40
40
|
DefaultContextId = "defaultContextId",
|
|
41
|
-
WlAuthProfiles = "wlAuthProfiles"
|
|
41
|
+
WlAuthProfiles = "wlAuthProfiles",
|
|
42
|
+
ContactPhone = "cntPh",
|
|
43
|
+
ContactEmail = "cntEm",
|
|
44
|
+
Country = "cntry"
|
|
42
45
|
}
|
|
43
46
|
export interface IRegisteredUser extends TypedModel {
|
|
44
47
|
[RegisteredUserField.RegisteredUserId]: string;
|
|
@@ -67,4 +70,7 @@ export interface IRegisteredUser extends TypedModel {
|
|
|
67
70
|
[RegisteredUserField.DefaultContext]: IBusinessContextOwner;
|
|
68
71
|
[RegisteredUserField.DefaultContextId]: string;
|
|
69
72
|
[RegisteredUserField.WlAuthProfiles]: IWlAuthProfile[];
|
|
73
|
+
[RegisteredUserField.ContactPhone]?: string;
|
|
74
|
+
[RegisteredUserField.ContactEmail]?: string;
|
|
75
|
+
[RegisteredUserField.Country]?: Countries;
|
|
70
76
|
}
|
|
@@ -26,5 +26,8 @@ export var RegisteredUserField;
|
|
|
26
26
|
RegisteredUserField["DefaultContext"] = "defaultContext";
|
|
27
27
|
RegisteredUserField["DefaultContextId"] = "defaultContextId";
|
|
28
28
|
RegisteredUserField["WlAuthProfiles"] = "wlAuthProfiles";
|
|
29
|
+
RegisteredUserField["ContactPhone"] = "cntPh";
|
|
30
|
+
RegisteredUserField["ContactEmail"] = "cntEm";
|
|
31
|
+
RegisteredUserField["Country"] = "cntry";
|
|
29
32
|
})(RegisteredUserField || (RegisteredUserField = {}));
|
|
30
33
|
//# sourceMappingURL=registered.user.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registered.user.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/registered.user.model.ts"],"names":[],"mappings":"AAeA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"registered.user.model.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/models/src/registered.user.model.ts"],"names":[],"mappings":"AAeA,MAAM,CAAN,IAAY,mBA+BX;AA/BD,WAAY,mBAAmB;IAC9B,qDAA8B,CAAA;IAC9B,oCAAa,CAAA;IACb,wCAAiB,CAAA;IACjB,sCAAe,CAAA;IACf,0CAAmB,CAAA;IACnB,kDAA2B,CAAA;IAC3B,iDAA0B,CAAA;IAC1B,qDAA8B,CAAA;IAC9B,uDAAgC,CAAA;IAChC,2DAAoC,CAAA;IACpC,kDAA2B,CAAA;IAC3B,sDAA+B,CAAA;IAC/B,oDAA6B,CAAA;IAC7B,wDAAiC,CAAA;IACjC,sDAA+B,CAAA;IAC/B,gEAAyC,CAAA;IACzC,wDAAiC,CAAA;IACjC,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;IACvB,0CAAmB,CAAA;IACnB,8CAAuB,CAAA;IACvB,sDAA+B,CAAA;IAC/B,oDAA6B,CAAA;IAE7B,wDAAiC,CAAA;IACjC,4DAAqC,CAAA;IACrC,wDAAiC,CAAA;IACjC,6CAAsB,CAAA;IACtB,6CAAsB,CAAA;IACtB,wCAAiB,CAAA;AAClB,CAAC,EA/BW,mBAAmB,KAAnB,mBAAmB,QA+B9B"}
|