@flink-app/sms-plugin 0.3.8 → 0.3.9

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/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import { FlinkPlugin } from "@flink-app/flink";
2
2
  import { client } from "./schemas/client";
3
3
  export type { sms } from "./schemas/sms";
4
4
  export { sms46elksClient } from "./sms46elksClient";
5
+ export * from "./schemas/client";
5
6
  export declare type smsPluginOptions = {
6
7
  /**
7
8
  * Path for request
package/dist/index.js CHANGED
@@ -1,8 +1,19 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
2
12
  Object.defineProperty(exports, "__esModule", { value: true });
3
13
  exports.smsPlugin = exports.sms46elksClient = void 0;
4
14
  var sms46elksClient_1 = require("./sms46elksClient");
5
15
  Object.defineProperty(exports, "sms46elksClient", { enumerable: true, get: function () { return sms46elksClient_1.sms46elksClient; } });
16
+ __exportStar(require("./schemas/client"), exports);
6
17
  var smsPlugin = function (options) {
7
18
  return {
8
19
  id: "smsPlugin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flink-app/sms-plugin",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Flink plugin that makes it possible to send sms",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\"",
@@ -22,5 +22,5 @@
22
22
  "ts-node": "^9.1.1",
23
23
  "typescript": "^4.2.4"
24
24
  },
25
- "gitHead": "9c45e69ffff300482f9945074c5ecc3e1d661467"
25
+ "gitHead": "660a90494e67b768a560c3618d8a3da3cc5d5144"
26
26
  }
package/src/index.ts CHANGED
@@ -2,6 +2,7 @@ import { FlinkApp, FlinkPlugin } from "@flink-app/flink";
2
2
  import { client } from "./schemas/client";
3
3
  export type { sms } from "./schemas/sms";
4
4
  export { sms46elksClient } from "./sms46elksClient";
5
+ export * from "./schemas/client";
5
6
 
6
7
  export type smsPluginOptions = {
7
8
  /**