82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
/**
|
|
* Common library for code that's used across the Client, Worker, and/or Workflow
|
|
*
|
|
* @module
|
|
*/
|
|
|
|
import * as encoding from './encoding';
|
|
import * as helpers from './type-helpers';
|
|
|
|
export * from './activity-options';
|
|
export { ActivityCancellationDetailsOptions, ActivityCancellationDetails } from './activity-cancellation-details';
|
|
export { SuggestContinueAsNewReason } from './continue-as-new';
|
|
export * from './converter/data-converter';
|
|
export * from './converter/failure-converter';
|
|
export * from './converter/payload-codec';
|
|
export * from './converter/payload-converter';
|
|
export * from './converter/types';
|
|
export * from './deprecated-time';
|
|
export * from './errors';
|
|
export * from './failure';
|
|
export { Headers, Next } from './interceptors';
|
|
export * from './interfaces';
|
|
export * from './logger';
|
|
export * from './priority';
|
|
export * from './metrics';
|
|
export * from './retry-policy';
|
|
export type { Timestamp, Duration, StringValue } from './time';
|
|
export * from './worker-deployments';
|
|
export * from './workflow-definition-options';
|
|
export * from './workflow-handle';
|
|
export * from './workflow-options';
|
|
export * from './versioning-intent';
|
|
export {
|
|
SearchAttributes, // eslint-disable-line @typescript-eslint/no-deprecated
|
|
SearchAttributeValue, // eslint-disable-line @typescript-eslint/no-deprecated
|
|
SearchAttributeType,
|
|
SearchAttributePair,
|
|
SearchAttributeUpdatePair,
|
|
TypedSearchAttributes,
|
|
defineSearchAttributeKey,
|
|
} from './search-attributes';
|
|
|
|
/**
|
|
* Encode a UTF-8 string into a Uint8Array
|
|
*
|
|
* @hidden
|
|
* @deprecated - meant for internal use only
|
|
*/
|
|
export function u8(s: string): Uint8Array {
|
|
return encoding.encode(s);
|
|
}
|
|
|
|
/**
|
|
* Decode a Uint8Array into a UTF-8 string
|
|
*
|
|
* @hidden
|
|
* @deprecated - meant for internal use only
|
|
*/
|
|
export function str(arr: Uint8Array): string {
|
|
return encoding.decode(arr);
|
|
}
|
|
|
|
/**
|
|
* Get `error.message` (or `undefined` if not present)
|
|
*
|
|
* @hidden
|
|
* @deprecated - meant for internal use only
|
|
*/
|
|
export function errorMessage(error: unknown): string | undefined {
|
|
return helpers.errorMessage(error);
|
|
}
|
|
|
|
/**
|
|
* Get `error.code` (or `undefined` if not present)
|
|
*
|
|
* @hidden
|
|
* @deprecated - meant for internal use only
|
|
*/
|
|
export function errorCode(error: unknown): string | undefined {
|
|
return helpers.errorCode(error);
|
|
}
|