mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
273 lines
6.5 KiB
TypeScript
273 lines
6.5 KiB
TypeScript
// Type definitions for hellosign-embedded v1.2.0
|
|
// Project: https://github.com/HelloFax/hellosign-embedded
|
|
// Definitions by: Brian Surowiec <https://github.com/xt0rted>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
export declare module HelloSign {
|
|
interface SignedMessageEvent {
|
|
event: 'signature_request_signed';
|
|
signature_id: string;
|
|
}
|
|
|
|
interface DeclinedMessageEvent {
|
|
event: 'signature_request_declined';
|
|
signature_id: string;
|
|
}
|
|
|
|
interface CanceledMessageEvent {
|
|
event: 'signature_request_canceled';
|
|
}
|
|
|
|
interface SentMessageEvent {
|
|
event: 'signature_request_sent';
|
|
signature_request_id: string;
|
|
signature_request_info: {
|
|
title: string;
|
|
message: string;
|
|
signatures: Array<{
|
|
signature_id: string;
|
|
signer_email_address: string;
|
|
signer_name: string;
|
|
order: number;
|
|
status_code: string;
|
|
signed_at: number;
|
|
last_viewed_at: number;
|
|
last_reminded_at: number;
|
|
has_pin: boolean;
|
|
}>;
|
|
cc_email_addresses: Array<string>;
|
|
};
|
|
}
|
|
|
|
interface TemplateCreatedMessageEvent {
|
|
event: 'template_created';
|
|
template_id: string;
|
|
template_info: {
|
|
title: string;
|
|
message: string;
|
|
signer_roles: Array<{
|
|
name: string;
|
|
order: number;
|
|
}>;
|
|
cc_roles: Array<{
|
|
name: string;
|
|
}>;
|
|
};
|
|
}
|
|
|
|
interface ErrorMessageEvent {
|
|
event: 'error';
|
|
description: string;
|
|
}
|
|
|
|
type MessageEvent = SignedMessageEvent | DeclinedMessageEvent |
|
|
CanceledMessageEvent | SentMessageEvent | TemplateCreatedMessageEvent |
|
|
ErrorMessageEvent;
|
|
|
|
interface ClientCultures {
|
|
/**
|
|
* English (United States)
|
|
*
|
|
* @default en_US
|
|
*/
|
|
EN_US: string;
|
|
|
|
/**
|
|
* French (France)
|
|
*
|
|
* @default fr_FR
|
|
*/
|
|
FR_FR: string;
|
|
|
|
/**
|
|
* German (Germany)
|
|
*
|
|
* @default de_DE
|
|
*/
|
|
DE_DE: string;
|
|
|
|
/**
|
|
* Swedish (Sweden)
|
|
*
|
|
* @default sv_SE
|
|
*/
|
|
SV_SE: string;
|
|
|
|
/**
|
|
* Chinese (China)
|
|
*
|
|
* @default zh_CN
|
|
*/
|
|
ZH_CN: string;
|
|
|
|
/**
|
|
* Danish (Denmark)
|
|
*
|
|
* @default da_DK
|
|
*/
|
|
DA_DK: string;
|
|
|
|
/**
|
|
* Dutch (The Netherlands)
|
|
* @default nl_NL
|
|
*/
|
|
NL_NL: string;
|
|
|
|
/**
|
|
* The available client UI cultures
|
|
*/
|
|
supportedCultures: string[];
|
|
}
|
|
|
|
interface OpenParameters {
|
|
/**
|
|
* The url to open in the child frame
|
|
*/
|
|
url?: string;
|
|
|
|
/**
|
|
* Where to go after the signature is completed
|
|
*/
|
|
redirectUrl?: string;
|
|
|
|
/**
|
|
* Whether a cancel button should be displayed
|
|
*
|
|
* @default true
|
|
*/
|
|
allowCancel?: boolean;
|
|
|
|
/**
|
|
* A listener for X-window messages coming from the child frame
|
|
*/
|
|
messageListener?: (eventData: MessageEvent) => void;
|
|
|
|
/**
|
|
* One of the HelloSign.CULTURES.supportedCultures
|
|
*
|
|
* @default HelloSign.CULTURES.EN_US
|
|
*/
|
|
userCulture?: string;
|
|
|
|
/**
|
|
* When true, debugging statements will be written to the console
|
|
*
|
|
* @default false
|
|
*/
|
|
debug?: boolean;
|
|
|
|
/**
|
|
* When true, domain verification step will be skipped if and only if the Signature Request was created with test_mode=1
|
|
*
|
|
* @default false
|
|
*/
|
|
skipDomainVerification?: boolean;
|
|
|
|
/**
|
|
* DOM element that will contain the iframe on the page (defaults to document.body)
|
|
*/
|
|
container?: Element;
|
|
|
|
/**
|
|
* Height of the iFrame (only applicable when a container is specified)
|
|
*/
|
|
height?: number;
|
|
|
|
/**
|
|
* When true, the header will be hidden.
|
|
* This is only functional for customers with embedded branding enabled.
|
|
*
|
|
* @default false
|
|
*/
|
|
hideHeader?: boolean;
|
|
|
|
/**
|
|
* The version of the embedded user experience to display to signers (1 = legacy, 2 = responsive).
|
|
* This option is only honored if your account has accessed the API prior to Nov 14, 2015.
|
|
*/
|
|
uxVersion?: number;
|
|
|
|
/**
|
|
* The email of the person issuing a signature request.
|
|
* Required for allowing 'Me + Others' requests
|
|
*/
|
|
requester?: string;
|
|
|
|
/**
|
|
* An associative array to be used to customize the app's signer page
|
|
*/
|
|
whiteLabelingOptions?: Object;
|
|
}
|
|
|
|
interface HelloSignStatic {
|
|
/**
|
|
* The available client UI cultures
|
|
*/
|
|
CULTURES: ClientCultures;
|
|
|
|
/**
|
|
* The signature request was signed
|
|
*
|
|
* @default signature_request_signed
|
|
*/
|
|
EVENT_SIGNED: string;
|
|
|
|
/**
|
|
* The signature request was declined
|
|
*
|
|
* @default signature_request_declined
|
|
*/
|
|
EVENT_DECLINED: string;
|
|
|
|
/**
|
|
* The user closed the iFrame before completing
|
|
*
|
|
* @default signature_request_canceled
|
|
*/
|
|
EVENT_CANCELED: string;
|
|
|
|
/**
|
|
* The user sent a signature request
|
|
*
|
|
* @default signature_request_sent
|
|
*/
|
|
EVENT_SENT: string;
|
|
|
|
/**
|
|
* The template was created or edited
|
|
*
|
|
* @default template_created
|
|
*/
|
|
EVENT_TEMPLATE_CREATED: string;
|
|
|
|
/**
|
|
* An error occurred in the iFrame
|
|
*
|
|
* @default error
|
|
*/
|
|
EVENT_ERROR: string;
|
|
|
|
/**
|
|
* Initialize using your HelloSign API client ID.
|
|
*
|
|
* @param appClientId The API client ID the request is for.
|
|
*/
|
|
init(appClientId: string): void;
|
|
|
|
/**
|
|
* Open the signing window.
|
|
*
|
|
* @param params The options to use when opening the signing window.
|
|
*/
|
|
open(params: OpenParameters): void;
|
|
|
|
/**
|
|
* Close the signing window.
|
|
*/
|
|
close(): void;
|
|
}
|
|
}
|
|
|
|
declare var HelloSign: HelloSign.HelloSignStatic;
|
|
|
|
export as namespace HelloSign;
|