UNPKG

finite-state-sdk

Version:

The Finite State SDK.

18 lines (17 loc) 532 B
interface AssetVersion { id: string; } export interface CreateAssetVersionResponse { createNewAssetVersionOnAsset: { id: string; assetVersion: AssetVersion; }; } export interface createAssetVersionOnAssetParams { assetId: string; assetVersionName: string; createdByUserId?: string; productId?: string; } export declare function createAssetVersionOnAsset(token: string, organizationContext: string, params: createAssetVersionOnAssetParams): Promise<CreateAssetVersionResponse>; export {};