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 69b64493a..c6b69606d 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 e29a2dbb2..2fd717886 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 0ba825d15..f7f430560 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 8bcf94df5..c65bc3acd 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 d9b8f336b..dbe0bcc94 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 5adaeb9ce..8bead0873 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 a2dd20cce..1268e92cf 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 9cabf639b..dae122471 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 ec9c846a3..b7bf3044b 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 8ac84c0a6..cab15bd63 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 d3f37fe0e..654512958 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 6edb97393..472ae5436 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 24bd66826..d146586aa 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 e15debdc4..018661cc5 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 09a0bee19..5c6b9f97d 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 9314b64ca..b377e1724 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 08d0f56e9..5cde82cc2 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 fab835593..a9824fb93 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 57328742d..faf501745 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 a75edf912..d6475dd1e 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 57538394e..e886fe2d0 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 0f9b0ba9d..51013d292 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 dd2de3db8..0e6378d29 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 a531f45d3..8b4730d67 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 c17fda307..28d45443e 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 c3ac2b1b0..0455fb4eb 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 0dc37389d..e53c2f788 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 296c346bc..70623c55a 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 bd90bf6e9..cdb367fc9 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 197d33d1a..dce7d4726 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 eccd003f7..4c14bd1f0 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 948cb8e1b..647e3b38f 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 c1f0ba87d..91e6bf771 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 6e4b4fa2c..b67d0d19b 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 a0619b388..af18ba4e6 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 de874e2be..a08badf46 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 1e7834010..b10612d05 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 5bf58d078..7cc136022 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 3fa5af40f..5b37c97ba 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 a163a0bbc..decefde3c 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 e43363510..f18ab2d4c 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 419e4d379..9702f076f 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 7568aae27..9799d5e1f 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 82184e0a3..697ed3f80 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 0ca52e289..3e1917426 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 3ff97d7ad..03c27823d 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 2bef648d6..f4f6509c3 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 5e9d23a9d..b4c02b369 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 a6e6b529f..0beed1027 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 96771588c..89c85f905 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 4300f46fa..cbc5d8250 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 aa34c27f5..89e291e68 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 2aae02b46..ef16d54c1 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 1dbdb1da8..f4c4d444b 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 e38f18fa4..0501949b2 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 f31dcb698..68cf98722 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 0f569c0fb..2b2056c1f 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 6114471c7..770f03ae6 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 f1079a057..0625f2932 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 f206b2b3b..862c4ed41 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 21e5c8167..e1324c552 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 6ad91b418..7ee12cfc8 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 36a3a6a6f..355ad53ec 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 6aa3d4509..2b7e54171 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 bf4e1e0f8..b6b7f8136 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 21462b67d..b3800a75b 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 96aa036b2..f486b5665 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 d0fa70b09..c231821ea 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 a70bcaefb..35041f239 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 7914b7df9..26dd20c10 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 3d72fded7..3dc36f7bb 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 dc796154b..76888724a 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 4e7fa15f9..0a2987975 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 0ac8f9cb2..70f02eae4 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 0431f1db6..c9fcc56f5 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 2ed0fa249..90b8826ab 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 5b268bd4d..e6f643f96 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 84d3c5526..9d3cb08b9 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 9c10ecb3a..164bb1fd7 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 4610994d6..70139e0d9 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 e37a1f39a..3644f540e 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 91f70bea7..8d575fc0f 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 130ed2a7a..b49e186b2 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 16dccc213..a9fda4ceb 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 8c20844ff..0f4e76e24 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 4bd2613a2..936708867 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 70f0250f9..f067b9d6a 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 1a2d5e71b..832f5c1e2 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 39d2e6ca2..f4c9e3619 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 ae9d696fa..96c9be8f9 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 91d846ea9..478047785 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 30fef8fab..c7607499d 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 605ed5751..7df82a82c 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 eb41dd040..3640dfd19 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 7d4cf1101..6807d6479 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 3a1b4c4b7..c6ed8390d 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 5fd174ff4..9c5fa80d8 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 1f09a419f..03fa56c0d 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 8f1c0081c..521187d87 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 1d5b09701..a39a3fdc8 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 eefe04e44..d6f929ac0 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 b73d47a8a..b750c5e4d 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 082ac83f6..8977ad20f 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 742211828..c84946ef4 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 76aa7d268..18e8fb830 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 9c3baf257..3c84f8034 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 c336b4c0f..1c2045c0e 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 f834d7bb4..2d1825d46 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 f16da3fe4..9543ec366 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