gcf-common-lib 0.23.18 → 0.23.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gcf-common-lib",
3
3
  "description": "",
4
- "version": "0.23.18",
4
+ "version": "0.23.19",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "branches": [
package/src/index.js CHANGED
@@ -38,7 +38,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
38
38
  return (mod && mod.__esModule) ? mod : { "default": mod };
39
39
  };
40
40
  Object.defineProperty(exports, "__esModule", { value: true });
41
- exports.GcfCommon = exports.secretClient = exports.storage = exports.pubSub = exports._mongodb = exports._rxjs = exports._secret_manager = exports._pubsub = exports._storage = void 0;
41
+ exports.GcfCommon = exports.secretClient = exports.storage = exports.pubSub = exports.MongoDb = exports.RxJs = exports.SecretManager = exports.PubSub = exports.Storage = void 0;
42
42
  const pubsub_1 = require("@google-cloud/pubsub");
43
43
  const isEmpty_1 = __importDefault(require("lodash/isEmpty"));
44
44
  const noop_1 = __importDefault(require("lodash/noop"));
@@ -46,11 +46,11 @@ const utils_1 = require("./utils");
46
46
  const storage_1 = require("@google-cloud/storage");
47
47
  const secret_manager_1 = require("@google-cloud/secret-manager");
48
48
  const lodash_1 = require("lodash");
49
- exports._storage = __importStar(require("@google-cloud/storage"));
50
- exports._pubsub = __importStar(require("@google-cloud/pubsub"));
51
- exports._secret_manager = __importStar(require("@google-cloud/secret-manager"));
52
- exports._rxjs = __importStar(require("rxjs"));
53
- exports._mongodb = __importStar(require("mongodb"));
49
+ exports.Storage = __importStar(require("@google-cloud/storage"));
50
+ exports.PubSub = __importStar(require("@google-cloud/pubsub"));
51
+ exports.SecretManager = __importStar(require("@google-cloud/secret-manager"));
52
+ exports.RxJs = __importStar(require("rxjs"));
53
+ exports.MongoDb = __importStar(require("mongodb"));
54
54
  __exportStar(require("./types"), exports);
55
55
  __exportStar(require("./utils"), exports);
56
56
  exports.pubSub = new pubsub_1.PubSub();
package/src/index.ts CHANGED
@@ -8,11 +8,11 @@ import { TContext, TEvent, TGSEvent, TMetadata, TPSEvent, TResponse } from './ty
8
8
  import { mapValues } from 'lodash';
9
9
  import Dict = NodeJS.Dict;
10
10
 
11
- export * as _storage from '@google-cloud/storage';
12
- export * as _pubsub from '@google-cloud/pubsub';
13
- export * as _secret_manager from '@google-cloud/secret-manager';
14
- export * as _rxjs from 'rxjs';
15
- export * as _mongodb from 'mongodb';
11
+ export * as Storage from '@google-cloud/storage';
12
+ export * as PubSub from '@google-cloud/pubsub';
13
+ export * as SecretManager from '@google-cloud/secret-manager';
14
+ export * as RxJs from 'rxjs';
15
+ export * as MongoDb from 'mongodb';
16
16
  export * from './types';
17
17
  export * from './utils';
18
18