UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

27 lines 880 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { BrokerTokenMsgCtxData } from './brokerTokenMsgCtxData'; /** * Response for broker login request */ export type BrokerToken = { /** clientType indicates the type of the client making the request */ clientType?: string; /** maximum number of clients that can subscribe to the subject */ maxAllowedClients?: number; /** message context data can be used as contextual information for the message exchange */ msgCtxData?: BrokerTokenMsgCtxData; /** subjects that client can publish */ publisherSubjects?: string[]; /** subjects that client has subscribed */ subscriberSubjects?: string[]; }; //# sourceMappingURL=brokerToken.d.ts.map