From de4718d5b81d29ac23597172d8ee591617924fe0 Mon Sep 17 00:00:00 2001 From: Agnes Lin <50331796+agnes512@users.noreply.github.com> Date: Wed, 8 May 2019 11:45:37 -0400 Subject: [PATCH] chore: update copyrights years (#1737) --- examples/app-noschema.js | 2 +- examples/app.js | 2 +- examples/datasource-app.js | 2 +- examples/inclusion.js | 2 +- examples/load-schemas.js | 2 +- examples/nesting-schema.js | 2 +- examples/relations.js | 2 +- index.js | 3 ++- lib/browser.depd.js | 2 +- lib/connectors/kv-memory.js | 5 +++++ lib/connectors/memory.js | 2 +- lib/connectors/transient.js | 2 +- lib/dao.js | 2 +- lib/datasource.js | 2 +- lib/date-string.js | 2 +- lib/geo.js | 2 +- lib/hooks.js | 2 +- lib/include.js | 2 +- lib/include_utils.js | 2 +- lib/introspection.js | 2 +- lib/jutil.js | 2 +- lib/kvao/delete-all.js | 5 +++++ lib/kvao/delete.js | 5 +++++ lib/kvao/expire.js | 5 +++++ lib/kvao/get.js | 5 +++++ lib/kvao/index.js | 5 +++++ lib/kvao/iterate-keys.js | 5 +++++ lib/kvao/keys.js | 5 +++++ lib/kvao/set.js | 5 +++++ lib/kvao/ttl.js | 5 +++++ lib/list.js | 2 +- lib/mixins.js | 3 ++- lib/model-builder.js | 3 ++- lib/model-definition.js | 3 ++- lib/model-utils.js | 2 +- lib/model.js | 2 +- lib/observer.js | 3 ++- lib/relation-definition.js | 2 +- lib/relations.js | 3 ++- lib/scope.js | 3 ++- lib/transaction.js | 3 ++- lib/types.js | 3 ++- lib/utils.js | 3 ++- lib/validations.js | 2 +- support/describe-operation-hooks.js | 2 +- test/CustomTypeForeignKey.test.js | 3 ++- test/allow-extended-operators.test.js | 2 +- test/async-observer.test.js | 3 ++- test/basic-querying.test.js | 2 +- test/common_test.js | 2 +- test/crud-with-options.test.js | 2 +- test/datasource.test.js | 2 +- test/datatype.test.js | 2 +- test/date-string.test.js | 2 +- test/default-scope.test.js | 2 +- test/defaults.test.js | 2 +- test/discovery.test.js | 2 +- test/exclude-base-props.test.js | 2 +- test/fixtures/loopback-connector-throwing/index.js | 2 +- test/geo.test.js | 2 +- test/helpers/bdd-if.js | 3 ++- test/helpers/context-test-helpers.js | 3 ++- test/helpers/hook-monitor.js | 3 ++- test/helpers/uid-generator.js | 2 +- test/hooks.test.js | 2 +- test/include.test.js | 2 +- test/include_util.test.js | 2 +- test/init.js | 2 +- test/introspection.test.js | 2 +- test/json.test.js | 2 +- test/kv-memory.js | 2 +- test/kvao.suite.js | 2 +- test/kvao/_helpers.js | 5 +++++ test/kvao/delete-all.suite.js | 5 +++++ test/kvao/delete.suite.js | 5 +++++ test/kvao/expire.suite.js | 5 +++++ test/kvao/get-set.suite.js | 5 +++++ test/kvao/iterate-keys.suite.js | 5 +++++ test/kvao/keys.suite.js | 5 +++++ test/kvao/ttl.suite.js | 5 +++++ test/loopback-data.test.js | 2 +- test/loopback-dl.test.js | 2 +- test/manipulation.test.js | 2 +- test/memory.test.js | 2 +- test/mixins.test.js | 2 +- test/model-builder.test.js | 2 +- test/model-definition.test.js | 2 +- test/model-inheritance.test.js | 2 +- test/model-utils.test.js | 5 +++++ test/normalize-undefined.test.js | 2 +- test/operation-hooks.suite/embeds-many-create.suite.js | 2 +- test/operation-hooks.suite/embeds-many-destroy.suite.js | 2 +- test/operation-hooks.suite/embeds-many-update-by-id.suite.js | 2 +- test/operation-hooks.suite/embeds-one-create.suite.js | 2 +- test/operation-hooks.suite/embeds-one-destroy.suite.js | 2 +- test/operation-hooks.suite/embeds-one-update.suite.js | 2 +- test/operation-hooks.suite/index.js | 5 +++++ test/optional-validation.test.js | 2 +- test/persistence-hooks.suite.js | 2 +- test/relations.test.js | 2 +- test/schema.test.js | 2 +- test/scope.test.js | 2 +- test/spec_helper.js | 2 +- test/transaction.test.js | 2 +- test/transient.test.js | 2 +- test/util.test.js | 2 +- test/validations.test.js | 2 +- types/connector.d.ts | 5 +++++ types/model.d.ts | 2 +- 109 files changed, 208 insertions(+), 88 deletions(-) diff --git a/examples/app-noschema.js b/examples/app-noschema.js index 69b64493..c6b69606 100644 --- a/examples/app-noschema.js +++ b/examples/app-noschema.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/app.js b/examples/app.js index e29a2dbb..2fd71788 100644 --- a/examples/app.js +++ b/examples/app.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/datasource-app.js b/examples/datasource-app.js index 0ba825d1..f7f43056 100644 --- a/examples/datasource-app.js +++ b/examples/datasource-app.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/inclusion.js b/examples/inclusion.js index 8bcf94df..c65bc3ac 100644 --- a/examples/inclusion.js +++ b/examples/inclusion.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/load-schemas.js b/examples/load-schemas.js index d9b8f336..dbe0bcc9 100644 --- a/examples/load-schemas.js +++ b/examples/load-schemas.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/nesting-schema.js b/examples/nesting-schema.js index 5adaeb9c..8bead087 100644 --- a/examples/nesting-schema.js +++ b/examples/nesting-schema.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/examples/relations.js b/examples/relations.js index a2dd20cc..1268e92c 100644 --- a/examples/relations.js +++ b/examples/relations.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/index.js b/index.js index 9cabf639..dae12247 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2011,2016. All Rights Reserved. +// Copyright IBM Corp. 2011,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const SG = require('strong-globalize'); diff --git a/lib/browser.depd.js b/lib/browser.depd.js index ec9c846a..b7bf3044 100644 --- a/lib/browser.depd.js +++ b/lib/browser.depd.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/connectors/kv-memory.js b/lib/connectors/kv-memory.js index 8ac84c0a..cab15bd6 100644 --- a/lib/connectors/kv-memory.js +++ b/lib/connectors/kv-memory.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const g = require('strong-globalize')(); diff --git a/lib/connectors/memory.js b/lib/connectors/memory.js index d3f37fe0..65451295 100644 --- a/lib/connectors/memory.js +++ b/lib/connectors/memory.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/connectors/transient.js b/lib/connectors/transient.js index 6edb9739..472ae543 100644 --- a/lib/connectors/transient.js +++ b/lib/connectors/transient.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/dao.js b/lib/dao.js index 24bd6682..d146586a 100644 --- a/lib/dao.js +++ b/lib/dao.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/datasource.js b/lib/datasource.js index e15debdc..018661cc 100644 --- a/lib/datasource.js +++ b/lib/datasource.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/date-string.js b/lib/date-string.js index 09a0bee1..5c6b9f97 100644 --- a/lib/date-string.js +++ b/lib/date-string.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2017,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/geo.js b/lib/geo.js index 9314b64c..b377e172 100644 --- a/lib/geo.js +++ b/lib/geo.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/hooks.js b/lib/hooks.js index 08d0f56e..5cde82cc 100644 --- a/lib/hooks.js +++ b/lib/hooks.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/include.js b/lib/include.js index fab83559..a9824fb9 100644 --- a/lib/include.js +++ b/lib/include.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2015. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/include_utils.js b/lib/include_utils.js index 57328742..faf50174 100644 --- a/lib/include_utils.js +++ b/lib/include_utils.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/introspection.js b/lib/introspection.js index a75edf91..d6475dd1 100644 --- a/lib/introspection.js +++ b/lib/introspection.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/jutil.js b/lib/jutil.js index 57538394..e886fe2d 100644 --- a/lib/jutil.js +++ b/lib/jutil.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2011,2016. All Rights Reserved. +// Copyright IBM Corp. 2011,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/kvao/delete-all.js b/lib/kvao/delete-all.js index 0f9b0ba9..51013d29 100644 --- a/lib/kvao/delete-all.js +++ b/lib/kvao/delete-all.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2017,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/delete.js b/lib/kvao/delete.js index dd2de3db..0e6378d2 100644 --- a/lib/kvao/delete.js +++ b/lib/kvao/delete.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2017,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/expire.js b/lib/kvao/expire.js index a531f45d..8b4730d6 100644 --- a/lib/kvao/expire.js +++ b/lib/kvao/expire.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/get.js b/lib/kvao/get.js index c17fda30..28d45443 100644 --- a/lib/kvao/get.js +++ b/lib/kvao/get.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/index.js b/lib/kvao/index.js index c3ac2b1b..0455fb4e 100644 --- a/lib/kvao/index.js +++ b/lib/kvao/index.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; function KeyValueAccessObject() { diff --git a/lib/kvao/iterate-keys.js b/lib/kvao/iterate-keys.js index 0dc37389..e53c2f78 100644 --- a/lib/kvao/iterate-keys.js +++ b/lib/kvao/iterate-keys.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/keys.js b/lib/kvao/keys.js index 296c346b..70623c55 100644 --- a/lib/kvao/keys.js +++ b/lib/kvao/keys.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/set.js b/lib/kvao/set.js index bd90bf6e..cdb367fc 100644 --- a/lib/kvao/set.js +++ b/lib/kvao/set.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/kvao/ttl.js b/lib/kvao/ttl.js index 197d33d1..dce7d472 100644 --- a/lib/kvao/ttl.js +++ b/lib/kvao/ttl.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/list.js b/lib/list.js index eccd003f..4c14bd1f 100644 --- a/lib/list.js +++ b/lib/list.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2012,2016. All Rights Reserved. +// Copyright IBM Corp. 2012,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/mixins.js b/lib/mixins.js index 948cb8e1..647e3b38 100644 --- a/lib/mixins.js +++ b/lib/mixins.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const debug = require('debug')('loopback:mixin'); diff --git a/lib/model-builder.js b/lib/model-builder.js index c1f0ba87..91e6bf77 100644 --- a/lib/model-builder.js +++ b/lib/model-builder.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; /*! diff --git a/lib/model-definition.js b/lib/model-definition.js index 6e4b4fa2..b67d0d19 100644 --- a/lib/model-definition.js +++ b/lib/model-definition.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const assert = require('assert'); diff --git a/lib/model-utils.js b/lib/model-utils.js index a0619b38..af18ba4e 100644 --- a/lib/model-utils.js +++ b/lib/model-utils.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2018,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/model.js b/lib/model.js index de874e2b..a08badf4 100644 --- a/lib/model.js +++ b/lib/model.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/observer.js b/lib/observer.js index 1e783401..b10612d0 100644 --- a/lib/observer.js +++ b/lib/observer.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const async = require('async'); diff --git a/lib/relation-definition.js b/lib/relation-definition.js index 5bf58d07..7cc13602 100644 --- a/lib/relation-definition.js +++ b/lib/relation-definition.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/lib/relations.js b/lib/relations.js index 3fa5af40..5b37c97b 100644 --- a/lib/relations.js +++ b/lib/relations.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; /*! diff --git a/lib/scope.js b/lib/scope.js index a163a0bb..decefde3 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const _ = require('lodash'); diff --git a/lib/transaction.js b/lib/transaction.js index e4336351..f18ab2d4 100644 --- a/lib/transaction.js +++ b/lib/transaction.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const g = require('strong-globalize')(); diff --git a/lib/types.js b/lib/types.js index 419e4d37..9702f076 100644 --- a/lib/types.js +++ b/lib/types.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const Types = {}; diff --git a/lib/utils.js b/lib/utils.js index 7568aae2..9799d5e1 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2012,2016. All Rights Reserved. +// Copyright IBM Corp. 2012,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; exports.safeRequire = safeRequire; diff --git a/lib/validations.js b/lib/validations.js index 82184e0a..697ed3f8 100644 --- a/lib/validations.js +++ b/lib/validations.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/support/describe-operation-hooks.js b/support/describe-operation-hooks.js index 0ca52e28..3e191742 100644 --- a/support/describe-operation-hooks.js +++ b/support/describe-operation-hooks.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/CustomTypeForeignKey.test.js b/test/CustomTypeForeignKey.test.js index 3ff97d7a..03c27823 100644 --- a/test/CustomTypeForeignKey.test.js +++ b/test/CustomTypeForeignKey.test.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const should = require('./init.js'); diff --git a/test/allow-extended-operators.test.js b/test/allow-extended-operators.test.js index 2bef648d..f4f6509c 100644 --- a/test/allow-extended-operators.test.js +++ b/test/allow-extended-operators.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/async-observer.test.js b/test/async-observer.test.js index 5e9d23a9..b4c02b36 100644 --- a/test/async-observer.test.js +++ b/test/async-observer.test.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const ModelBuilder = require('../').ModelBuilder; diff --git a/test/basic-querying.test.js b/test/basic-querying.test.js index a6e6b529..0beed102 100644 --- a/test/basic-querying.test.js +++ b/test/basic-querying.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/common_test.js b/test/common_test.js index 96771588..89c85f90 100644 --- a/test/common_test.js +++ b/test/common_test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2011,2016. All Rights Reserved. +// Copyright IBM Corp. 2011,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/crud-with-options.test.js b/test/crud-with-options.test.js index 4300f46f..cbc5d825 100644 --- a/test/crud-with-options.test.js +++ b/test/crud-with-options.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/datasource.test.js b/test/datasource.test.js index aa34c27f..89e291e6 100644 --- a/test/datasource.test.js +++ b/test/datasource.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/datatype.test.js b/test/datatype.test.js index 2aae02b4..ef16d54c 100644 --- a/test/datatype.test.js +++ b/test/datatype.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/date-string.test.js b/test/date-string.test.js index 1dbdb1da..f4c4d444 100644 --- a/test/date-string.test.js +++ b/test/date-string.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2017,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/default-scope.test.js b/test/default-scope.test.js index e38f18fa..0501949b 100644 --- a/test/default-scope.test.js +++ b/test/default-scope.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/defaults.test.js b/test/defaults.test.js index f31dcb69..68cf9872 100644 --- a/test/defaults.test.js +++ b/test/defaults.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/discovery.test.js b/test/discovery.test.js index 0f569c0f..2b2056c1 100644 --- a/test/discovery.test.js +++ b/test/discovery.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/exclude-base-props.test.js b/test/exclude-base-props.test.js index 6114471c..770f03ae 100644 --- a/test/exclude-base-props.test.js +++ b/test/exclude-base-props.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2017,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/fixtures/loopback-connector-throwing/index.js b/test/fixtures/loopback-connector-throwing/index.js index f1079a05..0625f293 100644 --- a/test/fixtures/loopback-connector-throwing/index.js +++ b/test/fixtures/loopback-connector-throwing/index.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2017. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/geo.test.js b/test/geo.test.js index f206b2b3..862c4ed4 100644 --- a/test/geo.test.js +++ b/test/geo.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/helpers/bdd-if.js b/test/helpers/bdd-if.js index 21e5c816..e1324c55 100644 --- a/test/helpers/bdd-if.js +++ b/test/helpers/bdd-if.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const fmt = require('util').format; diff --git a/test/helpers/context-test-helpers.js b/test/helpers/context-test-helpers.js index 6ad91b41..7ee12cfc 100644 --- a/test/helpers/context-test-helpers.js +++ b/test/helpers/context-test-helpers.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; const traverse = require('traverse'); diff --git a/test/helpers/hook-monitor.js b/test/helpers/hook-monitor.js index 36a3a6a6..355ad53e 100644 --- a/test/helpers/hook-monitor.js +++ b/test/helpers/hook-monitor.js @@ -1,7 +1,8 @@ -// Copyright IBM Corp. 2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT + 'use strict'; module.exports = HookMonitor; diff --git a/test/helpers/uid-generator.js b/test/helpers/uid-generator.js index 6aa3d450..2b7e5417 100644 --- a/test/helpers/uid-generator.js +++ b/test/helpers/uid-generator.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/hooks.test.js b/test/hooks.test.js index bf4e1e0f..b6b7f813 100644 --- a/test/hooks.test.js +++ b/test/hooks.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/include.test.js b/test/include.test.js index 21462b67..b3800a75 100644 --- a/test/include.test.js +++ b/test/include.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2015. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/include_util.test.js b/test/include_util.test.js index 96aa036b..f486b566 100644 --- a/test/include_util.test.js +++ b/test/include_util.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/init.js b/test/init.js index d0fa70b0..c231821e 100644 --- a/test/init.js +++ b/test/init.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/introspection.test.js b/test/introspection.test.js index a70bcaef..35041f23 100644 --- a/test/introspection.test.js +++ b/test/introspection.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/json.test.js b/test/json.test.js index 7914b7df..26dd20c1 100644 --- a/test/json.test.js +++ b/test/json.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/kv-memory.js b/test/kv-memory.js index 3d72fded..3dc36f7b 100644 --- a/test/kv-memory.js +++ b/test/kv-memory.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/kvao.suite.js b/test/kvao.suite.js index dc796154..76888724 100644 --- a/test/kvao.suite.js +++ b/test/kvao.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/kvao/_helpers.js b/test/kvao/_helpers.js index 4e7fa15f..0a298797 100644 --- a/test/kvao/_helpers.js +++ b/test/kvao/_helpers.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; exports.givenCacheItem = givenCacheItem; diff --git a/test/kvao/delete-all.suite.js b/test/kvao/delete-all.suite.js index 0ac8f9cb..70f02eae 100644 --- a/test/kvao/delete-all.suite.js +++ b/test/kvao/delete-all.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2017,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const bdd = require('../helpers/bdd-if'); diff --git a/test/kvao/delete.suite.js b/test/kvao/delete.suite.js index 0431f1db..c9fcc56f 100644 --- a/test/kvao/delete.suite.js +++ b/test/kvao/delete.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2017. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const bdd = require('../helpers/bdd-if'); diff --git a/test/kvao/expire.suite.js b/test/kvao/expire.suite.js index 2ed0fa24..90b8826a 100644 --- a/test/kvao/expire.suite.js +++ b/test/kvao/expire.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const bdd = require('../helpers/bdd-if'); diff --git a/test/kvao/get-set.suite.js b/test/kvao/get-set.suite.js index 5b268bd4..e6f643f9 100644 --- a/test/kvao/get-set.suite.js +++ b/test/kvao/get-set.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const should = require('should'); diff --git a/test/kvao/iterate-keys.suite.js b/test/kvao/iterate-keys.suite.js index 84d3c552..9d3cb08b 100644 --- a/test/kvao/iterate-keys.suite.js +++ b/test/kvao/iterate-keys.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const asyncIterators = require('async-iterators'); diff --git a/test/kvao/keys.suite.js b/test/kvao/keys.suite.js index 9c10ecb3..164bb1fd 100644 --- a/test/kvao/keys.suite.js +++ b/test/kvao/keys.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const bdd = require('../helpers/bdd-if'); diff --git a/test/kvao/ttl.suite.js b/test/kvao/ttl.suite.js index 4610994d..70139e0d 100644 --- a/test/kvao/ttl.suite.js +++ b/test/kvao/ttl.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const bdd = require('../helpers/bdd-if'); diff --git a/test/loopback-data.test.js b/test/loopback-data.test.js index e37a1f39..3644f540 100644 --- a/test/loopback-data.test.js +++ b/test/loopback-data.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/loopback-dl.test.js b/test/loopback-dl.test.js index 91f70bea..8d575fc0 100644 --- a/test/loopback-dl.test.js +++ b/test/loopback-dl.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/manipulation.test.js b/test/manipulation.test.js index 130ed2a7..b49e186b 100644 --- a/test/manipulation.test.js +++ b/test/manipulation.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/memory.test.js b/test/memory.test.js index 16dccc21..a9fda4ce 100644 --- a/test/memory.test.js +++ b/test/memory.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/mixins.test.js b/test/mixins.test.js index 8c20844f..0f4e76e2 100644 --- a/test/mixins.test.js +++ b/test/mixins.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/model-builder.test.js b/test/model-builder.test.js index 4bd2613a..93670886 100644 --- a/test/model-builder.test.js +++ b/test/model-builder.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2018. All Rights Reserved. +// Copyright IBM Corp. 2018,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/model-definition.test.js b/test/model-definition.test.js index 70f0250f..f067b9d6 100644 --- a/test/model-definition.test.js +++ b/test/model-definition.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/model-inheritance.test.js b/test/model-inheritance.test.js index 1a2d5e71..832f5c1e 100644 --- a/test/model-inheritance.test.js +++ b/test/model-inheritance.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2017,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/model-utils.test.js b/test/model-utils.test.js index 39d2e6ca..f4c9e361 100644 --- a/test/model-utils.test.js +++ b/test/model-utils.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2019. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; let db; diff --git a/test/normalize-undefined.test.js b/test/normalize-undefined.test.js index ae9d696f..96c9be8f 100644 --- a/test/normalize-undefined.test.js +++ b/test/normalize-undefined.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2017,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-many-create.suite.js b/test/operation-hooks.suite/embeds-many-create.suite.js index 91d846ea..47804778 100644 --- a/test/operation-hooks.suite/embeds-many-create.suite.js +++ b/test/operation-hooks.suite/embeds-many-create.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-many-destroy.suite.js b/test/operation-hooks.suite/embeds-many-destroy.suite.js index 30fef8fa..c7607499 100644 --- a/test/operation-hooks.suite/embeds-many-destroy.suite.js +++ b/test/operation-hooks.suite/embeds-many-destroy.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-many-update-by-id.suite.js b/test/operation-hooks.suite/embeds-many-update-by-id.suite.js index 605ed575..7df82a82 100644 --- a/test/operation-hooks.suite/embeds-many-update-by-id.suite.js +++ b/test/operation-hooks.suite/embeds-many-update-by-id.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-one-create.suite.js b/test/operation-hooks.suite/embeds-one-create.suite.js index eb41dd04..3640dfd1 100644 --- a/test/operation-hooks.suite/embeds-one-create.suite.js +++ b/test/operation-hooks.suite/embeds-one-create.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-one-destroy.suite.js b/test/operation-hooks.suite/embeds-one-destroy.suite.js index 7d4cf110..6807d647 100644 --- a/test/operation-hooks.suite/embeds-one-destroy.suite.js +++ b/test/operation-hooks.suite/embeds-one-destroy.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/embeds-one-update.suite.js b/test/operation-hooks.suite/embeds-one-update.suite.js index 3a1b4c4b..c6ed8390 100644 --- a/test/operation-hooks.suite/embeds-one-update.suite.js +++ b/test/operation-hooks.suite/embeds-one-update.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2016,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/operation-hooks.suite/index.js b/test/operation-hooks.suite/index.js index 5fd174ff..9c5fa80d 100644 --- a/test/operation-hooks.suite/index.js +++ b/test/operation-hooks.suite/index.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016,2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; const debug = require('debug')('test'); diff --git a/test/optional-validation.test.js b/test/optional-validation.test.js index 1f09a419..03fa56c0 100644 --- a/test/optional-validation.test.js +++ b/test/optional-validation.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/persistence-hooks.suite.js b/test/persistence-hooks.suite.js index 8f1c0081..521187d8 100644 --- a/test/persistence-hooks.suite.js +++ b/test/persistence-hooks.suite.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2015,2016. All Rights Reserved. +// Copyright IBM Corp. 2015,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/relations.test.js b/test/relations.test.js index 1d5b0970..a39a3fdc 100644 --- a/test/relations.test.js +++ b/test/relations.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/schema.test.js b/test/schema.test.js index eefe04e4..d6f929ac 100644 --- a/test/schema.test.js +++ b/test/schema.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/scope.test.js b/test/scope.test.js index b73d47a8..b750c5e4 100644 --- a/test/scope.test.js +++ b/test/scope.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/spec_helper.js b/test/spec_helper.js index 082ac83f..8977ad20 100644 --- a/test/spec_helper.js +++ b/test/spec_helper.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2011,2016. All Rights Reserved. +// Copyright IBM Corp. 2011,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/transaction.test.js b/test/transaction.test.js index 74221182..c84946ef 100644 --- a/test/transaction.test.js +++ b/test/transaction.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2017. All Rights Reserved. +// Copyright IBM Corp. 2017,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/transient.test.js b/test/transient.test.js index 76aa7d26..18e8fb83 100644 --- a/test/transient.test.js +++ b/test/transient.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Copyright IBM Corp. 2014,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/util.test.js b/test/util.test.js index 9c3baf25..3c84f803 100644 --- a/test/util.test.js +++ b/test/util.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/test/validations.test.js b/test/validations.test.js index c336b4c0..1c2045c0 100644 --- a/test/validations.test.js +++ b/test/validations.test.js @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Copyright IBM Corp. 2013,2018. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT diff --git a/types/connector.d.ts b/types/connector.d.ts index f834d7bb..2d1825d4 100644 --- a/types/connector.d.ts +++ b/types/connector.d.ts @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + import {Callback, DataSource, Options, PromiseOrVoid} from '..'; // Copyright IBM Corp. 2018. All Rights Reserved. diff --git a/types/model.d.ts b/types/model.d.ts index f16da3fe..9543ec36 100644 --- a/types/model.d.ts +++ b/types/model.d.ts @@ -1,4 +1,4 @@ -// Copyright IBM Corp. 2018. All Rights Reserved. +// Copyright IBM Corp. 2018,2019. All Rights Reserved. // Node module: loopback-datasource-juggler // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT