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

emaile2e-client

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emaile2e-client - npm Package Compare versions

Comparing version 0.1.1513081270 to 0.1.1513202410

docs/Response.md

117

docs/InboxcontrollerApi.md

@@ -8,3 +8,5 @@ # Emaile2eClient.InboxcontrollerApi

[**createUsingPOST**](InboxcontrollerApi.md#createUsingPOST) | **POST** /inboxes | Create an inbox
[**deleteUsingDELETE**](InboxcontrollerApi.md#deleteUsingDELETE) | **DELETE** /inboxes/{uuid} | Delete an inbox
[**indexUsingGET**](InboxcontrollerApi.md#indexUsingGET) | **GET** /inboxes | List your inboxes
[**sendEmailUsingPOST**](InboxcontrollerApi.md#sendEmailUsingPOST) | **POST** /inboxes/{uuid} | Send an email
[**viewUsingGET**](InboxcontrollerApi.md#viewUsingGET) | **GET** /inboxes/{uuid} | Fetch emails for a given inbox

@@ -27,3 +29,3 @@

var apiKey = "apiKey_example"; // String | Your API Key. Sign up and find it in your dashboard.
var apiKey = "test"; // String | Your API Key. Sign up and find it in your dashboard.

@@ -42,3 +44,3 @@ apiInstance.createUsingPOST(apiKey).then(function(data) {

------------- | ------------- | ------------- | -------------
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. |
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. | [default to test]

@@ -58,2 +60,48 @@ ### Return type

<a name="deleteUsingDELETE"></a>
# **deleteUsingDELETE**
> Response deleteUsingDELETE(apiKey, uuid)
Delete an inbox
Delete an inbox and all the emails associated with it.
### Example
```javascript
var Emaile2eClient = require('emaile2e-client');
var apiInstance = new Emaile2eClient.InboxcontrollerApi();
var apiKey = "test"; // String | Your API Key. Sign up and find it in your dashboard.
var uuid = "uuid_example"; // String | The inbox's id.
apiInstance.deleteUsingDELETE(apiKey, uuid).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. | [default to test]
**uuid** | **String**| The inbox&#39;s id. |
### Return type
[**Response**](Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: */*
<a name="indexUsingGET"></a>

@@ -73,3 +121,3 @@ # **indexUsingGET**

var apiKey = "apiKey_example"; // String | Your API Key. Sign up and find it in your dashboard.
var apiKey = "test"; // String | Your API Key. Sign up and find it in your dashboard.

@@ -88,3 +136,3 @@ apiInstance.indexUsingGET(apiKey).then(function(data) {

------------- | ------------- | ------------- | -------------
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. |
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. | [default to test]

@@ -104,2 +152,51 @@ ### Return type

<a name="sendEmailUsingPOST"></a>
# **sendEmailUsingPOST**
> Response sendEmailUsingPOST(apiKey, uuid, sendEmailDto)
Send an email
Send an email from the given inbox&#39;s email address. Useful if you need to test a user contacting you, for instance.
### Example
```javascript
var Emaile2eClient = require('emaile2e-client');
var apiInstance = new Emaile2eClient.InboxcontrollerApi();
var apiKey = "test"; // String | Your API Key. Sign up and find it in your dashboard.
var uuid = "uuid_example"; // String | The inbox's id.
var sendEmailDto = new Emaile2eClient.SendEmailDto(); // SendEmailDto | The email to send.
apiInstance.sendEmailUsingPOST(apiKey, uuid, sendEmailDto).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. | [default to test]
**uuid** | **String**| The inbox&#39;s id. |
**sendEmailDto** | [**SendEmailDto**](SendEmailDto.md)| The email to send. |
### Return type
[**Response**](Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: */*
<a name="viewUsingGET"></a>

@@ -111,3 +208,3 @@ # **viewUsingGET**

Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 30 seconds, an error will be returned.
Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 60 seconds, an error will be returned.

@@ -120,3 +217,3 @@ ### Example

var apiKey = "apiKey_example"; // String | Your API Key. Sign up and find it in your dashboard.
var apiKey = "test"; // String | Your API Key. Sign up and find it in your dashboard.

@@ -126,3 +223,4 @@ var uuid = "uuid_example"; // String | The inbox's id.

var opts = {
'waitFor': 56, // Number | Wait a maximum of 30 seconds for atleast this many emails in an inbox before returning a result.
'minCount': 56, // Number | Wait a maximum of 60 seconds for atleast this many emails in an inbox before returning a result.
'maxWait': 789, // Number | Maximum seconds API should spend retrying your inbox until the minCount is satisfied
'since': new Date("2013-10-20T19:20:30+01:00") // Date | Filter for emails received on or after this ISO8601 LocalDateTime.

@@ -142,5 +240,6 @@ };

------------- | ------------- | ------------- | -------------
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. |
**apiKey** | **String**| Your API Key. Sign up and find it in your dashboard. | [default to test]
**uuid** | **String**| The inbox&#39;s id. |
**waitFor** | **Number**| Wait a maximum of 30 seconds for atleast this many emails in an inbox before returning a result. | [optional]
**minCount** | **Number**| Wait a maximum of 60 seconds for atleast this many emails in an inbox before returning a result. | [optional]
**maxWait** | **Number**| Maximum seconds API should spend retrying your inbox until the minCount is satisfied | [optional]
**since** | **Date**| Filter for emails received on or after this ISO8601 LocalDateTime. | [optional]

@@ -147,0 +246,0 @@

1

docs/ResponseInboxDto.md

@@ -6,3 +6,2 @@ # Emaile2eClient.ResponseInboxDto

------------ | ------------- | ------------- | -------------
**error** | **Boolean** | | [optional]
**message** | **String** | | [optional]

@@ -9,0 +8,0 @@ **payload** | [**InboxDto**](InboxDto.md) | | [optional]

@@ -6,3 +6,2 @@ # Emaile2eClient.ResponseListEmailDto

------------ | ------------- | ------------- | -------------
**error** | **Boolean** | | [optional]
**message** | **String** | | [optional]

@@ -9,0 +8,0 @@ **payload** | [**[EmailDto]**](EmailDto.md) | | [optional]

@@ -6,3 +6,2 @@ # Emaile2eClient.ResponseListInboxDto

------------ | ------------- | ------------- | -------------
**error** | **Boolean** | | [optional]
**message** | **String** | | [optional]

@@ -9,0 +8,0 @@ **payload** | [**[InboxDto]**](InboxDto.md) | | [optional]

{
"name": "emaile2e-client",
"version": "0.1.1513081270",
"version": "0.1.1513202410",
"description": "The official javascript client for the Emaile2e API. See https://emaile2e.com for more information.",

@@ -5,0 +5,0 @@ "license": "Unlicense",

@@ -118,3 +118,3 @@ # emaile2e-client

var apiKey = "apiKey_example"; // {String} Your API Key. Sign up and find it in your dashboard.
var apiKey = "test"; // {String} Your API Key. Sign up and find it in your dashboard.

@@ -137,3 +137,5 @@ api.createUsingPOST(apiKey).then(function(data) {

*Emaile2eClient.InboxcontrollerApi* | [**createUsingPOST**](docs/InboxcontrollerApi.md#createUsingPOST) | **POST** /inboxes | Create an inbox
*Emaile2eClient.InboxcontrollerApi* | [**deleteUsingDELETE**](docs/InboxcontrollerApi.md#deleteUsingDELETE) | **DELETE** /inboxes/{uuid} | Delete an inbox
*Emaile2eClient.InboxcontrollerApi* | [**indexUsingGET**](docs/InboxcontrollerApi.md#indexUsingGET) | **GET** /inboxes | List your inboxes
*Emaile2eClient.InboxcontrollerApi* | [**sendEmailUsingPOST**](docs/InboxcontrollerApi.md#sendEmailUsingPOST) | **POST** /inboxes/{uuid} | Send an email
*Emaile2eClient.InboxcontrollerApi* | [**viewUsingGET**](docs/InboxcontrollerApi.md#viewUsingGET) | **GET** /inboxes/{uuid} | Fetch emails for a given inbox

@@ -146,5 +148,7 @@

- [Emaile2eClient.InboxDto](docs/InboxDto.md)
- [Emaile2eClient.Response](docs/Response.md)
- [Emaile2eClient.ResponseInboxDto](docs/ResponseInboxDto.md)
- [Emaile2eClient.ResponseListEmailDto](docs/ResponseListEmailDto.md)
- [Emaile2eClient.ResponseListInboxDto](docs/ResponseListInboxDto.md)
- [Emaile2eClient.SendEmailDto](docs/SendEmailDto.md)

@@ -151,0 +155,0 @@

@@ -19,6 +19,6 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/ResponseInboxDto', 'model/ResponseListEmailDto', 'model/ResponseListInboxDto'], factory);
define(['ApiClient', 'model/Response', 'model/ResponseInboxDto', 'model/ResponseListEmailDto', 'model/ResponseListInboxDto', 'model/SendEmailDto'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('../model/ResponseInboxDto'), require('../model/ResponseListEmailDto'), require('../model/ResponseListInboxDto'));
module.exports = factory(require('../ApiClient'), require('../model/Response'), require('../model/ResponseInboxDto'), require('../model/ResponseListEmailDto'), require('../model/ResponseListInboxDto'), require('../model/SendEmailDto'));
} else {

@@ -29,5 +29,5 @@ // Browser globals (root is window)

}
root.Emaile2eClient.InboxcontrollerApi = factory(root.Emaile2eClient.ApiClient, root.Emaile2eClient.ResponseInboxDto, root.Emaile2eClient.ResponseListEmailDto, root.Emaile2eClient.ResponseListInboxDto);
root.Emaile2eClient.InboxcontrollerApi = factory(root.Emaile2eClient.ApiClient, root.Emaile2eClient.Response, root.Emaile2eClient.ResponseInboxDto, root.Emaile2eClient.ResponseListEmailDto, root.Emaile2eClient.ResponseListInboxDto, root.Emaile2eClient.SendEmailDto);
}
}(this, function(ApiClient, ResponseInboxDto, ResponseListEmailDto, ResponseListInboxDto) {
}(this, function(ApiClient, Response, ResponseInboxDto, ResponseListEmailDto, ResponseListInboxDto, SendEmailDto) {
'use strict';

@@ -38,3 +38,3 @@

* @module api/InboxcontrollerApi
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -106,2 +106,61 @@

/**
* Delete an inbox
* Delete an inbox and all the emails associated with it.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Response} and HTTP response
*/
this.deleteUsingDELETEWithHttpInfo = function(apiKey, uuid) {
var postBody = null;
// verify the required parameter 'apiKey' is set
if (apiKey === undefined || apiKey === null) {
throw new Error("Missing the required parameter 'apiKey' when calling deleteUsingDELETE");
}
// verify the required parameter 'uuid' is set
if (uuid === undefined || uuid === null) {
throw new Error("Missing the required parameter 'uuid' when calling deleteUsingDELETE");
}
var pathParams = {
'uuid': uuid
};
var queryParams = {
'apiKey': apiKey
};
var headerParams = {
};
var formParams = {
};
var authNames = [];
var contentTypes = ['application/json'];
var accepts = ['*/*'];
var returnType = Response;
return this.apiClient.callApi(
'/inboxes/{uuid}', 'DELETE',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType
);
}
/**
* Delete an inbox
* Delete an inbox and all the emails associated with it.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Response}
*/
this.deleteUsingDELETE = function(apiKey, uuid) {
return this.deleteUsingDELETEWithHttpInfo(apiKey, uuid)
.then(function(response_and_data) {
return response_and_data.data;
});
}
/**
* List your inboxes

@@ -158,8 +217,75 @@ * Return a list of your inboxes. Each inbox has a uuid and an email address. Emails sent to the email address are stored in the inbox and can be fetched via &#x60;/inboxes/{uuid}&#x60;.

/**
* Send an email
* Send an email from the given inbox&#39;s email address. Useful if you need to test a user contacting you, for instance.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @param {module:model/SendEmailDto} sendEmailDto The email to send.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Response} and HTTP response
*/
this.sendEmailUsingPOSTWithHttpInfo = function(apiKey, uuid, sendEmailDto) {
var postBody = sendEmailDto;
// verify the required parameter 'apiKey' is set
if (apiKey === undefined || apiKey === null) {
throw new Error("Missing the required parameter 'apiKey' when calling sendEmailUsingPOST");
}
// verify the required parameter 'uuid' is set
if (uuid === undefined || uuid === null) {
throw new Error("Missing the required parameter 'uuid' when calling sendEmailUsingPOST");
}
// verify the required parameter 'sendEmailDto' is set
if (sendEmailDto === undefined || sendEmailDto === null) {
throw new Error("Missing the required parameter 'sendEmailDto' when calling sendEmailUsingPOST");
}
var pathParams = {
'uuid': uuid
};
var queryParams = {
'apiKey': apiKey
};
var headerParams = {
};
var formParams = {
};
var authNames = [];
var contentTypes = ['application/json'];
var accepts = ['*/*'];
var returnType = Response;
return this.apiClient.callApi(
'/inboxes/{uuid}', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType
);
}
/**
* Send an email
* Send an email from the given inbox&#39;s email address. Useful if you need to test a user contacting you, for instance.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @param {module:model/SendEmailDto} sendEmailDto The email to send.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Response}
*/
this.sendEmailUsingPOST = function(apiKey, uuid, sendEmailDto) {
return this.sendEmailUsingPOSTWithHttpInfo(apiKey, uuid, sendEmailDto)
.then(function(response_and_data) {
return response_and_data.data;
});
}
/**
* Fetch emails for a given inbox
* Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 30 seconds, an error will be returned.
* Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 60 seconds, an error will be returned.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @param {Object} opts Optional parameters
* @param {Number} opts.waitFor Wait a maximum of 30 seconds for atleast this many emails in an inbox before returning a result.
* @param {Number} opts.minCount Wait a maximum of 60 seconds for atleast this many emails in an inbox before returning a result.
* @param {Number} opts.maxWait Maximum seconds API should spend retrying your inbox until the minCount is satisfied
* @param {Date} opts.since Filter for emails received on or after this ISO8601 LocalDateTime.

@@ -188,3 +314,4 @@ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ResponseListEmailDto} and HTTP response

'apiKey': apiKey,
'waitFor': opts['waitFor'],
'minCount': opts['minCount'],
'maxWait': opts['maxWait'],
'since': opts['since']

@@ -211,7 +338,8 @@ };

* Fetch emails for a given inbox
* Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 30 seconds, an error will be returned.
* Return a list of emails stored in a given inbox. Each email contains various properties including the email body (in eml format), subject, and sender. The &#x60;since&#x60; parameter is a ISO8601 LocalDateTime that will filter for emails received on or after the given DateTime. Note that because an inbox may take 5 to 10 seconds to receive an email, you can use the &#x60;waitFor&#x60; parameter to hold a request open until the desired number of emails is present. If this number is not met after 60 seconds, an error will be returned.
* @param {String} apiKey Your API Key. Sign up and find it in your dashboard.
* @param {String} uuid The inbox&#39;s id.
* @param {Object} opts Optional parameters
* @param {Number} opts.waitFor Wait a maximum of 30 seconds for atleast this many emails in an inbox before returning a result.
* @param {Number} opts.minCount Wait a maximum of 60 seconds for atleast this many emails in an inbox before returning a result.
* @param {Number} opts.maxWait Maximum seconds API should spend retrying your inbox until the minCount is satisfied
* @param {Date} opts.since Filter for emails received on or after this ISO8601 LocalDateTime.

@@ -218,0 +346,0 @@ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ResponseListEmailDto}

@@ -35,3 +35,3 @@ /**

* @module ApiClient
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -38,0 +38,0 @@

@@ -19,8 +19,8 @@ /**

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/EmailDto', 'model/InboxDto', 'model/ResponseInboxDto', 'model/ResponseListEmailDto', 'model/ResponseListInboxDto', 'api/InboxcontrollerApi'], factory);
define(['ApiClient', 'model/EmailDto', 'model/InboxDto', 'model/Response', 'model/ResponseInboxDto', 'model/ResponseListEmailDto', 'model/ResponseListInboxDto', 'model/SendEmailDto', 'api/InboxcontrollerApi'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('./ApiClient'), require('./model/EmailDto'), require('./model/InboxDto'), require('./model/ResponseInboxDto'), require('./model/ResponseListEmailDto'), require('./model/ResponseListInboxDto'), require('./api/InboxcontrollerApi'));
module.exports = factory(require('./ApiClient'), require('./model/EmailDto'), require('./model/InboxDto'), require('./model/Response'), require('./model/ResponseInboxDto'), require('./model/ResponseListEmailDto'), require('./model/ResponseListInboxDto'), require('./model/SendEmailDto'), require('./api/InboxcontrollerApi'));
}
}(function(ApiClient, EmailDto, InboxDto, ResponseInboxDto, ResponseListEmailDto, ResponseListInboxDto, InboxcontrollerApi) {
}(function(ApiClient, EmailDto, InboxDto, Response, ResponseInboxDto, ResponseListEmailDto, ResponseListInboxDto, SendEmailDto, InboxcontrollerApi) {
'use strict';

@@ -57,3 +57,3 @@

* @module index
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -77,2 +77,7 @@ var exports = {

/**
* The Response model constructor.
* @property {module:model/Response}
*/
Response: Response,
/**
* The ResponseInboxDto model constructor.

@@ -93,2 +98,7 @@ * @property {module:model/ResponseInboxDto}

/**
* The SendEmailDto model constructor.
* @property {module:model/SendEmailDto}
*/
SendEmailDto: SendEmailDto,
/**
* The InboxcontrollerApi service constructor.

@@ -95,0 +105,0 @@ * @property {module:api/InboxcontrollerApi}

@@ -39,3 +39,3 @@ /**

* @module model/EmailDto
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

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

@@ -39,3 +39,3 @@ /**

* @module model/InboxDto
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

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

@@ -39,3 +39,3 @@ /**

* @module model/ResponseInboxDto
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -53,3 +53,2 @@

};

@@ -68,5 +67,2 @@

if (data.hasOwnProperty('error')) {
obj['error'] = ApiClient.convertToType(data['error'], 'Boolean');
}
if (data.hasOwnProperty('message')) {

@@ -83,6 +79,2 @@ obj['message'] = ApiClient.convertToType(data['message'], 'String');

/**
* @member {Boolean} error
*/
exports.prototype['error'] = undefined;
/**
* @member {String} message

@@ -89,0 +81,0 @@ */

@@ -39,3 +39,3 @@ /**

* @module model/ResponseListEmailDto
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -53,3 +53,2 @@

};

@@ -68,5 +67,2 @@

if (data.hasOwnProperty('error')) {
obj['error'] = ApiClient.convertToType(data['error'], 'Boolean');
}
if (data.hasOwnProperty('message')) {

@@ -83,6 +79,2 @@ obj['message'] = ApiClient.convertToType(data['message'], 'String');

/**
* @member {Boolean} error
*/
exports.prototype['error'] = undefined;
/**
* @member {String} message

@@ -89,0 +81,0 @@ */

@@ -39,3 +39,3 @@ /**

* @module model/ResponseListInboxDto
* @version 0.1.1513081270
* @version 0.1.1513202410
*/

@@ -53,3 +53,2 @@

};

@@ -68,5 +67,2 @@

if (data.hasOwnProperty('error')) {
obj['error'] = ApiClient.convertToType(data['error'], 'Boolean');
}
if (data.hasOwnProperty('message')) {

@@ -83,6 +79,2 @@ obj['message'] = ApiClient.convertToType(data['message'], 'String');

/**
* @member {Boolean} error
*/
exports.prototype['error'] = undefined;
/**
* @member {String} message

@@ -89,0 +81,0 @@ */

Sorry, the diff of this file is not supported yet

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