n8n-nodes-scriptureflow 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/LICENSE +21 -0
- package/README.md +74 -0
- package/dist/nodes/ScriptureFlow/Scriptureflow.node.d.ts +5 -0
- package/dist/nodes/ScriptureFlow/Scriptureflow.node.js +244 -0
- package/dist/nodes/ScriptureFlow/Scriptureflow.node.js.map +1 -0
- package/dist/nodes/ScriptureFlow/Scriptureflow.node.json +18 -0
- package/dist/nodes/ScriptureFlow/resources/book/index.d.ts +2 -0
- package/dist/nodes/ScriptureFlow/resources/book/index.js +58 -0
- package/dist/nodes/ScriptureFlow/resources/book/index.js.map +1 -0
- package/dist/nodes/ScriptureFlow/resources/scripture/index.d.ts +2 -0
- package/dist/nodes/ScriptureFlow/resources/scripture/index.js +94 -0
- package/dist/nodes/ScriptureFlow/resources/scripture/index.js.map +1 -0
- package/dist/nodes/ScriptureFlow/resources/translation/index.d.ts +2 -0
- package/dist/nodes/ScriptureFlow/resources/translation/index.js +48 -0
- package/dist/nodes/ScriptureFlow/resources/translation/index.js.map +1 -0
- package/dist/nodes/ScriptureFlow/scriptureflow.svg +23 -0
- package/dist/package.json +51 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/docs/publishing-readiness.md +77 -0
- package/docs/scriptureflow-node-roadmap.md +59 -0
- package/package.json +51 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ScriptureFlow contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# n8n-nodes-scriptureflow
|
|
2
|
+
|
|
3
|
+
The planned n8n community node package for [ScriptureFlow](https://scriptureflow-api-preview.pages.dev), a structured Scripture API for developers, ministries, educators, and automation builders.
|
|
4
|
+
|
|
5
|
+
> **Status:** Unpublished v1 development package. This package is not published to npm, has not been submitted to the n8n Creator Portal, and is not verified by n8n.
|
|
6
|
+
|
|
7
|
+
## Public preview
|
|
8
|
+
|
|
9
|
+
- Base URL: `https://scriptureflow-api-preview.pages.dev`
|
|
10
|
+
- No API key is required during public preview.
|
|
11
|
+
- Future optional API-key support may be added when ScriptureFlow monetization and API-key support are ready.
|
|
12
|
+
- Discover exact, case-sensitive translation version keys from [`translations.json`](https://scriptureflow-api-preview.pages.dev/translations.json).
|
|
13
|
+
- Some translations may be partial; check available books before assuming coverage.
|
|
14
|
+
|
|
15
|
+
## Scripture data rules
|
|
16
|
+
|
|
17
|
+
- Do not silently substitute translations.
|
|
18
|
+
- Do not invent or paraphrase Scripture text.
|
|
19
|
+
- Preserve the returned reference and version attribution.
|
|
20
|
+
- Keep generated commentary separate from Scripture text.
|
|
21
|
+
- Surface ScriptureFlow API errors instead of filling in missing text.
|
|
22
|
+
|
|
23
|
+
## V1 target operations
|
|
24
|
+
|
|
25
|
+
The narrowed v1 node contains only these operations:
|
|
26
|
+
|
|
27
|
+
- **Translation > Get Many** retrieves translation keys and metadata from `/translations.json` without hiding catalog statuses.
|
|
28
|
+
- **Book > Get Many** retrieves the books available for a Version Key and helps expose partial translation coverage.
|
|
29
|
+
- **Scripture > Get Verse** retrieves one structured book/chapter/verse lookup directly from `/api/verse`.
|
|
30
|
+
- **Scripture > Get Quick Verse** retrieves a verse selected at request time from `/api/quick-verse`; results may differ between executions.
|
|
31
|
+
- **Scripture > Get Generated Verse of the Day** retrieves the generated static `/{version}/random.json` resource and remains distinct from Quick Verse.
|
|
32
|
+
|
|
33
|
+
Raw ScriptureFlow JSON is returned by default. Catalog operations support conventional Return All/Limit controls. Scripture operations offer an optional `Simplify` boolean without inventing or paraphrasing Scripture text.
|
|
34
|
+
|
|
35
|
+
See [the node roadmap](docs/scriptureflow-node-roadmap.md) for deferred operations and release gates.
|
|
36
|
+
|
|
37
|
+
## Credentials
|
|
38
|
+
|
|
39
|
+
No credentials are required for public preview mode. A future optional API key credential may be introduced later; any API key or token field will be stored as a sensitive/password field.
|
|
40
|
+
|
|
41
|
+
## Development
|
|
42
|
+
|
|
43
|
+
This repository uses the official n8n-node package structure and CLI commands.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm install
|
|
47
|
+
npm run lint
|
|
48
|
+
npm run build
|
|
49
|
+
npm run dev
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
`npm run dev` starts an interactive local n8n development session, normally at `http://localhost:5678`. It is intended for manual node discovery and workflow testing.
|
|
53
|
+
|
|
54
|
+
The package has no runtime dependencies. `n8n-workflow` is declared as a peer dependency, and build/lint tooling is kept in development dependencies.
|
|
55
|
+
|
|
56
|
+
## Publishing status
|
|
57
|
+
|
|
58
|
+
The repository contains a tag-only GitHub Actions workflow prepared for future npm trusted publishing with provenance. It has not run. No npm publish or Creator Portal submission has occurred, and normal pushes or pull requests do not publish the package.
|
|
59
|
+
|
|
60
|
+
Follow the [release checklist](docs/release-checklist.md) and review [publishing readiness](docs/publishing-readiness.md) before creating any release tag. Do not publish locally for the verified-submission path.
|
|
61
|
+
|
|
62
|
+
## ScriptureFlow resources
|
|
63
|
+
|
|
64
|
+
- [API preview](https://scriptureflow-api-preview.pages.dev)
|
|
65
|
+
- [OpenAPI 3.1 contract](https://scriptureflow-api-preview.pages.dev/openapi.yaml)
|
|
66
|
+
- [Swagger API Reference](https://scriptureflow-dev-docs.pages.dev/api-reference/)
|
|
67
|
+
- [Postman collection](https://documenter.getpostman.com/view/1355224/2sBXwvJoj6)
|
|
68
|
+
- [n8n examples](https://scriptureflow-dev-docs.pages.dev/integrations/n8n)
|
|
69
|
+
- [Public code examples](https://scriptureflow-dev-docs.pages.dev/examples/example-requests.html)
|
|
70
|
+
- [AI usage guide](https://scriptureflow-dev-docs.pages.dev/ai/using-scriptureflow-with-ai.html)
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
+
export declare class Scriptureflow implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Scriptureflow = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const book_1 = require("./resources/book");
|
|
6
|
+
const scripture_1 = require("./resources/scripture");
|
|
7
|
+
const translation_1 = require("./resources/translation");
|
|
8
|
+
const API_BASE_URL = 'https://scriptureflow-api-preview.pages.dev';
|
|
9
|
+
const TRANSLATIONS_URL = `${API_BASE_URL}/translations.json`;
|
|
10
|
+
const SCRIPTURE_FIELDS = [
|
|
11
|
+
'ok',
|
|
12
|
+
'type',
|
|
13
|
+
'version',
|
|
14
|
+
'reference',
|
|
15
|
+
'book',
|
|
16
|
+
'book_slug',
|
|
17
|
+
'canonical_book',
|
|
18
|
+
'chapter',
|
|
19
|
+
'verse',
|
|
20
|
+
'text',
|
|
21
|
+
'source',
|
|
22
|
+
'lookup',
|
|
23
|
+
'served_at_utc',
|
|
24
|
+
'source_path',
|
|
25
|
+
'api_path',
|
|
26
|
+
];
|
|
27
|
+
function simplify(data, fields) {
|
|
28
|
+
const result = {};
|
|
29
|
+
for (const field of fields) {
|
|
30
|
+
if (data[field] !== undefined && data[field] !== null) {
|
|
31
|
+
result[field] = data[field];
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return result;
|
|
35
|
+
}
|
|
36
|
+
function asObjectArray(value, endpoint, node, itemIndex) {
|
|
37
|
+
if (!Array.isArray(value) || value.some((entry) => !entry || typeof entry !== 'object' || Array.isArray(entry))) {
|
|
38
|
+
throw new n8n_workflow_1.NodeOperationError(node, 'ScriptureFlow returned an unexpected catalog response.', {
|
|
39
|
+
itemIndex,
|
|
40
|
+
description: `Expected an array of JSON objects from ${endpoint}.`,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
return value;
|
|
44
|
+
}
|
|
45
|
+
function positiveInteger(value, displayName, node, itemIndex) {
|
|
46
|
+
const numberValue = typeof value === 'number' ? value : Number(value);
|
|
47
|
+
if (!Number.isInteger(numberValue) || numberValue < 1) {
|
|
48
|
+
throw new n8n_workflow_1.NodeOperationError(node, `${displayName} must be a positive whole number.`, {
|
|
49
|
+
itemIndex,
|
|
50
|
+
description: `Enter a valid ${displayName.toLowerCase()} and try again.`,
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
return numberValue;
|
|
54
|
+
}
|
|
55
|
+
function validateText(value, displayName, node, itemIndex) {
|
|
56
|
+
if (typeof value !== 'string' || value.trim() === '') {
|
|
57
|
+
const versionDescription = displayName === 'Version Key'
|
|
58
|
+
? `Enter an exact Version Key from ${TRANSLATIONS_URL}.`
|
|
59
|
+
: `Enter a ${displayName.toLowerCase()} and try again.`;
|
|
60
|
+
throw new n8n_workflow_1.NodeOperationError(node, `${displayName} is required.`, {
|
|
61
|
+
itemIndex,
|
|
62
|
+
description: versionDescription,
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
return value.trim();
|
|
66
|
+
}
|
|
67
|
+
function apiErrorMessage(response) {
|
|
68
|
+
for (const field of ['message', 'error', 'detail']) {
|
|
69
|
+
if (typeof response[field] === 'string' && response[field].trim() !== '') {
|
|
70
|
+
return response[field];
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return 'ScriptureFlow reported that the request could not be completed.';
|
|
74
|
+
}
|
|
75
|
+
function assertSuccessfulResponse(response, node, itemIndex, version) {
|
|
76
|
+
if (response.ok === false) {
|
|
77
|
+
throw new n8n_workflow_1.NodeOperationError(node, apiErrorMessage(response), {
|
|
78
|
+
itemIndex,
|
|
79
|
+
description: `Check the requested reference and confirm that Version Key "${version}" is listed at ${TRANSLATIONS_URL}. Some translations are partial.`,
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
async function requestJson(context, options, itemIndex, description) {
|
|
84
|
+
var _a;
|
|
85
|
+
try {
|
|
86
|
+
return await context.helpers.httpRequest({
|
|
87
|
+
...options,
|
|
88
|
+
baseURL: (_a = options.baseURL) !== null && _a !== void 0 ? _a : API_BASE_URL,
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
catch (error) {
|
|
92
|
+
throw new n8n_workflow_1.NodeApiError(context.getNode(), error, {
|
|
93
|
+
itemIndex,
|
|
94
|
+
message: 'ScriptureFlow API request failed',
|
|
95
|
+
description,
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
class Scriptureflow {
|
|
100
|
+
constructor() {
|
|
101
|
+
this.description = {
|
|
102
|
+
displayName: 'ScriptureFlow',
|
|
103
|
+
name: 'scriptureflow',
|
|
104
|
+
icon: 'file:scriptureflow.svg',
|
|
105
|
+
group: ['transform'],
|
|
106
|
+
version: 1,
|
|
107
|
+
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
108
|
+
description: 'Retrieve translation catalogs and Scripture from ScriptureFlow',
|
|
109
|
+
defaults: {
|
|
110
|
+
name: 'ScriptureFlow',
|
|
111
|
+
},
|
|
112
|
+
usableAsTool: true,
|
|
113
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
114
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
115
|
+
credentials: [],
|
|
116
|
+
requestDefaults: {
|
|
117
|
+
baseURL: API_BASE_URL,
|
|
118
|
+
headers: {
|
|
119
|
+
Accept: 'application/json',
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
properties: [
|
|
123
|
+
{
|
|
124
|
+
displayName: 'Resource',
|
|
125
|
+
name: 'resource',
|
|
126
|
+
type: 'options',
|
|
127
|
+
noDataExpression: true,
|
|
128
|
+
options: [
|
|
129
|
+
{ name: 'Book', value: 'book' },
|
|
130
|
+
{ name: 'Scripture', value: 'scripture' },
|
|
131
|
+
{ name: 'Translation', value: 'translation' },
|
|
132
|
+
],
|
|
133
|
+
default: 'scripture',
|
|
134
|
+
},
|
|
135
|
+
...book_1.bookDescription,
|
|
136
|
+
...scripture_1.scriptureDescription,
|
|
137
|
+
...translation_1.translationDescription,
|
|
138
|
+
],
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
async execute() {
|
|
142
|
+
var _a, _b;
|
|
143
|
+
const items = this.getInputData();
|
|
144
|
+
const returnData = [];
|
|
145
|
+
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
146
|
+
try {
|
|
147
|
+
const resource = this.getNodeParameter('resource', itemIndex);
|
|
148
|
+
const operation = this.getNodeParameter('operation', itemIndex);
|
|
149
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
150
|
+
const shouldSimplify = options.simplify === true;
|
|
151
|
+
if (resource === 'translation' && operation === 'getMany') {
|
|
152
|
+
const response = await requestJson(this, { method: 'GET', url: '/translations.json', json: true }, itemIndex, `Could not retrieve translations. Try again or open ${TRANSLATIONS_URL} to confirm the catalog is available.`);
|
|
153
|
+
const translations = asObjectArray(response, '/translations.json', this.getNode(), itemIndex);
|
|
154
|
+
const returnAll = options.returnAll === true;
|
|
155
|
+
const limit = positiveInteger((_a = options.limit) !== null && _a !== void 0 ? _a : 50, 'Limit', this.getNode(), itemIndex);
|
|
156
|
+
const selected = returnAll ? translations : translations.slice(0, limit);
|
|
157
|
+
returnData.push(...selected.map((translation) => ({
|
|
158
|
+
json: translation,
|
|
159
|
+
pairedItem: { item: itemIndex },
|
|
160
|
+
})));
|
|
161
|
+
continue;
|
|
162
|
+
}
|
|
163
|
+
const version = validateText(this.getNodeParameter('version', itemIndex), 'Version Key', this.getNode(), itemIndex);
|
|
164
|
+
if (resource === 'book' && operation === 'getMany') {
|
|
165
|
+
const path = `/${encodeURIComponent(version)}/books.json`;
|
|
166
|
+
const response = await requestJson(this, { method: 'GET', url: path, json: true }, itemIndex, `Could not retrieve books for Version Key "${version}". Confirm the key at ${TRANSLATIONS_URL}; some translations are partial.`);
|
|
167
|
+
const books = asObjectArray(response, path, this.getNode(), itemIndex);
|
|
168
|
+
const returnAll = options.returnAll === true;
|
|
169
|
+
const limit = positiveInteger((_b = options.limit) !== null && _b !== void 0 ? _b : 50, 'Limit', this.getNode(), itemIndex);
|
|
170
|
+
const selected = returnAll ? books : books.slice(0, limit);
|
|
171
|
+
returnData.push(...selected.map((book) => ({
|
|
172
|
+
json: book,
|
|
173
|
+
pairedItem: { item: itemIndex },
|
|
174
|
+
})));
|
|
175
|
+
continue;
|
|
176
|
+
}
|
|
177
|
+
if (resource === 'scripture' && operation === 'getVerse') {
|
|
178
|
+
const book = validateText(this.getNodeParameter('book', itemIndex), 'Book', this.getNode(), itemIndex);
|
|
179
|
+
const chapter = positiveInteger(this.getNodeParameter('chapter', itemIndex), 'Chapter', this.getNode(), itemIndex);
|
|
180
|
+
const verse = positiveInteger(this.getNodeParameter('verse', itemIndex), 'Verse', this.getNode(), itemIndex);
|
|
181
|
+
const response = (await requestJson(this, {
|
|
182
|
+
method: 'GET',
|
|
183
|
+
url: '/api/verse',
|
|
184
|
+
qs: { version, book, chapter, verse },
|
|
185
|
+
json: true,
|
|
186
|
+
}, itemIndex, `Could not retrieve ${book} ${chapter}:${verse}. Confirm Version Key "${version}" at ${TRANSLATIONS_URL} and check that the translation contains the requested verse.`));
|
|
187
|
+
assertSuccessfulResponse(response, this.getNode(), itemIndex, version);
|
|
188
|
+
returnData.push({
|
|
189
|
+
json: shouldSimplify ? simplify(response, SCRIPTURE_FIELDS) : response,
|
|
190
|
+
pairedItem: { item: itemIndex },
|
|
191
|
+
});
|
|
192
|
+
continue;
|
|
193
|
+
}
|
|
194
|
+
let path;
|
|
195
|
+
let failureDescription;
|
|
196
|
+
if (resource === 'scripture' && operation === 'getQuickVerse') {
|
|
197
|
+
path = '/api/quick-verse';
|
|
198
|
+
failureDescription = `Could not retrieve a Quick Verse for Version Key "${version}". Confirm the key at ${TRANSLATIONS_URL}.`;
|
|
199
|
+
}
|
|
200
|
+
else if (resource === 'scripture' && operation === 'getGeneratedVerseOfTheDay') {
|
|
201
|
+
path = `/${encodeURIComponent(version)}/random.json`;
|
|
202
|
+
failureDescription = `Could not retrieve the generated Verse of the Day for Version Key "${version}". Confirm the key at ${TRANSLATIONS_URL}.`;
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Unsupported ScriptureFlow operation.', {
|
|
206
|
+
itemIndex,
|
|
207
|
+
description: 'Choose one of the available v1 resources and operations.',
|
|
208
|
+
});
|
|
209
|
+
}
|
|
210
|
+
const response = (await requestJson(this, {
|
|
211
|
+
method: 'GET',
|
|
212
|
+
url: path,
|
|
213
|
+
...(operation === 'getQuickVerse' ? { qs: { version } } : {}),
|
|
214
|
+
json: true,
|
|
215
|
+
}, itemIndex, failureDescription));
|
|
216
|
+
assertSuccessfulResponse(response, this.getNode(), itemIndex, version);
|
|
217
|
+
returnData.push({
|
|
218
|
+
json: shouldSimplify ? simplify(response, SCRIPTURE_FIELDS) : response,
|
|
219
|
+
pairedItem: { item: itemIndex },
|
|
220
|
+
});
|
|
221
|
+
}
|
|
222
|
+
catch (error) {
|
|
223
|
+
const nodeError = error instanceof n8n_workflow_1.NodeOperationError || error instanceof n8n_workflow_1.NodeApiError
|
|
224
|
+
? error
|
|
225
|
+
: new n8n_workflow_1.NodeApiError(this.getNode(), error, {
|
|
226
|
+
itemIndex,
|
|
227
|
+
message: 'ScriptureFlow API request failed',
|
|
228
|
+
description: 'Could not retrieve the requested data from ScriptureFlow.',
|
|
229
|
+
});
|
|
230
|
+
if (this.continueOnFail()) {
|
|
231
|
+
returnData.push({
|
|
232
|
+
json: { error: nodeError.message },
|
|
233
|
+
pairedItem: { item: itemIndex },
|
|
234
|
+
});
|
|
235
|
+
continue;
|
|
236
|
+
}
|
|
237
|
+
throw nodeError;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return [returnData];
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
exports.Scriptureflow = Scriptureflow;
|
|
244
|
+
//# sourceMappingURL=Scriptureflow.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Scriptureflow.node.js","sourceRoot":"","sources":["../../../nodes/ScriptureFlow/Scriptureflow.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-scriptureflow",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Development", "Developer Tools"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow#credentials"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"primaryDocumentation": [
|
|
13
|
+
{
|
|
14
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow#readme"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bookDescription = void 0;
|
|
4
|
+
exports.bookDescription = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: { show: { resource: ['book'] } },
|
|
11
|
+
options: [
|
|
12
|
+
{
|
|
13
|
+
name: 'Get Many',
|
|
14
|
+
value: 'getMany',
|
|
15
|
+
action: 'Get many books',
|
|
16
|
+
description: 'Get books available in a ScriptureFlow translation',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
default: 'getMany',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Version Key',
|
|
23
|
+
name: 'version',
|
|
24
|
+
type: 'string',
|
|
25
|
+
required: true,
|
|
26
|
+
default: '',
|
|
27
|
+
placeholder: 'e.g. en-kjv',
|
|
28
|
+
description: 'Exact translation version key from the ScriptureFlow translation catalog',
|
|
29
|
+
displayOptions: { show: { resource: ['book'], operation: ['getMany'] } },
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
displayName: 'Options',
|
|
33
|
+
name: 'options',
|
|
34
|
+
type: 'collection',
|
|
35
|
+
placeholder: 'Add option',
|
|
36
|
+
default: {},
|
|
37
|
+
displayOptions: { show: { resource: ['book'], operation: ['getMany'] } },
|
|
38
|
+
options: [
|
|
39
|
+
{
|
|
40
|
+
displayName: 'Return All',
|
|
41
|
+
name: 'returnAll',
|
|
42
|
+
type: 'boolean',
|
|
43
|
+
default: false,
|
|
44
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
displayName: 'Limit',
|
|
48
|
+
name: 'limit',
|
|
49
|
+
type: 'number',
|
|
50
|
+
typeOptions: { minValue: 1 },
|
|
51
|
+
default: 50,
|
|
52
|
+
displayOptions: { show: { returnAll: [false] } },
|
|
53
|
+
description: 'Max number of results to return',
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
];
|
|
58
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/ScriptureFlow/resources/book/index.ts"],"names":[],"mappings":";;;AAEa,QAAA,eAAe,GAAsB;IACjD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,MAAM,CAAC,EAAE,EAAE;QAChD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,SAAS;gBAChB,MAAM,EAAE,gBAAgB;gBACxB,WAAW,EAAE,oDAAoD;aACjE;SACD;QACD,OAAO,EAAE,SAAS;KAClB;IACD;QACC,WAAW,EAAE,aAAa;QAC1B,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;QACd,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,aAAa;QAC1B,WAAW,EAAE,0EAA0E;QACvF,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;KACxE;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;QACxE,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,2DAA2D;aACxE;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE;gBAC5B,OAAO,EAAE,EAAE;gBACX,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE;gBAChD,WAAW,EAAE,iCAAiC;aAC9C;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.scriptureDescription = void 0;
|
|
4
|
+
const scriptureOperations = ['getVerse', 'getQuickVerse', 'getGeneratedVerseOfTheDay'];
|
|
5
|
+
exports.scriptureDescription = [
|
|
6
|
+
{
|
|
7
|
+
displayName: 'Operation',
|
|
8
|
+
name: 'operation',
|
|
9
|
+
type: 'options',
|
|
10
|
+
noDataExpression: true,
|
|
11
|
+
displayOptions: { show: { resource: ['scripture'] } },
|
|
12
|
+
options: [
|
|
13
|
+
{
|
|
14
|
+
name: 'Get Generated Verse of the Day',
|
|
15
|
+
value: 'getGeneratedVerseOfTheDay',
|
|
16
|
+
action: 'Get generated verse of the day',
|
|
17
|
+
description: 'Get the generated static Verse of the Day resource for a translation. This is separate from Quick Verse.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: 'Get Quick Verse',
|
|
21
|
+
value: 'getQuickVerse',
|
|
22
|
+
action: 'Get a quick verse',
|
|
23
|
+
description: 'Get a verse selected at request time. The result may differ between executions.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: 'Get Verse',
|
|
27
|
+
value: 'getVerse',
|
|
28
|
+
action: 'Get a verse',
|
|
29
|
+
description: 'Get one verse from the ScriptureFlow public API',
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
default: 'getVerse',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Version Key',
|
|
36
|
+
name: 'version',
|
|
37
|
+
type: 'string',
|
|
38
|
+
required: true,
|
|
39
|
+
default: '',
|
|
40
|
+
placeholder: 'e.g. en-kjv',
|
|
41
|
+
description: 'Exact translation version key from the ScriptureFlow translation catalog',
|
|
42
|
+
displayOptions: { show: { resource: ['scripture'], operation: scriptureOperations } },
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
displayName: 'Book',
|
|
46
|
+
name: 'book',
|
|
47
|
+
type: 'string',
|
|
48
|
+
required: true,
|
|
49
|
+
default: '',
|
|
50
|
+
placeholder: 'e.g. John',
|
|
51
|
+
description: 'Book name accepted by ScriptureFlow',
|
|
52
|
+
displayOptions: { show: { resource: ['scripture'], operation: ['getVerse'] } },
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
displayName: 'Chapter',
|
|
56
|
+
name: 'chapter',
|
|
57
|
+
type: 'number',
|
|
58
|
+
required: true,
|
|
59
|
+
default: 0,
|
|
60
|
+
placeholder: 'e.g. 3',
|
|
61
|
+
typeOptions: { minValue: 1 },
|
|
62
|
+
description: 'Positive whole chapter number',
|
|
63
|
+
displayOptions: { show: { resource: ['scripture'], operation: ['getVerse'] } },
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
displayName: 'Verse',
|
|
67
|
+
name: 'verse',
|
|
68
|
+
type: 'number',
|
|
69
|
+
required: true,
|
|
70
|
+
default: 0,
|
|
71
|
+
placeholder: 'e.g. 16',
|
|
72
|
+
typeOptions: { minValue: 1 },
|
|
73
|
+
description: 'Positive whole verse number',
|
|
74
|
+
displayOptions: { show: { resource: ['scripture'], operation: ['getVerse'] } },
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
displayName: 'Options',
|
|
78
|
+
name: 'options',
|
|
79
|
+
type: 'collection',
|
|
80
|
+
placeholder: 'Add option',
|
|
81
|
+
default: {},
|
|
82
|
+
displayOptions: { show: { resource: ['scripture'], operation: scriptureOperations } },
|
|
83
|
+
options: [
|
|
84
|
+
{
|
|
85
|
+
displayName: 'Simplify',
|
|
86
|
+
name: 'simplify',
|
|
87
|
+
type: 'boolean',
|
|
88
|
+
default: false,
|
|
89
|
+
description: 'Whether to return a simplified version of the response instead of the raw data',
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
},
|
|
93
|
+
];
|
|
94
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/ScriptureFlow/resources/scripture/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.translationDescription = void 0;
|
|
4
|
+
exports.translationDescription = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: { show: { resource: ['translation'] } },
|
|
11
|
+
options: [
|
|
12
|
+
{
|
|
13
|
+
name: 'Get Many',
|
|
14
|
+
value: 'getMany',
|
|
15
|
+
action: 'Get many translations',
|
|
16
|
+
description: 'Get published translation keys and metadata from ScriptureFlow',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
default: 'getMany',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
displayName: 'Options',
|
|
23
|
+
name: 'options',
|
|
24
|
+
type: 'collection',
|
|
25
|
+
placeholder: 'Add option',
|
|
26
|
+
default: {},
|
|
27
|
+
displayOptions: { show: { resource: ['translation'], operation: ['getMany'] } },
|
|
28
|
+
options: [
|
|
29
|
+
{
|
|
30
|
+
displayName: 'Return All',
|
|
31
|
+
name: 'returnAll',
|
|
32
|
+
type: 'boolean',
|
|
33
|
+
default: false,
|
|
34
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
displayName: 'Limit',
|
|
38
|
+
name: 'limit',
|
|
39
|
+
type: 'number',
|
|
40
|
+
typeOptions: { minValue: 1 },
|
|
41
|
+
default: 50,
|
|
42
|
+
displayOptions: { show: { returnAll: [false] } },
|
|
43
|
+
description: 'Max number of results to return',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
];
|
|
48
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/ScriptureFlow/resources/translation/index.ts"],"names":[],"mappings":";;;AAEa,QAAA,sBAAsB,GAAsB;IACxD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAE,EAAE;QACvD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,UAAU;gBAChB,KAAK,EAAE,SAAS;gBAChB,MAAM,EAAE,uBAAuB;gBAC/B,WAAW,EAAE,gEAAgE;aAC7E;SACD;QACD,OAAO,EAAE,SAAS;KAClB;IACD;QACC,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,YAAY;QACzB,OAAO,EAAE,EAAE;QACX,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAE,SAAS,EAAE,CAAC,SAAS,CAAC,EAAE,EAAE;QAC/E,OAAO,EAAE;YACR;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,2DAA2D;aACxE;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE;gBAC5B,OAAO,EAAE,EAAE;gBACX,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE;gBAChD,WAAW,EAAE,iCAAiC;aAC9C;SACD;KACD;CACD,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" role="img" aria-label="ScriptureFlow">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="sf-blue" x1="10" y1="28" x2="52" y2="55" gradientUnits="userSpaceOnUse">
|
|
4
|
+
<stop offset="0" stop-color="#21b8f3"/>
|
|
5
|
+
<stop offset="0.55" stop-color="#0877d1"/>
|
|
6
|
+
<stop offset="1" stop-color="#06419d"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
<linearGradient id="sf-gold" x1="32" y1="8" x2="32" y2="27" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop offset="0" stop-color="#ffd84d"/>
|
|
10
|
+
<stop offset="1" stop-color="#f39a12"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
</defs>
|
|
13
|
+
<g fill="none" stroke="url(#sf-gold)" stroke-linecap="round">
|
|
14
|
+
<path d="M7 26Q32 4 57 26" stroke-width="4"/>
|
|
15
|
+
<path d="M32 7v5M20.5 10.5l2.7 4.2M43.5 10.5l-2.7 4.2M12.5 17l4.2 2.7M51.5 17l-4.2 2.7" stroke-width="2.5"/>
|
|
16
|
+
</g>
|
|
17
|
+
<path fill="url(#sf-blue)" stroke="#063784" stroke-width="1.5" stroke-linejoin="round" d="M5 31q14-5 27 6v19Q20 46 7 48Z"/>
|
|
18
|
+
<path fill="url(#sf-blue)" stroke="#063784" stroke-width="1.5" stroke-linejoin="round" d="M59 31q-14-5-27 6v19q12-10 25-8Z"/>
|
|
19
|
+
<path fill="none" stroke="#67d4ff" stroke-width="1.8" stroke-linecap="round" d="M9 35q12-3 20 4M55 35q-12-3-20 4"/>
|
|
20
|
+
<path fill="#0869bf" stroke="#053b8f" stroke-width="1.5" stroke-linejoin="round" d="M28 18h8v10h10v8H36v15l-4 5-4-5V36H18v-8h10Z"/>
|
|
21
|
+
<path fill="none" stroke="#2e9be2" stroke-width="1.4" stroke-linejoin="round" d="M31 21h2v10h10v2H33v17l-1 1.5L31 50V33H21v-2h10Z"/>
|
|
22
|
+
<path fill="none" stroke="url(#sf-blue)" stroke-width="3" stroke-linecap="round" d="M12 52q20 14 40 0"/>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-scriptureflow",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Use ScriptureFlow in n8n workflows to discover translations and retrieve attributed Scripture from the public API.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"n8n",
|
|
9
|
+
"scriptureflow",
|
|
10
|
+
"bible",
|
|
11
|
+
"scripture",
|
|
12
|
+
"automation"
|
|
13
|
+
],
|
|
14
|
+
"author": { "name": "Exnav29" },
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow.git"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/Exnav29/n8n-nodes-scriptureflow#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow/issues"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "n8n-node build",
|
|
25
|
+
"build:watch": "tsc --watch",
|
|
26
|
+
"dev": "n8n-node dev",
|
|
27
|
+
"lint": "n8n-node lint",
|
|
28
|
+
"lint:fix": "n8n-node lint --fix",
|
|
29
|
+
"release": "n8n-node release",
|
|
30
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"docs/scriptureflow-node-roadmap.md",
|
|
35
|
+
"docs/publishing-readiness.md"
|
|
36
|
+
],
|
|
37
|
+
"n8n": {
|
|
38
|
+
"n8nNodesApiVersion": 1,
|
|
39
|
+
"strict": true,
|
|
40
|
+
"credentials": [],
|
|
41
|
+
"nodes": ["dist/nodes/ScriptureFlow/Scriptureflow.node.js"]
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@n8n/node-cli": "0.35.1",
|
|
45
|
+
"eslint": "9.29.0",
|
|
46
|
+
"prettier": "3.6.2",
|
|
47
|
+
"release-it": "^19.0.4",
|
|
48
|
+
"typescript": "5.9.2"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": { "n8n-workflow": "*" }
|
|
51
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@langchain/core/dist/agents.d.ts","../node_modules/@langchain/core/dist/load/map_keys.d.ts","../node_modules/@langchain/core/dist/load/serializable.d.ts","../node_modules/@langchain/core/dist/messages/content/base.d.ts","../node_modules/@langchain/core/dist/messages/content/tools.d.ts","../node_modules/@langchain/core/dist/messages/content/multimodal.d.ts","../node_modules/@langchain/core/dist/messages/content/data.d.ts","../node_modules/@langchain/core/dist/types/type-utils.d.ts","../node_modules/@langchain/core/dist/messages/content/index.d.ts","../node_modules/@langchain/core/dist/messages/format.d.ts","../node_modules/@langchain/core/dist/messages/metadata.d.ts","../node_modules/@langchain/core/dist/messages/tool.d.ts","../node_modules/@langchain/core/dist/messages/ai.d.ts","../node_modules/@langchain/core/dist/messages/chat.d.ts","../node_modules/@langchain/core/dist/messages/function.d.ts","../node_modules/@langchain/core/dist/messages/human.d.ts","../node_modules/@langchain/core/dist/messages/system.d.ts","../node_modules/@langchain/core/dist/messages/utils.d.ts","../node_modules/@langchain/core/dist/messages/message.d.ts","../node_modules/@langchain/core/dist/messages/base.d.ts","../node_modules/@langchain/core/dist/outputs.d.ts","../node_modules/@standard-schema/spec/dist/index.d.ts","../node_modules/@langchain/core/dist/utils/standard_schema.d.ts","../node_modules/@langchain/core/dist/utils/types/zod.d.ts","../node_modules/@langchain/core/dist/utils/types/index.d.ts","../node_modules/@langchain/core/dist/language_models/event.d.ts","../node_modules/@langchain/core/dist/documents/document.d.ts","../node_modules/@langchain/core/dist/callbacks/base.d.ts","../node_modules/@langchain/core/dist/callbacks/manager.d.ts","../node_modules/@langchain/core/callbacks/manager.d.ts","../node_modules/zod/dist/types/v3/helpers/typeAliases.d.ts","../node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/zod/dist/types/v3/ZodError.d.ts","../node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/zod/dist/types/v3/helpers/parseUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/enumUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/errorUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/partialUtil.d.ts","../node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/zod/dist/types/v3/types.d.ts","../node_modules/zod/dist/types/v3/external.d.ts","../node_modules/zod/dist/types/v3/index.d.ts","../node_modules/zod/dist/types/index.d.ts","../node_modules/@n8n/config/dist/custom-types.d.ts","../node_modules/@n8n/config/dist/configs/agents.config.d.ts","../node_modules/@n8n/config/dist/configs/ai-assistant.config.d.ts","../node_modules/@n8n/config/dist/configs/ai-builder.config.d.ts","../node_modules/@n8n/config/dist/configs/ai.config.d.ts","../node_modules/@n8n/config/dist/configs/auth.config.d.ts","../node_modules/@n8n/config/dist/configs/cache.config.d.ts","../node_modules/@n8n/config/dist/configs/chat-hub.config.d.ts","../node_modules/@n8n/config/dist/configs/chat-trigger.config.d.ts","../node_modules/@n8n/config/dist/configs/compression.config.d.ts","../node_modules/@n8n/config/dist/configs/credentials.config.d.ts","../node_modules/@n8n/config/dist/configs/data-table.config.d.ts","../node_modules/@n8n/config/dist/configs/database.config.d.ts","../node_modules/@n8n/config/dist/configs/deployment.config.d.ts","../node_modules/@n8n/config/dist/configs/diagnostics.config.d.ts","../node_modules/@n8n/config/dist/configs/dynamic-banners.config.d.ts","../node_modules/@n8n/config/dist/configs/endpoints.config.d.ts","../node_modules/@n8n/config/dist/configs/evaluation.config.d.ts","../node_modules/@n8n/config/dist/configs/event-bus.config.d.ts","../node_modules/@n8n/config/dist/configs/executions.config.d.ts","../node_modules/@n8n/config/dist/configs/expression-engine.config.d.ts","../node_modules/@n8n/config/dist/configs/external-hooks.config.d.ts","../node_modules/@n8n/config/dist/configs/generic.config.d.ts","../node_modules/@n8n/config/dist/configs/hiring-banner.config.d.ts","../node_modules/@n8n/config/dist/configs/http-request.config.d.ts","../node_modules/@n8n/config/dist/configs/instance-ai.config.d.ts","../node_modules/@n8n/config/dist/configs/instance-settings-loader.config.d.ts","../node_modules/@n8n/config/dist/configs/license.config.d.ts","../node_modules/@n8n/config/dist/configs/logging.config.d.ts","../node_modules/@n8n/config/dist/configs/mfa.config.d.ts","../node_modules/@n8n/config/dist/configs/multi-main-setup.config.d.ts","../node_modules/@n8n/config/dist/configs/nodes.config.d.ts","../node_modules/@n8n/config/dist/configs/personalization.config.d.ts","../node_modules/@n8n/config/dist/configs/public-api.config.d.ts","../node_modules/@n8n/config/dist/configs/redis.config.d.ts","../node_modules/@n8n/config/dist/configs/runners.config.d.ts","../node_modules/@n8n/config/dist/configs/scaling-mode.config.d.ts","../node_modules/@n8n/config/dist/configs/security.config.d.ts","../node_modules/@n8n/config/dist/configs/sentry.config.d.ts","../node_modules/@n8n/config/dist/configs/sso.config.d.ts","../node_modules/@n8n/config/dist/configs/ssrf-protection.config.d.ts","../node_modules/@n8n/config/dist/configs/tags.config.d.ts","../node_modules/@n8n/config/dist/configs/templates.config.d.ts","../node_modules/@n8n/config/dist/configs/password.config.d.ts","../node_modules/@n8n/config/dist/configs/user-management.config.d.ts","../node_modules/@n8n/config/dist/configs/version-notifications.config.d.ts","../node_modules/@n8n/config/dist/configs/workflow-history-compaction.config.d.ts","../node_modules/@n8n/config/dist/configs/workflow-history.config.d.ts","../node_modules/@n8n/config/dist/configs/workflows.config.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/@n8n/config/dist/decorators.d.ts","../node_modules/@n8n/config/dist/configs/instance-settings-config.d.ts","../node_modules/@n8n/config/dist/configs/engine.config.d.ts","../node_modules/@n8n/config/dist/index.d.ts","../node_modules/axios/index.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/n8n-workflow/node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/esm/constants.d.ts","../node_modules/n8n-workflow/dist/esm/data-table.types.d.ts","../node_modules/n8n-workflow/dist/esm/deferred-promise.d.ts","../node_modules/@n8n/errors/dist/types.d.ts","../node_modules/@n8n/errors/dist/application.error.d.ts","../node_modules/@n8n/errors/dist/index.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-configuration.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-destructuring.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-computed-destructuring.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-class-extension.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-reserved-variable.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-with-statement.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/index.d.ts","../node_modules/zod/dist/types/v4/core/standard-schema.d.ts","../node_modules/zod/dist/types/v4/core/util.d.ts","../node_modules/zod/dist/types/v4/core/versions.d.ts","../node_modules/zod/dist/types/v4/core/schemas.d.ts","../node_modules/zod/dist/types/v4/core/checks.d.ts","../node_modules/zod/dist/types/v4/core/errors.d.ts","../node_modules/zod/dist/types/v4/core/core.d.ts","../node_modules/zod/dist/types/v4/core/parse.d.ts","../node_modules/zod/dist/types/v4/core/regexes.d.ts","../node_modules/zod/dist/types/v4/locales/ar.d.ts","../node_modules/zod/dist/types/v4/locales/az.d.ts","../node_modules/zod/dist/types/v4/locales/be.d.ts","../node_modules/zod/dist/types/v4/locales/ca.d.ts","../node_modules/zod/dist/types/v4/locales/cs.d.ts","../node_modules/zod/dist/types/v4/locales/de.d.ts","../node_modules/zod/dist/types/v4/locales/en.d.ts","../node_modules/zod/dist/types/v4/locales/es.d.ts","../node_modules/zod/dist/types/v4/locales/fa.d.ts","../node_modules/zod/dist/types/v4/locales/fi.d.ts","../node_modules/zod/dist/types/v4/locales/fr.d.ts","../node_modules/zod/dist/types/v4/locales/fr-CA.d.ts","../node_modules/zod/dist/types/v4/locales/he.d.ts","../node_modules/zod/dist/types/v4/locales/hu.d.ts","../node_modules/zod/dist/types/v4/locales/id.d.ts","../node_modules/zod/dist/types/v4/locales/it.d.ts","../node_modules/zod/dist/types/v4/locales/ja.d.ts","../node_modules/zod/dist/types/v4/locales/kh.d.ts","../node_modules/zod/dist/types/v4/locales/ko.d.ts","../node_modules/zod/dist/types/v4/locales/mk.d.ts","../node_modules/zod/dist/types/v4/locales/ms.d.ts","../node_modules/zod/dist/types/v4/locales/nl.d.ts","../node_modules/zod/dist/types/v4/locales/no.d.ts","../node_modules/zod/dist/types/v4/locales/ota.d.ts","../node_modules/zod/dist/types/v4/locales/ps.d.ts","../node_modules/zod/dist/types/v4/locales/pl.d.ts","../node_modules/zod/dist/types/v4/locales/pt.d.ts","../node_modules/zod/dist/types/v4/locales/ru.d.ts","../node_modules/zod/dist/types/v4/locales/sl.d.ts","../node_modules/zod/dist/types/v4/locales/sv.d.ts","../node_modules/zod/dist/types/v4/locales/ta.d.ts","../node_modules/zod/dist/types/v4/locales/th.d.ts","../node_modules/zod/dist/types/v4/locales/tr.d.ts","../node_modules/zod/dist/types/v4/locales/ua.d.ts","../node_modules/zod/dist/types/v4/locales/ur.d.ts","../node_modules/zod/dist/types/v4/locales/vi.d.ts","../node_modules/zod/dist/types/v4/locales/zh-CN.d.ts","../node_modules/zod/dist/types/v4/locales/zh-TW.d.ts","../node_modules/zod/dist/types/v4/locales/index.d.ts","../node_modules/zod/dist/types/v4/core/registries.d.ts","../node_modules/zod/dist/types/v4/core/doc.d.ts","../node_modules/zod/dist/types/v4/core/function.d.ts","../node_modules/zod/dist/types/v4/core/api.d.ts","../node_modules/zod/dist/types/v4/core/json-schema.d.ts","../node_modules/zod/dist/types/v4/core/to-json-schema.d.ts","../node_modules/zod/dist/types/v4/core/index.d.ts","../node_modules/zod/v4/core/index.d.ts","../node_modules/zod/dist/types/v4/classic/errors.d.ts","../node_modules/zod/dist/types/v4/classic/parse.d.ts","../node_modules/zod/dist/types/v4/classic/schemas.d.ts","../node_modules/zod/dist/types/v4/classic/checks.d.ts","../node_modules/zod/dist/types/v4/classic/compat.d.ts","../node_modules/zod/dist/types/v4/classic/iso.d.ts","../node_modules/zod/dist/types/v4/classic/coerce.d.ts","../node_modules/zod/dist/types/v4/classic/external.d.ts","../node_modules/zod/dist/types/v4/classic/index.d.ts","../node_modules/zod/dist/types/v4/index.d.ts","../node_modules/zod/v4/index.d.ts","../node_modules/n8n-workflow/dist/esm/execution-context.d.ts","../node_modules/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v0.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v1.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-expression.d.ts","../node_modules/n8n-workflow/dist/esm/workflow.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy-env-provider.d.ts","../node_modules/n8n-workflow/dist/esm/interfaces.d.ts","../node_modules/n8n-workflow/dist/esm/logger-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/node-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/observable-object.d.ts","../node_modules/n8n-workflow/dist/esm/telemetry-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-child-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-node-by-name.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-parent-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/map-connections-by-destination.d.ts","../node_modules/n8n-workflow/dist/esm/common/index.d.ts","../node_modules/n8n-workflow/dist/esm/cron.d.ts","../node_modules/n8n-workflow/dist/esm/execution-context-establishment-hooks.d.ts","../node_modules/n8n-workflow/dist/esm/global-state.d.ts","../node_modules/n8n-workflow/dist/esm/run-execution-data-factory.d.ts","../node_modules/n8n-workflow/dist/esm/message-event-bus.d.ts","../node_modules/n8n-workflow/dist/esm/expression.d.ts","../node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/from-ai-parse-utils.d.ts","../node_modules/n8n-workflow/dist/esm/node-validation.d.ts","../node_modules/n8n-workflow/dist/esm/tool-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/node-reference-parser-utils.d.ts","../node_modules/n8n-workflow/dist/esm/metadata-utils.d.ts","../node_modules/n8n-workflow/dist/esm/highlighted-data.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-checksum.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-validation.d.ts","../node_modules/n8n-workflow/dist/esm/versioned-node-type.d.ts","../node_modules/n8n-workflow/dist/esm/type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/schemas.d.ts","../node_modules/n8n-workflow/dist/esm/utils.d.ts","../node_modules/n8n-workflow/dist/esm/type-guards.d.ts","../node_modules/n8n-workflow/dist/esm/graph/graph-utils.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-extension.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/index.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-parser.d.ts","../node_modules/n8n-workflow/dist/esm/native-methods/index.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/filter-parameter.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/parameter-type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/node-parameter-value-type-guard.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/path-utils.d.ts","../node_modules/n8n-workflow/dist/esm/evaluation-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/connections-diff.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-diff.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-environments-helper.d.ts","../node_modules/n8n-workflow/dist/esm/index.d.ts","../nodes/ScriptureFlow/resources/book/index.ts","../nodes/ScriptureFlow/resources/scripture/index.ts","../nodes/ScriptureFlow/resources/translation/index.ts","../nodes/ScriptureFlow/Scriptureflow.node.ts","../nodes/ScriptureFlow/Scriptureflow.node.json","../package.json","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/parse-path/index.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/tough-cookie/index.d.ts"],"fileIdsList":[[76,152,193],[152,193],[48,49,50,67,68,72,73,74,152,193],[48,50,67,68,72,73,74,75,152,193],[56,58,152,193],[49,152,193],[56,59,66,67,152,193],[50,56,57,66,152,193],[66,67,152,193],[51,152,193],[51,52,53,54,55,152,193],[56,58,65,152,193],[66,152,193],[59,60,61,62,63,64,66,67,152,193],[67,152,193],[69,152,193],[71,152,193],[70,152,193],[92,152,193],[91,152,193],[91,92,152,193],[91,135,152,193],[91,141,152,193],[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,152,193],[152,193,245],[152,193,245,246],[152,193,405],[152,193,207,233,240,398,409,410],[152,190,193],[152,192,193],[193],[152,193,198,225],[152,193,194,204,212,222,233],[152,193,194,195,204,212],[147,148,149,152,193],[152,193,196,234],[152,193,197,198,205,213],[152,193,198,222,230],[152,193,199,201,204,212],[152,192,193,200],[152,193,201,202],[152,193,203,204],[152,192,193,204],[152,193,204,205,206,222,233],[152,193,204,205,206,219,222,225],[152,193,201,204,207,212,222,233,398],[152,193,204,205,207,208,212,222,230,233],[152,193,207,209,222,230,233],[150,151,152,153,154,155,156,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239],[152,193,204,210],[152,193,211,233,238],[152,193,201,204,212,222],[152,193,213],[152,193,214],[152,192,193,215],[152,193,216,232,238],[152,193,217],[152,193,218],[152,193,204,219,220],[152,193,219,221,234,236],[152,193,204,222,223,225],[152,193,224,225],[152,193,222,223],[152,193,225],[152,193,226],[152,193,222,227],[152,193,204,228,229],[152,193,228,229],[152,193,198,212,222,230],[152,193,231],[152,193,212,232],[152,193,207,218,233],[152,193,198,234],[152,193,222,235],[152,193,211,236],[152,193,237],[152,188,193],[152,188,193,204,206,215,222,225,233,236,238],[152,193,222,239],[152,193,414,452],[152,193,414,437,452],[152,193,413,452],[152,193,452],[152,193,414],[152,193,414,438,452],[152,193,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],[152,193,438,452],[152,193,207,222,240,398],[152,193,352],[152,193,357,358,359,360,361],[152,193,398],[152,193,247,352],[152,193,252,352],[152,193,247],[152,193,248],[152,193,264],[152,193,252],[152,193,253],[152,193,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274],[152,193,247,255,352],[152,193,255,256,352],[152,193,263],[152,193,260],[152,193,247,252,352],[152,193,257],[152,193,342],[152,193,385],[152,193,385,386],[91,152,193,352],[152,193,207,242,243,244,275,343,344,345,348,349,350,351,352,353,354,355,356,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,390,391,392,393,394,396,397],[77,145,146,152,193,205,207,222,230,233,241,242,243,244,253,256,257,260,263,275,343,344,345,348,350,351,398],[152,193,348,350,352],[152,193,343,347,348,352],[152,193,346,347],[152,193,346,398],[152,193,348,350,351,352],[152,193,395,398],[152,193,349,352],[152,165,169,193,233],[152,165,193,222,233],[152,160,193],[152,162,165,193,230,233],[152,193,212,230],[152,193,240],[152,160,193,240],[152,162,165,193,212,233],[152,157,158,161,164,193,204,222,233],[152,157,163,193],[152,161,165,193,225,233,240],[152,181,193,240],[152,159,160,193,240],[152,165,193],[152,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,193],[152,165,172,173,193],[152,163,165,173,174,193],[152,164,193],[152,157,160,165,193],[152,165,169,173,174,193],[152,169,193],[152,163,165,168,193,233],[152,157,162,163,165,169,172,193],[152,193,222],[152,160,165,181,193,238,240],[90,152,193],[78,79,90,152,193],[80,81,152,193],[78,79,80,82,83,88,152,193],[79,80,152,193],[88,152,193],[89,152,193],[80,152,193],[78,79,80,83,84,85,86,87,152,193],[152,193,331],[152,193,331,334],[152,193,323,331,332,333,334,335,336,337,338],[152,193,339],[152,193,331,332],[152,193,331,333],[152,193,277,279,280,281,282],[152,193,277,279,281,282],[152,193,277,279,281],[152,193,277,279,280,282],[152,193,277,279,282],[152,193,277,278,279,280,281,282,283,284,323,324,325,326,327,328,329],[152,193,279,282],[152,193,276,277,278,280,281,282],[152,193,279,324,328],[152,193,279,280,281,282],[152,193,340],[152,193,281],[152,193,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322],[152,193,330],[152,193,341],[152,193,398,399,400,401]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d8b5a7dc4507123a555a6d6b1ca10f92f5f3be0200e4f299e5a0de1732e631b","impliedFormat":99},{"version":"e4ba2f64f3666a1e69ad76d17567bc60b3c022dbbef994c88cdd4f93245ca29f","impliedFormat":99},{"version":"24aabbef4113027e66b5cee4eafb5e9968bffc3d2a8dc70ee0cac34f9c2ed1a2","impliedFormat":99},{"version":"a50524f38f763dd1db60f7aa695fb84c89cefeec878b4126e582e829137e9bfd","impliedFormat":99},{"version":"c1472990f11b1b40b228805e9ea530a9383d76db30fa4736ab4f8d79ea7c06ae","impliedFormat":99},{"version":"27c7522f700ec494d66247d4f40f8abfc258b192cf3213bad2d9be1a06ddc5c1","impliedFormat":99},{"version":"b13768120c9858ef929dc76318210c1424bc7fd941760d09a66c4d8b00248025","impliedFormat":99},{"version":"44ded5e2f467babe7e775848bf5f42cfc8d8d7abf414ad23cc260615554be68e","impliedFormat":99},{"version":"abec74650dd1d319c1679100eeeccdc7793ca586632a35afe517ec38e76691a4","impliedFormat":99},{"version":"25f7b7a2c9634e131a890cea288b1b9df305ad3b1ec8e459e4f813c275d2faa7","impliedFormat":99},{"version":"70ad050f39855f92fb0fffba8317b9e5609fd59c9475af749894f68a3f93f4d3","impliedFormat":99},{"version":"79f4ff913fd613e3100d0e8456bae487b0a23a52ac6932d2ba4e019041b8b93a","impliedFormat":99},{"version":"d3d646cedc0626118d2715f6fb2f0d4416dd1d529df41f4ecb13c7c6a0adc984","impliedFormat":99},{"version":"3f8e780ae8edb60d5ecdbbf899c193bfb122be16e259597f4348e489cd9d7034","impliedFormat":99},{"version":"b216246ebb1c95751142591226ae88695ea2e27662e696a6cadfd17667cd35e3","impliedFormat":99},{"version":"941a489d1b658f6638ea13ee5f300c1e4e4d15759c9ed1752f3b0b7a06d65c24","impliedFormat":99},{"version":"c76d061d933a60290edcb5009c46a5b7e076431947e7e2f3689f0ec950d96b09","impliedFormat":99},{"version":"cb69cf38c672bffe6abd1786346604618512fa75c882197f327cc4316c35a36c","impliedFormat":99},{"version":"41960290a6756f47c2571b109e306cb722cc33ec30034869d3716d145a044940","impliedFormat":99},{"version":"eb15bfd2d4cd56ddb13be4d329a87f563c65af8c8c7cedbd23698cdca592ef84","impliedFormat":99},{"version":"09d11f4012e9d8f899a51ff01ef0ec716e588d5cde9a1dbcd22e878d693cd987","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"e0b4c1dc982abe1ee87259f2d7802da0cc78d3b230ffeb63003417ae9c282a01","impliedFormat":99},{"version":"9850454a975011a654b037d8ff927379fef0f108e1b50667acc9ed308c2d5f14","impliedFormat":99},{"version":"9a5813195fa6b6538dc4a0ac45a2a389a3b2e0485e11bf2925d136acf06de1c0","impliedFormat":99},{"version":"ad40e4f79dfbc4bf0db68f803b113cf81827ed33ac7322ea76bd560c346aac09","impliedFormat":99},{"version":"2f86a4ba6ae2ee9e58edddc64007c18b1da20a12bbc68748963b8fba3d41d66e","impliedFormat":99},{"version":"dfe0e7b018e69e657774f5331698eee575cba0cc6006cd4f2ac6ca28efbaf561","impliedFormat":99},{"version":"59dd1d605664bce977ca5fcd7617f5c53a7d660c6f527607ebe6ef17220a650e","impliedFormat":99},{"version":"5c90d5c292795bad7197f83cb2bc9511b808b8c1e4aa0972e4bc156be52d5a9a","impliedFormat":99},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"67dd268e9fdfe0818b48af68775114da4cce4ef76150e7f8cc88f0d4b755e24e","impliedFormat":1},{"version":"3f333577f470d0c86fafd72d6f4b7870facab67241a7dfde714dfa2069a5809a","impliedFormat":1},{"version":"4ead882dc5cd138392f1528548e336fe4016d55963c0007d58cf0a11b6426451","impliedFormat":1},{"version":"fc453dd7fad3bea88be3cd01a6225faa695eb96dce475933e31a0beb373811ba","impliedFormat":1},{"version":"0e562736af1c983b30ec29b7a23da2ee8582c832e44ced96178205d877570736","impliedFormat":1},{"version":"2d68cfff7270a89056eaf96e9c62ec550bf68be1f4350ea7b3a667b583615053","impliedFormat":1},{"version":"917ed950531ab45f9c6db2a9d566947bf6eb01fa3fd3c3853bd24aba1b6cea0c","impliedFormat":1},{"version":"511f64121fab52d61355e29d41eeb4be4813fc116527edaeaa5dcedbd57fba6f","impliedFormat":1},{"version":"16b3dbba8aba85e5c624290661e0616c1a7868ba6beb130371403d87f8796d65","impliedFormat":1},{"version":"b930afef12a15f54bef9d8785115a95f3c9eed0a43e05a71d738210d217578ce","impliedFormat":1},{"version":"2d3de4ef449677e3f4f13b0ef29e5796e69b87442d2bbc853abb7fd6f104517b","impliedFormat":1},{"version":"fc3c3e4a032b631caf68883d44cc39670d3b2ba8e59317c4c4a0c389afd8de3c","impliedFormat":1},{"version":"235b629a295dd552744c1fca81eaec25cf44bfed4086b07e3e5cd56e55305f9f","impliedFormat":1},{"version":"a44a23f125382b9bf5c31445ff52bea4fffdb8cf11b6917da39d97fd0129b46c","impliedFormat":1},{"version":"d91445c08f803e63a8fc0f30c657b32d728429b5233fe5b7511973f46ec2962d","impliedFormat":1},{"version":"a862c101131fd482e76ab7a0bca1cbfa430603627008a543952836e8addad0e1","impliedFormat":1},{"version":"bf7b3fb20b9cc6b4460b3d9f82fc3852175bec30875f4865359b91809c38e4c9","impliedFormat":1},{"version":"82c0e8224a3b9738e0d58910093b03b9867b944ac9c33b126ab7e00803c3d00d","impliedFormat":1},{"version":"20afc8ed1e62a4e60e3a21af283e25bb54912a4ee70aa41f9f5ea413c29bed56","impliedFormat":1},{"version":"07ca98ac31467916a0cf8e5c42cc259347b88d46efc1e4ff8814fa6065ca3ce3","impliedFormat":1},{"version":"47012aafa747af409198f82c53df80a0948f15c5ef19542ef82a1bec4edc9c04","impliedFormat":1},{"version":"3a1be128f49713881f67a0c64d4e78d41b7d293e3787ec7a1ec1776e6aae91a0","impliedFormat":1},{"version":"e9e98a760622f359fd182df4c77ff7af281091cd100b7ce9e2388a3e92549963","impliedFormat":1},{"version":"1f7eb0ce564dccafc9239aefa998b487d756831b6bbb212a50f82f2d2f735eef","impliedFormat":1},{"version":"30079995093768bb799bc03a884715839defe24f6abdcd039b5c67b156655407","impliedFormat":1},{"version":"7badfe360c997de24708b1c820ac8784137c8d847ab3edf8126fd81d97ee10e7","impliedFormat":1},{"version":"91e0ac3c9bc063ba2f85ef1cd21585756c643ab08ea41f6aebe899005c097e43","impliedFormat":1},{"version":"8ffc761c656b8e627c5c480e30ee55c826842dcb1bdcf7f68ca6e8b3c8618995","impliedFormat":1},{"version":"51909520608ecdc0208f64f3a7a1e84b43b2d63cc22dbbb287c4a83e9172405b","impliedFormat":1},{"version":"b48aafcf778b4637ba9a71225fe75de89f9aca45a8d43996fadde47ad557a271","impliedFormat":1},{"version":"1842c827a75b16f45998a0ca99e55be5a06c6713e1e2ad98bef6ee29724c9175","impliedFormat":1},{"version":"b96a537fa2f5a63a8941810b5d8c9d2511f7a051304ca0f1835de023a5f367d4","impliedFormat":1},{"version":"46d670727b4fc0b69c3de308202bf48288b795d76aba24e7711144c45ce9aa99","impliedFormat":1},{"version":"261a7a5c54351a9bc93ee202863c23a15310a08f5354ae7d452972cc260304f2","impliedFormat":1},{"version":"9da2e2a7f4ecdfc80b6612af8b562b71568ea3b698c77202784a83d0f056eb39","impliedFormat":1},{"version":"10bc631cdd8f7524bd152dffeea3e8913f3f2d19fbce3e855f51610e34a93e7f","impliedFormat":1},{"version":"43ff12daa8050d1042b25d90b4a745598cfff13ea65ac882d335396c358c3ed1","impliedFormat":1},{"version":"38964d4435dfb3e9d1f38cc504d747bc2099bde124b1f801eb817c3ba23e4736","impliedFormat":1},{"version":"5c2183f6be27e01f79e6b3b955d99e19afd47f49e607fedc47dd9b183d2f67d9","impliedFormat":1},{"version":"759e1bdbe7ee4cd4c76784e8b7db1bcb68c68e10227d5bd56be23dda3953932e","impliedFormat":1},{"version":"5edaec1b274db97b0a8950f56cd138a3faf1140552095417099ba9b6f1a7c012","impliedFormat":1},{"version":"8d82346f7c5fd9286a60aaf382b79fc1beca26264be0b32ba0e8aa73e78e85a0","impliedFormat":1},{"version":"8a7ae9d139bc88468f61f3de9a36c3a39f28b429d96daaac73f2f1bb8d3859bd","impliedFormat":1},{"version":"276d80d0530fc2933687a154cbb452507dab517cd7a24bc2c15e57ec6b959c79","impliedFormat":1},{"version":"e8f24728e509cb11119357cfdc595c76df68cc52490c3946a663cd3ea76c8572","impliedFormat":1},{"version":"89e9d6bc5c1ba683191b42d3700fe46bc07056f31573ef0916d812fde383d920","impliedFormat":1},{"version":"917eea060206a9b7a601ff18b2b149f781085f7512fb09be4beb26bf64d1e398","impliedFormat":1},{"version":"9626e45205e42c8ab6ed96c1d5bd60e2822828024ac0471ef9647c361385113c","impliedFormat":1},{"version":"abb2241fa9284e3560fdf95681906654766c70e4e1ff8f9ea4765656041867a2","impliedFormat":1},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true,"impliedFormat":1},{"version":"175182dca1d0794e4d87a1b465c4430f3c4892387620e95a288ee3191be20d85","impliedFormat":1},{"version":"7fbe6644c2502842b73316c808e07891e212e6a0bea75adba7d3461e935ee80e","impliedFormat":1},{"version":"a86c93e31fc67f1d593c537729a6a680f900c5665f4d8a7f0b05688ca03cee39","impliedFormat":1},{"version":"4156ff535c4f56120938436be6672d6f160c26043939a61a1b44ac8070a56ce1","impliedFormat":1},{"version":"1f983a93b86bf82ef3cc0ead060c5e3d28fd905864d3441337706ea5ef77a990","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cb3140d0e9cee0aea7264fd6a1d297394052a18eb05ca0220d133e6c043fb5","affectsGlobalScope":true,"impliedFormat":1},{"version":"362d474eb9feae178a83ead94d757c21e42d6d7090e4182f0c12e92830a3d25e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc27badd4bf4a2b0024a0cd32a9bbf0be7073902c5177a58be14242e7d8bf2c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","impliedFormat":1},{"version":"3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","impliedFormat":1},{"version":"e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","impliedFormat":1},{"version":"471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","impliedFormat":1},{"version":"c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","impliedFormat":1},{"version":"40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","impliedFormat":1},{"version":"8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","impliedFormat":1},{"version":"4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","impliedFormat":1},{"version":"b972357e61ef2e072f8a88b9f4f5a70984c417237e6106f6b2390414a09ce523","affectsGlobalScope":true,"impliedFormat":1},{"version":"076cac5898bd833255def0f7c5717b83534212873505c9c958f1926d49f9bec6","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"75eb536b960b85f75e21490beeab53ea616646a995ad203e1af532d67a774fb6","impliedFormat":1},{"version":"36d0976d3dad74078f707af107b5082dbe42ffcadb3442ff140c36c8a33b4887","affectsGlobalScope":true,"impliedFormat":1},{"version":"86e0d632e9ef88593e8724ffb6af05104e13a08f9d8df733a30f9991ac387fff","impliedFormat":1},{"version":"7646ad748a9ca15bf43d4c88f83cc851c67f8ec9c1186295605b59ba6bb36dcb","impliedFormat":1},{"version":"cef8931bc129687165253f0642427c2a72705a4613b3ac461b9fa78c7cdaef32","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"47b62c294beb69daa5879f052e416b02e6518f3e4541ae98adbfb27805dd6711","impliedFormat":1},{"version":"f8375506002c556ec412c7e2a5a9ece401079ee5d9eb2c1372e9f5377fac56c7","impliedFormat":1},{"version":"8edd6482bd72eca772f9df15d05c838dd688cdbd4d62690891fca6578cfda6fe","impliedFormat":1},{"version":"07ba29a1a495b710aea48a4cf19ae12b3cbda2a8e9ac62192af477027a99e8de","impliedFormat":1},{"version":"6dead64c944504250dd2fc9095231f36887cfc1534f1ff57737c19f92d165c91","impliedFormat":1},{"version":"b9a4824bb83f25d6d227394db2ed99985308cf2a3a35f0d6d39aa72b15473982","impliedFormat":1},{"version":"6e9948b1e396106601365283680c319a9103c71a5725e7d03e26fe246df60c4c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e8e284b3832911aeede987e4d74cf0a00f2b03896b2fd3bf924344cc0f96b3c","impliedFormat":1},{"version":"37d37474a969ab1b91fc332eb6a375885dfd25279624dfa84dea48c9aedf4472","impliedFormat":1},{"version":"1ddd8c1a3ae1f8ab28affd53b13910be4afe0b35f28517b7f14c268e9e42647a","impliedFormat":1},{"version":"f1a79b6047d006548185e55478837dfbcdd234d6fe51532783f5dffd401cfb2b","impliedFormat":1},{"version":"cbc91187014fb1e738ef252751a9f84abf2989ec1c3b1637ec23b5b39cdf3d25","impliedFormat":1},{"version":"e822320b448edce0c7ede9cbeada034c72e1f1c8c8281974817030564c63dcb1","impliedFormat":1},{"version":"9d65568cba17c9db40251023406668695ad698ea4a34542364af3e78edd37811","affectsGlobalScope":true,"impliedFormat":1},{"version":"f23e3d484de54d235bf702072100b541553a1df2550bad691fe84995e15cf7be","impliedFormat":1},{"version":"821c79b046e40d54a447bebd9307e70b86399a89980a87bbc98114411169e274","impliedFormat":1},{"version":"17bc38afc78d40b2f54af216c0cc31a4bd0c6897a5945fa39945dfc43260be2c","impliedFormat":1},{"version":"d201b44ff390c220a94fb0ff6a534fe9fa15b44f8a86d0470009cdde3a3e62ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"d44445141f204d5672c502a39c1124bcf1df225eba05df0d2957f79122be87b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"de905bc5f7e7a81cb420e212b95ab5e3ab840f93e0cfa8ce879f6e7fa465d4a2","impliedFormat":1},{"version":"bc2ff43214898bc6d53cab92fb41b5309efec9cbb59a0650525980aee994de2b","impliedFormat":1},{"version":"bede3143eeddca3b8ec3592b09d7eb02042f9e195251040c5146eac09b173236","impliedFormat":1},{"version":"64a40cf4ec8a7a29db2b4bc35f042e5be8537c4be316e5221f40f30ca8ed7051","impliedFormat":1},{"version":"294c082d609e6523520290db4f1d54114ebc83643fb42abd965be5bcc5d9416b","impliedFormat":1},{"version":"cf7d740e39bd8adbdc7840ee91bef0af489052f6467edfcefb7197921757ec3b","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"b9f0681c4d2cb00a5cfe08a7be9662627b912de562926819ebddfe2ef6a9b5ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"b85151402164ab7cb665e58df5c1a29aa25ea4ed3a367f84a15589e7d7a9c8ca","impliedFormat":1},{"version":"89eb8abe2b5c146fbb8f3bf72f4e91de3541f2fb559ad5fed4ad5bf223a3dedb","impliedFormat":1},{"version":"bc6cb10764a82f3025c0f4822b8ad711c16d1a5c75789be2d188d553b69b2d48","affectsGlobalScope":true,"impliedFormat":1},{"version":"41d510caf7ed692923cb6ef5932dc9cf1ed0f57de8eb518c5bab8358a21af674","impliedFormat":1},{"version":"2751c5a6b9054b61c9b03b3770b2d39b1327564672b63e3485ac03ffeb28b4f6","impliedFormat":1},{"version":"dc058956a93388aab38307b7b3b9b6379e1021e73a244aab6ac9427dc3a252a7","impliedFormat":1},{"version":"f33302cf240672359992c356f2005d395b559e176196d03f31a28cc7b01e69bc","impliedFormat":1},{"version":"3ce25041ff6ae06c08fcaccd5fcd9baf4ca6e80e6cb5a922773a1985672e74c2","affectsGlobalScope":true,"impliedFormat":1},{"version":"652c0de14329a834ff06af6ad44670fac35849654a464fd9ae36edb92a362c12","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b1e178016d3fc554505ae087c249b205b1c50624d482c542be9d4682bab81fc","impliedFormat":1},{"version":"5db7c5bb02ef47aaaec6d262d50c4e9355c80937d649365c343fa5e84569621d","impliedFormat":1},{"version":"cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a","impliedFormat":1},{"version":"6831f13f06a15391dfeb2477d48ac58311ab675f85846a05499ee92d6e856933","affectsGlobalScope":true,"impliedFormat":1},{"version":"37bef1064b7d015aeaa7c0716fe23a0b3844abe2c0a3df7144153ca8445fe0da","impliedFormat":1},{"version":"83178a1174286d5f5178c5c75067e36c41b975c26be7b86d99cb18393eb30a41","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"72557ced222a6b2fa124910ce3ed1d6b8caea4cc1892eda2313ed50e0f1d95bf","impliedFormat":1},{"version":"cf05b854a840e9094fd336fcf1f6458e2c1d0f51f3af682aad5acba1fd7ed807","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"7d5dd008a087b517daee2c66b15e5767389c08f9f8d66c434d26d4f6cb3f55c3","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"6ad6692aba2cad7697d1dbc76c973e7eca5c80aba70396233e4c4ea0e58c536d","impliedFormat":1},{"version":"c265bd0ffe35c74f210f980f49ba8f763c3338987539276a973fad1f52c4e9f2","impliedFormat":1},{"version":"4373179619287c6f48e1d2dc48f445bcb43e34bf13ab7bcc74953f06b0975404","impliedFormat":1},{"version":"5bfb2564cd6a65672b9c9a318d6313b925937b0a37606bf9ca89445b4a8d5a6b","impliedFormat":1},{"version":"066aff28aa26c1deb80e040da88f30f6149e388d556f8390d95edfff3fa99e3c","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"78128cd7be8cbceaa53c812de6691b2301fe128cbf9b9f6d2778ecc0ad47a794","impliedFormat":1},{"version":"309ebd217636d68cf8784cbc3272c16fb94fb8e969e18b6fe88c35200340aef1","impliedFormat":1},{"version":"6e4fde24e4d82d79eaff2daa7f5dffa79ba53de2a6b8aef76c178a5a370764bb","impliedFormat":1},{"version":"ef9b6279acc69002a779d0172916ef22e8be5de2d2469ff2f4bb019a21e89de2","impliedFormat":1},{"version":"12b8d97a20b0fb267b69c4a6be0dfad7c88851d2dcab6150aa4218f40efa45f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e86102dbab93227b2702cba0ba06cb638961394577dc28cd5b856f0184c3156","impliedFormat":1},{"version":"6c859096094c744d2dd7b733189293a5b2af535e15f7794e69a3b4288b70dcfc","impliedFormat":1},{"version":"915d51e1bcd9b06ab8c922360b3f74ffe70c2ab6264f759f2b3e5f4130df0149","impliedFormat":1},{"version":"716a022c6d311c8367d830d2839fe017699564de2d0f5446b4a6f3f022a5c0c6","impliedFormat":1},{"version":"c939cb12cb000b4ec9c3eca3fe7dee1fe373ccb801237631d9252bad10206d61","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"92d777bf731e4062397081e864fbc384054934ab64af7723dfbf1df21824db31","impliedFormat":1},{"version":"ee415a173162328db8ab33496db05790b7d6b4a48272ff4a6c35cf9540ac3a60","impliedFormat":1},{"version":"80e653fbbec818eecfe95d182dc65a1d107b343d970159a71922ac4491caa0af","impliedFormat":1},{"version":"f978b1b63ad690ff2a8f16d6f784acaa0ba0f4bcfc64211d79a2704de34f5913","impliedFormat":1},{"version":"00c7c66bbd6675c5bc24b58bac2f9cbdeb9f619b295813cabf780c08034cfaba","impliedFormat":1},{"version":"9078205849121a5d37a642949d687565498da922508eacb0e5a0c3de427f0ae5","impliedFormat":1},{"version":"0ce71e5ee7c489209494c14028e351ccb1ffe455187d98a889f8e07ae2458ef7","impliedFormat":1},{"version":"f5c8f2ef9603893e25ed86c7112cd2cc60d53e5387b9146c904bce3e707c55de","impliedFormat":1},{"version":"db3ea1212b188ff23aa4f32b63e459c9b55d34b44b57bcbdf401f291352483f0","impliedFormat":99},{"version":"dc01facbb7d88bc5e2eabb7c6eee80a0241538d50a5c3b210fb745683faa1dab","impliedFormat":1},{"version":"5c5197a46686814821229b28e4cfd601ef0a32f2d2d29b9a99050bac0ab03c99","impliedFormat":1},{"version":"2f3a88381874ec5fd76116a07b4ec3ed2eb667d00cff57f4f21e58cc0e970ca8","impliedFormat":1},{"version":"2c6c3af3957e38e6a5190258a666a06893ba5a11e3501585243129afecefd037","impliedFormat":1},{"version":"13e5ea921d6f62171aab19f33a6690e3c6658eecd2e5672425e49ac30d4305e6","impliedFormat":1},{"version":"1e28020a23b28743d5bd708b9e4c7b75fdff606aa080fbaf5b8db3600d5c99cf","impliedFormat":1},{"version":"49e7f03e7e7288397725e823654fdfe61892bb5082f391057e61b9c4f1b54f16","impliedFormat":1},{"version":"7b368e9be7bfea145983add6818f4e9ad5d83e5cabc8f771211d77c0feb8db94","impliedFormat":1},{"version":"d49030b9a324bab9bcf9f663a70298391b0f5a25328409174d86617512bf3037","impliedFormat":1},{"version":"a4b634bb8c97cc700dbf165f3bb0095ec669042da72eaf28a7c5e2ddd98169ce","impliedFormat":1},{"version":"a7578eb8461c2d07440749f89aba22881d5fca09a1d1cd46974628869fbadfa1","impliedFormat":99},{"version":"c09b4100633f99c246fa95b29398804299f17700ad99e93bfa11f61f1e27605b","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"30694e4f10ef4a9a7d9b2b697e22cfad208f9e4b4b2567c3365bc985afc0cd4b","impliedFormat":1},{"version":"532c0dab4fba184a4dcba3d6861464d99ba64179bec22b8130f33da6b17597a3","impliedFormat":1},{"version":"5a631db32cbe2e5f08fc30bcd7321161565bf227fcea057258f3e3bdedd6f8b7","impliedFormat":1},{"version":"4acb96957efa68a1d84a9018e4ae140f93ff8af6e7eb167813f0f1e7a34c1eea","impliedFormat":1},{"version":"f0a38f89d12f4d6551c92ccbb01c3278b44050e54618cd43d27df4452357d814","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"8a1d6a57ed52927d8e7c7b617ada95239a411fac205f5040603e8b39c9979803","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"148048f6cd77da8982d8d220e24d7bd67861033806e3648f0f4fe709b904f11d","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"65d581663663be2adeb0a5ac83f9fb077ab1e173d9ba06df33f959aaa1303491","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"164a6d88c10434ed6772b3d8a2a724d619c2271cfeb53c5589389d724eaacc1e","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"efa595cccee204a3121a51b16629027c6ca4d96aed87fdd70f8066374f97d34b","impliedFormat":1},{"version":"0abc6e9b21e8fa7083edab4e5869b05be066f49bac7294c5421fb2de6ad21cbc","impliedFormat":1},{"version":"547f1af9ba7f52097a10e707b70668c7b0af64cfc5d0f011fbf5768c5b7639ee","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"7353d426ea2acf4820408ef38a3f0db2692c00b6ba49460a87014bd987767dac","impliedFormat":1},{"version":"07f804df70402ba5fb4a7457b3e8029b59ec3facc9694d778d936a11f5127179","impliedFormat":1},{"version":"57800654e0bf0257086325f54ee7cfbbfa89e27c5bac44736f089c11143c936b","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"d75b74cc8266ead7014d7a8a225bba5507a2706cb7a6b186ac52807a74e4a182","impliedFormat":1},{"version":"a344c8d8591f094f6d67336044485c6f87a5cc5c58c3ca6e4ae1c3248f18255a","impliedFormat":1},{"version":"c56d30cadef4528d6d568207e6ca4dd401d474843aee160e6c3a24d790ede0fd","impliedFormat":1},{"version":"94b065f9004cde283dd5989e9bd604a725c9a3c165b3e1c963a7f2fae2d07a6a","impliedFormat":1},{"version":"33650b1a5cdb1bf423ae5bace3a0447f4673bfc9e1d982bcbafa1b6d9720d747","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"dd8f07cc3c31fc292339ffedb6617e7f88f26f94da5b156a2e58779b78cd489b","impliedFormat":1},{"version":"2d347c9473107aa9cb2120f94e39f179aa5b36a62af100f49d90b332c9209d19","impliedFormat":1},{"version":"73d7cfecd1fab6c4fabbb528f2187746994de793798811db491f7e4d8383183f","impliedFormat":1},{"version":"18e9ac0c696390f25c7d51098d7c28e7e67c22b68c27e721588c34038f0c3bad","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"e3059fe953b72c20fec9f74878dd7879b661d81657875907336c41e3b817c84b","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"315b8bc4d809525b2f6635eb0237af1fe03501cc57bb0b722c672d0634bb8bb1","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"2dcf72ec20aa5e3cf9911c4d5ada9393bb8d18f00d3dbdbe07ce618b4e90ab3f","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"481559421f5cd5562e4713c251e77dee07f5145c5f1d710afc445e733236802b","impliedFormat":1},{"version":"e98a715378d27c3eb8da1f1b4d2a0f77388893d953830e1ecdd17c31235890a6","impliedFormat":1},{"version":"483b6ed49396309c0ceb824efa6ddc71d5379cb550f08db41a89a7ca6eb0caec","impliedFormat":1},{"version":"625314d2a8acbd18fdedc8ddebfe8ca8f50967894eaf5432f741bb2132533708","impliedFormat":1},{"version":"05b2642e38103c3d8c76c76532281e3ce625872086b9434e798916c82be50047","signature":"12037bdc4db3f3ff9c26053f232916e793c666a011eab33715d0d6ccd7364a83"},{"version":"f05b5c5c93bdee318442d625ca21525b62a2e0e746df30eafd340c5bde4ee0d6","signature":"44771949a6be3cbb26d9722f4d9772c7ce09ca98152ecdea74c9f7df7a2a1a51"},{"version":"e265e8b270ed25428da2c0e598354d90490091087bdcc16415fdbc09e5435285","signature":"75b709981dff98f771cad4e57d3248c7faa73c03adf59a3436c95e658787e1b6"},{"version":"45168be2770631d6531d7ad54b5714e382dec9fb54b417f4f3e1c2d71ec91bdb","signature":"41369a3d522cbde919b76bcdc37b25f769f7a659952ed1fa3fc76edb697f5ff3"},"e332c96312500a60bf97cc114367b1c6dfe355af97338213c03ddf381ffc13ca","36a887692e6e1c5569c705650d346098ae39a0d1f6b58ac8a92e771d80898a48",{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"e72bcd16c134dae5a840b1d5d0e8b87e1d07fbbff01d66e9a7b913da3cd39b8e","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1},{"version":"a6c4cc913246a4f40423d0c6e618239072d7662bd54f6d8b8be59aec55d59873","impliedFormat":1}],"root":[[399,404]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[77,1],[48,2],[75,3],[76,4],[74,2],[73,5],[49,2],[50,6],[60,7],[67,8],[61,9],[51,2],[54,10],[56,11],[53,10],[52,10],[57,2],[62,9],[63,9],[66,12],[58,13],[64,9],[59,9],[65,14],[68,15],[55,2],[70,16],[72,17],[71,18],[93,19],[94,2],[95,2],[96,2],[97,20],[98,20],[99,2],[100,2],[101,2],[102,19],[103,2],[104,20],[105,2],[106,2],[107,2],[108,2],[144,2],[109,2],[110,20],[111,20],[112,2],[113,19],[114,20],[115,2],[116,2],[117,2],[143,2],[118,2],[119,2],[120,21],[121,2],[122,2],[123,2],[135,2],[124,2],[125,2],[126,2],[127,20],[128,2],[129,20],[130,20],[131,2],[132,19],[133,2],[134,2],[136,22],[137,2],[138,2],[139,2],[140,20],[92,2],[142,23],[145,24],[246,25],[247,26],[245,2],[69,2],[406,27],[407,2],[408,2],[405,2],[410,2],[411,28],[190,29],[191,29],[192,30],[152,31],[193,32],[194,33],[195,34],[147,2],[150,35],[148,2],[149,2],[196,36],[197,37],[198,38],[199,39],[200,40],[201,41],[202,41],[203,42],[204,43],[205,44],[206,45],[153,2],[151,2],[207,46],[208,47],[209,48],[240,49],[210,50],[211,51],[212,52],[213,53],[214,54],[215,55],[216,56],[217,57],[218,58],[219,59],[220,59],[221,60],[222,61],[224,62],[223,63],[225,64],[226,65],[227,66],[228,67],[229,68],[230,69],[231,70],[232,71],[233,72],[234,73],[235,74],[236,75],[237,76],[154,2],[155,2],[156,2],[189,77],[238,78],[239,79],[412,2],[437,80],[438,81],[414,82],[417,83],[435,80],[436,80],[426,80],[425,84],[423,80],[418,80],[431,80],[429,80],[433,80],[413,80],[430,80],[434,80],[419,80],[420,80],[432,80],[415,80],[421,80],[422,80],[424,80],[428,80],[439,85],[427,80],[416,80],[452,86],[451,2],[446,85],[448,87],[447,85],[440,85],[441,85],[443,85],[445,85],[449,87],[450,87],[442,87],[444,87],[453,2],[146,2],[409,88],[357,89],[358,89],[359,89],[360,89],[362,90],[361,89],[395,91],[242,2],[363,89],[243,2],[244,2],[252,92],[255,93],[248,94],[249,95],[250,95],[251,95],[265,96],[273,94],[274,2],[254,97],[270,98],[269,98],[268,98],[267,98],[271,98],[272,98],[253,97],[275,99],[256,100],[257,101],[259,97],[264,102],[266,92],[261,103],[260,104],[258,105],[262,103],[263,93],[394,2],[364,106],[343,106],[344,2],[368,89],[369,2],[386,107],[388,2],[385,2],[387,108],[370,109],[365,2],[384,89],[375,2],[398,110],[352,111],[353,89],[367,109],[374,91],[389,107],[354,112],[390,92],[392,89],[391,89],[393,2],[373,89],[371,89],[355,89],[345,2],[366,113],[348,114],[346,91],[347,115],[381,109],[356,89],[372,89],[383,89],[380,89],[382,89],[379,89],[376,89],[351,2],[377,116],[396,117],[397,2],[349,112],[378,89],[350,118],[241,88],[141,2],[46,2],[47,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[19,2],[4,2],[20,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[35,2],[32,2],[33,2],[34,2],[36,2],[7,2],[37,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[44,2],[45,2],[1,2],[172,119],[179,120],[171,119],[186,121],[163,122],[162,123],[185,124],[180,125],[183,126],[165,127],[164,128],[160,129],[159,124],[182,130],[161,131],[166,132],[167,2],[170,132],[157,2],[188,133],[187,132],[174,134],[175,135],[177,136],[173,137],[176,138],[181,124],[168,139],[169,140],[178,141],[158,142],[184,143],[91,144],[80,145],[82,146],[89,147],[84,2],[85,2],[83,148],[86,149],[78,2],[79,2],[90,150],[81,151],[87,2],[88,152],[335,153],[338,154],[336,154],[332,153],[339,155],[340,156],[337,154],[333,157],[334,158],[327,159],[280,160],[282,161],[325,2],[281,162],[326,163],[330,164],[328,2],[283,160],[284,2],[324,165],[279,166],[276,2],[329,167],[277,168],[278,2],[341,169],[285,170],[286,170],[287,170],[288,170],[289,170],[290,170],[291,170],[292,170],[293,170],[294,170],[296,170],[295,170],[297,170],[298,170],[299,170],[323,171],[300,170],[301,170],[302,170],[303,170],[304,170],[305,170],[306,170],[307,170],[308,170],[310,170],[309,170],[311,170],[312,170],[313,170],[314,170],[315,170],[316,170],[317,170],[318,170],[319,170],[320,170],[321,170],[322,170],[331,172],[342,173],[403,2],[402,174],[399,91],[400,91],[401,91],[404,2]],"version":"5.9.2"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Publishing Readiness
|
|
2
|
+
|
|
3
|
+
## Current state
|
|
4
|
+
|
|
5
|
+
- Package status: narrowed v1 development surface
|
|
6
|
+
- npm status: not published
|
|
7
|
+
- n8n verification status: not submitted and not verified
|
|
8
|
+
- Credentials: not required for the public preview
|
|
9
|
+
- Runtime dependencies: none
|
|
10
|
+
|
|
11
|
+
The tag-only `.github/workflows/publish.yml` workflow is prepared for a future npm provenance release. It supports a temporary `NPM_TOKEN` GitHub Actions secret for the first publish bootstrap; trusted publishing/OIDC remains preferred for every release after the npm package record exists. The workflow has not run and nothing has been published. Normal pushes and pull requests do not trigger it. See the [release checklist](release-checklist.md) before creating any release tag.
|
|
12
|
+
|
|
13
|
+
The `package-readiness.yml` GitHub Actions workflow remains validation-only: it installs, lints, builds, and previews package contents without publishing.
|
|
14
|
+
|
|
15
|
+
The first tag workflow attempt stopped before publication because npm invoked `prepublishOnly` (`n8n-node prerelease`). The GitHub Actions publish command now uses `--ignore-scripts` after its explicit install, lint, build, and package-preview checks. The local `prepublishOnly` guard remains unchanged. Registry lookup after the failed attempt returned 404, confirming the package remained unpublished.
|
|
16
|
+
|
|
17
|
+
## Required before publication
|
|
18
|
+
|
|
19
|
+
- Confirm package ownership and npm name availability.
|
|
20
|
+
- Review the narrowed node operations and UX copy after local testing.
|
|
21
|
+
- Pass `npm run lint`, `npm run build`, and local `npm run dev` testing.
|
|
22
|
+
- Run the current n8n community package scanner after the package exists in npm.
|
|
23
|
+
- Confirm package metadata and public repository URLs.
|
|
24
|
+
- Confirm MIT licensing and complete README documentation.
|
|
25
|
+
- Confirm there are no runtime dependencies, credentials, secrets, or private URLs.
|
|
26
|
+
- For the first publish only, create a short-lived, narrowly scoped npm token as the GitHub Actions secret `NPM_TOKEN`, then revoke it immediately after success.
|
|
27
|
+
- After the package exists, configure npm trusted publishing for `Exnav29/n8n-nodes-scriptureflow` and workflow filename `publish.yml`, then remove the temporary GitHub secret.
|
|
28
|
+
- Publish a release from GitHub Actions, never from a local machine.
|
|
29
|
+
- Submit through the n8n Creator Portal only after the public npm package is ready.
|
|
30
|
+
|
|
31
|
+
## Explicit non-actions before release approval
|
|
32
|
+
|
|
33
|
+
- Do not run `npm publish`.
|
|
34
|
+
- Do not run `npm run release`.
|
|
35
|
+
- Do not create or push release tags until the [release checklist](release-checklist.md) is approved and complete.
|
|
36
|
+
- Do not configure npm credentials.
|
|
37
|
+
- Do not submit to the n8n Creator Portal.
|
|
38
|
+
|
|
39
|
+
## Bootstrap validation record
|
|
40
|
+
|
|
41
|
+
- `npm install`: passed after aligning ESLint with the current n8n-node CLI peer requirement.
|
|
42
|
+
- `npm run lint`: passed.
|
|
43
|
+
- `npm run build`: passed.
|
|
44
|
+
- `npm run dev`: TypeScript watch started with zero errors. The first-run n8n installation did not finish within the automated startup window, so confirming the node in the `localhost:5678` nodes panel remains a manual interactive check.
|
|
45
|
+
- Community package scanner: deferred because the scanner resolves a package from npm and `n8n-nodes-scriptureflow` is intentionally not published yet.
|
|
46
|
+
- npm audit: installation reported transitive development-tool findings that should be reassessed before release; no runtime dependencies were added.
|
|
47
|
+
|
|
48
|
+
## V1 cleanup status
|
|
49
|
+
|
|
50
|
+
- The exploratory chapters, range, static-index, split-index, fresh-random, guided-dropdown, formatted-output, metadata-wrapper, and custom error-item behavior has been removed from the v1 surface.
|
|
51
|
+
- Translation Get Many, Book Get Many, Get Verse, Get Quick Verse, and Get Generated Verse of the Day remain.
|
|
52
|
+
- The source folder is normalized to `ScriptureFlow`. The node files retain n8n's lint-required `Scriptureflow.node.*` naming while the UI display name remains `ScriptureFlow`; Linux CI must continue to validate the package path.
|
|
53
|
+
- Local n8n runtime loading, workflow execution, node-picker discovery, and picker/canvas icon appearance are confirmed.
|
|
54
|
+
- The GitHub Actions provenance workflow is prepared but has not executed. npm publication and Creator Portal submission remain deferred.
|
|
55
|
+
|
|
56
|
+
## V1 cleanup validation record
|
|
57
|
+
|
|
58
|
+
- `npm install`: passed; npm still reports 18 transitive development-tool findings (7 moderate and 11 high) for later review.
|
|
59
|
+
- `npm run lint`: passed.
|
|
60
|
+
- `npm run build`: passed.
|
|
61
|
+
- `npm pack --dry-run --ignore-scripts`: passed with the normalized `dist/nodes/ScriptureFlow/Scriptureflow.node.js` manifest path.
|
|
62
|
+
- Compiled execution smoke tests passed against all five public endpoints, including raw catalog output, attributed Scripture output, simplified Quick Verse output, and a clear invalid-Version-Key failure.
|
|
63
|
+
- The local `n8n-local-dev` instance recognized the mounted `CUSTOM.scriptureflow` node and successfully executed an inactive smoke-test workflow containing all five v1 operations. No production or existing workflow was modified.
|
|
64
|
+
- The custom SVG is built and deployed with an exact `file:scriptureflow.svg` reference. Its blue-and-gold branding was manually confirmed in both the authenticated node picker and workflow canvas.
|
|
65
|
+
- Registry lookup confirms `n8n-nodes-scriptureflow` remains unpublished.
|
|
66
|
+
|
|
67
|
+
## Manual local verification record
|
|
68
|
+
|
|
69
|
+
Manual local verification passed on 2026-06-22 at `http://localhost:5678`.
|
|
70
|
+
|
|
71
|
+
- The node appeared as **ScriptureFlow** with its custom blue-and-gold icon in both the node picker and canvas.
|
|
72
|
+
- Exactly five actions were present: Book Get Many; Scripture Get Generated Verse of the Day, Get Quick Verse, and Get Verse; and Translation Get Many.
|
|
73
|
+
- Translation Get Many returned 50 items, and Book Get Many completed successfully.
|
|
74
|
+
- Get Verse returned raw attributed ScriptureFlow JSON for `en-lsv`, John 3:16, including `ok: true`, `type: "verse_lookup"`, `version: "en-lsv"`, and `reference: "John 3:16"`.
|
|
75
|
+
- An invalid `en-lsb` Version Key produced `ScriptureFlow API request failed` and directed the user to `https://scriptureflow-api-preview.pages.dev/translations.json`.
|
|
76
|
+
|
|
77
|
+
These results cover local development only. npm publication, the npm community package scanner, n8n verification, and Creator Portal submission remain incomplete or deferred as described above. The provenance workflow is prepared but unexecuted, and the 18 transitive development-tool audit findings remain a release review item.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# ScriptureFlow Node Roadmap
|
|
2
|
+
|
|
3
|
+
This roadmap separates the implemented v1 target from later operations. The package remains unpublished and unverified.
|
|
4
|
+
|
|
5
|
+
The keep/defer/remove decisions from the [v1 scope audit](v1-scope-audit.md) were applied in the v1 cleanup.
|
|
6
|
+
|
|
7
|
+
## Phase 1 foundation
|
|
8
|
+
|
|
9
|
+
- Maintain the official n8n-node package structure.
|
|
10
|
+
- Keep the package dependency-light with no runtime dependencies.
|
|
11
|
+
- Support the public preview without credentials.
|
|
12
|
+
- Default to `https://scriptureflow-api-preview.pages.dev`.
|
|
13
|
+
- Preserve ScriptureFlow response attribution and errors.
|
|
14
|
+
- Validate package metadata, lint, build, local development, and packaging.
|
|
15
|
+
|
|
16
|
+
## V1 target operations
|
|
17
|
+
|
|
18
|
+
- Translation > Get Many: `/translations.json`
|
|
19
|
+
- Book > Get Many: `/{version}/books.json`
|
|
20
|
+
- Scripture > Get Verse: `/api/verse`
|
|
21
|
+
- Scripture > Get Quick Verse: `/api/quick-verse`
|
|
22
|
+
- Scripture > Get Generated Verse of the Day: `/{version}/random.json`
|
|
23
|
+
|
|
24
|
+
These operations use explicit Version Key and structured reference fields. They return raw ScriptureFlow JSON by default and do not use static-index traversal, generated fallback text, or custom response wrappers.
|
|
25
|
+
|
|
26
|
+
## Deferred operations and behavior
|
|
27
|
+
|
|
28
|
+
- Public catalog and translation metadata
|
|
29
|
+
- List chapters
|
|
30
|
+
- Get passage/range
|
|
31
|
+
- Free-text reference lookup
|
|
32
|
+
- Verse-index and split-index traversal
|
|
33
|
+
- Guided chained dropdowns
|
|
34
|
+
- Client-side random selection
|
|
35
|
+
- Plain-text and formatted-citation output modes
|
|
36
|
+
|
|
37
|
+
Quick Verse and generated Verse of the Day must remain separate operations because Quick Verse is selected at request time while `/{version}/random.json` is a generated translation resource.
|
|
38
|
+
|
|
39
|
+
## Credential and base URL plan
|
|
40
|
+
|
|
41
|
+
- Phase 1: no credentials required for public preview.
|
|
42
|
+
- Default base URL: `https://scriptureflow-api-preview.pages.dev`.
|
|
43
|
+
- Later: optional API key credential when ScriptureFlow API-key or monetization support is available.
|
|
44
|
+
- Any future API key or token field must be sensitive/password-protected.
|
|
45
|
+
- A custom base URL may be considered for testing or self-hosted environments.
|
|
46
|
+
|
|
47
|
+
## Safety and output principles
|
|
48
|
+
|
|
49
|
+
- Discover exact version keys through `/translations.json`.
|
|
50
|
+
- Never silently substitute translations.
|
|
51
|
+
- Never invent or paraphrase Scripture text.
|
|
52
|
+
- Preserve returned reference and version attribution.
|
|
53
|
+
- Keep generated commentary separate from Scripture text.
|
|
54
|
+
- Surface API errors and partial-translation gaps clearly.
|
|
55
|
+
- Adapt the node to ScriptureFlow responses rather than changing the API for the node.
|
|
56
|
+
|
|
57
|
+
## Release gates
|
|
58
|
+
|
|
59
|
+
Before npm publication, complete local n8n panel and workflow testing, review outstanding npm audit findings, confirm no runtime dependencies, validate documentation, and publish only through an approved GitHub Actions provenance workflow. The npm package scanner remains deferred until a package exists in npm, and Creator Portal submission remains a later phase.
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-scriptureflow",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Use ScriptureFlow in n8n workflows to discover translations and retrieve attributed Scripture from the public API.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"n8n-community-node-package",
|
|
8
|
+
"n8n",
|
|
9
|
+
"scriptureflow",
|
|
10
|
+
"bible",
|
|
11
|
+
"scripture",
|
|
12
|
+
"automation"
|
|
13
|
+
],
|
|
14
|
+
"author": { "name": "Exnav29" },
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow.git"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/Exnav29/n8n-nodes-scriptureflow#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/Exnav29/n8n-nodes-scriptureflow/issues"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "n8n-node build",
|
|
25
|
+
"build:watch": "tsc --watch",
|
|
26
|
+
"dev": "n8n-node dev",
|
|
27
|
+
"lint": "n8n-node lint",
|
|
28
|
+
"lint:fix": "n8n-node lint --fix",
|
|
29
|
+
"release": "n8n-node release",
|
|
30
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"docs/scriptureflow-node-roadmap.md",
|
|
35
|
+
"docs/publishing-readiness.md"
|
|
36
|
+
],
|
|
37
|
+
"n8n": {
|
|
38
|
+
"n8nNodesApiVersion": 1,
|
|
39
|
+
"strict": true,
|
|
40
|
+
"credentials": [],
|
|
41
|
+
"nodes": ["dist/nodes/ScriptureFlow/Scriptureflow.node.js"]
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@n8n/node-cli": "0.35.1",
|
|
45
|
+
"eslint": "9.29.0",
|
|
46
|
+
"prettier": "3.6.2",
|
|
47
|
+
"release-it": "^19.0.4",
|
|
48
|
+
"typescript": "5.9.2"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": { "n8n-workflow": "*" }
|
|
51
|
+
}
|