@pdftron/collab-client
Advanced tools
Comparing version 2.1.0-alpha.13 to 2.1.0-alpha.14
@@ -6,3 +6,3 @@ { | ||
"typedocMain": "src/index.ts", | ||
"version": "2.1.0-alpha.13", | ||
"version": "2.1.0-alpha.14", | ||
"scripts": { | ||
@@ -29,3 +29,3 @@ "test": "jest --watch", | ||
}, | ||
"gitHead": "3e35de44f2e6abac594fc0137431a0336a21a59b" | ||
"gitHead": "79948e7dd748ad7ada30b8c87b81d5f66b9648e2" | ||
} |
@@ -41,3 +41,3 @@ import { GetDocumentByIdQuery_document } from "../graphql/queries/types/GetDocumentByIdQuery"; | ||
*/ | ||
draw(): Promise<void>; | ||
draw(): Promise<any>; | ||
/** | ||
@@ -44,0 +44,0 @@ * Selects the annotation in the UI |
@@ -5,2 +5,3 @@ import { ApolloClient } from "@apollo/client/core"; | ||
export declare const COLLAB_CONTEXT_HEADER = "collab-context"; | ||
export declare const SESSION_ID_TOKEN = "@pdftron/collab-session"; | ||
export declare const setCustomHeaders: (headers: Record<string, string>) => void; | ||
@@ -7,0 +8,0 @@ export declare const getCustomerHeaders: () => Record<string, string>; |
@@ -13,2 +13,3 @@ import { UserTypes } from "./../../../../../../types/global-graphql-types"; | ||
token: string | null; | ||
sessionId: string | null; | ||
} | ||
@@ -15,0 +16,0 @@ export interface Login { |
@@ -13,2 +13,3 @@ import { UserTypes } from "./../../../../../../types/global-graphql-types"; | ||
token: string | null; | ||
sessionId: string | null; | ||
} | ||
@@ -15,0 +16,0 @@ export interface LoginAnonymous { |
@@ -12,2 +12,4 @@ import { UserTypes } from "./../../../../../../types/global-graphql-types"; | ||
id: string; | ||
userName: string | null; | ||
email: string | null; | ||
} | ||
@@ -14,0 +16,0 @@ export interface GetDocumentByIdQuery_document_annotations_membership { |
@@ -12,2 +12,3 @@ import { UserTypes } from "./../../../../../../types/global-graphql-types"; | ||
id: string; | ||
isPublic: boolean | null; | ||
unreadCount: number; | ||
@@ -14,0 +15,0 @@ author: getUserDocuments_user_documents_author; |
@@ -19,3 +19,4 @@ import winston from 'winston'; | ||
CLIENT = "CLIENT", | ||
ANNOTATIONS = "ANNOTATIONS" | ||
ANNOTATIONS = "ANNOTATIONS", | ||
SESSION_STATUS = "SESSION_STATUS" | ||
} | ||
@@ -22,0 +23,0 @@ export declare enum LogLevels { |
@@ -68,2 +68,3 @@ import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql'; | ||
token?: Maybe<Scalars['String']>; | ||
sessionId?: Maybe<Scalars['String']>; | ||
}; | ||
@@ -901,2 +902,3 @@ export declare type AuthUser = { | ||
token?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>; | ||
sessionId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>; | ||
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -903,0 +905,0 @@ }>; |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
985037
6581