Skip to content

Commit

Permalink
Fix generated types (#3873)
Browse files Browse the repository at this point in the history
Co-authored-by: Saliou Diallo <saliou@audius.co>
  • Loading branch information
sddioulde and Saliou Diallo committed Sep 14, 2022
1 parent 8fc2753 commit 6f255c5
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/src/sdk/api/generated/full/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ models/PlaylistArtwork.ts
models/PlaylistFull.ts
models/PlaylistLibrary.ts
models/PremiumConditions.ts
models/PremiumContentSignature.ts
models/ProfilePicture.ts
models/RelatedArtistResponseFull.ts
models/RemixesResponse.ts
Expand Down
35 changes: 35 additions & 0 deletions libs/src/sdk/api/generated/full/models/PremiumContentSignature.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// @ts-nocheck
/* tslint:disable */
/* eslint-disable */
/**
* API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
*
* @export
* @interface PremiumContentSignature
*/
export interface PremiumContentSignature {
/**
*
* @type {string}
* @memberof PremiumContentSignature
*/
data?: string;
/**
*
* @type {string}
* @memberof PremiumContentSignature
*/
signature?: string;
}

12 changes: 12 additions & 0 deletions libs/src/sdk/api/generated/full/models/TrackFull.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ import {
PremiumConditionsFromJSONTyped,
PremiumConditionsToJSON,
} from './PremiumConditions';
import {
PremiumContentSignature,
PremiumContentSignatureFromJSON,
PremiumContentSignatureFromJSONTyped,
PremiumContentSignatureToJSON,
} from './PremiumContentSignature';
import {
Repost,
RepostFromJSON,
Expand Down Expand Up @@ -332,5 +338,11 @@ export interface TrackFull {
* @memberof TrackFull
*/
premium_conditions?: PremiumConditions;
/**
*
* @type {PremiumContentSignature}
* @memberof TrackFull
*/
premium_content_signature?: PremiumContentSignature;
}

1 change: 1 addition & 0 deletions libs/src/sdk/api/generated/full/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export * from './PlaylistArtwork';
export * from './PlaylistFull';
export * from './PlaylistLibrary';
export * from './PremiumConditions';
export * from './PremiumContentSignature';
export * from './ProfilePicture';
export * from './RelatedArtistResponseFull';
export * from './RemixesResponse';
Expand Down

0 comments on commit 6f255c5

Please sign in to comment.