@mathrunet/masamune 1.3.0 → 1.3.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [1.3.1](https://github.com/mathrunet/node_masamune/compare/v1.3.0...v1.3.1) (2023-10-12)
2
+
3
+
4
+ ### fix
5
+
6
+ * Some functions are exported. ([6864a06](https://github.com/mathrunet/node_masamune/commit/6864a06f7c43a2fa99774ebd2a5cb595728c9751))
7
+
8
+
9
+
1
10
  # [1.3.0](https://github.com/mathrunet/node_masamune/compare/v1.2.9...v1.3.0) (2023-10-12)
2
11
 
3
12
 
package/dist/index.d.ts CHANGED
@@ -4,6 +4,9 @@ export * from "./functions";
4
4
  export * from "./lib/schedule_process_function_base";
5
5
  export * from "./lib/request_process_function_base";
6
6
  export * from "./exntension/string.extension";
7
+ export * as gmail from "./lib/gmail";
8
+ export * as sendGrid from "./lib/send_grid";
9
+ export * as notification from "./lib/send_notification";
7
10
  /**
8
11
  * Methods for deploying to Firebase Functions.
9
12
  *
package/dist/index.js CHANGED
@@ -26,12 +26,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
26
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.deploy = void 0;
29
+ exports.deploy = exports.notification = exports.sendGrid = exports.gmail = void 0;
30
30
  const admin = __importStar(require("firebase-admin"));
31
31
  __exportStar(require("./functions"), exports);
32
32
  __exportStar(require("./lib/schedule_process_function_base"), exports);
33
33
  __exportStar(require("./lib/request_process_function_base"), exports);
34
34
  __exportStar(require("./exntension/string.extension"), exports);
35
+ exports.gmail = __importStar(require("./lib/gmail"));
36
+ exports.sendGrid = __importStar(require("./lib/send_grid"));
37
+ exports.notification = __importStar(require("./lib/send_notification"));
35
38
  /**
36
39
  * Methods for deploying to Firebase Functions.
37
40
  *
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,sDAAwC;AAExC,8CAA4B;AAC5B,uEAAqD;AACrD,sEAAoD;AACpD,gEAA6C;AAE7C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,MAAM,CAAC,OAAY,EAAE,MAAuB,EAAE,eAAqC;IAC/F,KAAK,CAAC,aAAa,EAAE,CAAC;IACtB,KAAK,MAAM,IAAI,IAAI,eAAe,EAAE;QAChC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,OAAO,CAAC,GAAG,CAAC,aAAa,KAAK,IAAI,CAAC,EAAE,EAAE;YACrE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;SACpD;KACJ;AACL,CAAC;AAPD,wBAOC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,sDAAwC;AAExC,8CAA4B;AAC5B,uEAAqD;AACrD,sEAAoD;AACpD,gEAA8C;AAC9C,qDAAqC;AACrC,4DAA4C;AAC5C,wEAAwD;AAExD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,MAAM,CAAC,OAAY,EAAE,MAAuB,EAAE,eAAqC;IAC/F,KAAK,CAAC,aAAa,EAAE,CAAC;IACtB,KAAK,MAAM,IAAI,IAAI,eAAe,EAAE;QAChC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,OAAO,CAAC,GAAG,CAAC,aAAa,KAAK,IAAI,CAAC,EAAE,EAAE;YACrE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;SACpD;KACJ;AACL,CAAC;AAPD,wBAOC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mathrunet/masamune",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Manages packages for the server portion (NodeJS) of the Masamune framework.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",