From d3b2bbcd82bf5634c431f5658ace7685d9f797b0 Mon Sep 17 00:00:00 2001 From: Min-Young Wu Date: Mon, 11 Mar 2019 13:21:27 -0700 Subject: [PATCH] [bookshelf] Adding withSchema SyncOption (#33723) PR where the option was added: https://github.com/bookshelf/bookshelf/pull/1638 --- types/bookshelf/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/bookshelf/index.d.ts b/types/bookshelf/index.d.ts index 7467b3178f..2edb269875 100644 --- a/types/bookshelf/index.d.ts +++ b/types/bookshelf/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for bookshelfjs v0.9.4 +// Type definitions for bookshelfjs v0.13.0 // Project: http://bookshelfjs.org/ // Definitions by: Andrew Schurman , Vesa Poikajärvi // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -317,6 +317,7 @@ declare namespace Bookshelf { interface SyncOptions { transacting?: Knex.Transaction; debug?: boolean; + withSchema?: string; } interface CollectionOptions {