npm package diff
Package: @forge/tunnel
Versions: 5.7.3-next.1 - 5.7.3-next.2
File: package/out/graphql/tunnel-graphql-client.d.ts
Index: package/out/graphql/tunnel-graphql-client.d.ts
===================================================================
--- package/out/graphql/tunnel-graphql-client.d.ts
+++ package/out/graphql/tunnel-graphql-client.d.ts
@@ -1,7 +1,18 @@
/// <reference types="node" resolution-mode="require"/>
import { URL } from 'url';
-import { GraphQLClient } from '@forge/cli-shared';
+import { GraphQLClient, GraphQlMutationError, ErrorWithAnalytics, ErrorAnalytics } from '@forge/cli-shared';
+export declare class RegisterAppTunnelError extends GraphQlMutationError implements ErrorWithAnalytics {
+ private static userErrorCodes;
+ private errorCode?;
+ constructor(message: string, { requestId, code, statusCode }: {
+ requestId: string | undefined;
+ code?: string;
+ statusCode?: number;
+ });
+ getAttributes(): ErrorAnalytics;
+ isUserError(): boolean;
+}
export interface TunnelDefinitions {
faasTunnelUrl?: URL;
customUI?: {
resourceKey: string;