Skip to content

Commit

Permalink
chore: commit new .api-reports files
Browse files Browse the repository at this point in the history
  • Loading branch information
alessbell committed Nov 1, 2023
1 parent 807e2cd commit 7ddbc60
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .api-reports/api-report-utilities_subscriptions_relay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## API Report File for "@apollo/client"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import type { GraphQLResponse } from 'relay-runtime';
import { Observable } from 'relay-runtime';
import type { RequestParameters } from 'relay-runtime';

// Warning: (ae-forgotten-export) The symbol "CreateMultipartSubscriptionOptions" needs to be exported by the entry point index.d.ts
// Warning: (ae-forgotten-export) The symbol "OperationVariables" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export function createFetchMultipartSubscription(uri: string, { fetch: preferredFetch, headers }?: CreateMultipartSubscriptionOptions): (operation: RequestParameters, variables: OperationVariables) => Observable<GraphQLResponse>;

// @public (undocumented)
type CreateMultipartSubscriptionOptions = {
fetch?: WindowOrWorkerGlobalScope["fetch"];
headers?: Record<string, string>;
};

// @public (undocumented)
type OperationVariables = Record<string, any>;

// (No @packageDocumentation comment for this package)

```
25 changes: 25 additions & 0 deletions .api-reports/api-report-utilities_subscriptions_urql.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## API Report File for "@apollo/client"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import { Observable } from 'zen-observable-ts';

// Warning: (ae-forgotten-export) The symbol "CreateMultipartSubscriptionOptions" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export function createFetchMultipartSubscription(uri: string, { fetch: preferredFetch, headers }?: CreateMultipartSubscriptionOptions): ({ query, variables, }: {
query?: string | undefined;
variables: undefined | Record<string, any>;
}) => Observable<unknown>;

// @public (undocumented)
type CreateMultipartSubscriptionOptions = {
fetch?: WindowOrWorkerGlobalScope["fetch"];
headers?: Record<string, string>;
};

// (No @packageDocumentation comment for this package)

```
2 changes: 1 addition & 1 deletion config/apiExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ map((entryPoint: { dirs: string[] }) => {
enabled: true,
...baseConfig.apiReport,
reportFileName: `api-report${
path ? "-" + path.replace("/", "_") : ""
path ? "-" + path.replace(/\//g, "_") : ""
}.md`,
},
},
Expand Down

0 comments on commit 7ddbc60

Please sign in to comment.