@zuplo/graphql 5.1651.0 → 5.1652.0
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/index.d.ts +2 -2
- package/index.minified.js +29 -29
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -535,14 +535,14 @@ declare interface Logger {
|
|
|
535
535
|
declare type Modify<T, R> = Omit<T, keyof R> & R;
|
|
536
536
|
|
|
537
537
|
/**
|
|
538
|
-
* @
|
|
538
|
+
* @public
|
|
539
539
|
*/
|
|
540
540
|
declare interface OnResponseSendingFinalHook {
|
|
541
541
|
(response: Response, request: ZuploRequest, context: ZuploContext): Promise<void> | void;
|
|
542
542
|
}
|
|
543
543
|
|
|
544
544
|
/**
|
|
545
|
-
* @
|
|
545
|
+
* @public
|
|
546
546
|
*/
|
|
547
547
|
declare interface OnResponseSendingHook {
|
|
548
548
|
(response: Response, request: ZuploRequest, context: ZuploContext): Promise<Response> | Response;
|