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

@beatgig/backend-types

Package Overview
Dependencies
Maintainers
4
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@beatgig/backend-types - npm Package Compare versions

Comparing version 1.0.1644105754-1644108122 to 1.0.1644105754-1644258907

2

package.json

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

{"name": "@beatgig/backend-types", "version": "1.0.1644105754-1644108122", "description": "TS types for backend-types.", "main": "index.ts", "types": "index.ts", "author": "jerber", "sideEffects": false}
{"name": "@beatgig/backend-types", "version": "1.0.1644105754-1644258907", "description": "TS types for backend-types.", "main": "index.ts", "types": "index.ts", "author": "jerber", "sideEffects": false}

@@ -435,2 +435,22 @@ /* istanbul ignore file */

/**
* Get Admin Stats
* @returns any Successful Response
* @throws ApiError
*/
public static async getAdminStats({
artistId,
}: {
artistId: string,
}): Promise<any> {
const result = await __request({
method: 'GET',
path: `/api/v1/artists/${artistId}/admin_stats`,
errors: {
422: `Validation Error`,
},
});
return result.body;
}
}
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