ggez-banking-sdk 0.0.38 → 0.0.40

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.
@@ -1100,6 +1100,6 @@ export declare enum VariantType {
1100
1100
  UGZ = "177772"
1101
1101
  }
1102
1102
  export declare enum ValidateType {
1103
- NoValidate = "0",
1103
+ NoValidation = "0",
1104
1104
  ValidateOnly = "1"
1105
1105
  }
@@ -1159,6 +1159,6 @@ var VariantType;
1159
1159
  })(VariantType || (exports.VariantType = VariantType = {}));
1160
1160
  var ValidateType;
1161
1161
  (function (ValidateType) {
1162
- ValidateType["NoValidate"] = "0";
1162
+ ValidateType["NoValidation"] = "0";
1163
1163
  ValidateType["ValidateOnly"] = "1";
1164
1164
  })(ValidateType || (exports.ValidateType = ValidateType = {}));
@@ -3,9 +3,9 @@ import { PaymentMethodType, ValidateType, VariantType } from "../constants";
3
3
  export interface IOrderInterface {
4
4
  customerInfo: string;
5
5
  variantId: VariantType;
6
- userNotes: string;
7
- accountId: number;
8
- paymentMethod: PaymentMethodType;
6
+ userNotes: string | null;
7
+ accountId: number | null;
8
+ paymentMethod: PaymentMethodType | null;
9
9
  validate: ValidateType;
10
10
  geoCoordinates?: IGeoCoordinates;
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.0.38",
3
+ "version": "0.0.40",
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",