Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ggez-banking-sdk

Package Overview
Dependencies
Maintainers
0
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ggez-banking-sdk - npm Package Compare versions

Comparing version 0.0.87 to 0.0.88

6

dist/bank-system/services/auth.d.ts

@@ -84,2 +84,8 @@ import { LoginWithGoogleInterface, SignUpInterface, SignUpWithGoogleInterface, LoginRequestInterface, LoginDeviceCredentialInterface } from "../interfaces/signInterface";

}>;
getTwitterSpotlightPostIds: () => Promise<{
response: any;
newUser: any;
message: any;
status: string;
}>;
};

@@ -285,2 +285,27 @@ "use strict";

};
const getTwitterSpotlightPostIds = async () => {
try {
let headersData = {
isUrlEncoded: false,
token: "",
header: false,
};
let headers = headerConfig(headersData);
const response = await restApi_1.default.restApi(nodeUrl, "get", "api/promotion/spotlight/twitter", headers);
return {
response: response,
newUser: null,
message: response?.data?.result?.friendly_message,
status: "success",
};
}
catch (error) {
return {
response: error.response,
newUser: null,
message: error.message,
status: "failed",
};
}
};
return {

@@ -295,4 +320,5 @@ GetUser,

getPromotionDataByCode,
getTwitterSpotlightPostIds,
};
};
exports.useAuth = useAuth;

2

package.json
{
"name": "ggez-banking-sdk",
"version": "0.0.87",
"version": "0.0.88",
"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,0 +5,0 @@ "main": "dist/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc