UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

13 lines (12 loc) 327 B
import Joi from 'joi'; export declare enum AuthenticationType { OAuth = "oauth", Basic = "basic", ApiKey = "apikey" } export declare class AuthIdentifier { AuthenticationType: AuthenticationType; Version?: string; IsSandbox?: boolean; } export declare const AuthIdentifierSchema: Joi.ObjectSchema<any>;