@loopstack/integration-examples 0.1.0
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/README.md +22 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/dist/integration-examples.module.d.ts +3 -0
- package/dist/integration-examples.module.d.ts.map +1 -0
- package/dist/integration-examples.module.js +22 -0
- package/dist/integration-examples.module.js.map +1 -0
- package/package.json +46 -0
- package/src/index.ts +1 -0
- package/src/integration-examples.module.ts +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Integration Examples (placeholder)
|
|
3
|
+
description: Placeholder for integration / notification workflow examples in Loopstack — Slack, email, generic HTTP webhook fire-and-forget (coming soon)
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# @loopstack/integration-examples
|
|
7
|
+
|
|
8
|
+
> Integration / notification workflow examples for the [Loopstack](https://loopstack.ai) automation framework. **Placeholder — examples coming soon.**
|
|
9
|
+
|
|
10
|
+
This module is reserved for future integration examples:
|
|
11
|
+
|
|
12
|
+
- Slack / Discord notifications
|
|
13
|
+
- Transactional email
|
|
14
|
+
- Generic HTTP webhooks (fire-and-forget API calls, no OAuth)
|
|
15
|
+
|
|
16
|
+
Track progress in the [Loopstack GitHub repo](https://github.com/loopstack-ai/loopstack/issues).
|
|
17
|
+
|
|
18
|
+
## About
|
|
19
|
+
|
|
20
|
+
Author: [Jakob Klippel](https://www.linkedin.com/in/jakob-klippel/)
|
|
21
|
+
|
|
22
|
+
License: MIT
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./integration-examples.module"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA8C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integration-examples.module.d.ts","sourceRoot":"","sources":["../src/integration-examples.module.ts"],"names":[],"mappings":"AAGA,qBAKa,yBAAyB;CAAG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.IntegrationExamplesModule = void 0;
|
|
10
|
+
const common_1 = require("@nestjs/common");
|
|
11
|
+
const common_2 = require("@loopstack/common");
|
|
12
|
+
let IntegrationExamplesModule = class IntegrationExamplesModule {
|
|
13
|
+
};
|
|
14
|
+
exports.IntegrationExamplesModule = IntegrationExamplesModule;
|
|
15
|
+
exports.IntegrationExamplesModule = IntegrationExamplesModule = __decorate([
|
|
16
|
+
(0, common_2.StudioApp)({
|
|
17
|
+
title: 'Integration Examples',
|
|
18
|
+
workflows: [],
|
|
19
|
+
}),
|
|
20
|
+
(0, common_1.Module)({})
|
|
21
|
+
], IntegrationExamplesModule);
|
|
22
|
+
//# sourceMappingURL=integration-examples.module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integration-examples.module.js","sourceRoot":"","sources":["../src/integration-examples.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,8CAA8C;AAOvC,IAAM,yBAAyB,GAA/B,MAAM,yBAAyB;CAAG,CAAA;AAA5B,8DAAyB;oCAAzB,yBAAyB;IALrC,IAAA,kBAAS,EAAC;QACT,KAAK,EAAE,sBAAsB;QAC7B,SAAS,EAAE,EAAE;KACd,CAAC;IACD,IAAA,eAAM,EAAC,EAAE,CAAC;GACE,yBAAyB,CAAG"}
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@loopstack/integration-examples",
|
|
3
|
+
"displayName": "Loopstack Integration Examples",
|
|
4
|
+
"description": "Placeholder for integration / notification workflow examples — Slack, email, generic HTTP webhooks (coming soon).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"loopstack",
|
|
7
|
+
"example",
|
|
8
|
+
"integration",
|
|
9
|
+
"notification",
|
|
10
|
+
"webhook",
|
|
11
|
+
"workflow"
|
|
12
|
+
],
|
|
13
|
+
"version": "0.1.0",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Jakob Klippel",
|
|
17
|
+
"url": "https://www.linkedin.com/in/jakob-klippel/"
|
|
18
|
+
},
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./dist/index.js",
|
|
23
|
+
"./src/*": "./src/*"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "nest build",
|
|
27
|
+
"compile": "tsc --noEmit",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"test": "vitest run --passWithNoTests",
|
|
31
|
+
"watch": "nest build --watch"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@loopstack/common": "*",
|
|
35
|
+
"@nestjs/common": "^11.1.19"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"src"
|
|
40
|
+
],
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"vitest": "^4.1.6",
|
|
43
|
+
"@swc/core": "^1.15.33",
|
|
44
|
+
"unplugin-swc": "^1.5.9"
|
|
45
|
+
}
|
|
46
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './integration-examples.module';
|