ggez-banking-sdk 0.1.183 → 0.1.184

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.
@@ -112,5 +112,6 @@ declare const regexPatterns: {
112
112
  Pair: RegExp;
113
113
  WSURl: RegExp;
114
114
  DecimalNumber: RegExp;
115
+ GoogleAuthenticationCodePattern: RegExp;
115
116
  };
116
117
  export { regexPatterns };
@@ -110,5 +110,6 @@ const regexPatterns = {
110
110
  Pair: /^[A-Za-z0-9]{2,10}\/?[A-Za-z0-9]{2,10}$/,
111
111
  WSURl: /^wss:\/\/([a-zA-Z0-9\-_]+\.)+[a-zA-Z]{2,6}(:[0-9]{1,5})?(\/[a-zA-Z0-9\-_\/]*)?$/,
112
112
  DecimalNumber: /^\d+(\.\d{1,6})?$/,
113
+ GoogleAuthenticationCodePattern: /^[0-9]{6}$/,
113
114
  };
114
115
  export { regexPatterns };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.183",
3
+ "version": "0.1.184",
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",