dplus_common_v1 0.2.49 → 0.2.51
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.
|
@@ -37,11 +37,92 @@ export declare const SUPPORT_COUNTRIES: readonly [{
|
|
|
37
37
|
}, {
|
|
38
38
|
readonly country_code: "US";
|
|
39
39
|
readonly country_name: "USA";
|
|
40
|
+
}, {
|
|
41
|
+
readonly country_code: "MY";
|
|
42
|
+
readonly country_name: "Malaysia";
|
|
43
|
+
}, {
|
|
44
|
+
readonly country_code: "PH";
|
|
45
|
+
readonly country_name: "Philippines";
|
|
46
|
+
}, {
|
|
47
|
+
readonly country_code: "FR";
|
|
48
|
+
readonly country_name: "France";
|
|
49
|
+
}, {
|
|
50
|
+
readonly country_code: "GB";
|
|
51
|
+
readonly country_name: "United Kingdom";
|
|
52
|
+
}, {
|
|
53
|
+
readonly country_code: "DE";
|
|
54
|
+
readonly country_name: "Germany";
|
|
55
|
+
}, {
|
|
56
|
+
readonly country_code: "ES";
|
|
57
|
+
readonly country_name: "Spain";
|
|
58
|
+
}, {
|
|
59
|
+
readonly country_code: "CA";
|
|
60
|
+
readonly country_name: "Canada";
|
|
61
|
+
}, {
|
|
62
|
+
readonly country_code: "MX";
|
|
63
|
+
readonly country_name: "Mexico";
|
|
64
|
+
}, {
|
|
65
|
+
readonly country_code: "BR";
|
|
66
|
+
readonly country_name: "Brazil";
|
|
67
|
+
}, {
|
|
68
|
+
readonly country_code: "AR";
|
|
69
|
+
readonly country_name: "Argentina";
|
|
70
|
+
}, {
|
|
71
|
+
readonly country_code: "CL";
|
|
72
|
+
readonly country_name: "Chile";
|
|
73
|
+
}, {
|
|
74
|
+
readonly country_code: "AU";
|
|
75
|
+
readonly country_name: "Australia";
|
|
76
|
+
}, {
|
|
77
|
+
readonly country_code: "BE";
|
|
78
|
+
readonly country_name: "Belgium";
|
|
79
|
+
}, {
|
|
80
|
+
readonly country_code: "CO";
|
|
81
|
+
readonly country_name: "Colombia";
|
|
82
|
+
}, {
|
|
83
|
+
readonly country_code: "PE";
|
|
84
|
+
readonly country_name: "Peru";
|
|
85
|
+
}, {
|
|
86
|
+
readonly country_code: "EC";
|
|
87
|
+
readonly country_name: "Ecuador";
|
|
88
|
+
}, {
|
|
89
|
+
readonly country_code: "PY";
|
|
90
|
+
readonly country_name: "Paraguay";
|
|
91
|
+
}, {
|
|
92
|
+
readonly country_code: "UY";
|
|
93
|
+
readonly country_name: "Uruguay";
|
|
94
|
+
}, {
|
|
95
|
+
readonly country_code: "BO";
|
|
96
|
+
readonly country_name: "Bolivia";
|
|
97
|
+
}, {
|
|
98
|
+
readonly country_code: "NI";
|
|
99
|
+
readonly country_name: "Nicaragua";
|
|
100
|
+
}, {
|
|
101
|
+
readonly country_code: "NZ";
|
|
102
|
+
readonly country_name: "New Zealand";
|
|
103
|
+
}, {
|
|
104
|
+
readonly country_code: "IT";
|
|
105
|
+
readonly country_name: "Italy";
|
|
106
|
+
}, {
|
|
107
|
+
readonly country_code: "NL";
|
|
108
|
+
readonly country_name: "Netherlands";
|
|
109
|
+
}, {
|
|
110
|
+
readonly country_code: "PT";
|
|
111
|
+
readonly country_name: "Portugal";
|
|
112
|
+
}, {
|
|
113
|
+
readonly country_code: "RU";
|
|
114
|
+
readonly country_name: "Russia";
|
|
115
|
+
}, {
|
|
116
|
+
readonly country_code: "SA";
|
|
117
|
+
readonly country_name: "Saudi Arabia";
|
|
118
|
+
}, {
|
|
119
|
+
readonly country_code: "AE";
|
|
120
|
+
readonly country_name: "United Arab Emirates";
|
|
40
121
|
}];
|
|
41
122
|
/**
|
|
42
123
|
* 국가 코드 배열
|
|
43
124
|
*/
|
|
44
|
-
export declare const SUPPORT_COUNTRY_CODES: ("AA" | "CN" | "HK" | "ID" | "JP" | "KR" | "MO" | "SG" | "TH" | "TW" | "US" | "VN")[];
|
|
125
|
+
export declare const SUPPORT_COUNTRY_CODES: ("AA" | "AE" | "AR" | "AU" | "BE" | "BO" | "BR" | "CA" | "CL" | "CN" | "CO" | "DE" | "EC" | "ES" | "FR" | "GB" | "HK" | "ID" | "IT" | "JP" | "KR" | "MO" | "MX" | "MY" | "NI" | "NL" | "NZ" | "PE" | "PH" | "PT" | "PY" | "RU" | "SA" | "SG" | "TH" | "TW" | "US" | "UY" | "VN")[];
|
|
45
126
|
/**
|
|
46
127
|
* 국가 코드 타입
|
|
47
128
|
*/
|
|
@@ -14,6 +14,33 @@ export const SUPPORT_COUNTRIES = [
|
|
|
14
14
|
{ country_code: "VN", country_name: "Vietnam" },
|
|
15
15
|
{ country_code: "ID", country_name: "Indonesia" },
|
|
16
16
|
{ country_code: "US", country_name: "USA" },
|
|
17
|
+
{ country_code: "MY", country_name: "Malaysia" },
|
|
18
|
+
{ country_code: "PH", country_name: "Philippines" },
|
|
19
|
+
{ country_code: "FR", country_name: "France" },
|
|
20
|
+
{ country_code: "GB", country_name: "United Kingdom" },
|
|
21
|
+
{ country_code: "DE", country_name: "Germany" },
|
|
22
|
+
{ country_code: "ES", country_name: "Spain" },
|
|
23
|
+
{ country_code: "CA", country_name: "Canada" },
|
|
24
|
+
{ country_code: "MX", country_name: "Mexico" },
|
|
25
|
+
{ country_code: "BR", country_name: "Brazil" },
|
|
26
|
+
{ country_code: "AR", country_name: "Argentina" },
|
|
27
|
+
{ country_code: "CL", country_name: "Chile" },
|
|
28
|
+
{ country_code: "AU", country_name: "Australia" },
|
|
29
|
+
{ country_code: "BE", country_name: "Belgium" },
|
|
30
|
+
{ country_code: "CO", country_name: "Colombia" },
|
|
31
|
+
{ country_code: "PE", country_name: "Peru" },
|
|
32
|
+
{ country_code: "EC", country_name: "Ecuador" },
|
|
33
|
+
{ country_code: "PY", country_name: "Paraguay" },
|
|
34
|
+
{ country_code: "UY", country_name: "Uruguay" },
|
|
35
|
+
{ country_code: "BO", country_name: "Bolivia" },
|
|
36
|
+
{ country_code: "NI", country_name: "Nicaragua" },
|
|
37
|
+
{ country_code: "NZ", country_name: "New Zealand" },
|
|
38
|
+
{ country_code: "IT", country_name: "Italy" },
|
|
39
|
+
{ country_code: "NL", country_name: "Netherlands" },
|
|
40
|
+
{ country_code: "PT", country_name: "Portugal" },
|
|
41
|
+
{ country_code: "RU", country_name: "Russia" },
|
|
42
|
+
{ country_code: "SA", country_name: "Saudi Arabia" },
|
|
43
|
+
{ country_code: "AE", country_name: "United Arab Emirates" },
|
|
17
44
|
];
|
|
18
45
|
/**
|
|
19
46
|
* 국가 코드 배열
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"supported-countries.js","sourceRoot":"","sources":["../../src/consts/supported-countries.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE;IAC9C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAE;IAC5C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE;IAC7C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,UAAU,EAAE;IAChD,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE;IACjD,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE;IAC7C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE;IACjD,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE;IAC9C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE;IAC7C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,SAAS,EAAE;IAC/C,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE;IACjD,EAAE,YAAY,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE;
|
|
1
|
+
{"version":3,"file":"supported-countries.js","sourceRoot":"","sources":["../../src/consts/supported-countries.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"t-event.js","sourceRoot":"","sources":["../../../src/types/types-event/t-event.ts"],"names":[],"mappings":"AAsFA;;8CAE8C;AAC9C,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,YAAY;IACZ,MAAM;IACN,MAAM;IACN,UAAU;IACV,UAAU;IACV,IAAI;IACJ,aAAa;IACb,UAAU;IACV,cAAc;IACd,YAAY;IACZ,oBAAoB;IACpB,OAAO;IACP,mBAAmB;IACnB,UAAU;IACV,UAAU;IACV,qBAAqB;IACrB,kBAAkB;IAClB,UAAU;IACV,YAAY;IACZ,aAAa;IACb,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,cAAc;IACd,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,YAAY;IACZ,YAAY;CACb,CAAC;AAwFF;;8CAE8C;AAE9C;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,YAAY;IACZ,MAAM;IACN,MAAM;IACN,UAAU;IACV,UAAU;IACV,IAAI;IACJ,OAAO;IACP,mBAAmB;IACnB,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,qBAAqB;IACrB,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,gBAAgB;IAChB,gBAAgB;IAChB,YAAY;IACZ,iBAAiB;IACjB,gBAAgB;IAChB,gBAAgB;IAChB,aAAa;IACb,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,aAAa;IACb,UAAU;IACV,UAAU;IACV,UAAU;IACV,WAAW;IACX,UAAU;IACV,YAAY;IACZ,aAAa;IACb,cAAc;IACd,aAAa;CACd,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,
|
|
1
|
+
{"version":3,"file":"t-event.js","sourceRoot":"","sources":["../../../src/types/types-event/t-event.ts"],"names":[],"mappings":"AAsFA;;8CAE8C;AAC9C,MAAM,CAAC,MAAM,+BAA+B,GAAG;IAC7C,YAAY;IACZ,MAAM;IACN,MAAM;IACN,UAAU;IACV,UAAU;IACV,IAAI;IACJ,aAAa;IACb,UAAU;IACV,cAAc;IACd,YAAY;IACZ,oBAAoB;IACpB,OAAO;IACP,mBAAmB;IACnB,UAAU;IACV,UAAU;IACV,qBAAqB;IACrB,kBAAkB;IAClB,UAAU;IACV,YAAY;IACZ,aAAa;IACb,WAAW;IACX,YAAY;IACZ,YAAY;IACZ,aAAa;IACb,cAAc;IACd,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,YAAY;IACZ,kBAAkB;IAClB,iBAAiB;IACjB,YAAY;IACZ,YAAY;CACb,CAAC;AAwFF;;8CAE8C;AAE9C;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,YAAY;IACZ,MAAM;IACN,MAAM;IACN,UAAU;IACV,UAAU;IACV,IAAI;IACJ,OAAO;IACP,mBAAmB;IACnB,UAAU;IACV,UAAU;IACV,kBAAkB;IAClB,sBAAsB;IACtB,oBAAoB;IACpB,qBAAqB;IACrB,kBAAkB;IAClB,YAAY;IACZ,aAAa;IACb,gBAAgB;IAChB,gBAAgB;IAChB,YAAY;IACZ,iBAAiB;IACjB,gBAAgB;IAChB,gBAAgB;IAChB,aAAa;IACb,aAAa;IACb,YAAY;IACZ,YAAY;IACZ,YAAY;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,aAAa;IACb,UAAU;IACV,UAAU;IACV,UAAU;IACV,WAAW;IACX,UAAU;IACV,YAAY;IACZ,aAAa;IACb,cAAc;IACd,aAAa;CACd,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,oBAAoB;IACpB,kBAAkB;IAClB,WAAW;IACX,aAAa;IACb,gBAAgB;IAChB,WAAW;IACX,YAAY;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,yBAAyB;IACzB,6BAA6B;IAC7B,2BAA2B;CAC5B,CAAC"}
|