Socket
Socket
Sign inDemoInstall

@glvnzn/web-sdk

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glvnzn/web-sdk - npm Package Compare versions

Comparing version 1.0.21 to 1.0.22

4

dist/resources/games/index.d.ts
import { Base } from '../base';
import { Game } from './types';
import { GameNode } from './types';
import { QueryParams } from './types';
export declare class Games extends Base {
get(params?: QueryParams): Promise<Game[]>;
get(params?: QueryParams): Promise<GameNode[]>;
}

@@ -1,2 +0,16 @@

export declare type Game = {
export declare type QueryParams = {
pageSize?: string;
nextPageCursor?: string;
filter?: {
provider?: string;
type?: string;
};
};
export interface Provider {
id: string;
name: string;
dateTimeCreated: string;
dateTimeLastUpdated: string;
}
export interface GameNode {
provider: Provider;

@@ -15,21 +29,16 @@ type: string;

id: string;
};
export declare type PageInfo = {
nextPageCursor?: string;
}
export interface Edge {
cursor: string;
node: GameNode;
}
export interface PageInfo {
hasNextPage: boolean;
startCursor: string;
endCursor: string;
}
export interface GamesData {
totalCount: number;
};
export declare type QueryParams = {
pageSize?: string;
nextPageCursor?: string;
filter?: {
provider?: string;
type?: string;
};
};
interface Provider {
id: string;
name: string;
dateTimeCreated: string;
dateTimeLastUpdated: string;
edges: Edge[];
pageInfo: PageInfo;
}
export {};
{
"name": "@glvnzn/web-sdk",
"version": "1.0.21",
"version": "1.0.22",
"description": "",

@@ -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