ggez-banking-sdk 0.1.24 → 0.1.26

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.
@@ -1152,3 +1152,8 @@ export declare enum TicketType {
1152
1152
  Ticket = 1,
1153
1153
  Note = 2
1154
1154
  }
1155
+ export declare enum VerificationMethod {
1156
+ Whats_App = 1,
1157
+ Telegram = 2,
1158
+ Phone_Call = 3
1159
+ }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PromotionVisibility = exports.PromotionType = exports.ValidateType = exports.VariantType = exports.CurrencyConversionType = exports.TransactionClassification = exports.WireTransferType = exports.ProgramTypes = exports.UserTrustLevelRange = exports.SourceApp = exports.CommerceProductSourceType = exports.OrderType = exports.PaymentMethodType = exports.ForgetPasswordSecurityTypes = exports.ForgetUserSecurityTypes = exports.ResponseStatusCode = exports.CountryCode = exports.DocumentType = exports.AccountStatus = exports.UserType = exports.BusinessType = exports.OrganizationRequestTypes = exports.SecurityOperationMethod = exports.TransactionInquiryStatus = exports.DeviceType = exports.TransactionType = exports.SettlementTransactionType = exports.AuthorizationOperationRequestType = exports.TransactionRequestStatus = exports.EntityStatus = exports.OperationStatus = exports.BankBeneficiaryType = exports.BankAccountTypes = exports.SecurityQuestion2 = exports.SecurityQuestion1 = exports.TrustLimits = exports.EntityVerificationStatus = exports.DocumentStatus = exports.IdentificationTypes = exports.AddressType = exports.Gender = exports.ChainRequestType = exports.ServiceProvider = exports.SecurityAuthenticationTypes = exports.ActivityType = exports.EntityData = exports.Entity = exports.ErrorLevel = exports.OrderStatus = exports.RequestStatus = void 0;
4
- exports.TicketType = exports.ExternalHostMode = exports.ExternalHostMessageType = exports.GGEZGiftType = exports.PromotionGames = exports.PromotionStatus = void 0;
4
+ exports.VerificationMethod = exports.TicketType = exports.ExternalHostMode = exports.ExternalHostMessageType = exports.GGEZGiftType = exports.PromotionGames = exports.PromotionStatus = void 0;
5
5
  var RequestStatus;
6
6
  (function (RequestStatus) {
7
7
  RequestStatus[RequestStatus["Undefined"] = 0] = "Undefined";
@@ -1220,3 +1220,9 @@ var TicketType;
1220
1220
  TicketType[TicketType["Ticket"] = 1] = "Ticket";
1221
1221
  TicketType[TicketType["Note"] = 2] = "Note";
1222
1222
  })(TicketType || (exports.TicketType = TicketType = {}));
1223
+ var VerificationMethod;
1224
+ (function (VerificationMethod) {
1225
+ VerificationMethod[VerificationMethod["Whats_App"] = 1] = "Whats_App";
1226
+ VerificationMethod[VerificationMethod["Telegram"] = 2] = "Telegram";
1227
+ VerificationMethod[VerificationMethod["Phone_Call"] = 3] = "Phone_Call";
1228
+ })(VerificationMethod || (exports.VerificationMethod = VerificationMethod = {}));
@@ -1,4 +1,4 @@
1
- import { PromotionType, PromotionVisibility, PromotionStatus, PromotionGames, GGEZGiftType, OrderStatus } from "../constants";
1
+ import { PromotionType, PromotionVisibility, PromotionStatus, PromotionGames, GGEZGiftType } from "../constants";
2
2
  export type Amount = {
3
3
  amount: number;
4
4
  asset: string;
@@ -39,7 +39,7 @@ export interface Gift {
39
39
  promotion_id: number;
40
40
  promotion_code: string;
41
41
  type: GGEZGiftType;
42
- order_status: OrderStatus;
42
+ formatted_claimed_date: string;
43
43
  claimed_date: string;
44
44
  claimed_prize_amount: number;
45
45
  claimed_prize_asset: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
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",