ggez-banking-sdk 0.1.104 → 0.1.105
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/dist/content/accountCurrencies.d.ts +2 -2
- package/dist/content/accountCurrencies.js +6 -5
- package/dist/content/countries.d.ts +2 -2
- package/dist/content/countries.js +2 -1
- package/dist/content/currencies.d.ts +2 -2
- package/dist/content/currencies.js +2 -1
- package/dist/content/states.d.ts +2 -2
- package/dist/content/states.js +2 -1
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
declare const
|
1
|
+
declare const accountCurrencies: {
|
2
2
|
ID: number;
|
3
3
|
Number: number;
|
4
4
|
Code: string;
|
@@ -9,4 +9,4 @@ declare const _default: {
|
|
9
9
|
Location: string;
|
10
10
|
Is_Active: string;
|
11
11
|
}[];
|
12
|
-
export
|
12
|
+
export { accountCurrencies };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
const accountCurrencies = [
|
2
2
|
{
|
3
3
|
ID: 68,
|
4
4
|
Number: 826,
|
@@ -8,7 +8,7 @@ export default [
|
|
8
8
|
Position: 999,
|
9
9
|
Exponent: 0,
|
10
10
|
Location: "United Kingdom",
|
11
|
-
Is_Active: "True"
|
11
|
+
Is_Active: "True",
|
12
12
|
},
|
13
13
|
{
|
14
14
|
ID: 188,
|
@@ -19,7 +19,7 @@ export default [
|
|
19
19
|
Position: 1,
|
20
20
|
Exponent: 0,
|
21
21
|
Location: "United States",
|
22
|
-
Is_Active: "True"
|
22
|
+
Is_Active: "True",
|
23
23
|
},
|
24
24
|
{
|
25
25
|
ID: 63,
|
@@ -30,6 +30,7 @@ export default [
|
|
30
30
|
Position: 999,
|
31
31
|
Exponent: 0,
|
32
32
|
Location: "European Union",
|
33
|
-
Is_Active: "True"
|
34
|
-
}
|
33
|
+
Is_Active: "True",
|
34
|
+
},
|
35
35
|
];
|
36
|
+
export { accountCurrencies };
|
package/dist/content/states.d.ts
CHANGED
package/dist/content/states.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ggez-banking-sdk",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.105",
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
5
5
|
"types": "dist/index.d.ts",
|
6
6
|
"main": "dist/index.js",
|