@commercelayer/app-elements 6.0.1 → 6.0.3

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.
@@ -9,6 +9,161 @@ export interface Currency {
9
9
  }
10
10
  export type CurrencyCode = Uppercase<keyof typeof currencies>;
11
11
  export declare const currencies: {
12
+ dun: {
13
+ priority: number;
14
+ iso_code: string;
15
+ iso_numeric: string;
16
+ name: string;
17
+ symbol: string;
18
+ subunit_to_unit: number;
19
+ decimal_mark: string;
20
+ thousands_separator: string;
21
+ symbol_first: false;
22
+ };
23
+ bch: {
24
+ priority: number;
25
+ iso_code: string;
26
+ name: string;
27
+ symbol: string;
28
+ disambiguate_symbol: string;
29
+ alternate_symbols: string[];
30
+ subunit: string;
31
+ subunit_to_unit: number;
32
+ symbol_first: false;
33
+ format: string;
34
+ html_entity: string;
35
+ decimal_mark: string;
36
+ thousands_separator: string;
37
+ iso_numeric: string;
38
+ smallest_denomination: number;
39
+ };
40
+ btc: {
41
+ priority: number;
42
+ iso_code: string;
43
+ name: string;
44
+ symbol: string;
45
+ alternate_symbols: never[];
46
+ subunit: string;
47
+ subunit_to_unit: number;
48
+ symbol_first: true;
49
+ html_entity: string;
50
+ decimal_mark: string;
51
+ thousands_separator: string;
52
+ iso_numeric: string;
53
+ smallest_denomination: number;
54
+ };
55
+ jep: {
56
+ priority: number;
57
+ iso_code: string;
58
+ name: string;
59
+ symbol: string;
60
+ disambiguate_symbol: string;
61
+ alternate_symbols: never[];
62
+ subunit: string;
63
+ subunit_to_unit: number;
64
+ symbol_first: true;
65
+ html_entity: string;
66
+ decimal_mark: string;
67
+ thousands_separator: string;
68
+ iso_numeric: string;
69
+ smallest_denomination: number;
70
+ };
71
+ ggp: {
72
+ priority: number;
73
+ iso_code: string;
74
+ name: string;
75
+ symbol: string;
76
+ disambiguate_symbol: string;
77
+ alternate_symbols: never[];
78
+ subunit: string;
79
+ subunit_to_unit: number;
80
+ symbol_first: true;
81
+ html_entity: string;
82
+ decimal_mark: string;
83
+ thousands_separator: string;
84
+ iso_numeric: string;
85
+ smallest_denomination: number;
86
+ };
87
+ imp: {
88
+ priority: number;
89
+ iso_code: string;
90
+ name: string;
91
+ symbol: string;
92
+ disambiguate_symbol: string;
93
+ alternate_symbols: string[];
94
+ subunit: string;
95
+ subunit_to_unit: number;
96
+ symbol_first: true;
97
+ html_entity: string;
98
+ decimal_mark: string;
99
+ thousands_separator: string;
100
+ iso_numeric: string;
101
+ smallest_denomination: number;
102
+ };
103
+ xfu: {
104
+ priority: number;
105
+ iso_code: string;
106
+ name: string;
107
+ symbol: string;
108
+ disambiguate_symbol: string;
109
+ alternate_symbols: never[];
110
+ subunit: string;
111
+ subunit_to_unit: number;
112
+ symbol_first: true;
113
+ html_entity: string;
114
+ decimal_mark: string;
115
+ thousands_separator: string;
116
+ iso_numeric: string;
117
+ smallest_denomination: string;
118
+ };
119
+ gbx: {
120
+ priority: number;
121
+ iso_code: string;
122
+ name: string;
123
+ symbol: string;
124
+ disambiguate_symbol: string;
125
+ alternate_symbols: never[];
126
+ subunit: string;
127
+ subunit_to_unit: number;
128
+ symbol_first: true;
129
+ html_entity: string;
130
+ decimal_mark: string;
131
+ thousands_separator: string;
132
+ iso_numeric: string;
133
+ smallest_denomination: number;
134
+ };
135
+ cnh: {
136
+ priority: number;
137
+ iso_code: string;
138
+ name: string;
139
+ symbol: string;
140
+ disambiguate_symbol: string;
141
+ alternate_symbols: string[];
142
+ subunit: string;
143
+ subunit_to_unit: number;
144
+ symbol_first: true;
145
+ html_entity: string;
146
+ decimal_mark: string;
147
+ thousands_separator: string;
148
+ iso_numeric: string;
149
+ smallest_denomination: number;
150
+ };
151
+ usdc: {
152
+ priority: number;
153
+ iso_code: string;
154
+ name: string;
155
+ symbol: string;
156
+ disambiguate_symbol: string;
157
+ alternate_symbols: never[];
158
+ subunit: string;
159
+ subunit_to_unit: number;
160
+ symbol_first: false;
161
+ html_entity: string;
162
+ decimal_mark: string;
163
+ thousands_separator: string;
164
+ iso_numeric: string;
165
+ smallest_denomination: number;
166
+ };
12
167
  aed: {
13
168
  priority: number;
14
169
  iso_code: string;