@sailfish-ai/recorder 1.7.12 → 1.7.14
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/dist/graphql.js +27 -0
- package/dist/index.js +10 -1
- package/dist/modal.js +629 -0
- package/dist/sailfish-recorder.cjs.js +1 -1
- package/dist/sailfish-recorder.cjs.js.br +0 -0
- package/dist/sailfish-recorder.cjs.js.gz +0 -0
- package/dist/sailfish-recorder.es.js +1 -1
- package/dist/sailfish-recorder.es.js.br +0 -0
- package/dist/sailfish-recorder.es.js.gz +0 -0
- package/dist/sailfish-recorder.umd.js +1 -1
- package/dist/sailfish-recorder.umd.js.br +0 -0
- package/dist/sailfish-recorder.umd.js.gz +0 -0
- package/dist/types/graphql.d.ts +2 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/modal.d.ts +7 -0
- package/dist/types/types.d.ts +5 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
package/dist/types/graphql.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { CaptureSettingsResponse, GraphQLResponse, StartSessionResponse } from "./types";
|
|
1
|
+
import { CaptureSettingsResponse, CreateTriageResponse, GraphQLResponse, StartSessionResponse } from "./types";
|
|
2
2
|
export declare function sendGraphQLRequest<T>(operationName: string, query: string, variables: object, retries?: number, // Number of retries before giving up
|
|
3
3
|
initialBackoff?: number, // Initial backoff in milliseconds
|
|
4
4
|
backoffFactor?: number): Promise<GraphQLResponse<T>>;
|
|
5
5
|
export declare function fetchCaptureSettings(apiKey: string, backendApi: string): Promise<GraphQLResponse<CaptureSettingsResponse>>;
|
|
6
6
|
export declare function startRecordingSession(apiKey: string, recordingId: string, backendApi: string): Promise<GraphQLResponse<StartSessionResponse>>;
|
|
7
7
|
export declare function sendDomainsToNotPropagateHeaderTo(apiKey: string, domains: string[], backendApi: string): Promise<GraphQLResponse<void>>;
|
|
8
|
+
export declare function createTriageFromRecorder(apiKey: string, backendApi: string, recordingSessionId: string, timestampStart: string, timestampEnd: string, description?: string): Promise<GraphQLResponse<CreateTriageResponse>>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -18,8 +18,10 @@ export declare const initRecorder: (options: {
|
|
|
18
18
|
serviceIdentifier?: string;
|
|
19
19
|
domainsToPropagateHeaderTo?: string[];
|
|
20
20
|
domainsToNotPropagateHeaderTo?: string[];
|
|
21
|
+
enableShortcuts?: boolean;
|
|
21
22
|
}) => Promise<void>;
|
|
22
23
|
export * from "./graphql";
|
|
24
|
+
export { openReportIssueModal } from "./modal";
|
|
23
25
|
export * from "./recording";
|
|
24
26
|
export * from "./sendSailfishMessages";
|
|
25
27
|
export * from "./types";
|
package/dist/types/types.d.ts
CHANGED