├── server ├── node_modules │ ├── mime │ │ ├── .npmignore │ │ └── cli.js │ ├── tr46 │ │ ├── lib │ │ │ └── .gitkeep │ │ └── .npmignore │ ├── .bin │ │ ├── mime │ │ ├── sha.js │ │ ├── uuid │ │ ├── apollo-pbjs │ │ └── apollo-pbts │ ├── @graphql-tools │ │ ├── schema │ │ │ ├── cjs │ │ │ │ ├── types.js │ │ │ │ └── package.json │ │ │ ├── esm │ │ │ │ ├── types.js │ │ │ │ └── chainResolvers.js │ │ │ ├── typings │ │ │ │ ├── extendResolversFromInterfaces.d.cts │ │ │ │ ├── extendResolversFromInterfaces.d.ts │ │ │ │ ├── checkForResolveTypeResolver.d.cts │ │ │ │ ├── checkForResolveTypeResolver.d.ts │ │ │ │ ├── assertResolversPresent.d.cts │ │ │ │ ├── assertResolversPresent.d.ts │ │ │ │ ├── chainResolvers.d.ts │ │ │ │ ├── chainResolvers.d.cts │ │ │ │ ├── addResolversToSchema.d.ts │ │ │ │ └── addResolversToSchema.d.cts │ │ │ └── README.md │ │ ├── utils │ │ │ ├── esm │ │ │ │ ├── executor.js │ │ │ │ ├── loaders.js │ │ │ │ ├── isDocumentNode.js │ │ │ │ ├── selectionSets.js │ │ │ │ ├── isAsyncIterable.js │ │ │ │ ├── getObjectTypeFromTypeMap.js │ │ │ │ └── getResponseKeyFromInfo.js │ │ │ ├── cjs │ │ │ │ ├── package.json │ │ │ │ ├── executor.js │ │ │ │ ├── loaders.js │ │ │ │ ├── isDocumentNode.js │ │ │ │ ├── selectionSets.js │ │ │ │ └── isAsyncIterable.js │ │ │ └── typings │ │ │ │ ├── isAsyncIterable.d.cts │ │ │ │ ├── isAsyncIterable.d.ts │ │ │ │ ├── valueMatchesCriteria.d.cts │ │ │ │ ├── valueMatchesCriteria.d.ts │ │ │ │ ├── astFromType.d.ts │ │ │ │ ├── inspect.d.cts │ │ │ │ ├── inspect.d.ts │ │ │ │ ├── astFromType.d.cts │ │ │ │ ├── isDocumentNode.d.ts │ │ │ │ ├── isDocumentNode.d.cts │ │ │ │ ├── get-implementing-types.d.cts │ │ │ │ ├── get-implementing-types.d.ts │ │ │ │ ├── forEachField.d.cts │ │ │ │ ├── forEachField.d.ts │ │ │ │ ├── extractExtensionsFromSchema.d.cts │ │ │ │ ├── extractExtensionsFromSchema.d.ts │ │ │ │ ├── addTypes.d.cts │ │ │ │ ├── addTypes.d.ts │ │ │ │ ├── forEachDefaultValue.d.ts │ │ │ │ ├── forEachDefaultValue.d.cts │ │ │ │ ├── selectionSets.d.ts │ │ │ │ ├── getResolversFromSchema.d.ts │ │ │ │ ├── selectionSets.d.cts │ │ │ │ ├── getResolversFromSchema.d.cts │ │ │ │ ├── AccumulatorMap.d.ts │ │ │ │ ├── AccumulatorMap.d.cts │ │ │ │ ├── implementsAbstractType.d.ts │ │ │ │ ├── fixSchemaAst.d.cts │ │ │ │ ├── fixSchemaAst.d.ts │ │ │ │ ├── implementsAbstractType.d.cts │ │ │ │ ├── getObjectTypeFromTypeMap.d.cts │ │ │ │ ├── getObjectTypeFromTypeMap.d.ts │ │ │ │ ├── parse-graphql-json.d.cts │ │ │ │ ├── parse-graphql-json.d.ts │ │ │ │ ├── heal.d.cts │ │ │ │ ├── heal.d.ts │ │ │ │ ├── rewire.d.cts │ │ │ │ ├── rewire.d.ts │ │ │ │ ├── directives.d.cts │ │ │ │ ├── directives.d.ts │ │ │ │ ├── mapAsyncIterator.d.cts │ │ │ │ ├── mapAsyncIterator.d.ts │ │ │ │ ├── getResponseKeyFromInfo.d.cts │ │ │ │ ├── getResponseKeyFromInfo.d.ts │ │ │ │ ├── getOperationASTFromRequest.d.ts │ │ │ │ ├── getOperationASTFromRequest.d.cts │ │ │ │ └── prune.d.ts │ │ └── merge │ │ │ ├── cjs │ │ │ ├── package.json │ │ │ └── index.js │ │ │ ├── esm │ │ │ └── index.js │ │ │ ├── typings │ │ │ ├── index.d.ts │ │ │ ├── index.d.cts │ │ │ ├── typedefs-mergers │ │ │ │ ├── arguments.d.cts │ │ │ │ ├── arguments.d.ts │ │ │ │ ├── merge-named-type-array.d.cts │ │ │ │ ├── merge-named-type-array.d.ts │ │ │ │ ├── enum-values.d.cts │ │ │ │ └── enum-values.d.ts │ │ │ ├── extensions.d.cts │ │ │ └── extensions.d.ts │ │ │ └── README.md │ ├── call-bind │ │ ├── .eslintignore │ │ ├── .nycrc │ │ └── .eslintrc │ ├── delayed-stream │ │ ├── .npmignore │ │ └── Makefile │ ├── graphql │ │ ├── jsutils │ │ │ ├── Maybe.mjs │ │ │ ├── ObjMap.mjs │ │ │ ├── PromiseOrValue.mjs │ │ │ ├── PromiseOrValue.d.ts │ │ │ ├── devAssert.d.ts │ │ │ ├── Maybe.js │ │ │ ├── ObjMap.js │ │ │ ├── PromiseOrValue.js │ │ │ ├── invariant.d.ts │ │ │ ├── identityFunc.d.ts │ │ │ ├── inspect.d.ts │ │ │ ├── identityFunc.mjs │ │ │ ├── Maybe.d.ts │ │ │ ├── printPathArray.d.ts │ │ │ ├── devAssert.mjs │ │ │ ├── toError.d.ts │ │ │ ├── isPromise.d.ts │ │ │ ├── toObjMap.d.ts │ │ │ ├── groupBy.d.ts │ │ │ ├── isObjectLike.mjs │ │ │ ├── isObjectLike.d.ts │ │ │ ├── printPathArray.mjs │ │ │ ├── invariant.mjs │ │ │ ├── identityFunc.js │ │ │ ├── memoize3.d.ts │ │ │ ├── didYouMean.d.ts │ │ │ ├── isAsyncIterable.d.ts │ │ │ ├── isPromise.mjs │ │ │ ├── suggestionList.d.ts │ │ │ ├── naturalCompare.d.ts │ │ │ ├── devAssert.js │ │ │ ├── mapValue.d.ts │ │ │ ├── mapValue.mjs │ │ │ ├── toObjMap.mjs │ │ │ ├── ObjMap.d.ts │ │ │ ├── invariant.js │ │ │ ├── isObjectLike.js │ │ │ └── printPathArray.js │ │ ├── utilities │ │ │ ├── typedQueryDocumentNode.mjs │ │ │ ├── typedQueryDocumentNode.js │ │ │ ├── sortValueNode.d.ts │ │ │ ├── lexicographicSortSchema.d.ts │ │ │ └── printSchema.d.ts │ │ ├── NotSupportedTSVersion.d.ts │ │ ├── error │ │ │ ├── index.mjs │ │ │ └── index.d.ts │ │ ├── language │ │ │ ├── printer.d.ts │ │ │ └── printString.d.ts │ │ ├── validation │ │ │ └── rules │ │ │ │ ├── MaxIntrospectionDepthRule.d.ts │ │ │ │ ├── UniqueTypeNamesRule.d.ts │ │ │ │ ├── LoneSchemaDefinitionRule.d.ts │ │ │ │ ├── ScalarLeafsRule.d.ts │ │ │ │ ├── UniqueEnumValueNamesRule.d.ts │ │ │ │ ├── UniqueOperationTypesRule.d.ts │ │ │ │ ├── UniqueVariableNamesRule.d.ts │ │ │ │ ├── UniqueDirectiveNamesRule.d.ts │ │ │ │ └── PossibleTypeExtensionsRule.d.ts │ │ ├── type │ │ │ └── assertName.d.ts │ │ ├── version.d.ts │ │ └── execution │ │ │ └── index.mjs │ ├── loglevel │ │ ├── _config.yml │ │ └── bower.json │ ├── tslib │ │ ├── tslib.html │ │ ├── tslib.es6.html │ │ └── modules │ │ │ └── package.json │ ├── @apollo │ │ ├── server │ │ │ ├── dist │ │ │ │ ├── esm │ │ │ │ │ ├── package.json │ │ │ │ │ ├── externalTypes │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ ├── context.js │ │ │ │ │ │ ├── graphql.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── plugins.js │ │ │ │ │ │ ├── constructor.js │ │ │ │ │ │ ├── requestPipeline.js │ │ │ │ │ │ ├── incrementalDeliveryPolyfill.js │ │ │ │ │ │ ├── http.js.map │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── context.js.map │ │ │ │ │ │ ├── graphql.js.map │ │ │ │ │ │ ├── plugins.js.map │ │ │ │ │ │ ├── constructor.js.map │ │ │ │ │ │ ├── requestPipeline.js.map │ │ │ │ │ │ ├── incrementalDeliveryPolyfill.js.map │ │ │ │ │ │ ├── context.d.ts │ │ │ │ │ │ └── context.d.ts.map │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── landingPage │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ │ │ └── types.js.map │ │ │ │ │ │ ├── usageReporting │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── options.js.map │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ ├── defaultSendOperationsAsTrace.d.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ │ ├── defaultSendOperationsAsTrace.d.ts.map │ │ │ │ │ │ │ ├── traceDetails.d.ts │ │ │ │ │ │ │ ├── iterateOverTrace.d.ts │ │ │ │ │ │ │ └── traceDetails.d.ts.map │ │ │ │ │ │ ├── schemaIsSubgraph.d.ts │ │ │ │ │ │ ├── disableSuggestions │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ │ ├── schemaIsSubgraph.d.ts.map │ │ │ │ │ │ ├── drainHttpServer │ │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ │ └── inlineTrace │ │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── packageVersion.js │ │ │ │ │ │ ├── packageVersion.d.ts │ │ │ │ │ │ ├── packageVersion.d.ts.map │ │ │ │ │ │ └── packageVersion.js.map │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── isDefined.js │ │ │ │ │ │ ├── isDefined.d.ts │ │ │ │ │ │ ├── computeCoreSchemaHash.d.ts │ │ │ │ │ │ ├── UnreachableCaseError.d.ts │ │ │ │ │ │ ├── isDefined.js.map │ │ │ │ │ │ ├── UnreachableCaseError.js │ │ │ │ │ │ ├── urlForHttpServer.d.ts │ │ │ │ │ │ ├── UnreachableCaseError.d.ts.map │ │ │ │ │ │ ├── computeCoreSchemaHash.d.ts.map │ │ │ │ │ │ ├── isDefined.d.ts.map │ │ │ │ │ │ ├── computeCoreSchemaHash.js │ │ │ │ │ │ ├── resolvable.d.ts │ │ │ │ │ │ ├── urlForHttpServer.d.ts.map │ │ │ │ │ │ ├── UnreachableCaseError.js.map │ │ │ │ │ │ ├── HeaderMap.d.ts │ │ │ │ │ │ ├── computeCoreSchemaHash.js.map │ │ │ │ │ │ ├── resolvable.d.ts.map │ │ │ │ │ │ ├── resolvable.js │ │ │ │ │ │ └── HeaderMap.d.ts.map │ │ │ │ │ ├── cachePolicy.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── cachePolicy.d.ts.map │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── internalPlugin.js │ │ │ │ │ ├── internalPlugin.js.map │ │ │ │ │ ├── preventCsrf.d.ts.map │ │ │ │ │ ├── preventCsrf.d.ts │ │ │ │ │ ├── determineApolloConfig.d.ts │ │ │ │ │ ├── determineApolloConfig.d.ts.map │ │ │ │ │ └── errors │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ └── cjs │ │ │ │ │ ├── package.json │ │ │ │ │ ├── generated │ │ │ │ │ ├── packageVersion.d.ts │ │ │ │ │ ├── packageVersion.js.map │ │ │ │ │ ├── packageVersion.d.ts.map │ │ │ │ │ └── packageVersion.js │ │ │ │ │ ├── externalTypes │ │ │ │ │ ├── http.js │ │ │ │ │ ├── context.js │ │ │ │ │ ├── graphql.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── plugins.js │ │ │ │ │ ├── http.js.map │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── context.js.map │ │ │ │ │ ├── graphql.js.map │ │ │ │ │ ├── plugins.js.map │ │ │ │ │ ├── requestPipeline.js │ │ │ │ │ ├── constructor.js.map │ │ │ │ │ ├── requestPipeline.js.map │ │ │ │ │ ├── incrementalDeliveryPolyfill.js │ │ │ │ │ ├── incrementalDeliveryPolyfill.js.map │ │ │ │ │ ├── context.d.ts │ │ │ │ │ └── context.d.ts.map │ │ │ │ │ ├── utils │ │ │ │ │ ├── isDefined.d.ts │ │ │ │ │ ├── computeCoreSchemaHash.d.ts │ │ │ │ │ ├── UnreachableCaseError.d.ts │ │ │ │ │ ├── urlForHttpServer.d.ts │ │ │ │ │ ├── isDefined.js.map │ │ │ │ │ ├── UnreachableCaseError.d.ts.map │ │ │ │ │ ├── computeCoreSchemaHash.d.ts.map │ │ │ │ │ ├── isDefined.d.ts.map │ │ │ │ │ ├── isDefined.js │ │ │ │ │ ├── resolvable.d.ts │ │ │ │ │ ├── urlForHttpServer.d.ts.map │ │ │ │ │ ├── UnreachableCaseError.js.map │ │ │ │ │ ├── HeaderMap.d.ts │ │ │ │ │ ├── computeCoreSchemaHash.js.map │ │ │ │ │ ├── resolvable.d.ts.map │ │ │ │ │ ├── HeaderMap.d.ts.map │ │ │ │ │ └── UnreachableCaseError.js │ │ │ │ │ ├── plugin │ │ │ │ │ ├── landingPage │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ │ └── types.js.map │ │ │ │ │ ├── usageReporting │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ ├── options.js.map │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── defaultSendOperationsAsTrace.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ │ ├── defaultSendOperationsAsTrace.d.ts.map │ │ │ │ │ │ ├── traceDetails.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── iterateOverTrace.d.ts │ │ │ │ │ │ └── traceDetails.d.ts.map │ │ │ │ │ ├── schemaIsSubgraph.d.ts │ │ │ │ │ ├── disableSuggestions │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ ├── schemaIsSubgraph.d.ts.map │ │ │ │ │ ├── drainHttpServer │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ └── inlineTrace │ │ │ │ │ │ └── index.d.ts.map │ │ │ │ │ ├── cachePolicy.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── cachePolicy.d.ts.map │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── preventCsrf.d.ts.map │ │ │ │ │ ├── preventCsrf.d.ts │ │ │ │ │ ├── internalPlugin.js.map │ │ │ │ │ ├── determineApolloConfig.d.ts │ │ │ │ │ ├── determineApolloConfig.d.ts.map │ │ │ │ │ └── errors │ │ │ │ │ └── index.d.ts.map │ │ │ ├── src │ │ │ │ ├── generated │ │ │ │ │ └── packageVersion.ts │ │ │ │ ├── utils │ │ │ │ │ ├── isDefined.ts │ │ │ │ │ └── UnreachableCaseError.ts │ │ │ │ ├── index.ts │ │ │ │ └── plugin │ │ │ │ │ └── usageReporting │ │ │ │ │ └── index.ts │ │ │ ├── errors │ │ │ │ └── package.json │ │ │ ├── express4 │ │ │ │ └── package.json │ │ │ ├── standalone │ │ │ │ └── package.json │ │ │ └── plugin │ │ │ │ ├── disabled │ │ │ │ └── package.json │ │ │ │ ├── inlineTrace │ │ │ │ └── package.json │ │ │ │ ├── cacheControl │ │ │ │ └── package.json │ │ │ │ ├── usageReporting │ │ │ │ └── package.json │ │ │ │ ├── drainHttpServer │ │ │ │ └── package.json │ │ │ │ ├── schemaReporting │ │ │ │ └── package.json │ │ │ │ ├── disableSuggestions │ │ │ │ └── package.json │ │ │ │ ├── subscriptionCallback │ │ │ │ └── package.json │ │ │ │ └── landingPage │ │ │ │ └── default │ │ │ │ └── package.json │ │ ├── cache-control-types │ │ │ └── dist │ │ │ │ ├── cjs │ │ │ │ └── package.json │ │ │ │ └── esm │ │ │ │ └── package.json │ │ ├── server-gateway-interface │ │ │ └── dist │ │ │ │ ├── cjs │ │ │ │ ├── package.json │ │ │ │ ├── index.js.map │ │ │ │ └── index.js │ │ │ │ └── esm │ │ │ │ ├── package.json │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ ├── usage-reporting-protobuf │ │ │ ├── generated │ │ │ │ ├── cjs │ │ │ │ │ └── package.json │ │ │ │ └── esm │ │ │ │ │ └── package.json │ │ │ └── src │ │ │ │ └── .editorconfig │ │ ├── protobufjs │ │ │ ├── light.d.ts │ │ │ ├── minimal.d.ts │ │ │ ├── cli │ │ │ │ ├── index.js │ │ │ │ ├── wrappers │ │ │ │ │ ├── es6.js │ │ │ │ │ ├── closure.js │ │ │ │ │ ├── commonjs.js │ │ │ │ │ └── amd.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── bin │ │ │ │ │ ├── pbjs │ │ │ │ │ └── pbts │ │ │ │ ├── targets │ │ │ │ │ ├── json.js │ │ │ │ │ ├── proto2.js │ │ │ │ │ └── proto3.js │ │ │ │ ├── pbjs.d.ts │ │ │ │ └── pbts.d.ts │ │ │ ├── index.js │ │ │ ├── light.js │ │ │ ├── ext │ │ │ │ └── debug │ │ │ │ │ └── README.md │ │ │ ├── minimal.js │ │ │ ├── google │ │ │ │ ├── protobuf │ │ │ │ │ └── source_context.proto │ │ │ │ ├── README.md │ │ │ │ └── api │ │ │ │ │ └── annotations.proto │ │ │ ├── tsconfig.json │ │ │ ├── bin │ │ │ │ ├── pbjs │ │ │ │ └── pbts │ │ │ └── src │ │ │ │ └── index.js │ │ ├── utils.withrequired │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── __tests__ │ │ │ │ │ └── tsconfig.json │ │ │ └── dist │ │ │ │ ├── index.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.d.ts.map │ │ ├── utils.isnodelike │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js.map │ │ │ │ └── index.js │ │ │ └── README.md │ │ ├── utils.fetcher │ │ │ ├── dist │ │ │ │ ├── index.js.map │ │ │ │ └── index.js │ │ │ └── src │ │ │ │ └── __tests__ │ │ │ │ └── tsconfig.json │ │ ├── utils.logger │ │ │ ├── dist │ │ │ │ ├── index.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.d.ts.map │ │ │ └── src │ │ │ │ ├── __tests__ │ │ │ │ └── tsconfig.json │ │ │ │ └── index.ts │ │ ├── utils.createhash │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ └── index.js.map │ │ │ ├── src │ │ │ │ └── __tests__ │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ ├── exports.test.ts │ │ │ │ │ └── createHash.test.ts │ │ │ └── README.md │ │ ├── utils.keyvaluecache │ │ │ ├── dist │ │ │ │ ├── KeyValueCache.js.map │ │ │ │ ├── KeyValueCache.js │ │ │ │ ├── index.js.map │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.d.ts │ │ │ │ └── KeyValueCache.d.ts │ │ │ └── src │ │ │ │ ├── __tests__ │ │ │ │ └── tsconfig.json │ │ │ │ └── index.ts │ │ ├── utils.sortast │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.d.ts.map │ │ │ └── README.md │ │ ├── utils.dropunuseddefinitions │ │ │ ├── src │ │ │ │ └── __tests__ │ │ │ │ │ └── tsconfig.json │ │ │ └── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ └── index.js.map │ │ ├── utils.printwithreducedwhitespace │ │ │ ├── src │ │ │ │ └── __tests__ │ │ │ │ │ └── tsconfig.json │ │ │ └── dist │ │ │ │ ├── index.d.ts │ │ │ │ └── index.d.ts.map │ │ ├── utils.removealiases │ │ │ ├── dist │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ └── index.js.map │ │ │ └── src │ │ │ │ └── __tests__ │ │ │ │ └── tsconfig.json │ │ ├── utils.usagereporting │ │ │ ├── dist │ │ │ │ ├── index.js.map │ │ │ │ ├── signature.d.ts │ │ │ │ ├── signature.d.ts.map │ │ │ │ ├── index.d.ts.map │ │ │ │ └── index.d.ts │ │ │ └── src │ │ │ │ ├── index.ts │ │ │ │ └── __tests__ │ │ │ │ └── tsconfig.json │ │ └── utils.stripsensitiveliterals │ │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ └── index.d.ts.map │ │ │ └── src │ │ │ └── __tests__ │ │ │ └── tsconfig.json │ ├── debug │ │ ├── node.js │ │ ├── .coveralls.yml │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── .eslintrc │ │ ├── src │ │ │ └── index.js │ │ └── component.json │ ├── long │ │ └── index.js │ ├── retry │ │ └── index.js │ ├── gopd │ │ ├── gOPD.d.ts │ │ ├── gOPD.js │ │ ├── tsconfig.json │ │ ├── index.d.ts │ │ ├── index.js │ │ └── .eslintrc │ ├── @protobufjs │ │ ├── inquire │ │ │ ├── tests │ │ │ │ └── data │ │ │ │ │ ├── array.js │ │ │ │ │ ├── emptyArray.js │ │ │ │ │ ├── emptyObject.js │ │ │ │ │ └── object.js │ │ │ ├── .npmignore │ │ │ └── index.d.ts │ │ ├── pool │ │ │ └── .npmignore │ │ ├── utf8 │ │ │ └── .npmignore │ │ └── codegen │ │ │ └── package.json │ ├── cookie-signature │ │ └── .npmignore │ ├── uuid │ │ ├── dist │ │ │ ├── bin │ │ │ │ └── uuid │ │ │ ├── esm-browser │ │ │ │ ├── nil.js │ │ │ │ ├── v3.js │ │ │ │ ├── v5.js │ │ │ │ ├── regex.js │ │ │ │ ├── native.js │ │ │ │ ├── validate.js │ │ │ │ └── version.js │ │ │ ├── esm-node │ │ │ │ ├── nil.js │ │ │ │ ├── native.js │ │ │ │ ├── v3.js │ │ │ │ ├── v5.js │ │ │ │ ├── regex.js │ │ │ │ ├── validate.js │ │ │ │ ├── version.js │ │ │ │ ├── md5.js │ │ │ │ ├── sha1.js │ │ │ │ └── rng.js │ │ │ ├── nil.js │ │ │ ├── commonjs-browser │ │ │ │ ├── nil.js │ │ │ │ ├── regex.js │ │ │ │ └── native.js │ │ │ ├── regex.js │ │ │ ├── native-browser.js │ │ │ └── native.js │ │ └── wrapper.mjs │ ├── object-inspect │ │ ├── util.inspect.js │ │ ├── example │ │ │ ├── circular.js │ │ │ ├── fn.js │ │ │ └── inspect.js │ │ ├── .nycrc │ │ └── test │ │ │ ├── holes.js │ │ │ ├── lowbyte.js │ │ │ └── undef.js │ ├── value-or-promise │ │ └── build │ │ │ ├── main │ │ │ └── index.d.ts │ │ │ └── module │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── es-errors │ │ ├── .eslintrc │ │ ├── index.d.ts │ │ ├── type.d.ts │ │ ├── uri.d.ts │ │ ├── eval.d.ts │ │ ├── index.js │ │ ├── range.d.ts │ │ ├── eval.js │ │ ├── syntax.d.ts │ │ ├── type.js │ │ ├── uri.js │ │ ├── range.js │ │ ├── ref.d.ts │ │ ├── ref.js │ │ └── syntax.js │ ├── has-proto │ │ ├── .eslintrc │ │ ├── accessor.d.ts │ │ ├── mutator.d.ts │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ ├── helpers │ │ │ └── setDunder.js │ │ └── index.js │ ├── hasown │ │ ├── .eslintrc │ │ ├── tsconfig.json │ │ ├── index.d.ts │ │ ├── index.js │ │ └── .nycrc │ ├── unpipe │ │ └── HISTORY.md │ ├── has-symbols │ │ ├── index.d.ts │ │ ├── shams.d.ts │ │ ├── .nycrc │ │ ├── tsconfig.json │ │ └── .eslintrc │ ├── setprototypeof │ │ └── index.d.ts │ ├── side-channel │ │ ├── README.md │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ └── .nycrc │ ├── es-define-property │ │ ├── index.d.ts │ │ ├── .nycrc │ │ └── .eslintrc │ ├── form-data │ │ └── lib │ │ │ ├── browser.js │ │ │ └── populate.js │ ├── utils-merge │ │ └── .npmignore │ ├── function-bind │ │ ├── index.js │ │ ├── .github │ │ │ └── SECURITY.md │ │ ├── test │ │ │ └── .eslintrc │ │ ├── .nycrc │ │ └── .eslintrc │ ├── @types │ │ ├── mime │ │ │ ├── lite.d.ts │ │ │ └── Mime.d.ts │ │ └── node │ │ │ └── assert │ │ │ └── strict.d.ts │ ├── undici-types │ │ ├── header.d.ts │ │ ├── global-origin.d.ts │ │ ├── retry-agent.d.ts │ │ ├── global-dispatcher.d.ts │ │ └── mock-errors.d.ts │ ├── asynckit │ │ └── index.js │ ├── set-function-length │ │ ├── tsconfig.json │ │ ├── env.d.ts │ │ ├── .nycrc │ │ └── index.d.ts │ ├── toidentifier │ │ └── HISTORY.md │ ├── get-intrinsic │ │ └── .nycrc │ ├── has-property-descriptors │ │ ├── .nycrc │ │ └── .eslintrc │ ├── mime-db │ │ └── index.js │ ├── qs │ │ ├── lib │ │ │ └── index.js │ │ └── .nycrc │ ├── express │ │ └── index.js │ ├── define-data-property │ │ ├── .nycrc │ │ ├── index.d.ts │ │ └── .eslintrc │ ├── inherits │ │ └── inherits.js │ ├── sha.js │ │ └── .travis.yml │ └── send │ │ └── node_modules │ │ └── encodeurl │ │ └── HISTORY.md └── package.json └── client ├── vite.config.js ├── .gitignore └── index.html /server/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/tr46/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /server/node_modules/.bin/sha.js: -------------------------------------------------------------------------------- 1 | ../sha.js/bin.js -------------------------------------------------------------------------------- /server/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/dist/bin/uuid -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/cjs/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/esm/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/call-bind/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /server/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/Maybe.mjs: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/ObjMap.mjs: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/.bin/apollo-pbjs: -------------------------------------------------------------------------------- 1 | ../@apollo/protobufjs/bin/pbjs -------------------------------------------------------------------------------- /server/node_modules/.bin/apollo-pbts: -------------------------------------------------------------------------------- 1 | ../@apollo/protobufjs/bin/pbts -------------------------------------------------------------------------------- /server/node_modules/loglevel/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /server/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/executor.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/loaders.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/PromiseOrValue.mjs: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /server/node_modules/long/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./src/long"); 2 | -------------------------------------------------------------------------------- /server/node_modules/retry/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/retry'); -------------------------------------------------------------------------------- /server/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /server/node_modules/graphql/utilities/typedQueryDocumentNode.mjs: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /server/node_modules/@apollo/cache-control-types/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/cache-control-types/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/tests/data/array.js: -------------------------------------------------------------------------------- 1 | module.exports = [1]; 2 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/tests/data/emptyArray.js: -------------------------------------------------------------------------------- 1 | module.exports = []; 2 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/tests/data/emptyObject.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/tests/data/object.js: -------------------------------------------------------------------------------- 1 | module.exports = { a: 1 }; 2 | -------------------------------------------------------------------------------- /server/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /server/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /server/node_modules/tr46/.npmignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | test/ 3 | 4 | !lib/mapping_table.json 5 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../uuid-bin'); 3 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/usage-reporting-protobuf/generated/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/usage-reporting-protobuf/generated/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/pool/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.* 2 | node_modules/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/utf8/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.* 2 | node_modules/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /server/node_modules/value-or-promise/build/main/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './ValueOrPromise'; 2 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.* 2 | node_modules/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/has-proto/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/hasown/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/nil.js: -------------------------------------------------------------------------------- 1 | export default '00000000-0000-0000-0000-000000000000'; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/nil.js: -------------------------------------------------------------------------------- 1 | export default '00000000-0000-0000-0000-000000000000'; -------------------------------------------------------------------------------- /server/node_modules/value-or-promise/build/module/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './ValueOrPromise'; 2 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const Error: ErrorConstructor; 2 | 3 | export = Error; 4 | -------------------------------------------------------------------------------- /server/node_modules/has-proto/accessor.d.ts: -------------------------------------------------------------------------------- 1 | declare function accessor(): boolean; 2 | 3 | export = accessor; -------------------------------------------------------------------------------- /server/node_modules/has-proto/mutator.d.ts: -------------------------------------------------------------------------------- 1 | declare function mutator(): boolean; 2 | 3 | export = mutator; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/light.d.ts: -------------------------------------------------------------------------------- 1 | export as namespace protobuf; 2 | export * from "./index"; 3 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/http.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=http.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/src/generated/packageVersion.ts: -------------------------------------------------------------------------------- 1 | export const packageVersion = "4.11.2"; 2 | -------------------------------------------------------------------------------- /server/node_modules/has-proto/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasProto(): boolean; 2 | 3 | export = hasProto; 4 | -------------------------------------------------------------------------------- /server/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/minimal.d.ts: -------------------------------------------------------------------------------- 1 | export as namespace protobuf; 2 | export * from "./index"; 3 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/esm/index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/context.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=context.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/graphql.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=graphql.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/plugins.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=plugins.js.map -------------------------------------------------------------------------------- /server/node_modules/es-errors/type.d.ts: -------------------------------------------------------------------------------- 1 | declare const TypeError: TypeErrorConstructor 2 | 3 | export = TypeError; 4 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/uri.d.ts: -------------------------------------------------------------------------------- 1 | declare const URIError: URIErrorConstructor; 2 | 3 | export = URIError; 4 | -------------------------------------------------------------------------------- /server/node_modules/graphql/NotSupportedTSVersion.d.ts: -------------------------------------------------------------------------------- 1 | "Package 'graphql' support only TS versions that are >=4.1.0". -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/PromiseOrValue.d.ts: -------------------------------------------------------------------------------- 1 | export declare type PromiseOrValue = Promise | T; 2 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/eval.d.ts: -------------------------------------------------------------------------------- 1 | declare const EvalError: EvalErrorConstructor; 2 | 3 | export = EvalError; 4 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/range.d.ts: -------------------------------------------------------------------------------- 1 | declare const RangeError: RangeErrorConstructor; 2 | 3 | export = RangeError; 4 | -------------------------------------------------------------------------------- /server/node_modules/has-symbols/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasNativeSymbols(): boolean; 2 | 3 | export = hasNativeSymbols; -------------------------------------------------------------------------------- /server/node_modules/has-symbols/shams.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasSymbolShams(): boolean; 2 | 3 | export = hasSymbolShams; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/constructor.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=constructor.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/landingPage/default/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/options.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=options.js.map -------------------------------------------------------------------------------- /server/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/eval.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./eval')} */ 4 | module.exports = EvalError; 5 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/syntax.d.ts: -------------------------------------------------------------------------------- 1 | declare const SyntaxError: SyntaxErrorConstructor; 2 | 3 | export = SyntaxError; 4 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/type.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./type')} */ 4 | module.exports = TypeError; 5 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/range.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./range')} */ 4 | module.exports = RangeError; 5 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/ref.d.ts: -------------------------------------------------------------------------------- 1 | declare const ReferenceError: ReferenceErrorConstructor; 2 | 3 | export = ReferenceError; 4 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/devAssert.d.ts: -------------------------------------------------------------------------------- 1 | export declare function devAssert(condition: unknown, message: string): void; 2 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/requestPipeline.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=requestPipeline.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/src/index.ts: -------------------------------------------------------------------------------- 1 | export type WithRequired = T & Required>; 2 | -------------------------------------------------------------------------------- /server/node_modules/es-errors/syntax.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./syntax')} */ 4 | module.exports = SyntaxError; 5 | -------------------------------------------------------------------------------- /server/node_modules/hasown/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | "exclude": [ 4 | "coverage", 5 | ], 6 | } 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.isnodelike/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const isNodeLike: boolean; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/executor.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/loaders.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/native.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | export default { 3 | randomUUID: crypto.randomUUID 4 | }; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | exports.pbjs = require("./pbjs"); 3 | exports.pbts = require("./pbts"); 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/index.js: -------------------------------------------------------------------------------- 1 | // full library entry point. 2 | 3 | "use strict"; 4 | module.exports = require("./src/index"); 5 | -------------------------------------------------------------------------------- /server/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./gOPD')} */ 4 | module.exports = Object.getOwnPropertyDescriptor; 5 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/Maybe.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/ObjMap.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | -------------------------------------------------------------------------------- /server/node_modules/setprototypeof/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function setPrototypeOf(o: any, proto: object | null): any; 2 | export = setPrototypeOf; 3 | -------------------------------------------------------------------------------- /server/node_modules/side-channel/README.md: -------------------------------------------------------------------------------- 1 | # side-channel 2 | Store information about any JS value in a side channel. Uses WeakMap if available. 3 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/wrappers/es6.js: -------------------------------------------------------------------------------- 1 | import $protobuf from $DEPENDENCY; 2 | 3 | $OUTPUT; 4 | 5 | export { $root as default }; 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/light.js: -------------------------------------------------------------------------------- 1 | // light library entry point. 2 | 3 | "use strict"; 4 | module.exports = require("./src/index-light"); -------------------------------------------------------------------------------- /server/node_modules/es-define-property/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const defineProperty: false | typeof Object.defineProperty; 2 | 3 | export = defineProperty; -------------------------------------------------------------------------------- /server/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | module.exports = typeof self == 'object' ? self.FormData : window.FormData; 3 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/index.d.ts: -------------------------------------------------------------------------------- 1 | import * as pbjs from "./pbjs.js"; 2 | import * as pbts from "./pbts.js"; 3 | export { pbjs, pbts }; 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/ext/debug/README.md: -------------------------------------------------------------------------------- 1 | protobufjs/ext/debug 2 | ========================= 3 | 4 | Experimental debugging extension. 5 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/incrementalDeliveryPolyfill.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=incrementalDeliveryPolyfill.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/generated/packageVersion.js: -------------------------------------------------------------------------------- 1 | export const packageVersion = "4.11.2"; 2 | //# sourceMappingURL=packageVersion.js.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/isAsyncIterable.d.cts: -------------------------------------------------------------------------------- 1 | export declare function isAsyncIterable(value: any): value is AsyncIterable; 2 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/isAsyncIterable.d.ts: -------------------------------------------------------------------------------- 1 | export declare function isAsyncIterable(value: any): value is AsyncIterable; 2 | -------------------------------------------------------------------------------- /server/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | yarn.lock 8 | coverage 9 | bower.json 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/PromiseOrValue.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/minimal.js: -------------------------------------------------------------------------------- 1 | // minimal library entry point. 2 | 3 | "use strict"; 4 | module.exports = require("./src/index-minimal"); 5 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/src/utils/isDefined.ts: -------------------------------------------------------------------------------- 1 | export function isDefined(t: T | undefined | null | void): t is T { 2 | return t != null; 3 | } 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.fetcher/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/valueMatchesCriteria.d.cts: -------------------------------------------------------------------------------- 1 | export declare function valueMatchesCriteria(value: any, criteria: any): boolean; 2 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/valueMatchesCriteria.d.ts: -------------------------------------------------------------------------------- 1 | export declare function valueMatchesCriteria(value: any, criteria: any): boolean; 2 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/v3.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import md5 from './md5.js'; 3 | const v3 = v35('v3', 0x30, md5); 4 | export default v3; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/isDefined.js: -------------------------------------------------------------------------------- 1 | export function isDefined(t) { 2 | return t != null; 3 | } 4 | //# sourceMappingURL=isDefined.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/invariant.d.ts: -------------------------------------------------------------------------------- 1 | export declare function invariant( 2 | condition: unknown, 3 | message?: string, 4 | ): asserts condition; 5 | -------------------------------------------------------------------------------- /server/node_modules/graphql/utilities/typedQueryDocumentNode.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | -------------------------------------------------------------------------------- /server/node_modules/hasown/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasOwn(o: O, p: K): o is O & Record; 2 | 3 | export = hasOwn; 4 | -------------------------------------------------------------------------------- /server/node_modules/utils-merge/.npmignore: -------------------------------------------------------------------------------- 1 | CONTRIBUTING.md 2 | Makefile 3 | docs/ 4 | examples/ 5 | reports/ 6 | test/ 7 | 8 | .jshintrc 9 | .travis.yml 10 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/v3.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import md5 from './md5.js'; 3 | const v3 = v35('v3', 0x30, md5); 4 | export default v3; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/v5.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import sha1 from './sha1.js'; 3 | const v5 = v35('v5', 0x50, sha1); 4 | export default v5; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/generated/packageVersion.d.ts: -------------------------------------------------------------------------------- 1 | export declare const packageVersion = "4.11.2"; 2 | //# sourceMappingURL=packageVersion.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/generated/packageVersion.d.ts: -------------------------------------------------------------------------------- 1 | export declare const packageVersion = "4.11.2"; 2 | //# sourceMappingURL=packageVersion.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function createHash(kind: string): import("crypto").Hash; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.fetcher/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/identityFunc.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns the first argument it receives. 3 | */ 4 | export declare function identityFunc(x: T): T; 5 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/inspect.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Used to print values in error messages. 3 | */ 4 | export declare function inspect(value: unknown): string; 5 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/v5.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import sha1 from './sha1.js'; 3 | const v5 = v35('v5', 0x50, sha1); 4 | export default v5; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/wrappers/closure.js: -------------------------------------------------------------------------------- 1 | (function($protobuf) { 2 | "use strict"; 3 | 4 | $OUTPUT; 5 | 6 | return $root; 7 | })(protobuf); 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/index.js: -------------------------------------------------------------------------------- 1 | export { ApolloServerPluginUsageReporting } from './plugin.js'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export type WithRequired = T & Required>; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/identityFunc.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns the first argument it receives. 3 | */ 4 | export function identityFunc(x) { 5 | return x; 6 | } 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.7.0", 3 | "dependencies": { 4 | "jsdoc": "^3.6.3", 5 | "minimist": "^1.2.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/wrappers/commonjs.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var $protobuf = require($DEPENDENCY); 4 | 5 | $OUTPUT; 6 | 7 | module.exports = $root; 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/cjs/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/esm/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/http.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=http.js.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from './merge-resolvers.js'; 2 | export * from './typedefs-mergers/index.js'; 3 | export * from './extensions.js'; 4 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/regex.js: -------------------------------------------------------------------------------- 1 | export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/regex.js: -------------------------------------------------------------------------------- 1 | export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/wrappers/amd.js: -------------------------------------------------------------------------------- 1 | define([$DEPENDENCY], function($protobuf) { 2 | "use strict"; 3 | 4 | $OUTPUT; 5 | 6 | return $root; 7 | }); 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server-gateway-interface/dist/cjs/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/context.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=context.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/graphql.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=graphql.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/plugins.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=plugins.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/isDefined.d.ts: -------------------------------------------------------------------------------- 1 | export declare function isDefined(t: T | undefined | null | void): t is T; 2 | //# sourceMappingURL=isDefined.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/isDefined.d.ts: -------------------------------------------------------------------------------- 1 | export declare function isDefined(t: T | undefined | null | void): t is T; 2 | //# sourceMappingURL=isDefined.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './merge-resolvers.js'; 2 | export * from './typedefs-mergers/index.js'; 3 | export * from './extensions.js'; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/astFromType.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLType, TypeNode } from 'graphql'; 2 | export declare function astFromType(type: GraphQLType): TypeNode; 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/inspect.d.cts: -------------------------------------------------------------------------------- 1 | /** 2 | * Used to print values in error messages. 3 | */ 4 | export declare function inspect(value: unknown): string; 5 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/inspect.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Used to print values in error messages. 3 | */ 4 | export declare function inspect(value: unknown): string; 5 | -------------------------------------------------------------------------------- /server/node_modules/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var implementation = require('./implementation'); 4 | 5 | module.exports = Function.prototype.bind || implementation; 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/http.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"http.js","sourceRoot":"","sources":["../../../src/externalTypes/http.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/externalTypes/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/http.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"http.js","sourceRoot":"","sources":["../../../src/externalTypes/http.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/externalTypes/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/KeyValueCache.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"KeyValueCache.js","sourceRoot":"","sources":["../src/KeyValueCache.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/index.d.cts: -------------------------------------------------------------------------------- 1 | export * from './merge-resolvers.cjs'; 2 | export * from './typedefs-mergers/index.cjs'; 3 | export * from './extensions.cjs'; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/astFromType.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLType, TypeNode } from 'graphql'; 2 | export declare function astFromType(type: GraphQLType): TypeNode; 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/isDocumentNode.d.ts: -------------------------------------------------------------------------------- 1 | import { DocumentNode } from 'graphql'; 2 | export declare function isDocumentNode(object: any): object is DocumentNode; 3 | -------------------------------------------------------------------------------- /server/node_modules/@types/mime/lite.d.ts: -------------------------------------------------------------------------------- 1 | import { default as Mime } from "./Mime"; 2 | 3 | declare const mimelite: Mime; 4 | 5 | export as namespace mimelite; 6 | 7 | export = mimelite; 8 | -------------------------------------------------------------------------------- /server/node_modules/undici-types/header.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * The header type declaration of `undici`. 3 | */ 4 | export type IncomingHttpHeaders = Record; 5 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/constructor.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=constructor.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/context.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/externalTypes/context.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/graphql.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../../src/externalTypes/graphql.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/plugins.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"plugins.js","sourceRoot":"","sources":["../../../src/externalTypes/plugins.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/landingPage/default/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/options.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=options.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/context.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/externalTypes/context.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/graphql.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"graphql.js","sourceRoot":"","sources":["../../../src/externalTypes/graphql.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/plugins.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"plugins.js","sourceRoot":"","sources":["../../../src/externalTypes/plugins.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.isnodelike/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,SAWoB,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/KeyValueCache.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=KeyValueCache.js.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/isDocumentNode.d.cts: -------------------------------------------------------------------------------- 1 | import { DocumentNode } from 'graphql'; 2 | export declare function isDocumentNode(object: any): object is DocumentNode; 3 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/Maybe.d.ts: -------------------------------------------------------------------------------- 1 | /** Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/ */ 2 | export declare type Maybe = null | undefined | T; 3 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/example/circular.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = { a: 1, b: [3, 4] }; 5 | obj.c = obj; 6 | console.log(inspect(obj)); 7 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/example/fn.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = [1, 2, function f(n) { return n + 5; }, 4]; 5 | console.log(inspect(obj)); 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package google.protobuf; 4 | 5 | message SourceContext { 6 | string file_name = 1; 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/computeCoreSchemaHash.d.ts: -------------------------------------------------------------------------------- 1 | export declare function computeCoreSchemaHash(schema: string): string; 2 | //# sourceMappingURL=computeCoreSchemaHash.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/computeCoreSchemaHash.d.ts: -------------------------------------------------------------------------------- 1 | export declare function computeCoreSchemaHash(schema: string): string; 2 | //# sourceMappingURL=computeCoreSchemaHash.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.fetcher/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/gopd/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | "compilerOptions": { 4 | "target": "es2021", 5 | }, 6 | "exclude": [ 7 | "coverage", 8 | ], 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/native.js: -------------------------------------------------------------------------------- 1 | const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); 2 | export default { 3 | randomUUID 4 | }; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/requestPipeline.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=requestPipeline.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES5", 4 | "experimentalDecorators": true, 5 | "emitDecoratorMetadata": true 6 | } 7 | } -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/constructor.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constructor.js","sourceRoot":"","sources":["../../../src/externalTypes/constructor.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/constructor.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constructor.js","sourceRoot":"","sources":["../../../src/externalTypes/constructor.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.sortast/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import { type DocumentNode } from "graphql"; 2 | export declare function sortAST(ast: DocumentNode): DocumentNode; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/mime/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var mime = require('./mime.js'); 4 | var file = process.argv[2]; 5 | var type = mime.lookup(file); 6 | 7 | process.stdout.write(type + '\n'); 8 | 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/options.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"options.js","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/options.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/options.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"options.js","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/options.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.dropunuseddefinitions/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/asynckit/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | { 3 | parallel : require('./parallel.js'), 4 | serial : require('./serial.js'), 5 | serialOrdered : require('./serialOrdered.js') 6 | }; 7 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/printPathArray.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Build a string describing the path. 3 | */ 4 | export declare function printPathArray( 5 | path: ReadonlyArray, 6 | ): string; 7 | -------------------------------------------------------------------------------- /server/node_modules/set-function-length/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | "compilerOptions": { 4 | "target": "es2021", 5 | }, 6 | "exclude": [ 7 | "coverage", 8 | ], 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/toidentifier/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.1 / 2021-11-14 2 | ================== 3 | 4 | * pref: enable strict mode 5 | 6 | 1.0.0 / 2018-07-09 7 | ================== 8 | 9 | * Initial release 10 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/validate.js: -------------------------------------------------------------------------------- 1 | import REGEX from './regex.js'; 2 | 3 | function validate(uuid) { 4 | return typeof uuid === 'string' && REGEX.test(uuid); 5 | } 6 | 7 | export default validate; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/validate.js: -------------------------------------------------------------------------------- 1 | import REGEX from './regex.js'; 2 | 3 | function validate(uuid) { 4 | return typeof uuid === 'string' && REGEX.test(uuid); 5 | } 6 | 7 | export default validate; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/requestPipeline.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"requestPipeline.js","sourceRoot":"","sources":["../../../src/externalTypes/requestPipeline.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/requestPipeline.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"requestPipeline.js","sourceRoot":"","sources":["../../../src/externalTypes/requestPipeline.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/src/index.ts: -------------------------------------------------------------------------------- 1 | export interface Logger { 2 | debug(message?: any): void; 3 | info(message?: any): void; 4 | warn(message?: any): void; 5 | error(message?: any): void; 6 | } 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.printwithreducedwhitespace/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [{ "path": "../../" }] 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.removealiases/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import { type DocumentNode } from "graphql"; 2 | export declare function removeAliases(ast: DocumentNode): DocumentNode; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/call-bind/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/function-bind/.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security 2 | 3 | Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. 4 | -------------------------------------------------------------------------------- /server/node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/cachePolicy.d.ts: -------------------------------------------------------------------------------- 1 | import type { CachePolicy } from '@apollo/cache-control-types'; 2 | export declare function newCachePolicy(): CachePolicy; 3 | //# sourceMappingURL=cachePolicy.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/incrementalDeliveryPolyfill.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=incrementalDeliveryPolyfill.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/landingPage/default/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../src/plugin/landingPage/default/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/UnreachableCaseError.d.ts: -------------------------------------------------------------------------------- 1 | export declare class UnreachableCaseError extends Error { 2 | constructor(val: never); 3 | } 4 | //# sourceMappingURL=UnreachableCaseError.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/cachePolicy.d.ts: -------------------------------------------------------------------------------- 1 | import type { CachePolicy } from '@apollo/cache-control-types'; 2 | export declare function newCachePolicy(): CachePolicy; 3 | //# sourceMappingURL=cachePolicy.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/landingPage/default/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../src/plugin/landingPage/default/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/UnreachableCaseError.d.ts: -------------------------------------------------------------------------------- 1 | export declare class UnreachableCaseError extends Error { 2 | constructor(val: never); 3 | } 4 | //# sourceMappingURL=UnreachableCaseError.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/get-implementing-types.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | export declare function getImplementingTypes(interfaceName: string, schema: GraphQLSchema): string[]; 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/get-implementing-types.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | export declare function getImplementingTypes(interfaceName: string, schema: GraphQLSchema): string[]; 3 | -------------------------------------------------------------------------------- /server/node_modules/get-intrinsic/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/gopd/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function gOPD(obj: O, prop: K): PropertyDescriptor | undefined; 2 | 3 | declare const fn: typeof gOPD | undefined | null; 4 | 5 | export = fn; -------------------------------------------------------------------------------- /server/node_modules/has-proto/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | "exclude": [ 4 | "coverage", 5 | ], 6 | "compilerOptions": { 7 | "typeRoots": [ 8 | "types", 9 | ], 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /server/node_modules/es-define-property/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/error/index.mjs: -------------------------------------------------------------------------------- 1 | export { GraphQLError, printError, formatError } from './GraphQLError.mjs'; 2 | export { syntaxError } from './syntaxError.mjs'; 3 | export { locatedError } from './locatedError.mjs'; 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,QAAQ,EAAE,IAAI,CAO9D"} -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/devAssert.mjs: -------------------------------------------------------------------------------- 1 | export function devAssert(condition, message) { 2 | const booleanCondition = Boolean(condition); 3 | 4 | if (!booleanCondition) { 5 | throw new Error(message); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/has-property-descriptors/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/side-channel/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = tab 8 | indent_size = 2 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/generated/packageVersion.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":";;;AAAa,QAAA,cAAc,GAAG,QAAQ,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/index.d.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServer } from './ApolloServer.js'; 2 | export { HeaderMap } from './utils/HeaderMap.js'; 3 | export * from './externalTypes/index.js'; 4 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/index.d.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServer } from './ApolloServer.js'; 2 | export { HeaderMap } from './utils/HeaderMap.js'; 3 | export * from './externalTypes/index.js'; 4 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/index.js: -------------------------------------------------------------------------------- 1 | export { ApolloServer } from './ApolloServer.js'; 2 | export { HeaderMap } from './utils/HeaderMap.js'; 3 | export * from './externalTypes/index.js'; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.printwithreducedwhitespace/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import { type DocumentNode } from "graphql"; 2 | export declare function printWithReducedWhitespace(ast: DocumentNode): string; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qFAAoF;AAA3E,kJAAA,+BAA+B,OAAA;AAKxC,yCAAsD;AAA7C,oHAAA,uBAAuB,OAAA"} -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/toError.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Sometimes a non-error is thrown, wrap it as an Error instance to ensure a consistent Error interface. 3 | */ 4 | export declare function toError(thrownValue: unknown): Error; 5 | -------------------------------------------------------------------------------- /server/node_modules/has-symbols/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | "compilerOptions": { 4 | "target": "ES2021", 5 | "maxNodeModuleJsDepth": 0, 6 | }, 7 | "exclude": [ 8 | "coverage" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/generated/packageVersion.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,WAAW,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/schemaIsSubgraph.d.ts: -------------------------------------------------------------------------------- 1 | import { type GraphQLSchema } from 'graphql'; 2 | export declare function schemaIsSubgraph(schema: GraphQLSchema): boolean; 3 | //# sourceMappingURL=schemaIsSubgraph.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/generated/packageVersion.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,WAAW,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/schemaIsSubgraph.d.ts: -------------------------------------------------------------------------------- 1 | import { type GraphQLSchema } from 'graphql'; 2 | export declare function schemaIsSubgraph(schema: GraphQLSchema): boolean; 3 | //# sourceMappingURL=schemaIsSubgraph.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/src/index.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServer } from './ApolloServer.js'; 2 | export { HeaderMap } from './utils/HeaderMap.js'; 3 | // Note that this is purely a type export. 4 | export * from './externalTypes/index.js'; 5 | -------------------------------------------------------------------------------- /server/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | language: node_js 3 | node_js: 4 | - "6" 5 | - "5" 6 | - "4" 7 | 8 | install: 9 | - make node_modules 10 | 11 | script: 12 | - make lint 13 | - make test 14 | - make coveralls 15 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/google/README.md: -------------------------------------------------------------------------------- 1 | This folder contains stripped and pre-parsed definitions of common Google types. These files are not used by protobuf.js directly but are here so you can use or include them where required. 2 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/index.ts"],"names":[],"mappings":";;;AAAA,yCAA+D;AAAtD,6HAAA,gCAAgC,OAAA"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/generated/packageVersion.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../../../src/generated/packageVersion.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,cAAc,GAAG,QAAQ,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/undici-types/global-origin.d.ts: -------------------------------------------------------------------------------- 1 | export { 2 | setGlobalOrigin, 3 | getGlobalOrigin 4 | } 5 | 6 | declare function setGlobalOrigin(origin: string | URL | undefined): void; 7 | declare function getGlobalOrigin(): URL | undefined; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/nil.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = '00000000-0000-0000-0000-000000000000'; 8 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/incrementalDeliveryPolyfill.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"incrementalDeliveryPolyfill.js","sourceRoot":"","sources":["../../../src/externalTypes/incrementalDeliveryPolyfill.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/incrementalDeliveryPolyfill.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"incrementalDeliveryPolyfill.js","sourceRoot":"","sources":["../../../src/externalTypes/incrementalDeliveryPolyfill.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/isDocumentNode.js: -------------------------------------------------------------------------------- 1 | import { Kind } from 'graphql'; 2 | export function isDocumentNode(object) { 3 | return object && typeof object === 'object' && 'kind' in object && object.kind === Kind.DOCUMENT; 4 | } 5 | -------------------------------------------------------------------------------- /server/node_modules/es-define-property/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "new-cap": ["error", { 8 | "capIsNewExceptions": [ 9 | "GetIntrinsic", 10 | ], 11 | }], 12 | }, 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isPromise.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if the value acts like a Promise, i.e. has a "then" function, 3 | * otherwise returns false. 4 | */ 5 | export declare function isPromise(value: any): value is Promise; 6 | -------------------------------------------------------------------------------- /server/node_modules/graphql/language/printer.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTNode } from './ast'; 2 | /** 3 | * Converts an AST into a string, using one set of reasonable 4 | * formatting rules. 5 | */ 6 | export declare function print(ast: ASTNode): string; 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qDAAiD;AAAxC,+GAAA,YAAY,OAAA;AACrB,qDAAiD;AAAxC,yGAAA,SAAS,OAAA;AAElB,2DAAyC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/isDefined.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isDefined.js","sourceRoot":"","sources":["../../../src/utils/isDefined.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,SAAS,CAAI,CAA8B;IACzD,OAAO,CAAC,IAAI,IAAI,CAAC;AACnB,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.dropunuseddefinitions/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import { type DocumentNode } from "graphql"; 2 | export declare function dropUnusedDefinitions(ast: DocumentNode, operationName: string): DocumentNode; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/dist/signature.d.ts: -------------------------------------------------------------------------------- 1 | import type { DocumentNode } from "graphql"; 2 | export declare function usageReportingSignature(ast: DocumentNode, operationName: string): string; 3 | //# sourceMappingURL=signature.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/forEachField.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IFieldIteratorFn } from './Interfaces.cjs'; 3 | export declare function forEachField(schema: GraphQLSchema, fn: IFieldIteratorFn): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/forEachField.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IFieldIteratorFn } from './Interfaces.js'; 3 | export declare function forEachField(schema: GraphQLSchema, fn: IFieldIteratorFn): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/has-symbols/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-statements-per-line": [2, { "max": 2 }], 8 | "no-magic-numbers": 0, 9 | "multiline-comment-style": 0, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/cachePolicy.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cachePolicy.d.ts","sourceRoot":"","sources":["../../src/cachePolicy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAa,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAE1E,wBAAgB,cAAc,IAAI,WAAW,CA8B5C"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/urlForHttpServer.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import type { Server } from 'http'; 3 | export declare function urlForHttpServer(httpServer: Server): string; 4 | //# sourceMappingURL=urlForHttpServer.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/cachePolicy.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cachePolicy.d.ts","sourceRoot":"","sources":["../../src/cachePolicy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAa,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAE1E,wBAAgB,cAAc,IAAI,WAAW,CA8B5C"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,cAAc,0BAA0B,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/UnreachableCaseError.js: -------------------------------------------------------------------------------- 1 | export class UnreachableCaseError extends Error { 2 | constructor(val) { 3 | super(`Unreachable case: ${val}`); 4 | } 5 | } 6 | //# sourceMappingURL=UnreachableCaseError.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/urlForHttpServer.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import type { Server } from 'http'; 3 | export declare function urlForHttpServer(httpServer: Server): string; 4 | //# sourceMappingURL=urlForHttpServer.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.sortast/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,YAAY,EAUlB,MAAM,SAAS,CAAC;AAQjB,wBAAgB,OAAO,CAAC,GAAG,EAAE,YAAY,GAAG,YAAY,CAwCvD"} -------------------------------------------------------------------------------- /server/node_modules/loglevel/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "loglevel", 3 | "version": "1.9.2", 4 | "main": "dist/loglevel.min.js", 5 | "dependencies": {}, 6 | "ignore": [ 7 | "**/.*", 8 | "node_modules", 9 | "components" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,cAAc,0BAA0B,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/isDefined.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isDefined.js","sourceRoot":"","sources":["../../../src/utils/isDefined.ts"],"names":[],"mappings":";;;AAAA,SAAgB,SAAS,CAAI,CAA8B;IACzD,OAAO,CAAC,IAAI,IAAI,CAAC;AACnB,CAAC;AAFD,8BAEC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,cAAc,0BAA0B,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/internalPlugin.js: -------------------------------------------------------------------------------- 1 | export function internalPlugin(p) { 2 | return p; 3 | } 4 | export function pluginIsInternal(plugin) { 5 | return '__internal_plugin_id__' in plugin; 6 | } 7 | //# sourceMappingURL=internalPlugin.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export interface Logger { 2 | debug(message?: any): void; 3 | info(message?: any): void; 4 | warn(message?: any): void; 5 | error(message?: any): void; 6 | } 7 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.removealiases/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,YAAY,EAAyB,MAAM,SAAS,CAAC;AAEnE,wBAAgB,aAAa,CAAC,GAAG,EAAE,YAAY,GAAG,YAAY,CAO7D"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/selectionSets.js: -------------------------------------------------------------------------------- 1 | import { parse } from 'graphql'; 2 | export function parseSelectionSet(selectionSet, options) { 3 | const query = parse(selectionSet, options).definitions[0]; 4 | return query.selectionSet; 5 | } 6 | -------------------------------------------------------------------------------- /server/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "node": true 5 | }, 6 | "rules": { 7 | "no-console": 0, 8 | "no-empty": [1, { "allowEmptyCatch": true }] 9 | }, 10 | "extends": "eslint:recommended" 11 | } 12 | -------------------------------------------------------------------------------- /server/node_modules/form-data/lib/populate.js: -------------------------------------------------------------------------------- 1 | // populates missing values 2 | module.exports = function(dst, src) { 3 | 4 | Object.keys(src).forEach(function(prop) 5 | { 6 | dst[prop] = dst[prop] || src[prop]; 7 | }); 8 | 9 | return dst; 10 | }; 11 | -------------------------------------------------------------------------------- /server/node_modules/function-bind/test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-bracket-newline": 0, 4 | "array-element-newline": 0, 5 | "max-statements-per-line": [2, { "max": 2 }], 6 | "no-invalid-this": 0, 7 | "no-magic-numbers": 0, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/toObjMap.d.ts: -------------------------------------------------------------------------------- 1 | import type { Maybe } from './Maybe'; 2 | import type { ReadOnlyObjMap, ReadOnlyObjMapLike } from './ObjMap'; 3 | export declare function toObjMap( 4 | obj: Maybe>, 5 | ): ReadOnlyObjMap; 6 | -------------------------------------------------------------------------------- /server/node_modules/hasown/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var call = Function.prototype.call; 4 | var $hasOwn = Object.prototype.hasOwnProperty; 5 | var bind = require('function-bind'); 6 | 7 | /** @type {import('.')} */ 8 | module.exports = bind.call(call, $hasOwn); 9 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/commonjs-browser/nil.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = '00000000-0000-0000-0000-000000000000'; 8 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/bin/pbjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var path = require("path"), 3 | cli = require(path.join(__dirname, "..", "pbjs.js")); 4 | var ret = cli.main(process.argv.slice(2)); 5 | if (typeof ret === 'number') 6 | process.exit(ret); 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/bin/pbts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var path = require("path"), 3 | cli = require(path.join(__dirname, "..", "pbts.js")); 4 | var ret = cli.main(process.argv.slice(2)); 5 | if (typeof ret === 'number') 6 | process.exit(ret); 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/generated/packageVersion.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.packageVersion = void 0; 4 | exports.packageVersion = "4.11.2"; 5 | //# sourceMappingURL=packageVersion.js.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/extractExtensionsFromSchema.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { SchemaExtensions } from './types.cjs'; 3 | export declare function extractExtensionsFromSchema(schema: GraphQLSchema): SchemaExtensions; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/extractExtensionsFromSchema.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { SchemaExtensions } from './types.js'; 3 | export declare function extractExtensionsFromSchema(schema: GraphQLSchema): SchemaExtensions; 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/bin/pbjs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var path = require("path"), 3 | cli = require(path.join(__dirname, "..", "cli", "pbjs.js")); 4 | var ret = cli.main(process.argv.slice(2)); 5 | if (typeof ret === 'number') 6 | process.exit(ret); 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/bin/pbts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var path = require("path"), 3 | cli = require(path.join(__dirname, "..", "cli", "pbts.js")); 4 | var ret = cli.main(process.argv.slice(2)); 5 | if (typeof ret === 'number') 6 | process.exit(ret); 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/disableSuggestions/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { ApolloServerPlugin } from '../../externalTypes/index.js'; 2 | export declare function ApolloServerPluginDisableSuggestions(): ApolloServerPlugin; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/UnreachableCaseError.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"UnreachableCaseError.d.ts","sourceRoot":"","sources":["../../../src/utils/UnreachableCaseError.ts"],"names":[],"mappings":"AAKA,qBAAa,oBAAqB,SAAQ,KAAK;gBACjC,GAAG,EAAE,KAAK;CAGvB"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/computeCoreSchemaHash.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"computeCoreSchemaHash.d.ts","sourceRoot":"","sources":["../../../src/utils/computeCoreSchemaHash.ts"],"names":[],"mappings":"AAMA,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAE5D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/disableSuggestions/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { ApolloServerPlugin } from '../../externalTypes/index.js'; 2 | export declare function ApolloServerPluginDisableSuggestions(): ApolloServerPlugin; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/UnreachableCaseError.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"UnreachableCaseError.d.ts","sourceRoot":"","sources":["../../../src/utils/UnreachableCaseError.ts"],"names":[],"mappings":"AAKA,qBAAa,oBAAqB,SAAQ,KAAK;gBACjC,GAAG,EAAE,KAAK;CAGvB"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/computeCoreSchemaHash.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"computeCoreSchemaHash.d.ts","sourceRoot":"","sources":["../../../src/utils/computeCoreSchemaHash.ts"],"names":[],"mappings":"AAMA,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAE5D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,mEAAkE;AAAzD,gIAAA,sBAAsB,OAAA;AAC/B,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA;AACzB,+DAA8D;AAArD,4HAAA,oBAAoB,OAAA"} -------------------------------------------------------------------------------- /server/node_modules/@types/node/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module "assert/strict" { 2 | import { strict } from "node:assert"; 3 | export = strict; 4 | } 5 | declare module "node:assert/strict" { 6 | import { strict } from "node:assert"; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/groupBy.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Groups array items into a Map, given a function to produce grouping key. 3 | */ 4 | export declare function groupBy( 5 | list: ReadonlyArray, 6 | keyFn: (item: T) => K, 7 | ): Map>; 8 | -------------------------------------------------------------------------------- /server/node_modules/side-channel/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-lines-per-function": 0, 8 | "multiline-comment-style": 1, 9 | "new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }], 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/targets/json.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = json_target; 3 | 4 | json_target.description = "JSON representation"; 5 | 6 | function json_target(root, options, callback) { 7 | callback(null, JSON.stringify(root, null, 2)); 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/src/__tests__/exports.test.ts: -------------------------------------------------------------------------------- 1 | import * as allExports from ".."; 2 | 3 | it("exports hashing functions", () => { 4 | expect(Object.keys(allExports).length).toBe(1); 5 | expect(typeof allExports.createHash).toBe("function"); 6 | }); 7 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.printwithreducedwhitespace/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgB,KAAK,YAAY,EAAwB,MAAM,SAAS,CAAC;AAKhF,wBAAgB,0BAA0B,CAAC,GAAG,EAAE,YAAY,GAAG,MAAM,CA2BpE"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/addTypes.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema, GraphQLNamedType, GraphQLDirective } from 'graphql'; 2 | export declare function addTypes(schema: GraphQLSchema, newTypesOrDirectives: Array): GraphQLSchema; 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/addTypes.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema, GraphQLNamedType, GraphQLDirective } from 'graphql'; 2 | export declare function addTypes(schema: GraphQLSchema, newTypesOrDirectives: Array): GraphQLSchema; 3 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/forEachDefaultValue.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IDefaultValueIteratorFn } from './Interfaces.js'; 3 | export declare function forEachDefaultValue(schema: GraphQLSchema, fn: IDefaultValueIteratorFn): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * Copyright(c) 2015-2022 Douglas Christopher Wilson 5 | * MIT Licensed 6 | */ 7 | 8 | /** 9 | * Module exports. 10 | */ 11 | 12 | module.exports = require('./db.json') 13 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.withrequired/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,CAAC,IAAI,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/forEachDefaultValue.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IDefaultValueIteratorFn } from './Interfaces.cjs'; 3 | export declare function forEachDefaultValue(schema: GraphQLSchema, fn: IDefaultValueIteratorFn): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/selectionSets.d.ts: -------------------------------------------------------------------------------- 1 | import { SelectionSetNode } from 'graphql'; 2 | import { GraphQLParseOptions } from './Interfaces.js'; 3 | export declare function parseSelectionSet(selectionSet: string, options?: GraphQLParseOptions): SelectionSetNode; 4 | -------------------------------------------------------------------------------- /server/node_modules/has-property-descriptors/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "id-length": 0, 9 | "new-cap": [2, { 10 | "capIsNewExceptions": ["GetIntrinsic"], 11 | }], 12 | }, 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/isDefined.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isDefined.d.ts","sourceRoot":"","sources":["../../../src/utils/isDefined.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,CAEnE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/isDefined.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isDefined.d.ts","sourceRoot":"","sources":["../../../src/utils/isDefined.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,CAEnE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/errors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/errors", 3 | "type": "module", 4 | "main": "../dist/cjs/errors/index.js", 5 | "module": "../dist/esm/errors/index.js", 6 | "types": "../dist/esm/errors/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/isAsyncIterable.js: -------------------------------------------------------------------------------- 1 | export function isAsyncIterable(value) { 2 | return (typeof value === 'object' && 3 | value != null && 4 | Symbol.asyncIterator in value && 5 | typeof value[Symbol.asyncIterator] === 'function'); 6 | } 7 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getResolversFromSchema.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolvers } from './Interfaces.js'; 3 | export declare function getResolversFromSchema(schema: GraphQLSchema, includeDefaultMergedResolver?: boolean): IResolvers; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/selectionSets.d.cts: -------------------------------------------------------------------------------- 1 | import { SelectionSetNode } from 'graphql'; 2 | import { GraphQLParseOptions } from './Interfaces.cjs'; 3 | export declare function parseSelectionSet(selectionSet: string, options?: GraphQLParseOptions): SelectionSetNode; 4 | -------------------------------------------------------------------------------- /server/node_modules/graphql/language/printString.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Prints a string as a GraphQL StringValue literal. Replaces control characters 3 | * and excluded characters (" U+0022 and \\ U+005C) with escape sequences. 4 | */ 5 | export declare function printString(str: string): string; 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.dropunuseddefinitions/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAsB,MAAM,SAAS,CAAC;AAOhE,wBAAgB,qBAAqB,CACnC,GAAG,EAAE,YAAY,EACjB,aAAa,EAAE,MAAM,GACpB,YAAY,CAQd"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/README.md: -------------------------------------------------------------------------------- 1 | Check API Reference for more information about this package; 2 | https://www.graphql-tools.com/docs/api/modules/merge_src 3 | 4 | You can also learn more about Schema Merging in this chapter; 5 | https://www.graphql-tools.com/docs/schema-merging 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/extendResolversFromInterfaces.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolvers } from '@graphql-tools/utils'; 3 | export declare function extendResolversFromInterfaces(schema: GraphQLSchema, resolvers: IResolvers): IResolvers; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/extendResolversFromInterfaces.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolvers } from '@graphql-tools/utils'; 3 | export declare function extendResolversFromInterfaces(schema: GraphQLSchema, resolvers: IResolvers): IResolvers; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getResolversFromSchema.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolvers } from './Interfaces.cjs'; 3 | export declare function getResolversFromSchema(schema: GraphQLSchema, includeDefaultMergedResolver?: boolean): IResolvers; 4 | -------------------------------------------------------------------------------- /server/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var stringify = require('./stringify'); 4 | var parse = require('./parse'); 5 | var formats = require('./formats'); 6 | 7 | module.exports = { 8 | formats: formats, 9 | parse: parse, 10 | stringify: stringify 11 | }; 12 | -------------------------------------------------------------------------------- /server/node_modules/set-function-length/env.d.ts: -------------------------------------------------------------------------------- 1 | declare const env: { 2 | __proto__: null, 3 | boundFnsHaveConfigurableLengths: boolean; 4 | boundFnsHaveWritableLengths: boolean; 5 | functionsHaveConfigurableLengths: boolean; 6 | functionsHaveWritableLengths: boolean; 7 | }; 8 | 9 | export = env; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-browser/version.js: -------------------------------------------------------------------------------- 1 | import validate from './validate.js'; 2 | 3 | function version(uuid) { 4 | if (!validate(uuid)) { 5 | throw TypeError('Invalid UUID'); 6 | } 7 | 8 | return parseInt(uuid.slice(14, 15), 16); 9 | } 10 | 11 | export default version; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/version.js: -------------------------------------------------------------------------------- 1 | import validate from './validate.js'; 2 | 3 | function version(uuid) { 4 | if (!validate(uuid)) { 5 | throw TypeError('Invalid UUID'); 6 | } 7 | 8 | return parseInt(uuid.slice(14, 15), 16); 9 | } 10 | 11 | export default version; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/google/api/annotations.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package google.api; 4 | 5 | import "google/api/http.proto"; 6 | import "google/protobuf/descriptor.proto"; 7 | 8 | extend google.protobuf.MethodOptions { 9 | 10 | HttpRule http = 72295728; 11 | } -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/computeCoreSchemaHash.js: -------------------------------------------------------------------------------- 1 | import { createHash } from '@apollo/utils.createhash'; 2 | export function computeCoreSchemaHash(schema) { 3 | return createHash('sha256').update(schema).digest('hex'); 4 | } 5 | //# sourceMappingURL=computeCoreSchemaHash.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/express4/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/express4", 3 | "type": "module", 4 | "main": "../dist/cjs/express4/index.js", 5 | "module": "../dist/esm/express4/index.js", 6 | "types": "../dist/esm/express4/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.stripsensitiveliterals/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { DocumentNode } from "graphql"; 2 | export declare function stripSensitiveLiterals(ast: DocumentNode, options?: { 3 | hideListAndObjectLiterals?: boolean; 4 | }): DocumentNode; 5 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/dist/signature.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"signature.d.ts","sourceRoot":"","sources":["../src/signature.ts"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAE5C,wBAAgB,uBAAuB,CACrC,GAAG,EAAE,YAAY,EACjB,aAAa,EAAE,MAAM,GACpB,MAAM,CAUR"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/AccumulatorMap.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * ES6 Map with additional `add` method to accumulate items. 3 | */ 4 | export declare class AccumulatorMap extends Map> { 5 | get [Symbol.toStringTag](): string; 6 | add(key: K, item: T): void; 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isObjectLike.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Return true if `value` is object-like. A value is object-like if it's not 3 | * `null` and has a `typeof` result of "object". 4 | */ 5 | export function isObjectLike(value) { 6 | return typeof value == 'object' && value !== null; 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/disableSuggestions/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/disableSuggestions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAGvE,wBAAgB,oCAAoC,IAAI,kBAAkB,CAmBzE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/isDefined.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isDefined = void 0; 4 | function isDefined(t) { 5 | return t != null; 6 | } 7 | exports.isDefined = isDefined; 8 | //# sourceMappingURL=isDefined.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/disableSuggestions/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/disableSuggestions/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAGvE,wBAAgB,oCAAoC,IAAI,kBAAkB,CAmBzE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/standalone/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/standalone", 3 | "type": "module", 4 | "main": "../dist/cjs/standalone/index.js", 5 | "module": "../dist/esm/standalone/index.js", 6 | "types": "../dist/esm/standalone/index.d.ts", 7 | "sideEffects": false 8 | } -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.isnodelike/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAa,QAAA,UAAU,GACrB,OAAO,OAAO,KAAK,QAAQ;IAC3B,OAAO;IAKP,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,QAAQ;IAGhB,OAAO,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,QAAQ,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [ 5 | { 6 | "path": "../../" 7 | }, 8 | { 9 | "path": "../../../logger" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/AccumulatorMap.d.cts: -------------------------------------------------------------------------------- 1 | /** 2 | * ES6 Map with additional `add` method to accumulate items. 3 | */ 4 | export declare class AccumulatorMap extends Map> { 5 | get [Symbol.toStringTag](): string; 6 | add(key: K, item: T): void; 7 | } 8 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/implementsAbstractType.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLType, GraphQLSchema } from 'graphql'; 2 | import { Maybe } from './types.js'; 3 | export declare function implementsAbstractType(schema: GraphQLSchema, typeA: Maybe, typeB: Maybe): boolean; 4 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isObjectLike.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Return true if `value` is object-like. A value is object-like if it's not 3 | * `null` and has a `typeof` result of "object". 4 | */ 5 | export declare function isObjectLike(value: unknown): value is { 6 | [key: string]: unknown; 7 | }; 8 | -------------------------------------------------------------------------------- /server/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "dist" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/undici-types/retry-agent.d.ts: -------------------------------------------------------------------------------- 1 | import Dispatcher from './dispatcher' 2 | import RetryHandler from './retry-handler' 3 | 4 | export default RetryAgent 5 | 6 | declare class RetryAgent extends Dispatcher { 7 | constructor(dispatcher: Dispatcher, options?: RetryHandler.RetryOptions) 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/schemaIsSubgraph.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"schemaIsSubgraph.d.ts","sourceRoot":"","sources":["../../../src/plugin/schemaIsSubgraph.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAInB,MAAM,SAAS,CAAC;AAiBjB,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO,CAkB/D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/resolvable.d.ts: -------------------------------------------------------------------------------- 1 | export type Resolvable = Promise & { 2 | resolve: (t: T) => void; 3 | reject: (e: any) => void; 4 | }; 5 | declare const _default: () => Resolvable; 6 | export default _default; 7 | //# sourceMappingURL=resolvable.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/urlForHttpServer.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"urlForHttpServer.d.ts","sourceRoot":"","sources":["../../../src/utils/urlForHttpServer.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAInC,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAgB3D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/schemaIsSubgraph.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"schemaIsSubgraph.d.ts","sourceRoot":"","sources":["../../../src/plugin/schemaIsSubgraph.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAInB,MAAM,SAAS,CAAC;AAiBjB,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO,CAkB/D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/resolvable.d.ts: -------------------------------------------------------------------------------- 1 | export type Resolvable = Promise & { 2 | resolve: (t: T) => void; 3 | reject: (e: any) => void; 4 | }; 5 | declare const _default: () => Resolvable; 6 | export default _default; 7 | //# sourceMappingURL=resolvable.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/urlForHttpServer.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"urlForHttpServer.d.ts","sourceRoot":"","sources":["../../../src/utils/urlForHttpServer.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAInC,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAgB3D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AACpF,YAAY,EACV,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/fixSchemaAst.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema, BuildSchemaOptions } from 'graphql'; 2 | import { SchemaPrintOptions } from './types.cjs'; 3 | export declare function fixSchemaAst(schema: GraphQLSchema, options: BuildSchemaOptions & SchemaPrintOptions): GraphQLSchema; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/fixSchemaAst.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema, BuildSchemaOptions } from 'graphql'; 2 | import { SchemaPrintOptions } from './types.js'; 3 | export declare function fixSchemaAst(schema: GraphQLSchema, options: BuildSchemaOptions & SchemaPrintOptions): GraphQLSchema; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/implementsAbstractType.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLType, GraphQLSchema } from 'graphql'; 2 | import { Maybe } from './types.cjs'; 3 | export declare function implementsAbstractType(schema: GraphQLSchema, typeA: Maybe, typeB: Maybe): boolean; 4 | -------------------------------------------------------------------------------- /server/node_modules/express/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * express 3 | * Copyright(c) 2009-2013 TJ Holowaychuk 4 | * Copyright(c) 2013 Roman Shtylman 5 | * Copyright(c) 2014-2015 Douglas Christopher Wilson 6 | * MIT Licensed 7 | */ 8 | 9 | 'use strict'; 10 | 11 | module.exports = require('./lib/express'); 12 | -------------------------------------------------------------------------------- /server/node_modules/gopd/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | var $gOPD = require('./gOPD'); 5 | 6 | if ($gOPD) { 7 | try { 8 | $gOPD([], 'length'); 9 | } catch (e) { 10 | // IE 8 has a broken gOPD 11 | $gOPD = null; 12 | } 13 | } 14 | 15 | module.exports = $gOPD; 16 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/printPathArray.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Build a string describing the path. 3 | */ 4 | export function printPathArray(path) { 5 | return path 6 | .map((key) => 7 | typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key, 8 | ) 9 | .join(''); 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/MaxIntrospectionDepthRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { ASTValidationContext } from '../ValidationContext'; 3 | export declare function MaxIntrospectionDepthRule( 4 | context: ASTValidationContext, 5 | ): ASTVisitor; 6 | -------------------------------------------------------------------------------- /server/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/value-or-promise/build/module/index.js: -------------------------------------------------------------------------------- 1 | export * from './ValueOrPromise'; 2 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQyJ9 -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/README.md: -------------------------------------------------------------------------------- 1 | Check API Reference for more information about this package; 2 | https://www.graphql-tools.com/docs/api/modules/schema_src 3 | 4 | You can also learn more about Generating Executable Schemas in this chapter; 5 | https://www.graphql-tools.com/docs/generate-schema 6 | -------------------------------------------------------------------------------- /server/node_modules/function-bind/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/invariant.mjs: -------------------------------------------------------------------------------- 1 | export function invariant(condition, message) { 2 | const booleanCondition = Boolean(condition); 3 | 4 | if (!booleanCondition) { 5 | throw new Error( 6 | message != null ? message : 'Unexpected invariant triggered.', 7 | ); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/side-channel/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/UnreachableCaseError.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"UnreachableCaseError.js","sourceRoot":"","sources":["../../../src/utils/UnreachableCaseError.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,oBAAqB,SAAQ,KAAK;IAC7C,YAAY,GAAU;QACpB,KAAK,CAAC,qBAAqB,GAAG,EAAE,CAAC,CAAC;IACpC,CAAC;CACF"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/checkForResolveTypeResolver.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { ValidatorBehavior } from '@graphql-tools/utils'; 3 | export declare function checkForResolveTypeResolver(schema: GraphQLSchema, requireResolversForResolveType?: ValidatorBehavior): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/checkForResolveTypeResolver.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { ValidatorBehavior } from '@graphql-tools/utils'; 3 | export declare function checkForResolveTypeResolver(schema: GraphQLSchema, requireResolversForResolveType?: ValidatorBehavior): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/call-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "id-length": 0, 9 | "new-cap": [2, { 10 | "capIsNewExceptions": [ 11 | "GetIntrinsic", 12 | ], 13 | }], 14 | "no-magic-numbers": 0, 15 | }, 16 | } 17 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/identityFunc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | exports.identityFunc = identityFunc; 7 | 8 | /** 9 | * Returns the first argument it receives. 10 | */ 11 | function identityFunc(x) { 12 | return x; 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/memoize3.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Memoizes the provided three-argument function. 3 | */ 4 | export declare function memoize3< 5 | A1 extends object, 6 | A2 extends object, 7 | A3 extends object, 8 | R, 9 | >(fn: (a1: A1, a2: A2, a3: A3) => R): (a1: A1, a2: A2, a3: A3) => R; 10 | -------------------------------------------------------------------------------- /server/node_modules/set-function-length/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/internalPlugin.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"internalPlugin.js","sourceRoot":"","sources":["../../src/internalPlugin.ts"],"names":[],"mappings":"AAqBA,MAAM,UAAU,cAAc,CAC5B,CAAuC;IAEvC,OAAO,CAAC,CAAC;AACX,CAAC;AAUD,MAAM,UAAU,gBAAgB,CAC9B,MAAoC;IAIpC,OAAO,wBAAwB,IAAI,MAAM,CAAC;AAC5C,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.removealiases/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [ 5 | { 6 | "path": "../../" 7 | }, 8 | { 9 | "path": "../../../jestGraphQLASTSerializer" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/src/index.ts: -------------------------------------------------------------------------------- 1 | export { calculateReferencedFieldsByType } from "./calculateReferencedFieldsByType"; 2 | export type { 3 | OperationDerivedData, 4 | ReferencedFieldsByType, 5 | } from "./calculateReferencedFieldsByType"; 6 | export { usageReportingSignature } from "./signature"; 7 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/assertResolversPresent.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolverValidationOptions } from '@graphql-tools/utils'; 3 | export declare function assertResolversPresent(schema: GraphQLSchema, resolverValidationOptions?: IResolverValidationOptions): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/assertResolversPresent.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IResolverValidationOptions } from '@graphql-tools/utils'; 3 | export declare function assertResolversPresent(schema: GraphQLSchema, resolverValidationOptions?: IResolverValidationOptions): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/define-data-property/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/graphql/utilities/sortValueNode.d.ts: -------------------------------------------------------------------------------- 1 | import type { ValueNode } from '../language/ast'; 2 | /** 3 | * Sort ValueNode. 4 | * 5 | * This function returns a sorted copy of the given ValueNode. 6 | * 7 | * @internal 8 | */ 9 | export declare function sortValueNode(valueNode: ValueNode): ValueNode; 10 | -------------------------------------------------------------------------------- /server/node_modules/set-function-length/index.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace setFunctionLength { 2 | type Func = (...args: unknown[]) => unknown; 3 | } 4 | 5 | declare function setFunctionLength(fn: T, length: number, loose?: boolean): T; 6 | 7 | export = setFunctionLength; -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/regex.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; 8 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/defaultSendOperationsAsTrace.d.ts: -------------------------------------------------------------------------------- 1 | import type { Trace } from '@apollo/usage-reporting-protobuf'; 2 | export declare function defaultSendOperationsAsTrace(): (trace: Trace, statsReportKey: string) => boolean; 3 | //# sourceMappingURL=defaultSendOperationsAsTrace.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/preventCsrf.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"preventCsrf.d.ts","sourceRoot":"","sources":["../../src/preventCsrf.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAYtD,eAAO,MAAM,uCAAuC,UAGnD,CAAC;AA4BF,wBAAgB,WAAW,CACzB,OAAO,EAAE,SAAS,EAClB,4BAA4B,EAAE,MAAM,EAAE,QAmDvC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/UnreachableCaseError.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"UnreachableCaseError.js","sourceRoot":"","sources":["../../../src/utils/UnreachableCaseError.ts"],"names":[],"mappings":";;;AAKA,MAAa,oBAAqB,SAAQ,KAAK;IAC7C,YAAY,GAAU;QACpB,KAAK,CAAC,qBAAqB,GAAG,EAAE,CAAC,CAAC;IACpC,CAAC;CACF;AAJD,oDAIC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/defaultSendOperationsAsTrace.d.ts: -------------------------------------------------------------------------------- 1 | import type { Trace } from '@apollo/usage-reporting-protobuf'; 2 | export declare function defaultSendOperationsAsTrace(): (trace: Trace, statsReportKey: string) => boolean; 3 | //# sourceMappingURL=defaultSendOperationsAsTrace.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/preventCsrf.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"preventCsrf.d.ts","sourceRoot":"","sources":["../../src/preventCsrf.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAYtD,eAAO,MAAM,uCAAuC,UAGnD,CAAC;AA4BF,wBAAgB,WAAW,CACzB,OAAO,EAAE,SAAS,EAClB,4BAA4B,EAAE,MAAM,EAAE,QAmDvC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.stripsensitiveliterals/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,YAAY,EAMb,MAAM,SAAS,CAAC;AAIjB,wBAAgB,sBAAsB,CACpC,GAAG,EAAE,YAAY,EACjB,OAAO,GAAE;IAAE,yBAAyB,CAAC,EAAE,OAAO,CAAA;CAE7C,GACA,YAAY,CAyBd"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/arguments.d.cts: -------------------------------------------------------------------------------- 1 | import { InputValueDefinitionNode } from 'graphql'; 2 | import { Config } from './index.cjs'; 3 | export declare function mergeArguments(args1: InputValueDefinitionNode[], args2: InputValueDefinitionNode[], config?: Config): InputValueDefinitionNode[]; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/arguments.d.ts: -------------------------------------------------------------------------------- 1 | import { InputValueDefinitionNode } from 'graphql'; 2 | import { Config } from './index.js'; 3 | export declare function mergeArguments(args1: InputValueDefinitionNode[], args2: InputValueDefinitionNode[], config?: Config): InputValueDefinitionNode[]; 4 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/didYouMean.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Given [ A, B, C ] return ' Did you mean A, B, or C?'. 3 | */ 4 | export declare function didYouMean(suggestions: ReadonlyArray): string; 5 | export declare function didYouMean( 6 | subMessage: string, 7 | suggestions: ReadonlyArray, 8 | ): string; 9 | -------------------------------------------------------------------------------- /server/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | /* istanbul ignore next */ 4 | if (typeof util.inherits !== 'function') throw ''; 5 | module.exports = util.inherits; 6 | } catch (e) { 7 | /* istanbul ignore next */ 8 | module.exports = require('./inherits_browser.js'); 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/preventCsrf.d.ts: -------------------------------------------------------------------------------- 1 | import type { HeaderMap } from './utils/HeaderMap.js'; 2 | export declare const recommendedCsrfPreventionRequestHeaders: string[]; 3 | export declare function preventCsrf(headers: HeaderMap, csrfPreventionRequestHeaders: string[]): void; 4 | //# sourceMappingURL=preventCsrf.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/preventCsrf.d.ts: -------------------------------------------------------------------------------- 1 | import type { HeaderMap } from './utils/HeaderMap.js'; 2 | export declare const recommendedCsrfPreventionRequestHeaders: string[]; 3 | export declare function preventCsrf(headers: HeaderMap, csrfPreventionRequestHeaders: string[]): void; 4 | //# sourceMappingURL=preventCsrf.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/src/index.ts: -------------------------------------------------------------------------------- 1 | export type { KeyValueCache, KeyValueCacheSetOptions } from "./KeyValueCache"; 2 | export { PrefixingKeyValueCache } from "./PrefixingKeyValueCache"; 3 | export { InMemoryLRUCache } from "./InMemoryLRUCache"; 4 | export { ErrorsAreMissesCache } from "./ErrorsAreMissesCache"; 5 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.stripsensitiveliterals/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [ 5 | { 6 | "path": "../../" 7 | }, 8 | { 9 | "path": "../../../jestGraphQLASTSerializer" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/merge-named-type-array.d.cts: -------------------------------------------------------------------------------- 1 | import { NamedTypeNode } from 'graphql'; 2 | import { Config } from '../index.cjs'; 3 | export declare function mergeNamedTypeArray(first?: ReadonlyArray, second?: ReadonlyArray, config?: Config): NamedTypeNode[]; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/merge-named-type-array.d.ts: -------------------------------------------------------------------------------- 1 | import { NamedTypeNode } from 'graphql'; 2 | import { Config } from '../index.js'; 3 | export declare function mergeNamedTypeArray(first?: ReadonlyArray, second?: ReadonlyArray, config?: Config): NamedTypeNode[]; 4 | -------------------------------------------------------------------------------- /server/node_modules/gopd/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-style": [2, "declaration"], 8 | "id-length": 0, 9 | "multiline-comment-style": 0, 10 | "new-cap": [2, { 11 | "capIsNewExceptions": [ 12 | "GetIntrinsic", 13 | ], 14 | }], 15 | }, 16 | } 17 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isAsyncIterable.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if the provided object implements the AsyncIterator protocol via 3 | * implementing a `Symbol.asyncIterator` method. 4 | */ 5 | export declare function isAsyncIterable( 6 | maybeAsyncIterable: any, 7 | ): maybeAsyncIterable is AsyncIterable; 8 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "instrumentation": false, 5 | "sourceMap": false, 6 | "reporter": ["text-summary", "text", "html", "json"], 7 | "exclude": [ 8 | "coverage", 9 | "example", 10 | "test", 11 | "test-core-js.js" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/sha.js/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | os: 3 | - linux 4 | language: node_js 5 | node_js: 6 | - "4" 7 | - "5" 8 | - "6" 9 | - "7" 10 | env: 11 | matrix: 12 | - TEST_SUITE=unit 13 | matrix: 14 | include: 15 | - node_js: "7" 16 | env: TEST_SUITE=lint 17 | script: npm run $TEST_SUITE 18 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/internalPlugin.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"internalPlugin.js","sourceRoot":"","sources":["../../src/internalPlugin.ts"],"names":[],"mappings":";;;AAqBA,SAAgB,cAAc,CAC5B,CAAuC;IAEvC,OAAO,CAAC,CAAC;AACX,CAAC;AAJD,wCAIC;AAUD,SAAgB,gBAAgB,CAC9B,MAAoC;IAIpC,OAAO,wBAAwB,IAAI,MAAM,CAAC;AAC5C,CAAC;AAND,4CAMC"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getObjectTypeFromTypeMap.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLNamedType, GraphQLObjectType } from 'graphql'; 2 | import { Maybe } from './types.cjs'; 3 | export declare function getObjectTypeFromTypeMap(typeMap: Record, type: Maybe): GraphQLObjectType | undefined; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getObjectTypeFromTypeMap.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLNamedType, GraphQLObjectType } from 'graphql'; 2 | import { Maybe } from './types.js'; 3 | export declare function getObjectTypeFromTypeMap(typeMap: Record, type: Maybe): GraphQLObjectType | undefined; 4 | -------------------------------------------------------------------------------- /server/node_modules/graphql/type/assertName.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Upholds the spec rules about naming. 3 | */ 4 | export declare function assertName(name: string): string; 5 | /** 6 | * Upholds the spec rules about naming enum values. 7 | * 8 | * @internal 9 | */ 10 | export declare function assertEnumValueName(name: string): string; 11 | -------------------------------------------------------------------------------- /server/node_modules/has-proto/helpers/setDunder.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var callBind = require('call-bind'); 4 | var gOPD = require('gopd'); 5 | 6 | // @ts-expect-error TS can't handle dunder proto 7 | var desc = gOPD && gOPD(Object.prototype, '__proto__'); 8 | 9 | module.exports = !!desc && !!desc.set && callBind(desc.set); 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/disabled/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/disabled", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/disabled/index.js", 5 | "module": "../../dist/esm/plugin/disabled/index.js", 6 | "types": "../../dist/esm/plugin/disabled/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/parse-graphql-json.d.cts: -------------------------------------------------------------------------------- 1 | import { ParseOptions } from 'graphql'; 2 | import { Source } from './loaders.cjs'; 3 | import { SchemaPrintOptions } from './types.cjs'; 4 | export declare function parseGraphQLJSON(location: string, jsonContent: string, options: SchemaPrintOptions & ParseOptions): Source; 5 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/parse-graphql-json.d.ts: -------------------------------------------------------------------------------- 1 | import { ParseOptions } from 'graphql'; 2 | import { Source } from './loaders.js'; 3 | import { SchemaPrintOptions } from './types.js'; 4 | export declare function parseGraphQLJSON(location: string, jsonContent: string, options: SchemaPrintOptions & ParseOptions): Source; 5 | -------------------------------------------------------------------------------- /server/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Detect Electron renderer process, which is node, but we should 3 | * treat as a browser. 4 | */ 5 | 6 | if (typeof process !== 'undefined' && process.type === 'renderer') { 7 | module.exports = require('./browser.js'); 8 | } else { 9 | module.exports = require('./node.js'); 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/error/index.d.ts: -------------------------------------------------------------------------------- 1 | export { GraphQLError, printError, formatError } from './GraphQLError'; 2 | export type { 3 | GraphQLErrorOptions, 4 | GraphQLFormattedError, 5 | GraphQLErrorExtensions, 6 | } from './GraphQLError'; 7 | export { syntaxError } from './syntaxError'; 8 | export { locatedError } from './locatedError'; 9 | -------------------------------------------------------------------------------- /server/node_modules/graphql/utilities/lexicographicSortSchema.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from '../type/schema'; 2 | /** 3 | * Sort GraphQLSchema. 4 | * 5 | * This function returns a sorted copy of the given GraphQLSchema. 6 | */ 7 | export declare function lexicographicSortSchema( 8 | schema: GraphQLSchema, 9 | ): GraphQLSchema; 10 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/commonjs-browser/regex.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; 8 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/index.d.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServerPluginUsageReporting } from './plugin.js'; 2 | export type { ApolloServerPluginUsageReportingOptions, SendValuesBaseOptions, VariableValueOptions, SendErrorsOptions, ClientInfo, GenerateClientInfo, } from './options.js'; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/index.d.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServerPluginUsageReporting } from './plugin.js'; 2 | export type { ApolloServerPluginUsageReportingOptions, SendValuesBaseOptions, VariableValueOptions, SendErrorsOptions, ClientInfo, GenerateClientInfo, } from './options.js'; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { calculateReferencedFieldsByType } from "./calculateReferencedFieldsByType"; 2 | export type { OperationDerivedData, ReferencedFieldsByType, } from "./calculateReferencedFieldsByType"; 3 | export { usageReportingSignature } from "./signature"; 4 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isPromise.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if the value acts like a Promise, i.e. has a "then" function, 3 | * otherwise returns false. 4 | */ 5 | export function isPromise(value) { 6 | return ( 7 | typeof (value === null || value === void 0 ? void 0 : value.then) === 8 | 'function' 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/example/inspect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* eslint-env browser */ 4 | var inspect = require('../'); 5 | 6 | var d = document.createElement('div'); 7 | d.setAttribute('id', 'beep'); 8 | d.innerHTML = 'woooiiiii'; 9 | 10 | console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }])); 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAC;AAC/D,YAAY,EACV,uCAAuC,EACvC,qBAAqB,EACrB,oBAAoB,EACpB,iBAAiB,EACjB,UAAU,EACV,kBAAkB,GACnB,MAAM,cAAc,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAC;AAC/D,YAAY,EACV,uCAAuC,EACvC,qBAAqB,EACrB,oBAAoB,EACpB,iBAAiB,EACjB,UAAU,EACV,kBAAkB,GACnB,MAAM,cAAc,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,aAAa,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@types/mime/Mime.d.ts: -------------------------------------------------------------------------------- 1 | import { TypeMap } from "./index"; 2 | 3 | export default class Mime { 4 | constructor(mimes: TypeMap); 5 | 6 | lookup(path: string, fallback?: string): string; 7 | extension(mime: string): string | undefined; 8 | load(filepath: string): void; 9 | define(mimes: TypeMap): void; 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/suggestionList.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Given an invalid input string and a list of valid options, returns a filtered 3 | * list of valid options sorted based on their similarity with the input. 4 | */ 5 | export declare function suggestionList( 6 | input: string, 7 | options: ReadonlyArray, 8 | ): Array; 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/HeaderMap.d.ts: -------------------------------------------------------------------------------- 1 | export declare class HeaderMap extends Map { 2 | private __identity; 3 | set(key: string, value: string): this; 4 | get(key: string): string | undefined; 5 | delete(key: string): boolean; 6 | has(key: string): boolean; 7 | } 8 | //# sourceMappingURL=HeaderMap.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/HeaderMap.d.ts: -------------------------------------------------------------------------------- 1 | export declare class HeaderMap extends Map { 2 | private __identity; 3 | set(key: string, value: string): this; 4 | get(key: string): string | undefined; 5 | delete(key: string): boolean; 6 | has(key: string): boolean; 7 | } 8 | //# sourceMappingURL=HeaderMap.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/inlineTrace/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/inlineTrace", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/inlineTrace/index.js", 5 | "module": "../../dist/esm/plugin/inlineTrace/index.js", 6 | "types": "../../dist/esm/plugin/inlineTrace/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/src/plugin/usageReporting/index.ts: -------------------------------------------------------------------------------- 1 | export { ApolloServerPluginUsageReporting } from './plugin.js'; 2 | export type { 3 | ApolloServerPluginUsageReportingOptions, 4 | SendValuesBaseOptions, 5 | VariableValueOptions, 6 | SendErrorsOptions, 7 | ClientInfo, 8 | GenerateClientInfo, 9 | } from './options.js'; 10 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/heal.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective, GraphQLNamedType, GraphQLSchema } from 'graphql'; 2 | export declare function healSchema(schema: GraphQLSchema): GraphQLSchema; 3 | export declare function healTypes(originalTypeMap: Record, directives: ReadonlyArray): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/heal.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective, GraphQLNamedType, GraphQLSchema } from 'graphql'; 2 | export declare function healSchema(schema: GraphQLSchema): GraphQLSchema; 3 | export declare function healTypes(originalTypeMap: Record, directives: ReadonlyArray): void; 4 | -------------------------------------------------------------------------------- /server/node_modules/send/node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.2 / 2018-01-21 2 | ================== 3 | 4 | * Fix encoding `%` as last character 5 | 6 | 1.0.1 / 2016-06-09 7 | ================== 8 | 9 | * Fix encoding unpaired surrogates at start/end of string 10 | 11 | 1.0.0 / 2016-06-08 12 | ================== 13 | 14 | * Initial release 15 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/cacheControl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/cacheControl", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/cacheControl/index.js", 5 | "module": "../../dist/esm/plugin/cacheControl/index.js", 6 | "types": "../../dist/esm/plugin/cacheControl/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/native-browser.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); 8 | var _default = { 9 | randomUUID 10 | }; 11 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,+DAAsD;AAEtD,SAAgB,UAAU,CAAC,IAAY;IACrC,IAAI,6BAAU,EAAE;QAGd,OAAO,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;KAClD;IACD,OAAO,OAAO,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC;AACjC,CAAC;AAPD,gCAOC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export type { KeyValueCache, KeyValueCacheSetOptions } from "./KeyValueCache"; 2 | export { PrefixingKeyValueCache } from "./PrefixingKeyValueCache"; 3 | export { InMemoryLRUCache } from "./InMemoryLRUCache"; 4 | export { ErrorsAreMissesCache } from "./ErrorsAreMissesCache"; 5 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/rewire.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective, GraphQLNamedType } from 'graphql'; 2 | export declare function rewireTypes(originalTypeMap: Record, directives: ReadonlyArray): { 3 | typeMap: Record; 4 | directives: Array; 5 | }; 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/rewire.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective, GraphQLNamedType } from 'graphql'; 2 | export declare function rewireTypes(originalTypeMap: Record, directives: ReadonlyArray): { 3 | typeMap: Record; 4 | directives: Array; 5 | }; 6 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/inquire/index.d.ts: -------------------------------------------------------------------------------- 1 | export = inquire; 2 | 3 | /** 4 | * Requires a module only if available. 5 | * @memberof util 6 | * @param {string} moduleName Module to require 7 | * @returns {?Object} Required module if available and not empty, otherwise `null` 8 | */ 9 | declare function inquire(moduleName: string): Object; 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/naturalCompare.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns a number indicating whether a reference string comes before, or after, 3 | * or is the same as the given string in natural sort order. 4 | * 5 | * See: https://en.wikipedia.org/wiki/Natural_sort_order 6 | * 7 | */ 8 | export declare function naturalCompare(aStr: string, bStr: string): number; 9 | -------------------------------------------------------------------------------- /server/node_modules/undici-types/global-dispatcher.d.ts: -------------------------------------------------------------------------------- 1 | import Dispatcher from "./dispatcher"; 2 | 3 | export { 4 | getGlobalDispatcher, 5 | setGlobalDispatcher 6 | } 7 | 8 | declare function setGlobalDispatcher(dispatcher: DispatcherImplementation): void; 9 | declare function getGlobalDispatcher(): Dispatcher; 10 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/commonjs-browser/native.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); 8 | var _default = { 9 | randomUUID 10 | }; 11 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/determineApolloConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { ApolloConfig, ApolloConfigInput } from './externalTypes/index.js'; 2 | import type { Logger } from '@apollo/utils.logger'; 3 | export declare function determineApolloConfig(input: ApolloConfigInput | undefined, logger: Logger): ApolloConfig; 4 | //# sourceMappingURL=determineApolloConfig.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/computeCoreSchemaHash.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"computeCoreSchemaHash.js","sourceRoot":"","sources":["../../../src/utils/computeCoreSchemaHash.ts"],"names":[],"mappings":";;;AAAA,+DAAsD;AAMtD,SAAgB,qBAAqB,CAAC,MAAc;IAClD,OAAO,IAAA,6BAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;AAC3D,CAAC;AAFD,sDAEC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/determineApolloConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { ApolloConfig, ApolloConfigInput } from './externalTypes/index.js'; 2 | import type { Logger } from '@apollo/utils.logger'; 3 | export declare function determineApolloConfig(input: ApolloConfigInput | undefined, logger: Logger): ApolloConfig; 4 | //# sourceMappingURL=determineApolloConfig.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/usageReporting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/usageReporting", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/usageReporting/index.js", 5 | "module": "../../dist/esm/plugin/usageReporting/index.js", 6 | "types": "../../dist/esm/plugin/usageReporting/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/src/__tests__/createHash.test.ts: -------------------------------------------------------------------------------- 1 | import { createHash } from ".."; 2 | 3 | describe("createHash", () => { 4 | it("creates a hash", () => { 5 | expect(createHash("sha256").update("foo").digest("hex")).toEqual( 6 | "2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae", 7 | ); 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/cjs/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const tslib_1 = require("tslib"); 4 | tslib_1.__exportStar(require("./merge-resolvers.js"), exports); 5 | tslib_1.__exportStar(require("./typedefs-mergers/index.js"), exports); 6 | tslib_1.__exportStar(require("./extensions.js"), exports); 7 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/getObjectTypeFromTypeMap.js: -------------------------------------------------------------------------------- 1 | import { isObjectType } from 'graphql'; 2 | export function getObjectTypeFromTypeMap(typeMap, type) { 3 | if (type) { 4 | const maybeObjectType = typeMap[type.name]; 5 | if (isObjectType(maybeObjectType)) { 6 | return maybeObjectType; 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/directives.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective } from 'graphql'; 2 | /** 3 | * Used to conditionally defer fragments. 4 | */ 5 | export declare const GraphQLDeferDirective: GraphQLDirective; 6 | /** 7 | * Used to conditionally stream list fields. 8 | */ 9 | export declare const GraphQLStreamDirective: GraphQLDirective; 10 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/directives.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLDirective } from 'graphql'; 2 | /** 3 | * Used to conditionally defer fragments. 4 | */ 5 | export declare const GraphQLDeferDirective: GraphQLDirective; 6 | /** 7 | * Used to conditionally stream list fields. 8 | */ 9 | export declare const GraphQLStreamDirective: GraphQLDirective; 10 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/test/holes.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var xs = ['a', 'b']; 5 | xs[5] = 'f'; 6 | xs[7] = 'j'; 7 | xs[8] = 'k'; 8 | 9 | test('holes', function (t) { 10 | t.plan(1); 11 | t.equal( 12 | inspect(xs), 13 | "[ 'a', 'b', , , , 'f', , 'j', 'k' ]" 14 | ); 15 | }); 16 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/test/lowbyte.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var obj = { x: 'a\r\nb', y: '\x05! \x1f \x12' }; 5 | 6 | test('interpolate low bytes', function (t) { 7 | t.plan(1); 8 | t.equal( 9 | inspect(obj), 10 | "{ x: 'a\\r\\nb', y: '\\x05! \\x1F \\x12' }" 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/drainHttpServer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/drainHttpServer", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/drainHttpServer/index.js", 5 | "module": "../../dist/esm/plugin/drainHttpServer/index.js", 6 | "types": "../../dist/esm/plugin/drainHttpServer/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/schemaReporting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/schemaReporting", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/schemaReporting/index.js", 5 | "module": "../../dist/esm/plugin/schemaReporting/index.js", 6 | "types": "../../dist/esm/plugin/schemaReporting/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/devAssert.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | exports.devAssert = devAssert; 7 | 8 | function devAssert(condition, message) { 9 | const booleanCondition = Boolean(condition); 10 | 11 | if (!booleanCondition) { 12 | throw new Error(message); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/md5.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | 3 | function md5(bytes) { 4 | if (Array.isArray(bytes)) { 5 | bytes = Buffer.from(bytes); 6 | } else if (typeof bytes === 'string') { 7 | bytes = Buffer.from(bytes, 'utf8'); 8 | } 9 | 10 | return crypto.createHash('md5').update(bytes).digest(); 11 | } 12 | 13 | export default md5; -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/defaultSendOperationsAsTrace.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"defaultSendOperationsAsTrace.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/defaultSendOperationsAsTrace.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AAI9D,wBAAgB,4BAA4B,YA2B3B,KAAK,kBAAkB,MAAM,KAAG,OAAO,CAyBvD"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/defaultSendOperationsAsTrace.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"defaultSendOperationsAsTrace.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/defaultSendOperationsAsTrace.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AAI9D,wBAAgB,4BAA4B,YA2B3B,KAAK,kBAAkB,MAAM,KAAG,OAAO,CAyBvD"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.dropunuseddefinitions/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qCAAgE;AAOhE,SAAgB,qBAAqB,CACnC,GAAiB,EACjB,aAAqB;IAErB,MAAM,SAAS,GAAG,IAAA,4BAAkB,EAAC,GAAG,CAAC,CAAC,aAAa,CAAC,CAAC;IACzD,IAAI,CAAC,SAAS,EAAE;QAGd,OAAO,GAAG,CAAC;KACZ;IACD,OAAO,SAAS,CAAC;AACnB,CAAC;AAXD,sDAWC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.isnodelike/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isNodeLike = void 0; 4 | exports.isNodeLike = typeof process === "object" && 5 | process && 6 | process.release && 7 | process.versions && 8 | typeof process.versions.node === "string"; 9 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.logger/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,MAAM;IACrB,KAAK,CAAC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC;IAC3B,IAAI,CAAC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC;IAC1B,IAAI,CAAC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC;IAC1B,KAAK,CAAC,OAAO,CAAC,EAAE,GAAG,GAAG,IAAI,CAAC;CAC5B"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.removealiases/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAOA,qCAAmE;AAEnE,SAAgB,aAAa,CAAC,GAAiB;IAC7C,OAAO,IAAA,eAAK,EAAC,GAAG,EAAE;QAChB,KAAK,CAAC,IAAe;YACnB,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,EAAE,GAAG,IAAI,CAAC;YAChC,OAAO,IAAI,CAAC;QACd,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAPD,sCAOC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.usagereporting/src/__tests__/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../../tsconfig.test.base", 3 | "include": ["**/*"], 4 | "references": [ 5 | { "path": "../../" }, 6 | { "path": "../../../dropUnusedDefinitions" }, 7 | { "path": "../../../printWithReducedWhitespace" }, 8 | { "path": "../../../sortAST" } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/sha1.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | 3 | function sha1(bytes) { 4 | if (Array.isArray(bytes)) { 5 | bytes = Buffer.from(bytes); 6 | } else if (typeof bytes === 'string') { 7 | bytes = Buffer.from(bytes, 'utf8'); 8 | } 9 | 10 | return crypto.createHash('sha1').update(bytes).digest(); 11 | } 12 | 13 | export default sha1; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/targets/proto2.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = proto2_target; 3 | 4 | var protobuf = require("../.."); 5 | 6 | proto2_target.description = "Protocol Buffers, Version 2"; 7 | 8 | function proto2_target(root, options, callback) { 9 | require("./proto")(root, protobuf.util.merge(options, { syntax: "proto2" }), callback); 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/targets/proto3.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | module.exports = proto3_target; 3 | 4 | var protobuf = require("../.."); 5 | 6 | proto3_target.description = "Protocol Buffers, Version 3"; 7 | 8 | function proto3_target(root, options, callback) { 9 | require("./proto")(root, protobuf.util.merge(options, { syntax: "proto3" }), callback); 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/computeCoreSchemaHash.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"computeCoreSchemaHash.js","sourceRoot":"","sources":["../../../src/utils/computeCoreSchemaHash.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAMtD,MAAM,UAAU,qBAAqB,CAAC,MAAc;IAClD,OAAO,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;AAC3D,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/usage-reporting-protobuf/src/.editorconfig: -------------------------------------------------------------------------------- 1 | # reports.proto is copied from an internal Apollo repository which applies these 2 | # editorconfig standards. 3 | 4 | root = true 5 | 6 | [reports.proto] 7 | charset = utf-8 8 | end_of_line = lf 9 | indent_size = 2 10 | indent_style = tab 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/mapValue.d.ts: -------------------------------------------------------------------------------- 1 | import type { ObjMap, ReadOnlyObjMap } from './ObjMap'; 2 | /** 3 | * Creates an object map with the same keys as `map` and values generated by 4 | * running each value of `map` thru `fn`. 5 | */ 6 | export declare function mapValue( 7 | map: ReadOnlyObjMap, 8 | fn: (value: T, key: string) => V, 9 | ): ObjMap; 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/resolvable.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resolvable.d.ts","sourceRoot":"","sources":["../../../src/utils/resolvable.ts"],"names":[],"mappings":"AAcA,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,GAAG;IACvC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CAC1B,CAAC;wCAE2B,WAAW,CAAC,CAAC;AAA1C,wBAUE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/resolvable.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resolvable.d.ts","sourceRoot":"","sources":["../../../src/utils/resolvable.ts"],"names":[],"mappings":"AAcA,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,GAAG;IACvC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC;IACxB,MAAM,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;CAC1B,CAAC;wCAE2B,WAAW,CAAC,CAAC;AAA1C,wBAUE"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/disableSuggestions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/disableSuggestions", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/disableSuggestions/index.js", 5 | "module": "../../dist/esm/plugin/disableSuggestions/index.js", 6 | "types": "../../dist/esm/plugin/disableSuggestions/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/function-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "indent": [2, 4], 9 | "no-new-func": [1], 10 | }, 11 | 12 | "overrides": [ 13 | { 14 | "files": "test/**", 15 | "rules": { 16 | "max-lines-per-function": 0, 17 | "strict": [0] 18 | }, 19 | }, 20 | ], 21 | } 22 | -------------------------------------------------------------------------------- /server/node_modules/graphql/utilities/printSchema.d.ts: -------------------------------------------------------------------------------- 1 | import type { GraphQLNamedType } from '../type/definition'; 2 | import type { GraphQLSchema } from '../type/schema'; 3 | export declare function printSchema(schema: GraphQLSchema): string; 4 | export declare function printIntrospectionSchema(schema: GraphQLSchema): string; 5 | export declare function printType(type: GraphQLNamedType): string; 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.createhash/README.md: -------------------------------------------------------------------------------- 1 | # createHash 2 | 3 | Equivalent to Node.js's `crypto.createHash`. Uses the Node.js builtin if 4 | present, otherwise it falls back the the `sha.js` package's implementation. 5 | 6 | ## Usage 7 | 8 | ```ts 9 | import { createHash } from "@apollo/utils.createhash"; 10 | 11 | createHash("sha256").update("foo").digest("hex"); 12 | ``` 13 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/mapAsyncIterator.d.cts: -------------------------------------------------------------------------------- 1 | /** 2 | * Given an AsyncIterable and a callback function, return an AsyncIterator 3 | * which produces values mapped via calling the callback function. 4 | */ 5 | export declare function mapAsyncIterator(iterator: AsyncIterator, callback: (value: T) => Promise | U, rejectCallback?: any): AsyncIterableIterator; 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/mapAsyncIterator.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Given an AsyncIterable and a callback function, return an AsyncIterator 3 | * which produces values mapped via calling the callback function. 4 | */ 5 | export declare function mapAsyncIterator(iterator: AsyncIterator, callback: (value: T) => Promise | U, rejectCallback?: any): AsyncIterableIterator; 6 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/determineApolloConfig.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"determineApolloConfig.d.ts","sourceRoot":"","sources":["../../src/determineApolloConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAChF,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAInD,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,iBAAiB,GAAG,SAAS,EACpC,MAAM,EAAE,MAAM,GACb,YAAY,CAuEd"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/traceDetails.d.ts: -------------------------------------------------------------------------------- 1 | import { Trace } from '@apollo/usage-reporting-protobuf'; 2 | import type { VariableValueOptions } from './options.js'; 3 | export declare function makeTraceDetails(variables: Record, sendVariableValues?: VariableValueOptions, operationString?: string): Trace.Details; 4 | //# sourceMappingURL=traceDetails.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/determineApolloConfig.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"determineApolloConfig.d.ts","sourceRoot":"","sources":["../../src/determineApolloConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAChF,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAInD,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,iBAAiB,GAAG,SAAS,EACpC,MAAM,EAAE,MAAM,GACb,YAAY,CAuEd"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/traceDetails.d.ts: -------------------------------------------------------------------------------- 1 | import { Trace } from '@apollo/usage-reporting-protobuf'; 2 | import type { VariableValueOptions } from './options.js'; 3 | export declare function makeTraceDetails(variables: Record, sendVariableValues?: VariableValueOptions, operationString?: string): Trace.Details; 4 | //# sourceMappingURL=traceDetails.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/subscriptionCallback/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/subscriptionCallback", 3 | "type": "module", 4 | "main": "../../dist/cjs/plugin/subscriptionCallback/index.js", 5 | "module": "../../dist/esm/plugin/subscriptionCallback/index.js", 6 | "types": "../../dist/esm/plugin/subscriptionCallback/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.isnodelike/README.md: -------------------------------------------------------------------------------- 1 | # isNodeLike 2 | 3 | A simple constant to determine if the current environment is Node-like by 4 | inspecting the `process` global for Node-specific properties. 5 | 6 | ## Usage 7 | 8 | ```ts 9 | import { isNodeLike } from "@apollo/utils.isnodelike"; 10 | 11 | if (isNodeLike) { 12 | require("fs").readFileSync("foo"); 13 | } 14 | ``` 15 | -------------------------------------------------------------------------------- /server/node_modules/has-proto/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var test = { 4 | __proto__: null, 5 | foo: {} 6 | }; 7 | 8 | // @ts-expect-error: TS errors on an inherited property for some reason 9 | var result = { __proto__: test }.foo === test.foo 10 | && !(test instanceof Object); 11 | 12 | /** @type {import('.')} */ 13 | module.exports = function hasProto() { 14 | return result; 15 | }; 16 | -------------------------------------------------------------------------------- /server/node_modules/object-inspect/test/undef.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null }; 5 | 6 | test('undef and null', function (t) { 7 | t.plan(1); 8 | t.equal( 9 | inspect(obj), 10 | '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }' 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /server/node_modules/uuid/wrapper.mjs: -------------------------------------------------------------------------------- 1 | import uuid from './dist/index.js'; 2 | export const v1 = uuid.v1; 3 | export const v3 = uuid.v3; 4 | export const v4 = uuid.v4; 5 | export const v5 = uuid.v5; 6 | export const NIL = uuid.NIL; 7 | export const version = uuid.version; 8 | export const validate = uuid.validate; 9 | export const stringify = uuid.stringify; 10 | export const parse = uuid.parse; 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/resolvable.js: -------------------------------------------------------------------------------- 1 | export default () => { 2 | let resolve; 3 | let reject; 4 | const promise = new Promise((_resolve, _reject) => { 5 | resolve = _resolve; 6 | reject = _reject; 7 | }); 8 | promise.resolve = resolve; 9 | promise.reject = reject; 10 | return promise; 11 | }; 12 | //# sourceMappingURL=resolvable.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/plugin/landingPage/default/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@apollo/server/plugin/landingPage/default", 3 | "type": "module", 4 | "main": "../../../dist/cjs/plugin/landingPage/default/index.js", 5 | "module": "../../../dist/esm/plugin/landingPage/default/index.js", 6 | "types": "../../../dist/esm/plugin/landingPage/default/index.d.ts", 7 | "sideEffects": false 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/mapValue.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Creates an object map with the same keys as `map` and values generated by 3 | * running each value of `map` thru `fn`. 4 | */ 5 | export function mapValue(map, fn) { 6 | const result = Object.create(null); 7 | 8 | for (const key of Object.keys(map)) { 9 | result[key] = fn(map[key], key); 10 | } 11 | 12 | return result; 13 | } 14 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/chainResolvers.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLResolveInfo, GraphQLFieldResolver } from 'graphql'; 2 | import { Maybe } from '@graphql-tools/utils'; 3 | export declare function chainResolvers(resolvers: Array>>): (root: any, args: TArgs, ctx: any, info: GraphQLResolveInfo) => any; 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getResponseKeyFromInfo.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLResolveInfo } from 'graphql'; 2 | /** 3 | * Get the key under which the result of this resolver will be placed in the response JSON. Basically, just 4 | * resolves aliases. 5 | * @param info The info argument to the resolver. 6 | */ 7 | export declare function getResponseKeyFromInfo(info: GraphQLResolveInfo): string; 8 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getResponseKeyFromInfo.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLResolveInfo } from 'graphql'; 2 | /** 3 | * Get the key under which the result of this resolver will be placed in the response JSON. Basically, just 4 | * resolves aliases. 5 | * @param info The info argument to the resolver. 6 | */ 7 | export declare function getResponseKeyFromInfo(info: GraphQLResolveInfo): string; 8 | -------------------------------------------------------------------------------- /server/node_modules/define-data-property/index.d.ts: -------------------------------------------------------------------------------- 1 | 2 | declare function defineDataProperty( 3 | obj: Record, 4 | property: keyof typeof obj, 5 | value: typeof obj[typeof property], 6 | nonEnumerable?: boolean | null, 7 | nonWritable?: boolean | null, 8 | nonConfigurable?: boolean | null, 9 | loose?: boolean 10 | ): void; 11 | 12 | export = defineDataProperty; -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/toObjMap.mjs: -------------------------------------------------------------------------------- 1 | export function toObjMap(obj) { 2 | if (obj == null) { 3 | return Object.create(null); 4 | } 5 | 6 | if (Object.getPrototypeOf(obj) === null) { 7 | return obj; 8 | } 9 | 10 | const map = Object.create(null); 11 | 12 | for (const [key, value] of Object.entries(obj)) { 13 | map[key] = value; 14 | } 15 | 16 | return map; 17 | } 18 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/HeaderMap.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"HeaderMap.d.ts","sourceRoot":"","sources":["../../../src/utils/HeaderMap.ts"],"names":[],"mappings":"AAAA,qBAAa,SAAU,SAAQ,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC;IAIhD,OAAO,CAAC,UAAU,CAAuB;IAEhC,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAIrC,GAAG,CAAC,GAAG,EAAE,MAAM;IAIf,MAAM,CAAC,GAAG,EAAE,MAAM;IAIlB,GAAG,CAAC,GAAG,EAAE,MAAM;CAGzB"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/utils/HeaderMap.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"HeaderMap.d.ts","sourceRoot":"","sources":["../../../src/utils/HeaderMap.ts"],"names":[],"mappings":"AAAA,qBAAa,SAAU,SAAQ,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC;IAIhD,OAAO,CAAC,UAAU,CAAuB;IAEhC,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAIrC,GAAG,CAAC,GAAG,EAAE,MAAM;IAIf,MAAM,CAAC,GAAG,EAAE,MAAM;IAIlB,GAAG,CAAC,GAAG,EAAE,MAAM;CAGzB"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/chainResolvers.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLResolveInfo, GraphQLFieldResolver } from 'graphql'; 2 | import { Maybe } from '@graphql-tools/utils'; 3 | export declare function chainResolvers(resolvers: Array>>): (root: any, args: TArgs, ctx: any, info: GraphQLResolveInfo) => any; 6 | -------------------------------------------------------------------------------- /server/node_modules/graphql/version.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A string containing the version of the GraphQL.js library 3 | */ 4 | export declare const version: string; 5 | /** 6 | * An object containing the components of the GraphQL.js version string 7 | */ 8 | export declare const versionInfo: Readonly<{ 9 | major: number; 10 | minor: number; 11 | patch: number; 12 | preReleaseTag: string | null; 13 | }>; 14 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/esm-node/rng.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate 3 | 4 | let poolPtr = rnds8Pool.length; 5 | export default function rng() { 6 | if (poolPtr > rnds8Pool.length - 16) { 7 | crypto.randomFillSync(rnds8Pool); 8 | poolPtr = 0; 9 | } 10 | 11 | return rnds8Pool.slice(poolPtr, poolPtr += 16); 12 | } -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "type": "module", 13 | "dependencies": { 14 | "@apollo/server": "^4.11.2", 15 | "graphql": "^16.9.0" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/context.d.ts: -------------------------------------------------------------------------------- 1 | export type BaseContext = {}; 2 | export type ContextFunction = (...integrationContext: TIntegrationSpecificArgs) => Promise; 3 | export type ContextThunk = () => Promise; 4 | //# sourceMappingURL=context.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/context.d.ts: -------------------------------------------------------------------------------- 1 | export type BaseContext = {}; 2 | export type ContextFunction = (...integrationContext: TIntegrationSpecificArgs) => Promise; 3 | export type ContextThunk = () => Promise; 4 | //# sourceMappingURL=context.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/addResolversToSchema.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IAddResolversToSchemaOptions } from '@graphql-tools/utils'; 3 | export declare function addResolversToSchema({ schema, resolvers: inputResolvers, defaultFieldResolver, resolverValidationOptions, inheritResolversFromInterfaces, updateResolversInPlace, }: IAddResolversToSchemaOptions): GraphQLSchema; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/isDocumentNode.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isDocumentNode = void 0; 4 | const graphql_1 = require("graphql"); 5 | function isDocumentNode(object) { 6 | return object && typeof object === 'object' && 'kind' in object && object.kind === graphql_1.Kind.DOCUMENT; 7 | } 8 | exports.isDocumentNode = isDocumentNode; 9 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/esm/getResponseKeyFromInfo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Get the key under which the result of this resolver will be placed in the response JSON. Basically, just 3 | * resolves aliases. 4 | * @param info The info argument to the resolver. 5 | */ 6 | export function getResponseKeyFromInfo(info) { 7 | return info.fieldNodes[0].alias != null ? info.fieldNodes[0].alias.value : info.fieldName; 8 | } 9 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/typings/addResolversToSchema.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { IAddResolversToSchemaOptions } from '@graphql-tools/utils'; 3 | export declare function addResolversToSchema({ schema, resolvers: inputResolvers, defaultFieldResolver, resolverValidationOptions, inheritResolversFromInterfaces, updateResolversInPlace, }: IAddResolversToSchemaOptions): GraphQLSchema; 4 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.keyvaluecache/dist/KeyValueCache.d.ts: -------------------------------------------------------------------------------- 1 | export interface KeyValueCache { 2 | get(key: string): Promise; 3 | set(key: string, value: V, options?: KeyValueCacheSetOptions): Promise; 4 | delete(key: string): Promise; 5 | } 6 | export interface KeyValueCacheSetOptions { 7 | ttl?: number | null; 8 | } 9 | //# sourceMappingURL=KeyValueCache.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/utils.sortast/README.md: -------------------------------------------------------------------------------- 1 | # sortAST 2 | 3 | The `sortAST` function is used to alphabetically sort all of the nodes in a graphql `DocumentNode`. 4 | 5 | ## Usage 6 | 7 | ```ts 8 | import { sortAST } from "@apollo/utils.sortast"; 9 | 10 | const sortedAST = sortAST( 11 | parse(`#graphql 12 | query Foo { c b a } 13 | `), 14 | ); 15 | 16 | print(sortedAST); 17 | // query Foo { a b c } 18 | ``` 19 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getOperationASTFromRequest.d.ts: -------------------------------------------------------------------------------- 1 | import { DocumentNode, OperationDefinitionNode } from 'graphql'; 2 | import { ExecutionRequest } from './Interfaces.js'; 3 | export declare function getOperationASTFromDocument(documentNode: DocumentNode, operationName?: string): OperationDefinitionNode; 4 | export declare const getOperationASTFromRequest: (request: ExecutionRequest) => OperationDefinitionNode; 5 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/ObjMap.d.ts: -------------------------------------------------------------------------------- 1 | export interface ObjMap { 2 | [key: string]: T; 3 | } 4 | export declare type ObjMapLike = 5 | | ObjMap 6 | | { 7 | [key: string]: T; 8 | }; 9 | export interface ReadOnlyObjMap { 10 | readonly [key: string]: T; 11 | } 12 | export declare type ReadOnlyObjMapLike = 13 | | ReadOnlyObjMap 14 | | { 15 | readonly [key: string]: T; 16 | }; 17 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Unique type names 5 | * 6 | * A GraphQL document is only valid if all defined types have unique names. 7 | */ 8 | export declare function UniqueTypeNamesRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/undici-types/mock-errors.d.ts: -------------------------------------------------------------------------------- 1 | import Errors from './errors' 2 | 3 | export default MockErrors 4 | 5 | declare namespace MockErrors { 6 | /** The request does not match any registered mock dispatches. */ 7 | export class MockNotMatchedError extends Errors.UndiciError { 8 | constructor(message?: string); 9 | name: 'MockNotMatchedError'; 10 | code: 'UND_MOCK_ERR_MOCK_NOT_MATCHED'; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/utils/UnreachableCaseError.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.UnreachableCaseError = void 0; 4 | class UnreachableCaseError extends Error { 5 | constructor(val) { 6 | super(`Unreachable case: ${val}`); 7 | } 8 | } 9 | exports.UnreachableCaseError = UnreachableCaseError; 10 | //# sourceMappingURL=UnreachableCaseError.js.map -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/extensions.d.cts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { SchemaExtensions } from '@graphql-tools/utils'; 3 | export { extractExtensionsFromSchema } from '@graphql-tools/utils'; 4 | export declare function mergeExtensions(extensions: SchemaExtensions[]): SchemaExtensions; 5 | export declare function applyExtensions(schema: GraphQLSchema, extensions: SchemaExtensions): GraphQLSchema; 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/extensions.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { SchemaExtensions } from '@graphql-tools/utils'; 3 | export { extractExtensionsFromSchema } from '@graphql-tools/utils'; 4 | export declare function mergeExtensions(extensions: SchemaExtensions[]): SchemaExtensions; 5 | export declare function applyExtensions(schema: GraphQLSchema, extensions: SchemaExtensions): GraphQLSchema; 6 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/getOperationASTFromRequest.d.cts: -------------------------------------------------------------------------------- 1 | import { DocumentNode, OperationDefinitionNode } from 'graphql'; 2 | import { ExecutionRequest } from './Interfaces.cjs'; 3 | export declare function getOperationASTFromDocument(documentNode: DocumentNode, operationName?: string): OperationDefinitionNode; 4 | export declare const getOperationASTFromRequest: (request: ExecutionRequest) => OperationDefinitionNode; 5 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/schema/esm/chainResolvers.js: -------------------------------------------------------------------------------- 1 | import { defaultFieldResolver } from 'graphql'; 2 | export function chainResolvers(resolvers) { 3 | return (root, args, ctx, info) => resolvers.reduce((prev, curResolver) => { 4 | if (curResolver != null) { 5 | return curResolver(prev, args, ctx, info); 6 | } 7 | return defaultFieldResolver(prev, args, ctx, info); 8 | }, root); 9 | } 10 | -------------------------------------------------------------------------------- /server/node_modules/debug/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "debug", 3 | "repo": "visionmedia/debug", 4 | "description": "small debugging utility", 5 | "version": "2.6.9", 6 | "keywords": [ 7 | "debug", 8 | "log", 9 | "debugger" 10 | ], 11 | "main": "src/browser.js", 12 | "scripts": [ 13 | "src/browser.js", 14 | "src/debug.js" 15 | ], 16 | "dependencies": { 17 | "rauchg/ms.js": "0.7.1" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/pbjs.d.ts: -------------------------------------------------------------------------------- 1 | type pbjsCallback = (err: Error|null, output?: string) => void; 2 | 3 | /** 4 | * Runs pbjs programmatically. 5 | * @param {string[]} args Command line arguments 6 | * @param {function(?Error, string=)} [callback] Optional completion callback 7 | * @returns {number|undefined} Exit code, if known 8 | */ 9 | export function main(args: string[], callback?: pbjsCallback): number|undefined; 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/cli/pbts.d.ts: -------------------------------------------------------------------------------- 1 | type pbtsCallback = (err: Error|null, output?: string) => void; 2 | 3 | /** 4 | * Runs pbts programmatically. 5 | * @param {string[]} args Command line arguments 6 | * @param {function(?Error, string=)} [callback] Optional completion callback 7 | * @returns {number|undefined} Exit code, if known 8 | */ 9 | export function main(args: string[], callback?: pbtsCallback): number|undefined; 10 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/errors/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/errors/index.ts"],"names":[],"mappings":"AAEA,oBAAY,qBAAqB;IAC/B,qBAAqB,0BAA0B;IAC/C,oBAAoB,yBAAyB;IAC7C,yBAAyB,8BAA8B;IACvD,yBAAyB,8BAA8B;IACvD,6BAA6B,kCAAkC;IAC/D,cAAc,mBAAmB;IACjC,4BAA4B,iCAAiC;IAC7D,WAAW,gBAAgB;CAC5B;AAED,oBAAY,+BAA+B;IACzC,sBAAsB,2BAA2B;CAClD;AAWD,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAK3D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/drainHttpServer/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/drainHttpServer/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAE7B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAMvE,MAAM,WAAW,wCAAwC;IAIvD,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC;IAKxB,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAQD,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,wCAAwC,GAChD,kBAAkB,CA2BpB"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.ApolloServerPluginUsageReporting = void 0; 4 | var plugin_js_1 = require("./plugin.js"); 5 | Object.defineProperty(exports, "ApolloServerPluginUsageReporting", { enumerable: true, get: function () { return plugin_js_1.ApolloServerPluginUsageReporting; } }); 6 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/errors/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/errors/index.ts"],"names":[],"mappings":"AAEA,oBAAY,qBAAqB;IAC/B,qBAAqB,0BAA0B;IAC/C,oBAAoB,yBAAyB;IAC7C,yBAAyB,8BAA8B;IACvD,yBAAyB,8BAA8B;IACvD,6BAA6B,kCAAkC;IAC/D,cAAc,mBAAmB;IACjC,4BAA4B,iCAAiC;IAC7D,WAAW,gBAAgB;CAC5B;AAED,oBAAY,+BAA+B;IACzC,sBAAsB,2BAA2B;CAClD;AAWD,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAK3D"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/drainHttpServer/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/drainHttpServer/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAE7B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAMvE,MAAM,WAAW,wCAAwC;IAIvD,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC;IAKxB,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAQD,wBAAgB,iCAAiC,CAC/C,OAAO,EAAE,wCAAwC,GAChD,kBAAkB,CA2BpB"} -------------------------------------------------------------------------------- /server/node_modules/define-data-property/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "complexity": 0, 8 | "id-length": 0, 9 | "new-cap": ["error", { 10 | "capIsNewExceptions": [ 11 | "GetIntrinsic", 12 | ], 13 | }], 14 | }, 15 | 16 | "overrides": [ 17 | { 18 | "files": "test/**", 19 | "rules": { 20 | "max-lines-per-function": "off", 21 | }, 22 | }, 23 | ], 24 | } 25 | -------------------------------------------------------------------------------- /server/node_modules/graphql/execution/index.mjs: -------------------------------------------------------------------------------- 1 | export { pathToArray as responsePathAsArray } from '../jsutils/Path.mjs'; 2 | export { 3 | execute, 4 | executeSync, 5 | defaultFieldResolver, 6 | defaultTypeResolver, 7 | } from './execute.mjs'; 8 | export { subscribe, createSourceEventStream } from './subscribe.mjs'; 9 | export { 10 | getArgumentValues, 11 | getVariableValues, 12 | getDirectiveValues, 13 | } from './values.mjs'; 14 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/invariant.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | exports.invariant = invariant; 7 | 8 | function invariant(condition, message) { 9 | const booleanCondition = Boolean(condition); 10 | 11 | if (!booleanCondition) { 12 | throw new Error( 13 | message != null ? message : 'Unexpected invariant triggered.', 14 | ); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/isObjectLike.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | exports.isObjectLike = isObjectLike; 7 | 8 | /** 9 | * Return true if `value` is object-like. A value is object-like if it's not 10 | * `null` and has a `typeof` result of "object". 11 | */ 12 | function isObjectLike(value) { 13 | return typeof value == 'object' && value !== null; 14 | } 15 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Lone Schema definition 5 | * 6 | * A GraphQL document is only valid if it contains only one schema definition. 7 | */ 8 | export declare function LoneSchemaDefinitionRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { ValidationContext } from '../ValidationContext'; 3 | /** 4 | * Scalar leafs 5 | * 6 | * A GraphQL document is valid only if all leaf fields (fields without 7 | * sub selections) are of scalar or enum types. 8 | */ 9 | export declare function ScalarLeafsRule(context: ValidationContext): ASTVisitor; 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Unique enum value names 5 | * 6 | * A GraphQL enum type is only valid if all its values are uniquely named. 7 | */ 8 | export declare function UniqueEnumValueNamesRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Unique operation types 5 | * 6 | * A GraphQL document is only valid if it has only one type per operation. 7 | */ 8 | export declare function UniqueOperationTypesRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { ASTValidationContext } from '../ValidationContext'; 3 | /** 4 | * Unique variable names 5 | * 6 | * A GraphQL operation is only valid if all its variables are uniquely named. 7 | */ 8 | export declare function UniqueVariableNamesRule( 9 | context: ASTValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/uuid/dist/native.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | 8 | var _crypto = _interopRequireDefault(require("crypto")); 9 | 10 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 11 | 12 | var _default = { 13 | randomUUID: _crypto.default.randomUUID 14 | }; 15 | exports.default = _default; -------------------------------------------------------------------------------- /server/node_modules/@apollo/protobufjs/src/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var protobuf = module.exports = require("./index-light"); 3 | 4 | protobuf.build = "full"; 5 | 6 | // Parser 7 | protobuf.tokenize = require("./tokenize"); 8 | protobuf.parse = require("./parse"); 9 | protobuf.common = require("./common"); 10 | 11 | // Configure parser 12 | protobuf.Root._configure(protobuf.Type, protobuf.parse, protobuf.common); 13 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/externalTypes/context.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/externalTypes/context.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,WAAW,GAAG,EAAE,CAAC;AAI7B,MAAM,MAAM,eAAe,CACzB,wBAAwB,SAAS,GAAG,EAAE,EACtC,QAAQ,SAAS,WAAW,GAAG,WAAW,IACxC,CAAC,GAAG,kBAAkB,EAAE,wBAAwB,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC;AAM3E,MAAM,MAAM,YAAY,CAAC,QAAQ,SAAS,WAAW,GAAG,WAAW,IACjE,MAAM,OAAO,CAAC,QAAQ,CAAC,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/inlineTrace/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/inlineTrace/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAEvE,MAAM,WAAW,oCAAoC;IAoBnD,aAAa,CAAC,EAAE,iBAAiB,CAAC;IAWlC,wBAAwB,CAAC,EAAE,OAAO,CAAC;CACpC;AAOD,wBAAgB,6BAA6B,CAC3C,OAAO,GAAE,oCAA0D,GAClE,kBAAkB,CA2GpB"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/externalTypes/context.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/externalTypes/context.ts"],"names":[],"mappings":"AAGA,MAAM,MAAM,WAAW,GAAG,EAAE,CAAC;AAI7B,MAAM,MAAM,eAAe,CACzB,wBAAwB,SAAS,GAAG,EAAE,EACtC,QAAQ,SAAS,WAAW,GAAG,WAAW,IACxC,CAAC,GAAG,kBAAkB,EAAE,wBAAwB,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC;AAM3E,MAAM,MAAM,YAAY,CAAC,QAAQ,SAAS,WAAW,GAAG,WAAW,IACjE,MAAM,OAAO,CAAC,QAAQ,CAAC,CAAC"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/inlineTrace/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/plugin/inlineTrace/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAEvE,MAAM,WAAW,oCAAoC;IAoBnD,aAAa,CAAC,EAAE,iBAAiB,CAAC;IAWlC,wBAAwB,CAAC,EAAE,OAAO,CAAC;CACpC;AAOD,wBAAgB,6BAA6B,CAC3C,OAAO,GAAE,oCAA0D,GAClE,kBAAkB,CA2GpB"} -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/selectionSets.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.parseSelectionSet = void 0; 4 | const graphql_1 = require("graphql"); 5 | function parseSelectionSet(selectionSet, options) { 6 | const query = (0, graphql_1.parse)(selectionSet, options).definitions[0]; 7 | return query.selectionSet; 8 | } 9 | exports.parseSelectionSet = parseSelectionSet; 10 | -------------------------------------------------------------------------------- /server/node_modules/graphql/jsutils/printPathArray.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { 4 | value: true, 5 | }); 6 | exports.printPathArray = printPathArray; 7 | 8 | /** 9 | * Build a string describing the path. 10 | */ 11 | function printPathArray(path) { 12 | return path 13 | .map((key) => 14 | typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key, 15 | ) 16 | .join(''); 17 | } 18 | -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Unique directive names 5 | * 6 | * A GraphQL document is only valid if all defined directives have unique names. 7 | */ 8 | export declare function UniqueDirectiveNamesRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/cjs/isAsyncIterable.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isAsyncIterable = void 0; 4 | function isAsyncIterable(value) { 5 | return (typeof value === 'object' && 6 | value != null && 7 | Symbol.asyncIterator in value && 8 | typeof value[Symbol.asyncIterator] === 'function'); 9 | } 10 | exports.isAsyncIterable = isAsyncIterable; 11 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/utils/typings/prune.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQLSchema } from 'graphql'; 2 | import { PruneSchemaOptions } from './types.js'; 3 | /** 4 | * Prunes the provided schema, removing unused and empty types 5 | * @param schema The schema to prune 6 | * @param options Additional options for removing unused types from the schema 7 | */ 8 | export declare function pruneSchema(schema: GraphQLSchema, options?: PruneSchemaOptions): GraphQLSchema; 9 | -------------------------------------------------------------------------------- /server/node_modules/@protobufjs/codegen/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@protobufjs/codegen", 3 | "description": "A minimalistic code generation utility.", 4 | "version": "2.0.4", 5 | "author": "Daniel Wirtz ", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/dcodeIO/protobuf.js.git" 9 | }, 10 | "license": "BSD-3-Clause", 11 | "main": "index.js", 12 | "types": "index.d.ts" 13 | } -------------------------------------------------------------------------------- /server/node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts: -------------------------------------------------------------------------------- 1 | import type { ASTVisitor } from '../../language/visitor'; 2 | import type { SDLValidationContext } from '../ValidationContext'; 3 | /** 4 | * Possible type extension 5 | * 6 | * A type extension is only valid if the type is defined and has the same kind. 7 | */ 8 | export declare function PossibleTypeExtensionsRule( 9 | context: SDLValidationContext, 10 | ): ASTVisitor; 11 | -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/iterateOverTrace.d.ts: -------------------------------------------------------------------------------- 1 | import type { Trace } from '@apollo/usage-reporting-protobuf'; 2 | export declare function iterateOverTrace(trace: Trace, f: (node: Trace.INode, path: ResponseNamePath) => boolean, includePath: boolean): void; 3 | export interface ResponseNamePath { 4 | toArray(): string[]; 5 | child(responseName: string): ResponseNamePath; 6 | } 7 | //# sourceMappingURL=iterateOverTrace.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/cjs/plugin/usageReporting/traceDetails.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"traceDetails.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/traceDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AASzD,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC9B,kBAAkB,CAAC,EAAE,oBAAoB,EACzC,eAAe,CAAC,EAAE,MAAM,GACvB,KAAK,CAAC,OAAO,CA0Df"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/iterateOverTrace.d.ts: -------------------------------------------------------------------------------- 1 | import type { Trace } from '@apollo/usage-reporting-protobuf'; 2 | export declare function iterateOverTrace(trace: Trace, f: (node: Trace.INode, path: ResponseNamePath) => boolean, includePath: boolean): void; 3 | export interface ResponseNamePath { 4 | toArray(): string[]; 5 | child(responseName: string): ResponseNamePath; 6 | } 7 | //# sourceMappingURL=iterateOverTrace.d.ts.map -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/dist/esm/plugin/usageReporting/traceDetails.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"traceDetails.d.ts","sourceRoot":"","sources":["../../../../src/plugin/usageReporting/traceDetails.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AACzD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AASzD,wBAAgB,gBAAgB,CAC9B,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC9B,kBAAkB,CAAC,EAAE,oBAAoB,EACzC,eAAe,CAAC,EAAE,MAAM,GACvB,KAAK,CAAC,OAAO,CA0Df"} -------------------------------------------------------------------------------- /server/node_modules/@apollo/server/src/utils/UnreachableCaseError.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Throw this in places that should be unreachable (because all other cases have 3 | * been handled, reducing the type of the argument to `never`). TypeScript will 4 | * complain if in fact there is a valid type for the argument. 5 | */ 6 | export class UnreachableCaseError extends Error { 7 | constructor(val: never) { 8 | super(`Unreachable case: ${val}`); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/enum-values.d.cts: -------------------------------------------------------------------------------- 1 | import { DirectiveDefinitionNode, EnumValueDefinitionNode } from 'graphql'; 2 | import { Config } from './merge-typedefs.cjs'; 3 | export declare function mergeEnumValues(first: ReadonlyArray | undefined, second: ReadonlyArray | undefined, config?: Config, directives?: Record): EnumValueDefinitionNode[]; 4 | -------------------------------------------------------------------------------- /server/node_modules/@graphql-tools/merge/typings/typedefs-mergers/enum-values.d.ts: -------------------------------------------------------------------------------- 1 | import { DirectiveDefinitionNode, EnumValueDefinitionNode } from 'graphql'; 2 | import { Config } from './merge-typedefs.js'; 3 | export declare function mergeEnumValues(first: ReadonlyArray | undefined, second: ReadonlyArray | undefined, config?: Config, directives?: Record): EnumValueDefinitionNode[]; 4 | --------------------------------------------------------------------------------