recker 1.0.85-next.7aa81f1 → 1.0.85

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.
@@ -32,7 +32,5 @@ export * from '../constants/http-status.js';
32
32
  export * from './crypto.js';
33
33
  export * from './cache.js';
34
34
  export * from './compression.js';
35
- export { createRaffelClient } from 'raffel/client/browser';
36
- export type { RaffelClientOptions, RaffelClient, ClientStream as RaffelClientStream, CallOptions as RaffelCallOptions, ClientChannel as RaffelClientChannel, ClientChannelMember as RaffelClientChannelMember, } from 'raffel/client/browser';
37
35
  export * from './recker.js';
38
36
  export { Client as Recker } from '../core/client.js';
@@ -32,6 +32,5 @@ export * from '../constants/http-status.js';
32
32
  export * from './crypto.js';
33
33
  export * from './cache.js';
34
34
  export * from './compression.js';
35
- export { createRaffelClient } from 'raffel/client/browser';
36
35
  export * from './recker.js';
37
36
  export { Client as Recker } from '../core/client.js';
@@ -4,7 +4,6 @@ import type { RequestOptions } from '../types/index.js';
4
4
  import { analyzeSeo } from '../seo/analyzer.js';
5
5
  import { createAI } from '../ai/index.js';
6
6
  import { simulateNetwork } from '../plugins/network-simulation.js';
7
- import type { RaffelClientOptions, RaffelClient } from 'raffel/client/browser';
8
7
  export declare function get<T = unknown>(url: string, options?: RequestOptions): RequestPromise<T>;
9
8
  export declare function post<T = unknown>(url: string, options?: RequestOptions): RequestPromise<T>;
10
9
  export declare function post<T = unknown>(url: string, body?: unknown, options?: RequestOptions): RequestPromise<T>;
@@ -27,7 +26,6 @@ export declare const recker: {
27
26
  options: typeof options;
28
27
  purge: typeof purge;
29
28
  ws: typeof ws;
30
- raffel: (url: string, options?: Omit<RaffelClientOptions, "url">) => RaffelClient;
31
29
  seo: typeof analyzeSeo;
32
30
  ai: typeof createAI;
33
31
  har: import("../plugins/har-recorder.js").HarRecorder;
@@ -4,7 +4,6 @@ import { analyzeSeo } from '../seo/analyzer.js';
4
4
  import { createAI } from '../ai/index.js';
5
5
  import { harRecorder } from '../plugins/har-recorder.js';
6
6
  import { simulateNetwork } from '../plugins/network-simulation.js';
7
- import { createRaffelClient } from 'raffel/client/browser';
8
7
  let _defaultClient = null;
9
8
  const REQUEST_OPTIONS_HINTS = new Set([
10
9
  'method',
@@ -99,7 +98,6 @@ export const recker = {
99
98
  options,
100
99
  purge,
101
100
  ws,
102
- raffel: (url, options) => createRaffelClient({ ...options, url }),
103
101
  seo: analyzeSeo,
104
102
  ai: createAI,
105
103
  har: harRecorder,
@@ -32,7 +32,5 @@ export * from '../constants/http-status.js';
32
32
  export * from './crypto.js';
33
33
  export * from './cache.js';
34
34
  export * from './compression.js';
35
- export { createRaffelClient } from 'raffel/client/browser';
36
- export type { RaffelClientOptions, RaffelClient, ClientStream as RaffelClientStream, CallOptions as RaffelCallOptions, ClientChannel as RaffelClientChannel, ClientChannelMember as RaffelClientChannelMember, } from 'raffel/client/browser';
37
35
  export * from './recker.js';
38
36
  export { Client as Recker } from '../core/client.js';