@openfin/fdc3-api 46.100.64 → 46.100.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/fdc3-api-alpha.d.ts +10 -1
- package/out/fdc3-api-beta.d.ts +10 -1
- package/out/fdc3-api-public.d.ts +10 -1
- package/out/fdc3-api.d.ts +10 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -2163,6 +2163,15 @@ declare type ByType_8<Type extends EventType_8> = Payload_10<Type>;
|
|
|
2163
2163
|
*/
|
|
2164
2164
|
declare type ByType_9<Type extends EventType_9> = Payload_11<Type>;
|
|
2165
2165
|
|
|
2166
|
+
/** Minimal V8 CallSite shape — js-adapter does not include @types/node. */
|
|
2167
|
+
declare interface CallSite {
|
|
2168
|
+
getFileName(): string | null;
|
|
2169
|
+
toString(): string;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
/** V8 CallSite objects, or native stack-frame strings from browsers that ignore Error.prepareStackTrace. */
|
|
2173
|
+
declare type CapturedStack = CallSite[] | string[];
|
|
2174
|
+
|
|
2166
2175
|
/**
|
|
2167
2176
|
* Configuration for page capture.
|
|
2168
2177
|
*
|
|
@@ -17907,7 +17916,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
17907
17916
|
connectByPort(config: ExistingConnectConfig): Promise<void>;
|
|
17908
17917
|
private authorize;
|
|
17909
17918
|
sendAction<T extends keyof ProtocolMap>(action: T, payload?: ProtocolMap[T]['request'], uncorrelated?: boolean): SentMessage<SendActionResponse<T>>;
|
|
17910
|
-
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?:
|
|
17919
|
+
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?: CapturedStack): void;
|
|
17911
17920
|
ferryAction(origData: any): Promise<Message<any>>;
|
|
17912
17921
|
registerMessageHandler(handler: MessageHandler): void;
|
|
17913
17922
|
protected addWireListener(id: number, resolve: Function, handleNack: NackHandler, uncorrelated: boolean): void;
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -2163,6 +2163,15 @@ declare type ByType_8<Type extends EventType_8> = Payload_10<Type>;
|
|
|
2163
2163
|
*/
|
|
2164
2164
|
declare type ByType_9<Type extends EventType_9> = Payload_11<Type>;
|
|
2165
2165
|
|
|
2166
|
+
/** Minimal V8 CallSite shape — js-adapter does not include @types/node. */
|
|
2167
|
+
declare interface CallSite {
|
|
2168
|
+
getFileName(): string | null;
|
|
2169
|
+
toString(): string;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
/** V8 CallSite objects, or native stack-frame strings from browsers that ignore Error.prepareStackTrace. */
|
|
2173
|
+
declare type CapturedStack = CallSite[] | string[];
|
|
2174
|
+
|
|
2166
2175
|
/**
|
|
2167
2176
|
* Configuration for page capture.
|
|
2168
2177
|
*
|
|
@@ -17907,7 +17916,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
17907
17916
|
connectByPort(config: ExistingConnectConfig): Promise<void>;
|
|
17908
17917
|
private authorize;
|
|
17909
17918
|
sendAction<T extends keyof ProtocolMap>(action: T, payload?: ProtocolMap[T]['request'], uncorrelated?: boolean): SentMessage<SendActionResponse<T>>;
|
|
17910
|
-
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?:
|
|
17919
|
+
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?: CapturedStack): void;
|
|
17911
17920
|
ferryAction(origData: any): Promise<Message<any>>;
|
|
17912
17921
|
registerMessageHandler(handler: MessageHandler): void;
|
|
17913
17922
|
protected addWireListener(id: number, resolve: Function, handleNack: NackHandler, uncorrelated: boolean): void;
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -2163,6 +2163,15 @@ declare type ByType_8<Type extends EventType_8> = Payload_10<Type>;
|
|
|
2163
2163
|
*/
|
|
2164
2164
|
declare type ByType_9<Type extends EventType_9> = Payload_11<Type>;
|
|
2165
2165
|
|
|
2166
|
+
/** Minimal V8 CallSite shape — js-adapter does not include @types/node. */
|
|
2167
|
+
declare interface CallSite {
|
|
2168
|
+
getFileName(): string | null;
|
|
2169
|
+
toString(): string;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
/** V8 CallSite objects, or native stack-frame strings from browsers that ignore Error.prepareStackTrace. */
|
|
2173
|
+
declare type CapturedStack = CallSite[] | string[];
|
|
2174
|
+
|
|
2166
2175
|
/**
|
|
2167
2176
|
* Configuration for page capture.
|
|
2168
2177
|
*
|
|
@@ -17907,7 +17916,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
17907
17916
|
connectByPort(config: ExistingConnectConfig): Promise<void>;
|
|
17908
17917
|
private authorize;
|
|
17909
17918
|
sendAction<T extends keyof ProtocolMap>(action: T, payload?: ProtocolMap[T]['request'], uncorrelated?: boolean): SentMessage<SendActionResponse<T>>;
|
|
17910
|
-
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?:
|
|
17919
|
+
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?: CapturedStack): void;
|
|
17911
17920
|
ferryAction(origData: any): Promise<Message<any>>;
|
|
17912
17921
|
registerMessageHandler(handler: MessageHandler): void;
|
|
17913
17922
|
protected addWireListener(id: number, resolve: Function, handleNack: NackHandler, uncorrelated: boolean): void;
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -2195,6 +2195,15 @@ declare type ByType_8<Type extends EventType_8> = Payload_10<Type>;
|
|
|
2195
2195
|
*/
|
|
2196
2196
|
declare type ByType_9<Type extends EventType_9> = Payload_11<Type>;
|
|
2197
2197
|
|
|
2198
|
+
/** Minimal V8 CallSite shape — js-adapter does not include @types/node. */
|
|
2199
|
+
declare interface CallSite {
|
|
2200
|
+
getFileName(): string | null;
|
|
2201
|
+
toString(): string;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
/** V8 CallSite objects, or native stack-frame strings from browsers that ignore Error.prepareStackTrace. */
|
|
2205
|
+
declare type CapturedStack = CallSite[] | string[];
|
|
2206
|
+
|
|
2198
2207
|
/**
|
|
2199
2208
|
* Configuration for page capture.
|
|
2200
2209
|
*
|
|
@@ -18412,7 +18421,7 @@ declare class Transport<MeType extends EntityType = EntityType> extends EventEmi
|
|
|
18412
18421
|
connectByPort(config: ExistingConnectConfig): Promise<void>;
|
|
18413
18422
|
private authorize;
|
|
18414
18423
|
sendAction<T extends keyof ProtocolMap>(action: T, payload?: ProtocolMap[T]['request'], uncorrelated?: boolean): SentMessage<SendActionResponse<T>>;
|
|
18415
|
-
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?:
|
|
18424
|
+
protected nackHandler(payloadOrMessage: RuntimeErrorPayload | string, reject: Function, callSites?: CapturedStack): void;
|
|
18416
18425
|
ferryAction(origData: any): Promise<Message<any>>;
|
|
18417
18426
|
registerMessageHandler(handler: MessageHandler): void;
|
|
18418
18427
|
protected addWireListener(id: number, resolve: Function, handleNack: NackHandler, uncorrelated: boolean): void;
|