@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
10 lines (9 loc) • 533 B
TypeScript
import Joi from 'joi';
/** @description the connection context response which will allow you to update the connection_context for all future requests. */
export declare class GetConnectionContextResponse {
/** @description the connection context that will be sent as part of the auth.connection_context for other requests. ex: ```{ 'user_id': 'fake_234', 'store_id': '12324' }``` */
connection_context: {
[Key: string]: string;
};
}
export declare const GetConnectionContextResponseSchema: Joi.ObjectSchema<any>;