@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
25 lines (24 loc) • 762 B
TypeScript
import Joi from 'joi';
export interface AccountModals {
/** @description Schema for the form to register with the carrier */
RegistrationFormSchema: {
/** @deprecated Please use JsonSchema & UiSchema */
formSchema?: {
jsonSchema: object;
uiSchema: object;
};
JsonSchema?: object;
UiSchema?: object;
};
/** @description Schema for the form to update carrier settings */
SettingsFormSchema: {
/** @deprecated Please use JsonSchema & UiSchema */
formSchema?: {
jsonSchema: object;
uiSchema: object;
};
JsonSchema?: object;
UiSchema?: object;
};
}
export declare const AccountModalsSchema: Joi.ObjectSchema<any>;