UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

14 lines (11 loc) 284 B
import { DataListResponse } from '../core/common/Response'; export type CatalogResponse = DataListResponse<Catalog>; export interface Catalog { id: string; editor_id: string; datamart_id: string; locale: string; currency: string; token: string; creation_ts: string; }