Socket
Socket
Sign inDemoInstall

@3wks/sargon-api-node-client

Package Overview
Dependencies
Maintainers
12
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@3wks/sargon-api-node-client - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

123

api.ts

@@ -410,11 +410,5 @@ /// <reference path="./custom.d.ts" />

*/
export interface FundSearch {
export interface FundSearch extends StandardMeta {
/**
*
* @type {Updated}
* @memberof FundSearch
*/
updated?: Updated;
/**
*
* @type {Array<UnclaimedFunds>}

@@ -1078,3 +1072,3 @@ * @memberof FundSearch

interface ListFundSearchResultsParams{
interface ListFundSearchResultParams{
/**

@@ -1089,2 +1083,9 @@ * Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

interface PerformFundSearchParams{
/**
* Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
*/
}
/**

@@ -1153,3 +1154,3 @@ * FundSearchRolloverApi - fetch parameter creator

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1160,10 +1161,10 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
async listFundSearchResults(member: string, searchresult: string, options: Partial<Options> = {}): Promise<FetchArgs> {
async listFundSearchResult(member: string, searchresult: string, options: Partial<Options> = {}): Promise<FetchArgs> {
// verify required parameter 'member' is not null or undefined
if (member === null || member === undefined) {
throw new RequiredError('member','Required parameter member was null or undefined when calling listFundSearchResults.');
throw new RequiredError('member','Required parameter member was null or undefined when calling listFundSearchResult.');
}
// verify required parameter 'searchresult' is not null or undefined
if (searchresult === null || searchresult === undefined) {
throw new RequiredError('searchresult','Required parameter searchresult was null or undefined when calling listFundSearchResults.');
throw new RequiredError('searchresult','Required parameter searchresult was null or undefined when calling listFundSearchResult.');
}

@@ -1197,2 +1198,40 @@ const localVarPath = `/members/{member}/fundsearch/{searchresult}`

},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async performFundSearch(member: string, options: Partial<Options> = {}): Promise<FetchArgs> {
// verify required parameter 'member' is not null or undefined
if (member === null || member === undefined) {
throw new RequiredError('member','Required parameter member was null or undefined when calling performFundSearch.');
}
const localVarPath = `/members/{member}/fundsearch`
.replace(`{${"member"}}`, encodeURIComponent(String(member)));
const localVarUrlObj = url.parse(localVarPath, true);
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication Integration required
// oauth required
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? await configuration.accessToken("Integration", ["integration", "member"])
: await configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
delete localVarUrlObj.search;
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
return {
url: url.format(localVarUrlObj),
options: localVarRequestOptions,
};
},
}

@@ -1231,3 +1270,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1238,5 +1277,5 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<FundSearch> {
listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<FundSearch> {
return async (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
const localVarFetchArgs = await FundSearchRolloverApiFetchParamCreator(configuration).listFundSearchResults(member, searchresult, options);
const localVarFetchArgs = await FundSearchRolloverApiFetchParamCreator(configuration).listFundSearchResult(member, searchresult, options);

@@ -1252,2 +1291,22 @@ return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {

},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<StandardMeta> {
return async (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
const localVarFetchArgs = await FundSearchRolloverApiFetchParamCreator(configuration).performFundSearch(member, options);
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
if (response.status >= 200 && response.status < 300) {
return response.json();
} else {
throw response;
}
});
};
},
}

@@ -1276,3 +1335,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1283,5 +1342,15 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
async listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(configuration).listFundSearchResults(member, searchresult, options)(fetch, basePath);
async listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(configuration).listFundSearchResult(member, searchresult, options)(fetch, basePath);
},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async performFundSearch(member: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(configuration).performFundSearch(member, options)(fetch, basePath);
},
};

@@ -1314,3 +1383,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1322,6 +1391,18 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
public async listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(this.configuration).listFundSearchResults(member, searchresult, options)(this.fetch, this.basePath);
public async listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(this.configuration).listFundSearchResult(member, searchresult, options)(this.fetch, this.basePath);
}
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof FundSearchRolloverApi
*/
public async performFundSearch(member: string, options?: Partial<Options>) {
return FundSearchRolloverApiFp(this.configuration).performFundSearch(member, options)(this.fetch, this.basePath);
}
}

@@ -1328,0 +1409,0 @@

57

dist/api.d.ts

