ggez-banking-sdk 0.1.15 → 0.1.16

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.
@@ -109,4 +109,6 @@ export declare const useRegExp: () => {
109
109
  GGEZ1Balance: RegExp;
110
110
  Percentage: RegExp;
111
111
  IntegerNumber: RegExp;
112
+ Pair: RegExp;
113
+ WSURl: RegExp;
112
114
  };
@@ -110,7 +110,9 @@ const useRegExp = () => {
110
110
  GeneralName: /^[a-zA-Z][a-zA-Z\s\-_]{2,49}$/,
111
111
  GGEZ1Balance: /^\d+(\.\d{1,2})?$/,
112
112
  Percentage: /^(100(\.00?)?|(\d{1,2}(\.\d{1,2})?))%$/,
113
- IntegerNumber: /^\d+$/
113
+ IntegerNumber: /^\d+$/,
114
+ Pair: /^[A-Z0-9]{2,10}\/?[A-Z0-9]{2,10}$/,
115
+ WSURl: /^wss:\/\/ws\.coinstore\.com\/s\/ws$/
114
116
  };
115
117
  };
116
118
  exports.useRegExp = useRegExp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
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
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",