cruddl 4.2.0 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core-exports.d.ts +17 -19
- package/dist/core-exports.js +30 -29
- package/dist/core-exports.js.map +1 -1
- package/dist/src/cruddl-version.js +1 -1
- package/dist/src/model/change-set/apply-change-set.d.ts +2 -1
- package/dist/src/model/change-set/apply-change-set.js +4 -3
- package/dist/src/model/change-set/apply-change-set.js.map +1 -1
- package/package.json +1 -1
package/dist/core-exports.d.ts
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export { Project, ProjectConfig } from './src/project/project';
|
|
4
|
-
export { InvalidProjectError } from './src/project/invalid-project-error';
|
|
5
|
-
export { ProjectSource, SourceConfig, SourceType, SourceLike } from './src/project/source';
|
|
6
|
-
export { SchemaExecutor, SchemaExecutionArgs } from './src/execution/schema-executor';
|
|
7
|
-
export { ExecutionOptions, MutationMode, ExecutionOptionsCallbackArgs, Clock, IDGenerator, } from './src/execution/execution-options';
|
|
8
|
-
export { ExecutionResult } from './src/execution/execution-result';
|
|
9
|
-
export { ValidationMessage, Severity, MessageLocation, SourcePosition, ValidationResult, Model, QuickFix, } from './src/model';
|
|
10
|
-
export { DatabaseAdapter } from './src/database/database-adapter';
|
|
11
|
-
export { DIRECTIVES, CORE_SCALARS } from './src/schema/graphql-base';
|
|
1
|
+
export { AuthContext } from './src/authorization/auth-basics';
|
|
2
|
+
export { ModelOptions, ProjectOptions, RequestContext, RequestProfile, } from './src/config/interfaces';
|
|
12
3
|
export { Logger, LoggerProvider } from './src/config/logging';
|
|
13
|
-
export {
|
|
14
|
-
export
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
4
|
+
export { DatabaseAdapter } from './src/database/database-adapter';
|
|
5
|
+
export { Clock, ExecutionOptions, ExecutionOptionsCallbackArgs, IDGenerator, MutationMode, } from './src/execution/execution-options';
|
|
6
|
+
export { ExecutionResult } from './src/execution/execution-result';
|
|
7
|
+
export { ConflictRetriesExhaustedError, TransactionCancelledError, TransactionTimeoutError, } from './src/execution/runtime-errors';
|
|
8
|
+
export { SchemaExecutionArgs, SchemaExecutor } from './src/execution/schema-executor';
|
|
17
9
|
export { TransactionError } from './src/execution/transaction-error';
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
10
|
+
export { FieldResolverParameters, NoOperationIdentifierError, } from './src/graphql/operation-based-resolvers';
|
|
11
|
+
export { MessageLocation, Model, QuickFix, Severity, SourcePosition, ValidationMessage, ValidationResult, } from './src/model';
|
|
12
|
+
export { applyChangeSet, applyYamlAddInMapChange } from './src/model/change-set/apply-change-set';
|
|
13
|
+
export { ChangeSet, TextChange, YamlAddInMapChange } from './src/model/change-set/change-set';
|
|
14
|
+
export { TypeKind } from './src/model/config';
|
|
15
|
+
export * from './src/model/implementation';
|
|
16
|
+
export { InvalidProjectError } from './src/project/invalid-project-error';
|
|
17
|
+
export { Project, ProjectConfig } from './src/project/project';
|
|
18
|
+
export { ProjectSource, SourceConfig, SourceLike, SourceType } from './src/project/source';
|
|
19
|
+
export { CORE_SCALARS, DIRECTIVES } from './src/schema/graphql-base';
|
package/dist/core-exports.js
CHANGED
|
@@ -1,42 +1,43 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.DIRECTIVES = exports.CORE_SCALARS = exports.SourceType = exports.ProjectSource = exports.Project = exports.InvalidProjectError = exports.TypeKind = exports.YamlAddInMapChange = exports.TextChange = exports.ChangeSet = exports.applyYamlAddInMapChange = exports.applyChangeSet = exports.ValidationResult = exports.ValidationMessage = exports.SourcePosition = exports.Severity = exports.QuickFix = exports.Model = exports.MessageLocation = exports.NoOperationIdentifierError = exports.TransactionError = exports.SchemaExecutor = exports.TransactionTimeoutError = exports.TransactionCancelledError = exports.ConflictRetriesExhaustedError = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
|
|
8
|
-
Object.defineProperty(exports, "
|
|
9
|
-
var source_1 = require("./src/project/source");
|
|
10
|
-
Object.defineProperty(exports, "ProjectSource", { enumerable: true, get: function () { return source_1.ProjectSource; } });
|
|
11
|
-
Object.defineProperty(exports, "SourceType", { enumerable: true, get: function () { return source_1.SourceType; } });
|
|
5
|
+
var runtime_errors_1 = require("./src/execution/runtime-errors");
|
|
6
|
+
Object.defineProperty(exports, "ConflictRetriesExhaustedError", { enumerable: true, get: function () { return runtime_errors_1.ConflictRetriesExhaustedError; } });
|
|
7
|
+
Object.defineProperty(exports, "TransactionCancelledError", { enumerable: true, get: function () { return runtime_errors_1.TransactionCancelledError; } });
|
|
8
|
+
Object.defineProperty(exports, "TransactionTimeoutError", { enumerable: true, get: function () { return runtime_errors_1.TransactionTimeoutError; } });
|
|
12
9
|
var schema_executor_1 = require("./src/execution/schema-executor");
|
|
13
10
|
Object.defineProperty(exports, "SchemaExecutor", { enumerable: true, get: function () { return schema_executor_1.SchemaExecutor; } });
|
|
11
|
+
var transaction_error_1 = require("./src/execution/transaction-error");
|
|
12
|
+
Object.defineProperty(exports, "TransactionError", { enumerable: true, get: function () { return transaction_error_1.TransactionError; } });
|
|
13
|
+
var operation_based_resolvers_1 = require("./src/graphql/operation-based-resolvers");
|
|
14
|
+
Object.defineProperty(exports, "NoOperationIdentifierError", { enumerable: true, get: function () { return operation_based_resolvers_1.NoOperationIdentifierError; } });
|
|
14
15
|
var model_1 = require("./src/model");
|
|
15
|
-
Object.defineProperty(exports, "ValidationMessage", { enumerable: true, get: function () { return model_1.ValidationMessage; } });
|
|
16
|
-
Object.defineProperty(exports, "Severity", { enumerable: true, get: function () { return model_1.Severity; } });
|
|
17
16
|
Object.defineProperty(exports, "MessageLocation", { enumerable: true, get: function () { return model_1.MessageLocation; } });
|
|
18
|
-
Object.defineProperty(exports, "SourcePosition", { enumerable: true, get: function () { return model_1.SourcePosition; } });
|
|
19
|
-
Object.defineProperty(exports, "ValidationResult", { enumerable: true, get: function () { return model_1.ValidationResult; } });
|
|
20
17
|
Object.defineProperty(exports, "Model", { enumerable: true, get: function () { return model_1.Model; } });
|
|
21
18
|
Object.defineProperty(exports, "QuickFix", { enumerable: true, get: function () { return model_1.QuickFix; } });
|
|
22
|
-
|
|
23
|
-
Object.defineProperty(exports, "
|
|
24
|
-
Object.defineProperty(exports, "
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Object.defineProperty(exports, "
|
|
28
|
-
|
|
29
|
-
var config_1 = require("./src/model/config");
|
|
30
|
-
Object.defineProperty(exports, "TypeKind", { enumerable: true, get: function () { return config_1.TypeKind; } });
|
|
31
|
-
var operation_based_resolvers_1 = require("./src/graphql/operation-based-resolvers");
|
|
32
|
-
Object.defineProperty(exports, "NoOperationIdentifierError", { enumerable: true, get: function () { return operation_based_resolvers_1.NoOperationIdentifierError; } });
|
|
33
|
-
var transaction_error_1 = require("./src/execution/transaction-error");
|
|
34
|
-
Object.defineProperty(exports, "TransactionError", { enumerable: true, get: function () { return transaction_error_1.TransactionError; } });
|
|
35
|
-
var runtime_errors_2 = require("./src/execution/runtime-errors");
|
|
36
|
-
Object.defineProperty(exports, "ConflictRetriesExhaustedError", { enumerable: true, get: function () { return runtime_errors_2.ConflictRetriesExhaustedError; } });
|
|
19
|
+
Object.defineProperty(exports, "Severity", { enumerable: true, get: function () { return model_1.Severity; } });
|
|
20
|
+
Object.defineProperty(exports, "SourcePosition", { enumerable: true, get: function () { return model_1.SourcePosition; } });
|
|
21
|
+
Object.defineProperty(exports, "ValidationMessage", { enumerable: true, get: function () { return model_1.ValidationMessage; } });
|
|
22
|
+
Object.defineProperty(exports, "ValidationResult", { enumerable: true, get: function () { return model_1.ValidationResult; } });
|
|
23
|
+
var apply_change_set_1 = require("./src/model/change-set/apply-change-set");
|
|
24
|
+
Object.defineProperty(exports, "applyChangeSet", { enumerable: true, get: function () { return apply_change_set_1.applyChangeSet; } });
|
|
25
|
+
Object.defineProperty(exports, "applyYamlAddInMapChange", { enumerable: true, get: function () { return apply_change_set_1.applyYamlAddInMapChange; } });
|
|
37
26
|
var change_set_1 = require("./src/model/change-set/change-set");
|
|
38
27
|
Object.defineProperty(exports, "ChangeSet", { enumerable: true, get: function () { return change_set_1.ChangeSet; } });
|
|
39
28
|
Object.defineProperty(exports, "TextChange", { enumerable: true, get: function () { return change_set_1.TextChange; } });
|
|
40
|
-
|
|
41
|
-
|
|
29
|
+
Object.defineProperty(exports, "YamlAddInMapChange", { enumerable: true, get: function () { return change_set_1.YamlAddInMapChange; } });
|
|
30
|
+
var config_1 = require("./src/model/config");
|
|
31
|
+
Object.defineProperty(exports, "TypeKind", { enumerable: true, get: function () { return config_1.TypeKind; } });
|
|
32
|
+
tslib_1.__exportStar(require("./src/model/implementation"), exports);
|
|
33
|
+
var invalid_project_error_1 = require("./src/project/invalid-project-error");
|
|
34
|
+
Object.defineProperty(exports, "InvalidProjectError", { enumerable: true, get: function () { return invalid_project_error_1.InvalidProjectError; } });
|
|
35
|
+
var project_1 = require("./src/project/project");
|
|
36
|
+
Object.defineProperty(exports, "Project", { enumerable: true, get: function () { return project_1.Project; } });
|
|
37
|
+
var source_1 = require("./src/project/source");
|
|
38
|
+
Object.defineProperty(exports, "ProjectSource", { enumerable: true, get: function () { return source_1.ProjectSource; } });
|
|
39
|
+
Object.defineProperty(exports, "SourceType", { enumerable: true, get: function () { return source_1.SourceType; } });
|
|
40
|
+
var graphql_base_1 = require("./src/schema/graphql-base");
|
|
41
|
+
Object.defineProperty(exports, "CORE_SCALARS", { enumerable: true, get: function () { return graphql_base_1.CORE_SCALARS; } });
|
|
42
|
+
Object.defineProperty(exports, "DIRECTIVES", { enumerable: true, get: function () { return graphql_base_1.DIRECTIVES; } });
|
|
42
43
|
//# sourceMappingURL=core-exports.js.map
|
package/dist/core-exports.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core-exports.js","sourceRoot":"","sources":["../core-exports.ts"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"core-exports.js","sourceRoot":"","sources":["../core-exports.ts"],"names":[],"mappings":";;;;AAiBA,iEAIwC;AAHpC,+HAAA,6BAA6B,OAAA;AAC7B,2HAAA,yBAAyB,OAAA;AACzB,yHAAA,uBAAuB,OAAA;AAE3B,mEAAsF;AAAxD,iHAAA,cAAc,OAAA;AAC5C,uEAAqE;AAA5D,qHAAA,gBAAgB,OAAA;AACzB,qFAGiD;AAD7C,uIAAA,0BAA0B,OAAA;AAE9B,qCAQqB;AAPjB,wGAAA,eAAe,OAAA;AACf,8FAAA,KAAK,OAAA;AACL,iGAAA,QAAQ,OAAA;AACR,iGAAA,QAAQ,OAAA;AACR,uGAAA,cAAc,OAAA;AACd,0GAAA,iBAAiB,OAAA;AACjB,yGAAA,gBAAgB,OAAA;AAEpB,4EAAkG;AAAzF,kHAAA,cAAc,OAAA;AAAE,2HAAA,uBAAuB,OAAA;AAChD,gEAA8F;AAArF,uGAAA,SAAS,OAAA;AAAE,wGAAA,UAAU,OAAA;AAAE,gHAAA,kBAAkB,OAAA;AAClD,6CAA8C;AAArC,kGAAA,QAAQ,OAAA;AACjB,qEAA2C;AAC3C,6EAA0E;AAAjE,4HAAA,mBAAmB,OAAA;AAC5B,iDAA+D;AAAtD,kGAAA,OAAO,OAAA;AAChB,+CAA2F;AAAlF,uGAAA,aAAa,OAAA;AAA4B,oGAAA,UAAU,OAAA;AAC5D,0DAAqE;AAA5D,4GAAA,YAAY,OAAA;AAAE,0GAAA,UAAU,OAAA"}
|
|
@@ -3,5 +3,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CRUDDL_VERSION = void 0;
|
|
4
4
|
// do not modify - this is parsed and changed by the build script
|
|
5
5
|
// explicitly annotating with "string" so typescript won't infer a string literal type
|
|
6
|
-
exports.CRUDDL_VERSION = '4.2.
|
|
6
|
+
exports.CRUDDL_VERSION = '4.2.1';
|
|
7
7
|
//# sourceMappingURL=cruddl-version.js.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Project } from '../../project/project';
|
|
2
|
-
import { ChangeSet } from './change-set';
|
|
2
|
+
import { ChangeSet, YamlAddInMapChange } from './change-set';
|
|
3
3
|
export declare class InvalidChangeSetError extends Error {
|
|
4
4
|
constructor(message: string);
|
|
5
5
|
}
|
|
6
6
|
export declare function applyChangeSet(project: Project, changeSet: ChangeSet): Project;
|
|
7
|
+
export declare function applyYamlAddInMapChange(source: string, change: YamlAddInMapChange): string;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.InvalidChangeSetError = void 0;
|
|
4
4
|
exports.applyChangeSet = applyChangeSet;
|
|
5
|
+
exports.applyYamlAddInMapChange = applyYamlAddInMapChange;
|
|
5
6
|
const project_1 = require("../../project/project");
|
|
6
7
|
const source_1 = require("../../project/source");
|
|
7
8
|
const utils_1 = require("../compatibility-check/utils");
|
|
@@ -22,7 +23,7 @@ function applyChangeSet(project, changeSet) {
|
|
|
22
23
|
newText += (newText.length ? '\n\n' : '') + appendChange.text;
|
|
23
24
|
}
|
|
24
25
|
for (const yamlAddChange of yamlAddInMapChanges) {
|
|
25
|
-
newText =
|
|
26
|
+
newText = applyYamlAddInMapChange(newText, yamlAddChange);
|
|
26
27
|
}
|
|
27
28
|
if (newText === source.body) {
|
|
28
29
|
return source;
|
|
@@ -43,7 +44,7 @@ function applyChangeSet(project, changeSet) {
|
|
|
43
44
|
newText += (newText.length ? '\n\n' : '') + appendChange.text;
|
|
44
45
|
}
|
|
45
46
|
for (const yamlAddChange of yamlAddInMapChanges) {
|
|
46
|
-
newText =
|
|
47
|
+
newText = applyYamlAddInMapChange(newText, yamlAddChange);
|
|
47
48
|
}
|
|
48
49
|
return new source_1.ProjectSource(sourceName, newText);
|
|
49
50
|
});
|
|
@@ -83,7 +84,7 @@ function formatChangeLocation(change) {
|
|
|
83
84
|
}
|
|
84
85
|
return `${change.location.start.line}:${change.location.start.column} - ${change.location.end.line}:${change.location.end.column}`;
|
|
85
86
|
}
|
|
86
|
-
function
|
|
87
|
+
function applyYamlAddInMapChange(source, change) {
|
|
87
88
|
const doc = (0, utils_1.safeParseDocument)(source);
|
|
88
89
|
if (!doc) {
|
|
89
90
|
return source;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apply-change-set.js","sourceRoot":"","sources":["../../../../src/model/change-set/apply-change-set.ts"],"names":[],"mappings":";;;AAYA,wCA6CC;
|
|
1
|
+
{"version":3,"file":"apply-change-set.js","sourceRoot":"","sources":["../../../../src/model/change-set/apply-change-set.ts"],"names":[],"mappings":"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"}
|