@beatgig/backend-types
Advanced tools
Comparing version 1.0.1644105754-1644108122 to 1.0.1644105754-1644258907
@@ -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; | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
304241
10097