@cedarjs/graphql-server 5.0.7-next.338 → 5.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/cors.d.ts +10 -0
- package/dist/cjs/cors.d.ts.map +1 -0
- package/dist/cjs/cors.js +70 -0
- package/dist/cjs/createGraphQLYoga.d.ts +6 -0
- package/dist/cjs/createGraphQLYoga.d.ts.map +1 -0
- package/dist/cjs/createGraphQLYoga.js +193 -0
- package/dist/cjs/directives/makeDirectives.d.ts +8 -0
- package/dist/cjs/directives/makeDirectives.d.ts.map +1 -0
- package/dist/cjs/directives/makeDirectives.js +89 -0
- package/dist/cjs/errors.d.ts +32 -0
- package/dist/cjs/errors.d.ts.map +1 -0
- package/dist/cjs/errors.js +101 -0
- package/dist/cjs/functions/graphql.d.ts +15 -0
- package/dist/cjs/functions/graphql.d.ts.map +1 -0
- package/dist/cjs/functions/graphql.js +201 -0
- package/dist/cjs/functions/useRequireAuth.d.ts +12 -0
- package/dist/cjs/functions/useRequireAuth.d.ts.map +1 -0
- package/dist/cjs/functions/useRequireAuth.js +70 -0
- package/dist/cjs/global.api-auto-imports.d.ts +7 -0
- package/dist/cjs/global.api-auto-imports.d.ts.map +1 -0
- package/dist/cjs/global.api-auto-imports.js +1 -0
- package/dist/cjs/globalContext.d.ts +25 -0
- package/dist/cjs/globalContext.d.ts.map +1 -0
- package/dist/cjs/globalContext.js +55 -0
- package/dist/cjs/globalContextStore.d.ts +9 -0
- package/dist/cjs/globalContextStore.d.ts.map +1 -0
- package/dist/cjs/globalContextStore.js +35 -0
- package/dist/cjs/graphiql.d.ts +8 -0
- package/dist/cjs/graphiql.d.ts.map +1 -0
- package/dist/cjs/graphiql.js +45 -0
- package/dist/cjs/index.d.ts +14 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +75 -0
- package/dist/cjs/introspection.d.ts +7 -0
- package/dist/cjs/introspection.d.ts.map +1 -0
- package/dist/cjs/introspection.js +36 -0
- package/dist/cjs/makeMergedSchema.d.ts +17 -0
- package/dist/cjs/makeMergedSchema.d.ts.map +1 -0
- package/dist/cjs/makeMergedSchema.js +283 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/plugins/index.d.ts +10 -0
- package/dist/cjs/plugins/index.d.ts.map +1 -0
- package/dist/cjs/plugins/index.js +52 -0
- package/dist/cjs/plugins/useArmor.d.ts +4 -0
- package/dist/cjs/plugins/useArmor.d.ts.map +1 -0
- package/dist/cjs/plugins/useArmor.js +69 -0
- package/dist/{plugins/useCedarAuthContext.d.ts → cjs/plugins/useRedwoodAuthContext.d.ts} +2 -2
- package/dist/cjs/plugins/useRedwoodAuthContext.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodAuthContext.js +74 -0
- package/dist/cjs/plugins/useRedwoodDirective.d.ts +83 -0
- package/dist/cjs/plugins/useRedwoodDirective.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodDirective.js +166 -0
- package/dist/{plugins/useCedarError.d.ts → cjs/plugins/useRedwoodError.d.ts} +4 -4
- package/dist/cjs/plugins/useRedwoodError.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodError.js +62 -0
- package/dist/{plugins/useCedarGlobalContextSetter.d.ts → cjs/plugins/useRedwoodGlobalContextSetter.d.ts} +2 -2
- package/dist/cjs/plugins/useRedwoodGlobalContextSetter.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodGlobalContextSetter.js +35 -0
- package/dist/{plugins/useCedarLogger.d.ts → cjs/plugins/useRedwoodLogger.d.ts} +2 -2
- package/dist/cjs/plugins/useRedwoodLogger.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodLogger.js +156 -0
- package/dist/{plugins/useCedarOpenTelemetry.d.ts → cjs/plugins/useRedwoodOpenTelemetry.d.ts} +3 -3
- package/dist/cjs/plugins/useRedwoodOpenTelemetry.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodOpenTelemetry.js +156 -0
- package/dist/{plugins/useCedarPopulateContext.d.ts → cjs/plugins/useRedwoodPopulateContext.d.ts} +2 -2
- package/dist/cjs/plugins/useRedwoodPopulateContext.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodPopulateContext.js +35 -0
- package/dist/{plugins/useCedarTrustedDocuments.d.ts → cjs/plugins/useRedwoodTrustedDocuments.d.ts} +3 -5
- package/dist/cjs/plugins/useRedwoodTrustedDocuments.d.ts.map +1 -0
- package/dist/cjs/plugins/useRedwoodTrustedDocuments.js +80 -0
- package/dist/cjs/rootSchema.d.ts +25 -0
- package/dist/cjs/rootSchema.d.ts.map +1 -0
- package/dist/cjs/rootSchema.js +108 -0
- package/dist/cjs/subscriptions/makeSubscriptions.d.ts +18 -0
- package/dist/cjs/subscriptions/makeSubscriptions.d.ts.map +1 -0
- package/dist/cjs/subscriptions/makeSubscriptions.js +40 -0
- package/dist/cjs/types.d.ts +231 -0
- package/dist/cjs/types.d.ts.map +1 -0
- package/dist/cjs/types.js +16 -0
- package/dist/createGraphQLYoga.js +19 -19
- package/dist/directives/makeDirectives.d.ts +2 -2
- package/dist/directives/makeDirectives.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -2
- package/dist/makeMergedSchema.d.ts +6 -6
- package/dist/makeMergedSchema.d.ts.map +1 -1
- package/dist/plugins/index.d.ts +8 -8
- package/dist/plugins/index.d.ts.map +1 -1
- package/dist/plugins/index.js +16 -20
- package/dist/plugins/useRedwoodAuthContext.d.ts +9 -0
- package/dist/plugins/useRedwoodAuthContext.d.ts.map +1 -0
- package/dist/plugins/useRedwoodAuthContext.js +50 -0
- package/dist/plugins/useRedwoodDirective.d.ts +3 -9
- package/dist/plugins/useRedwoodDirective.d.ts.map +1 -1
- package/dist/plugins/useRedwoodDirective.js +1 -3
- package/dist/plugins/useRedwoodError.d.ts +20 -0
- package/dist/plugins/useRedwoodError.d.ts.map +1 -0
- package/dist/plugins/{useCedarError.js → useRedwoodError.js} +5 -5
- package/dist/plugins/useRedwoodGlobalContextSetter.d.ts +9 -0
- package/dist/plugins/useRedwoodGlobalContextSetter.d.ts.map +1 -0
- package/dist/plugins/{useCedarGlobalContextSetter.js → useRedwoodGlobalContextSetter.js} +2 -2
- package/dist/plugins/useRedwoodLogger.d.ts +115 -0
- package/dist/plugins/useRedwoodLogger.d.ts.map +1 -0
- package/dist/plugins/{useCedarLogger.js → useRedwoodLogger.js} +2 -2
- package/dist/plugins/useRedwoodOpenTelemetry.d.ts +22 -0
- package/dist/plugins/useRedwoodOpenTelemetry.d.ts.map +1 -0
- package/dist/plugins/{useCedarOpenTelemetry.js → useRedwoodOpenTelemetry.js} +3 -3
- package/dist/plugins/useRedwoodPopulateContext.d.ts +9 -0
- package/dist/plugins/useRedwoodPopulateContext.d.ts.map +1 -0
- package/dist/plugins/{useCedarPopulateContext.js → useRedwoodPopulateContext.js} +2 -2
- package/dist/plugins/useRedwoodTrustedDocuments.d.ts +23 -0
- package/dist/plugins/useRedwoodTrustedDocuments.d.ts.map +1 -0
- package/dist/plugins/{useCedarTrustedDocuments.js → useRedwoodTrustedDocuments.js} +13 -20
- package/dist/subscriptions/makeSubscriptions.d.ts +3 -3
- package/dist/subscriptions/makeSubscriptions.d.ts.map +1 -1
- package/dist/types.d.ts +9 -13
- package/dist/types.d.ts.map +1 -1
- package/package.json +24 -16
- package/dist/plugins/useCedarAuthContext.d.ts.map +0 -1
- package/dist/plugins/useCedarAuthContext.js +0 -30
- package/dist/plugins/useCedarError.d.ts.map +0 -1
- package/dist/plugins/useCedarGlobalContextSetter.d.ts.map +0 -1
- package/dist/plugins/useCedarLogger.d.ts.map +0 -1
- package/dist/plugins/useCedarOpenTelemetry.d.ts.map +0 -1
- package/dist/plugins/useCedarPopulateContext.d.ts.map +0 -1
- package/dist/plugins/useCedarTrustedDocuments.d.ts.map +0 -1
|
@@ -17,7 +17,7 @@ var AttributeName = /* @__PURE__ */ ((AttributeName2) => {
|
|
|
17
17
|
return AttributeName2;
|
|
18
18
|
})(AttributeName || {});
|
|
19
19
|
const tracingSpanSymbol = "OPEN_TELEMETRY_GRAPHQL";
|
|
20
|
-
const
|
|
20
|
+
const useRedwoodOpenTelemetry = (options) => {
|
|
21
21
|
const spanKind = SpanKind.SERVER;
|
|
22
22
|
const spanAdditionalAttributes = {};
|
|
23
23
|
const tracer = opentelemetry.trace.getTracer("redwoodjs");
|
|
@@ -85,7 +85,7 @@ const useCedarOpenTelemetry = (options) => {
|
|
|
85
85
|
if (isAsyncIterable(result)) {
|
|
86
86
|
executionSpan.end();
|
|
87
87
|
console.warn(
|
|
88
|
-
`Plugin "
|
|
88
|
+
`Plugin "RedwoodOpenTelemetry" encountered an AsyncIterator which is not supported yet, so tracing data is not available for the operation.`
|
|
89
89
|
);
|
|
90
90
|
return;
|
|
91
91
|
}
|
|
@@ -117,5 +117,5 @@ const useCedarOpenTelemetry = (options) => {
|
|
|
117
117
|
};
|
|
118
118
|
export {
|
|
119
119
|
AttributeName,
|
|
120
|
-
|
|
120
|
+
useRedwoodOpenTelemetry
|
|
121
121
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Plugin } from 'graphql-yoga';
|
|
2
|
+
import type { CedarGraphQLContext, GraphQLHandlerOptions } from '../types.js';
|
|
3
|
+
/**
|
|
4
|
+
* This Envelop plugin enriches the context on a per-request basis
|
|
5
|
+
* by populating it with the results of a custom function
|
|
6
|
+
* @returns
|
|
7
|
+
*/
|
|
8
|
+
export declare const useRedwoodPopulateContext: (populateContextBuilder: NonNullable<GraphQLHandlerOptions["context"]>) => Plugin<CedarGraphQLContext>;
|
|
9
|
+
//# sourceMappingURL=useRedwoodPopulateContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useRedwoodPopulateContext.d.ts","sourceRoot":"","sources":["../../src/plugins/useRedwoodPopulateContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE1C,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAE7E;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,GACpC,wBAAwB,WAAW,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC,KACpE,MAAM,CAAC,mBAAmB,CAW5B,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const useRedwoodPopulateContext = (populateContextBuilder) => {
|
|
2
2
|
return {
|
|
3
3
|
async onContextBuilding({ context, extendContext }) {
|
|
4
4
|
const populateContext = typeof populateContextBuilder === "function" ? await populateContextBuilder({ context }) : populateContextBuilder;
|
|
@@ -7,5 +7,5 @@ const useCedarPopulateContext = (populateContextBuilder) => {
|
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
export {
|
|
10
|
-
|
|
10
|
+
useRedwoodPopulateContext
|
|
11
11
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { UsePersistedOperationsOptions } from '@graphql-yoga/plugin-persisted-operations';
|
|
2
|
+
import type { Plugin } from 'graphql-yoga';
|
|
3
|
+
import type { CedarGraphQLContext } from '../types.js';
|
|
4
|
+
export type RedwoodTrustedDocumentOptions = Omit<UsePersistedOperationsOptions, 'getPersistedOperation'> & {
|
|
5
|
+
/**
|
|
6
|
+
* Whether to disable the plugin
|
|
7
|
+
* @default false
|
|
8
|
+
*/
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* The store to get the persisted operation hash from
|
|
12
|
+
* Required when the plugin is not disabled
|
|
13
|
+
*/
|
|
14
|
+
store?: Readonly<Record<string, string>>;
|
|
15
|
+
} & ({
|
|
16
|
+
disabled: true;
|
|
17
|
+
store?: Readonly<Record<string, string>>;
|
|
18
|
+
} | {
|
|
19
|
+
disabled?: false;
|
|
20
|
+
store: Readonly<Record<string, string>>;
|
|
21
|
+
});
|
|
22
|
+
export declare const useRedwoodTrustedDocuments: (options: RedwoodTrustedDocumentOptions) => Plugin<CedarGraphQLContext>;
|
|
23
|
+
//# sourceMappingURL=useRedwoodTrustedDocuments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useRedwoodTrustedDocuments.d.ts","sourceRoot":"","sources":["../../src/plugins/useRedwoodTrustedDocuments.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2CAA2C,CAAA;AAC9F,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE1C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAEtD,MAAM,MAAM,6BAA6B,GAAG,IAAI,CAC9C,6BAA6B,EAC7B,uBAAuB,CACxB,GAAG;IACF;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;OAGG;IACH,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CACzC,GAAG,CACE;IAAE,QAAQ,EAAE,IAAI,CAAC;IAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CAAE,GAC5D;IAAE,QAAQ,CAAC,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CAAE,CAChE,CAAA;AAoEH,eAAO,MAAM,0BAA0B,GACrC,SAAS,6BAA6B,KACrC,MAAM,CAAC,mBAAmB,CA8B5B,CAAA"}
|
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
import { usePersistedOperations } from "@graphql-yoga/plugin-persisted-operations";
|
|
2
|
-
const CEDAR__AUTH_GET_CURRENT_USER_QUERY = "query __CEDAR__AUTH_GET_CURRENT_USER { cedar { currentUser } }";
|
|
3
|
-
const CEDAR__STUDIO_RESYNC_MAIL_RENDERERS_MUTATION = "mutation { resyncMailRenderers }";
|
|
4
|
-
const CEDAR__STUDIO_TEMPLATE_MUTATION = "mutation { resyncMailTemplate }";
|
|
5
|
-
const allowCedarAuthCurrentUserQuery = (request
|
|
2
|
+
const CEDAR__AUTH_GET_CURRENT_USER_QUERY = '{"query":"query __CEDAR__AUTH_GET_CURRENT_USER { cedar { currentUser } }"}';
|
|
3
|
+
const CEDAR__STUDIO_RESYNC_MAIL_RENDERERS_MUTATION = '{"query":"mutation { resyncMailRenderers }"}';
|
|
4
|
+
const CEDAR__STUDIO_TEMPLATE_MUTATION = '{"query":"mutation { resyncMailTemplate }"}';
|
|
5
|
+
const allowCedarAuthCurrentUserQuery = async (request) => {
|
|
6
6
|
const headers = request.headers;
|
|
7
7
|
const hasContentType = headers.get("content-type") === "application/json";
|
|
8
8
|
const hasAuthProvider = !!headers.get("auth-provider");
|
|
9
9
|
const hasAuthorization = !!headers.get("authorization");
|
|
10
10
|
const hasAllowedHeaders = hasContentType && hasAuthProvider && hasAuthorization;
|
|
11
|
-
const
|
|
11
|
+
const query = await request.text();
|
|
12
|
+
const hasAllowedQuery = query === CEDAR__AUTH_GET_CURRENT_USER_QUERY;
|
|
12
13
|
return hasAllowedHeaders && hasAllowedQuery;
|
|
13
14
|
};
|
|
14
|
-
const allowCedarStudioResyncMailMutations = (request
|
|
15
|
+
const allowCedarStudioResyncMailMutations = async (request) => {
|
|
15
16
|
const isLocalDevelopment = process.env.NODE_ENV === "development";
|
|
16
17
|
if (!isLocalDevelopment) {
|
|
17
18
|
return false;
|
|
18
19
|
}
|
|
19
20
|
const headers = request.headers;
|
|
20
21
|
const hasContentType = headers.get("content-type") === "application/json";
|
|
21
|
-
const
|
|
22
|
+
const query = await request.text();
|
|
23
|
+
const isAllowedQuery = query === CEDAR__STUDIO_RESYNC_MAIL_RENDERERS_MUTATION || query === CEDAR__STUDIO_TEMPLATE_MUTATION;
|
|
22
24
|
return hasContentType && isAllowedQuery;
|
|
23
25
|
};
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
const persistedOperations = usePersistedOperations({
|
|
26
|
+
const useRedwoodTrustedDocuments = (options) => {
|
|
27
|
+
return usePersistedOperations({
|
|
27
28
|
...options,
|
|
28
29
|
customErrors: {
|
|
29
30
|
persistedQueryOnly: "Use Trusted Only!",
|
|
@@ -46,18 +47,10 @@ const useCedarTrustedDocuments = (options) => {
|
|
|
46
47
|
}
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
|
-
|
|
50
|
-
return allowCedarAuthCurrentUserQuery(request, params) || allowCedarStudioResyncMailMutations(request, params);
|
|
50
|
+
return allowCedarAuthCurrentUserQuery(request) || allowCedarStudioResyncMailMutations(request);
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
|
-
return {
|
|
54
|
-
...persistedOperations,
|
|
55
|
-
onParams(payload) {
|
|
56
|
-
paramsByRequest.set(payload.request, payload.params);
|
|
57
|
-
return persistedOperations.onParams?.(payload);
|
|
58
|
-
}
|
|
59
|
-
};
|
|
60
53
|
};
|
|
61
54
|
export {
|
|
62
|
-
|
|
55
|
+
useRedwoodTrustedDocuments
|
|
63
56
|
};
|
|
@@ -5,14 +5,14 @@ import type { DocumentNode } from 'graphql';
|
|
|
5
5
|
* But not fully supported in TS
|
|
6
6
|
* {
|
|
7
7
|
* schema: DocumentNode // <-- required
|
|
8
|
-
* [string]:
|
|
8
|
+
* [string]: RedwoodSubscription
|
|
9
9
|
* }
|
|
10
10
|
*/
|
|
11
11
|
export type SubscriptionGlobImports = Record<string, any>;
|
|
12
|
-
export type
|
|
12
|
+
export type RedwoodSubscription = {
|
|
13
13
|
schema: DocumentNode;
|
|
14
14
|
resolvers: any;
|
|
15
15
|
name: string;
|
|
16
16
|
};
|
|
17
|
-
export declare const makeSubscriptions: (SubscriptionGlobs: SubscriptionGlobImports) =>
|
|
17
|
+
export declare const makeSubscriptions: (SubscriptionGlobs: SubscriptionGlobImports) => RedwoodSubscription[];
|
|
18
18
|
//# sourceMappingURL=makeSubscriptions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"makeSubscriptions.d.ts","sourceRoot":"","sources":["../../src/subscriptions/makeSubscriptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C;;;;;;;;GAQG;AACH,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;AAEzD,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"makeSubscriptions.d.ts","sourceRoot":"","sources":["../../src/subscriptions/makeSubscriptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAC3C;;;;;;;;GAQG;AACH,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;AAEzD,MAAM,MAAM,mBAAmB,GAAG;IAChC,MAAM,EAAE,YAAY,CAAA;IACpB,SAAS,EAAE,GAAG,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;AAED,eAAO,MAAM,iBAAiB,GAC5B,mBAAmB,uBAAuB,KACzC,mBAAmB,EAmBrB,CAAA"}
|
package/dist/types.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ import type { AuthContextPayload, CorsConfig, Decoder } from '@cedarjs/api';
|
|
|
8
8
|
import type { CedarRequestContext } from '@cedarjs/api/runtime';
|
|
9
9
|
import type { CedarRealtimeOptions } from '@cedarjs/realtime';
|
|
10
10
|
import type { DirectiveGlobImports } from './directives/makeDirectives.js';
|
|
11
|
-
import type {
|
|
12
|
-
import type {
|
|
13
|
-
import type {
|
|
11
|
+
import type { useRedwoodDirectiveReturn, DirectivePluginOptions } from './plugins/useRedwoodDirective.js';
|
|
12
|
+
import type { LoggerConfig } from './plugins/useRedwoodLogger.js';
|
|
13
|
+
import type { RedwoodTrustedDocumentOptions } from './plugins/useRedwoodTrustedDocuments.js';
|
|
14
14
|
export type Resolver = (...args: unknown[]) => unknown;
|
|
15
15
|
export type Services = {
|
|
16
16
|
[funcName: string]: Resolver;
|
|
@@ -33,7 +33,7 @@ export interface MakeServicesInterface {
|
|
|
33
33
|
}
|
|
34
34
|
export type MakeServices = (args: MakeServicesInterface) => ServicesGlobImports;
|
|
35
35
|
export type GraphQLTypeWithFields = GraphQLObjectType | GraphQLInterfaceType;
|
|
36
|
-
export type {
|
|
36
|
+
export type { useRedwoodDirectiveReturn, DirectivePluginOptions };
|
|
37
37
|
export type GetCurrentUser = (decoded: AuthContextPayload[0], raw: AuthContextPayload[1], req?: AuthContextPayload[2]) => Promise<null | Record<string, unknown>>;
|
|
38
38
|
export type GenerateGraphiQLHeader = () => string;
|
|
39
39
|
export type Context = Record<string, unknown>;
|
|
@@ -65,7 +65,7 @@ export interface RedwoodGraphQLContext {
|
|
|
65
65
|
currentUser?: ThenArg<ReturnType<GetCurrentUser>> | AuthContextPayload | null;
|
|
66
66
|
[index: string]: unknown;
|
|
67
67
|
}
|
|
68
|
-
export interface
|
|
68
|
+
export interface RedwoodOpenTelemetryConfig {
|
|
69
69
|
/**
|
|
70
70
|
* @description Enables the creation of a span for each resolver execution.
|
|
71
71
|
*/
|
|
@@ -79,13 +79,9 @@ export interface CedarOpenTelemetryConfig {
|
|
|
79
79
|
*/
|
|
80
80
|
result: boolean;
|
|
81
81
|
}
|
|
82
|
-
|
|
83
|
-
export type RedwoodOpenTelemetryConfig = CedarOpenTelemetryConfig;
|
|
84
|
-
export interface CedarScalarConfig {
|
|
82
|
+
export interface RedwoodScalarConfig {
|
|
85
83
|
File?: boolean;
|
|
86
84
|
}
|
|
87
|
-
/** @deprecated Please use CedarScalarConfig */
|
|
88
|
-
export type RedwoodScalarConfig = CedarScalarConfig;
|
|
89
85
|
/**
|
|
90
86
|
* GraphQLYogaOptions
|
|
91
87
|
*/
|
|
@@ -212,18 +208,18 @@ export type GraphQLYogaOptions = {
|
|
|
212
208
|
* @see https://benjie.dev/graphql/trusted-documents
|
|
213
209
|
* @see https://the-guild.dev/graphql/yoga-server/docs/features/persisted-operations
|
|
214
210
|
*/
|
|
215
|
-
trustedDocuments?:
|
|
211
|
+
trustedDocuments?: RedwoodTrustedDocumentOptions;
|
|
216
212
|
/**
|
|
217
213
|
* @description Configure OpenTelemetry plugin behaviour
|
|
218
214
|
*/
|
|
219
|
-
openTelemetryOptions?:
|
|
215
|
+
openTelemetryOptions?: RedwoodOpenTelemetryConfig;
|
|
220
216
|
/**
|
|
221
217
|
* @description Configure which scalars to include in the schema. This should match your
|
|
222
218
|
* `graphql.includeScalars` configuration in `cedar.toml`.
|
|
223
219
|
*
|
|
224
220
|
* The default is to include. You must set to `false` to exclude.
|
|
225
221
|
*/
|
|
226
|
-
includeScalars?:
|
|
222
|
+
includeScalars?: RedwoodScalarConfig;
|
|
227
223
|
};
|
|
228
224
|
/**
|
|
229
225
|
* @description Configure GraphQLHandler with options
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AACvE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAA;AAC1E,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,uBAAuB,CAAA;AACxE,OAAO,KAAK,EAAE,oBAAoB,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,YAAY,CAAA;AAChF,OAAO,KAAK,EACV,iBAAiB,EACjB,oBAAoB,EACpB,YAAY,EACb,MAAM,SAAS,CAAA;AAChB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE1C,OAAO,KAAK,EAAE,kBAAkB,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,cAAc,CAAA;AAC3E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAC/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAA;AAE7D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAC1E,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/graphql-server",
|
|
3
|
-
"version": "5.0.7
|
|
3
|
+
"version": "5.0.7",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -10,9 +10,13 @@
|
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
|
-
"
|
|
13
|
+
"import": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./dist/cjs/index.d.ts",
|
|
19
|
+
"default": "./dist/cjs/index.js"
|
|
16
20
|
}
|
|
17
21
|
}
|
|
18
22
|
},
|
|
@@ -24,6 +28,7 @@
|
|
|
24
28
|
"build": "node ./build.mts",
|
|
25
29
|
"build:pack": "yarn pack -o cedarjs-graphql-server.tgz",
|
|
26
30
|
"build:types": "tsc --build --verbose ./tsconfig.build.json",
|
|
31
|
+
"build:types-cjs": "tsc --build --verbose ./tsconfig.cjs.json",
|
|
27
32
|
"build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx\" --ignore dist --exec \"yarn build\"",
|
|
28
33
|
"check:attw": "yarn cedar-fwtools-attw",
|
|
29
34
|
"check:package": "concurrently npm:check:attw yarn:publint",
|
|
@@ -32,41 +37,44 @@
|
|
|
32
37
|
"test:watch": "yarn test --watch"
|
|
33
38
|
},
|
|
34
39
|
"dependencies": {
|
|
35
|
-
"@cedarjs/api": "5.0.7
|
|
36
|
-
"@cedarjs/context": "5.0.7
|
|
40
|
+
"@cedarjs/api": "5.0.7",
|
|
41
|
+
"@cedarjs/context": "5.0.7",
|
|
37
42
|
"@envelop/core": "5.5.1",
|
|
43
|
+
"@envelop/depth-limit": "4.0.0",
|
|
38
44
|
"@envelop/disable-introspection": "6.0.0",
|
|
39
45
|
"@envelop/filter-operation-type": "6.0.0",
|
|
40
46
|
"@envelop/on-resolve": "4.1.1",
|
|
41
47
|
"@escape.tech/graphql-armor": "3.0.1",
|
|
42
|
-
"@graphql-tools/merge": "9.
|
|
43
|
-
"@graphql-tools/schema": "10.
|
|
48
|
+
"@graphql-tools/merge": "9.1.9",
|
|
49
|
+
"@graphql-tools/schema": "10.0.33",
|
|
44
50
|
"@graphql-tools/utils": "10.11.0",
|
|
45
|
-
"@graphql-yoga/plugin-persisted-operations": "3.21.
|
|
51
|
+
"@graphql-yoga/plugin-persisted-operations": "3.21.2",
|
|
46
52
|
"@opentelemetry/api": "1.9.1",
|
|
47
53
|
"cookie": "1.1.1",
|
|
48
54
|
"graphql": "16.14.2",
|
|
49
|
-
"graphql-scalars": "1.
|
|
55
|
+
"graphql-scalars": "1.25.0",
|
|
50
56
|
"graphql-tag": "2.12.6",
|
|
51
|
-
"graphql-yoga": "5.21.
|
|
57
|
+
"graphql-yoga": "5.21.2",
|
|
52
58
|
"lodash": "4.18.1",
|
|
53
59
|
"uuid": "11.1.0"
|
|
54
60
|
},
|
|
55
61
|
"devDependencies": {
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
62
|
+
"@babel/cli": "7.29.7",
|
|
63
|
+
"@babel/core": "^7.26.10",
|
|
64
|
+
"@cedarjs/framework-tools": "5.0.7",
|
|
65
|
+
"@cedarjs/project-config": "5.0.7",
|
|
66
|
+
"@cedarjs/realtime": "5.0.7",
|
|
58
67
|
"@envelop/types": "5.2.1",
|
|
59
|
-
"@escape.tech/graphql-armor-types": "0.7.0",
|
|
60
68
|
"@types/aws-lambda": "8.10.162",
|
|
61
69
|
"@types/jsonwebtoken": "9.0.10",
|
|
62
|
-
"@types/lodash": "4.17.
|
|
70
|
+
"@types/lodash": "4.17.24",
|
|
71
|
+
"@whatwg-node/fetch": "0.10.13",
|
|
63
72
|
"@whatwg-node/promise-helpers": "^1.3.0",
|
|
64
73
|
"concurrently": "9.2.4",
|
|
65
|
-
"fastify": "5.12.0",
|
|
66
74
|
"jsonwebtoken": "9.0.3",
|
|
67
|
-
"publint": "0.3.
|
|
75
|
+
"publint": "0.3.21",
|
|
68
76
|
"typescript": "5.9.3",
|
|
69
|
-
"vitest": "
|
|
77
|
+
"vitest": "3.2.6"
|
|
70
78
|
},
|
|
71
79
|
"engines": {
|
|
72
80
|
"node": ">=24"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarAuthContext.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarAuthContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE1C,OAAO,KAAK,EAAsB,OAAO,EAAE,MAAM,cAAc,CAAA;AAG/D,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAE7E;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAC9B,gBAAgB,qBAAqB,CAAC,gBAAgB,CAAC,EACvD,cAAc,OAAO,GAAG,OAAO,EAAE,KAChC,MAAM,CAAC,mBAAmB,CA2C5B,CAAA"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { hasAuthDecoder } from "@cedarjs/api";
|
|
2
|
-
const useCedarAuthContext = (getCurrentUser, authDecoder) => {
|
|
3
|
-
return {
|
|
4
|
-
async onContextBuilding({ context, extendContext }) {
|
|
5
|
-
if (!context.cedarContext && hasAuthDecoder(authDecoder)) {
|
|
6
|
-
throw new Error(
|
|
7
|
-
"Auth state is resolved when a request enters Cedar and passed on the GraphQL context, but this context has no `cedarContext`. Whatever is invoking `yoga.handle` needs to build one with `buildCedarContext` from `@cedarjs/api/runtime` and pass it as `cedarContext`."
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
|
-
const authContext = context.cedarContext?.serverAuthState;
|
|
11
|
-
try {
|
|
12
|
-
if (authContext) {
|
|
13
|
-
const currentUser = getCurrentUser ? await getCurrentUser(
|
|
14
|
-
authContext[0],
|
|
15
|
-
authContext[1],
|
|
16
|
-
authContext[2]
|
|
17
|
-
) : null;
|
|
18
|
-
if (currentUser) {
|
|
19
|
-
extendContext({ currentUser });
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
} catch (error) {
|
|
23
|
-
throw new Error(`Exception in getCurrentUser: ${error.message}`);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
export {
|
|
29
|
-
useCedarAuthContext
|
|
30
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarError.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarError.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAO1C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAEjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAEtD;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,aAAa,GAAI,QAAQ,MAAM,KAAG,MAAM,CAAC,mBAAmB,CAsCxE,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarGlobalContextSetter.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarGlobalContextSetter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAI1C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAEtD;;;;GAIG;AACH,eAAO,MAAM,2BAA2B,QAAO,MAAM,CAAC,mBAAmB,CAMvE,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarLogger.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarLogger.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAI1C,OAAO,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAGlE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAEtD;;;;;;;;;;;;;GAaG;AACH,KAAK,oBAAoB,GAAG;IAC1B;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,KAAK,CAAC,EAAE,eAAe,GAAG,MAAM,CAAA;IAEhC;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;;;;;;;OAUG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IAEvB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;CAC7B,CAAA;AAED;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,oBAAoB,CAAA;CAC/B,CAAA;AA+DD;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,cAAc,GACzB,cAAc,YAAY,KACzB,MAAM,CAAC,mBAAmB,CAgH5B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarOpenTelemetry.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarOpenTelemetry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAuB,MAAM,eAAe,CAAA;AAKhE,OAAO,KAAK,aAAa,MAAM,oBAAoB,CAAA;AAGnD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAA;AAE3D,oBAAY,aAAa;IACvB,eAAe,0BAA0B;IACzC,gBAAgB,2BAA2B;IAC3C,kBAAkB,+BAA+B;IACjD,mBAAmB,+BAA+B;IAClD,kBAAkB,8BAA8B;IAChD,oBAAoB,gCAAgC;IACpD,aAAa,0BAA0B;IACvC,wBAAwB,kCAAkC;IAC1D,4BAA4B,6BAA6B;IACzD,mBAAmB,8BAA8B;CAClD;AAGD,QAAA,MAAM,iBAAiB,2BAA2B,CAAA;AAElD,KAAK,aAAa,GAAG;IACnB,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC,IAAI,CAAA;CACxC,CAAA;AAED,eAAO,MAAM,qBAAqB,GAChC,SAAS,wBAAwB,KAChC,MAAM,CAAC,aAAa,CAgHtB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarPopulateContext.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarPopulateContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AAE1C,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAE7E;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,GAClC,wBAAwB,WAAW,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC,KACpE,MAAM,CAAC,mBAAmB,CAW5B,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useCedarTrustedDocuments.d.ts","sourceRoot":"","sources":["../../src/plugins/useCedarTrustedDocuments.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,2CAA2C,CAAA;AAC9F,OAAO,KAAK,EAAiB,MAAM,EAAE,MAAM,cAAc,CAAA;AAEzD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAEtD,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAC5C,6BAA6B,EAC7B,uBAAuB,CACxB,GAAG;IACF;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;OAGG;IACH,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CACzC,GAAG,CACE;IAAE,QAAQ,EAAE,IAAI,CAAC;IAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CAAE,GAC5D;IAAE,QAAQ,CAAC,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CAAE,CAChE,CAAA;AAEH,6DAA6D;AAC7D,MAAM,MAAM,6BAA6B,GAAG,2BAA2B,CAAA;AAuEvE,eAAO,MAAM,wBAAwB,GACnC,SAAS,2BAA2B,KACnC,MAAM,CAAC,mBAAmB,CAyD5B,CAAA"}
|