@@ -341,11 +341,5 @@ /**

*/
export interface FundSearch {
export interface FundSearch extends StandardMeta {
/**
*
* @type {Updated}
* @memberof FundSearch
*/
updated?: Updated;
/**
*
* @type {Array<UnclaimedFunds>}

@@ -987,3 +981,3 @@ * @memberof FundSearch

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -994,3 +988,11 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>): Promise<FetchArgs>;
listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>): Promise<FetchArgs>;
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member: string, options?: Partial<Options>): Promise<FetchArgs>;
};

@@ -1014,3 +1016,3 @@ /**

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1021,3 +1023,11 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<FundSearch>;
listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<FundSearch>;
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member: string, options?: Partial<Options>): (fetch?: FetchAPI, basePath?: string) => Promise<StandardMeta>;
};

@@ -1041,3 +1051,3 @@ /**

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1048,3 +1058,11 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>): Promise<FundSearch>;
listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>): Promise<FundSearch>;
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member: string, options?: Partial<Options>): Promise<StandardMeta>;
};

@@ -1071,3 +1089,3 @@ /**

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -1079,3 +1097,12 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member: string, searchresult: string, options?: Partial<Options>): Promise<FundSearch>;
listFundSearchResult(member: string, searchresult: string, options?: Partial<Options>): Promise<FundSearch>;
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof FundSearchRolloverApi
*/
performFundSearch(member: string, options?: Partial<Options>): Promise<StandardMeta>;
}

@@ -1082,0 +1109,0 @@ interface GetMembersParams {

@@ -252,3 +252,3 @@ "use strict";

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -259,11 +259,11 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member, searchresult, options = {}) {
listFundSearchResult(member, searchresult, options = {}) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
// verify required parameter 'member' is not null or undefined
if (member === null || member === undefined) {
throw new RequiredError('member', 'Required parameter member was null or undefined when calling listFundSearchResults.');
throw new RequiredError('member', 'Required parameter member was null or undefined when calling listFundSearchResult.');
}
// verify required parameter 'searchresult' is not null or undefined
if (searchresult === null || searchresult === undefined) {
throw new RequiredError('searchresult', 'Required parameter searchresult was null or undefined when calling listFundSearchResults.');
throw new RequiredError('searchresult', 'Required parameter searchresult was null or undefined when calling listFundSearchResult.');
}

@@ -295,2 +295,39 @@ const localVarPath = `/members/{member}/fundsearch/{searchresult}`

},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member, options = {}) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
// verify required parameter 'member' is not null or undefined
if (member === null || member === undefined) {
throw new RequiredError('member', 'Required parameter member was null or undefined when calling performFundSearch.');
}
const localVarPath = `/members/{member}/fundsearch`
.replace(`{${"member"}}`, encodeURIComponent(String(member)));
const localVarUrlObj = url_1.default.parse(localVarPath, true);
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
const localVarHeaderParameter = {};
const localVarQueryParameter = {};
// authentication Integration required
// oauth required
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? yield configuration.accessToken("Integration", ["integration", "member"])
: yield configuration.accessToken;
localVarHeaderParameter["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
delete localVarUrlObj.search;
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
return {
url: url_1.default.format(localVarUrlObj),
options: localVarRequestOptions,
};
});
},
};

@@ -328,3 +365,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -335,5 +372,5 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member, searchresult, options) {
listFundSearchResult(member, searchresult, options) {
return (fetch = portable_fetch_1.default, basePath = BASE_PATH) => tslib_1.__awaiter(this, void 0, void 0, function* () {
const localVarFetchArgs = yield exports.FundSearchRolloverApiFetchParamCreator(configuration).listFundSearchResults(member, searchresult, options);
const localVarFetchArgs = yield exports.FundSearchRolloverApiFetchParamCreator(configuration).listFundSearchResult(member, searchresult, options);
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {

@@ -349,2 +386,22 @@ if (response.status >= 200 && response.status < 300) {

},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member, options) {
return (fetch = portable_fetch_1.default, basePath = BASE_PATH) => tslib_1.__awaiter(this, void 0, void 0, function* () {
const localVarFetchArgs = yield exports.FundSearchRolloverApiFetchParamCreator(configuration).performFundSearch(member, options);
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
if (response.status >= 200 && response.status < 300) {
return response.json();
}
else {
throw response;
}
});
});
},
};

@@ -374,3 +431,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -381,7 +438,19 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member, searchresult, options) {
listFundSearchResult(member, searchresult, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return exports.FundSearchRolloverApiFp(configuration).listFundSearchResults(member, searchresult, options)(fetch, basePath);
return exports.FundSearchRolloverApiFp(configuration).listFundSearchResult(member, searchresult, options)(fetch, basePath);
});
},
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
performFundSearch(member, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return exports.FundSearchRolloverApiFp(configuration).performFundSearch(member, options)(fetch, basePath);
});
},
};

@@ -413,3 +482,3 @@ };

* Return Fund Search results for the current member.
* @summary List Fund Search Results
* @summary List Fund Search Result
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.

@@ -421,7 +490,20 @@ * @param {string} searchresult Unique UUID of the Fund Search Result

*/
listFundSearchResults(member, searchresult, options) {
listFundSearchResult(member, searchresult, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return exports.FundSearchRolloverApiFp(this.configuration).listFundSearchResults(member, searchresult, options)(this.fetch, this.basePath);
return exports.FundSearchRolloverApiFp(this.configuration).listFundSearchResult(member, searchresult, options)(this.fetch, this.basePath);
});
}
/**
* Perform a new Fund Search for the current member. If the member is permitted, the API will respond with a HTTP `202 Accepted` status and schedule the refresh of the fund search data. By default members may only refresh once every 30 days. Attempts to perform a new search within this time will return an error.
* @summary Perform Fund Search
* @param {string} member Unqiue UUID of the Member. A value of \&quot;me\&quot; can be provided instead of a literal UUID. \&quot;me\&quot; will be expanded to represent the currently authenticated member, if any.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof FundSearchRolloverApi
*/
performFundSearch(member, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return exports.FundSearchRolloverApiFp(this.configuration).performFundSearch(member, options)(this.fetch, this.basePath);
});
}
}

@@ -428,0 +510,0 @@ exports.FundSearchRolloverApi = FundSearchRolloverApi;

{
"name": "@3wks/sargon-api-node-client",
"version": "0.1.4",
"version": "0.1.5",
"description": "OpenAPI client for @3wks/sargon-api-node-client",

@@ -5,0 +5,0 @@ "author": "OpenAPI-Generator Contributors",

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

## @3wks/sargon-api-node-client@0.1.4
## @3wks/sargon-api-node-client@0.1.5

@@ -39,3 +39,3 @@ This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

```
npm install @3wks/sargon-api-node-client@0.1.4 --save
npm install @3wks/sargon-api-node-client@0.1.5 --save
```

@@ -42,0 +42,0 @@

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