@types/ebay-oauth-nodejs-client
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -6,16 +6,16 @@ // Type definitions for ebay-oauth-nodejs-client 1.2 | ||
type EbayEnvironment = 'SANDBOX' | 'PRODUCTION'; | ||
type EbayEnvironment = "SANDBOX" | "PRODUCTION"; | ||
type EbayAuthTokenOptions = | ||
| { | ||
filePath: string; | ||
} | ||
filePath: string; | ||
} | ||
| { | ||
clientId: string; | ||
clientSecret: string; | ||
env?: EbayEnvironment; | ||
baseUrl?: string; | ||
redirectUri?: string; | ||
scope?: string[] | string; | ||
}; | ||
clientId: string; | ||
clientSecret: string; | ||
env?: EbayEnvironment; | ||
baseUrl?: string; | ||
redirectUri?: string; | ||
scope?: string[] | string; | ||
}; | ||
@@ -29,3 +29,3 @@ declare class EbayAuthToken { | ||
options?: { | ||
prompt?: 'login' | 'consent'; | ||
prompt?: "login" | "consent"; | ||
state?: string; | ||
@@ -32,0 +32,0 @@ }, |
{ | ||
"name": "@types/ebay-oauth-nodejs-client", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "TypeScript definitions for ebay-oauth-nodejs-client", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ebay-oauth-nodejs-client", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "8e5e5d31c8d52750a53055b65daef539f47c2bfae7780a72f6ab10dd36e21b61", | ||
"typeScriptVersion": "4.1" | ||
"typesPublisherContentHash": "cb20b5677a58930f34f464574c6c416c31bc1a58444efa789e5c45ceb0f35a84", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -16,16 +16,16 @@ # Installation | ||
type EbayEnvironment = 'SANDBOX' | 'PRODUCTION'; | ||
type EbayEnvironment = "SANDBOX" | "PRODUCTION"; | ||
type EbayAuthTokenOptions = | ||
| { | ||
filePath: string; | ||
} | ||
filePath: string; | ||
} | ||
| { | ||
clientId: string; | ||
clientSecret: string; | ||
env?: EbayEnvironment; | ||
baseUrl?: string; | ||
redirectUri?: string; | ||
scope?: string[] | string; | ||
}; | ||
clientId: string; | ||
clientSecret: string; | ||
env?: EbayEnvironment; | ||
baseUrl?: string; | ||
redirectUri?: string; | ||
scope?: string[] | string; | ||
}; | ||
@@ -39,3 +39,3 @@ declare class EbayAuthToken { | ||
options?: { | ||
prompt?: 'login' | 'consent'; | ||
prompt?: "login" | "consent"; | ||
state?: string; | ||
@@ -59,3 +59,3 @@ }, | ||
### Additional Details | ||
* Last updated: Mon, 26 Sep 2022 18:33:01 GMT | ||
* Last updated: Sat, 23 Sep 2023 17:07:22 GMT | ||
* Dependencies: none | ||
@@ -62,0 +62,0 @@ * Global values: none |
5410