@productminds/article-events 0.0.10 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +11 -0
- package/lib/article-events.d.ts +3 -0
- package/lib/article-events.js +10 -0
- package/lib/cmd/write-json-schema.d.ts +1 -0
- package/lib/cmd/write-json-schema.js +14 -0
- package/lib/events/ArticleEvent.d.ts +70 -0
- package/{dist/src → lib}/events/ArticleEvent.js +3 -3
- package/{dist/src → lib}/events/ExternalArticleEvent.d.ts +84 -196
- package/{dist/src → lib}/events/ExternalArticleEvent.js +7 -4
- package/{dist/src → lib}/events/InternalArticleEvent.d.ts +69 -133
- package/{dist/src → lib}/events/InternalArticleEvent.js +11 -8
- package/lib/types/Article.d.ts +27 -0
- package/lib/types/Article.js +30 -0
- package/{dist/src → lib}/utils/makeHelpers.js +1 -1
- package/package.json +13 -16
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -29
- package/dist/src/events/ArticleEvent.d.ts +0 -497
- package/dist/src/types/Article.d.ts +0 -55
- package/dist/src/types/Article.js +0 -38
- package/index.ts +0 -5
- package/src/events/ArticleEvent.ts +0 -19
- package/src/events/ExternalArticleEvent.ts +0 -19
- package/src/events/InternalArticleEvent.ts +0 -19
- package/src/types/Article.ts +0 -46
- package/src/utils/makeHelpers.ts +0 -55
- package/tsconfig.json +0 -100
- /package/{dist/src → lib}/utils/makeHelpers.d.ts +0 -0
package/src/types/Article.ts
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
import { Schema } from '@effect/schema';
|
2
|
-
|
3
|
-
export const DateTimeSchema = Schema.Date.annotations({
|
4
|
-
jsonSchema: { format: 'date-time' }
|
5
|
-
});
|
6
|
-
|
7
|
-
export const CategoryTagSchema = Schema.Struct({
|
8
|
-
type: Schema.Literal('CATEGORY'),
|
9
|
-
value: Schema.NonEmpty
|
10
|
-
});
|
11
|
-
|
12
|
-
export const ArticleReferenceSchema = Schema.Struct({
|
13
|
-
type: Schema.Literal('EXTERNAL_ARTICLE_REFERENCE'),
|
14
|
-
id: Schema.UUID
|
15
|
-
});
|
16
|
-
|
17
|
-
export const EntityTag = Schema.Struct({
|
18
|
-
type: Schema.Literal('ENTITY'),
|
19
|
-
entityType: Schema.Literal('PERSON'),
|
20
|
-
value: Schema.NonEmpty
|
21
|
-
});
|
22
|
-
|
23
|
-
export const TagSchema = Schema.Union(
|
24
|
-
CategoryTagSchema,
|
25
|
-
ArticleReferenceSchema,
|
26
|
-
EntityTag
|
27
|
-
);
|
28
|
-
|
29
|
-
export const AuthorSchema = Schema.Struct({
|
30
|
-
name: Schema.NonEmpty
|
31
|
-
});
|
32
|
-
|
33
|
-
export const ArticleSchema = Schema.Struct({
|
34
|
-
id: Schema.UUID,
|
35
|
-
title: Schema.NonEmpty,
|
36
|
-
teaser: Schema.NonEmpty,
|
37
|
-
content: Schema.NonEmpty,
|
38
|
-
publishedAt: DateTimeSchema,
|
39
|
-
updatedAt: DateTimeSchema,
|
40
|
-
retrievedAt: DateTimeSchema,
|
41
|
-
url: Schema.NonEmpty,
|
42
|
-
site: Schema.NonEmpty,
|
43
|
-
tags: Schema.Array(TagSchema),
|
44
|
-
authors: Schema.Array(AuthorSchema),
|
45
|
-
meta: Schema.optional(Schema.Unknown)
|
46
|
-
});
|
package/src/utils/makeHelpers.ts
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
import { Schema } from '@effect/schema';
|
2
|
-
|
3
|
-
export const makeHelpers = <A, I>(schema: Schema.Schema<A, I, never>) => {
|
4
|
-
const decode = Schema.decodeUnknownEither(schema);
|
5
|
-
const decodeExn = (u: unknown) => {
|
6
|
-
const decoded = decode(u);
|
7
|
-
|
8
|
-
if (decoded._tag === 'Left') {
|
9
|
-
throw new Error('Failed to decode ArticleEvent');
|
10
|
-
}
|
11
|
-
|
12
|
-
return decoded.right;
|
13
|
-
};
|
14
|
-
|
15
|
-
const encode = Schema.encodeEither(schema);
|
16
|
-
const encodeExn = (event: typeof schema.Type) => {
|
17
|
-
const encoded = encode(event);
|
18
|
-
|
19
|
-
if (encoded._tag === 'Left') {
|
20
|
-
throw new Error('Failed to encode ArticleEvent');
|
21
|
-
}
|
22
|
-
|
23
|
-
return encoded.right;
|
24
|
-
};
|
25
|
-
|
26
|
-
const fromString = (msg: string) => decode(JSON.parse(msg));
|
27
|
-
const fromBuffer = (msg: Buffer) => decode(JSON.parse(msg.toString()));
|
28
|
-
|
29
|
-
const fromStringExn = (msg: string) => decodeExn(JSON.parse(msg));
|
30
|
-
const fromBufferExn = (msg: Buffer) => fromStringExn(msg.toString());
|
31
|
-
|
32
|
-
const toString = (event: typeof schema.Type) => JSON.stringify(encode(event));
|
33
|
-
|
34
|
-
const toBuffer = (event: typeof schema.Type) => Buffer.from(toString(event));
|
35
|
-
|
36
|
-
const toStringExn = (event: typeof schema.Type) =>
|
37
|
-
JSON.stringify(encodeExn(event));
|
38
|
-
const toBufferExn = (event: typeof schema.Type) =>
|
39
|
-
Buffer.from(toStringExn(event));
|
40
|
-
|
41
|
-
return {
|
42
|
-
decode,
|
43
|
-
decodeExn,
|
44
|
-
encode,
|
45
|
-
encodeExn,
|
46
|
-
fromString,
|
47
|
-
fromBuffer,
|
48
|
-
fromStringExn,
|
49
|
-
fromBufferExn,
|
50
|
-
toString,
|
51
|
-
toBuffer,
|
52
|
-
toStringExn,
|
53
|
-
toBufferExn
|
54
|
-
};
|
55
|
-
};
|
package/tsconfig.json
DELETED
@@ -1,100 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"compilerOptions": {
|
3
|
-
/* Visit https://aka.ms/tsconfig to read more about this file */
|
4
|
-
/* Projects */
|
5
|
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
6
|
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
7
|
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
8
|
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
9
|
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
10
|
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
11
|
-
/* Language and Environment */
|
12
|
-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
13
|
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
14
|
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
15
|
-
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
16
|
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
17
|
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
18
|
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
19
|
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
20
|
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
21
|
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
22
|
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
23
|
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
24
|
-
/* Modules */
|
25
|
-
"module": "commonjs", /* Specify what module code is generated. */
|
26
|
-
// "rootDir": "./", /* Specify the root folder within your source files. */
|
27
|
-
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
28
|
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
29
|
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
30
|
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
31
|
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
32
|
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
33
|
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
34
|
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
35
|
-
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
36
|
-
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
37
|
-
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
38
|
-
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
39
|
-
// "resolveJsonModule": true, /* Enable importing .json files. */
|
40
|
-
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
41
|
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
42
|
-
/* JavaScript Support */
|
43
|
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
44
|
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
45
|
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
46
|
-
/* Emit */
|
47
|
-
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
48
|
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
49
|
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
50
|
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
51
|
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
52
|
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
53
|
-
"outDir": "./dist", /* Specify an output folder for all emitted files. */
|
54
|
-
// "removeComments": true, /* Disable emitting comments. */
|
55
|
-
// "noEmit": true, /* Disable emitting files from a compilation. */
|
56
|
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
57
|
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
58
|
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
59
|
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
60
|
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
61
|
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
62
|
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
63
|
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
64
|
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
65
|
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
66
|
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
67
|
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
68
|
-
/* Interop Constraints */
|
69
|
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
70
|
-
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
71
|
-
// "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */
|
72
|
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
73
|
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
74
|
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
75
|
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
76
|
-
/* Type Checking */
|
77
|
-
"strict": true, /* Enable all strict type-checking options. */
|
78
|
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
79
|
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
80
|
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
81
|
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
82
|
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
83
|
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
84
|
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
85
|
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
86
|
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
87
|
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
88
|
-
"exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
89
|
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
90
|
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
91
|
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
92
|
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
93
|
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
94
|
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
95
|
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
96
|
-
/* Completeness */
|
97
|
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
98
|
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
99
|
-
}
|
100
|
-
}
|
File without changes
|