@zuplo/graphql 5.1650.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 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
- * @beta
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
- * @beta
545
+ * @public
546
546
  */
547
547
  declare interface OnResponseSendingHook {
548
548
  (response: Response, request: ZuploRequest, context: ZuploContext): Promise<Response> | Response;