@uniformdev/cli 20.49.0 → 20.49.2
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/defaultConfig.d.mts
CHANGED
package/dist/defaultConfig.mjs
CHANGED
|
@@ -4,7 +4,7 @@ type StateArgs = {
|
|
|
4
4
|
};
|
|
5
5
|
|
|
6
6
|
type SyncMode = 'mirror' | 'createOrUpdate' | 'create';
|
|
7
|
-
type EntityTypes = 'aggregate' | 'asset' | 'category' | 'workflow' | 'webhook' | 'component' | 'composition' | 'contentType' | 'dataType' | 'enrichment' | 'entry' | 'entryPattern' | 'locale' | 'componentPattern' | 'compositionPattern' | 'projectMapDefinition' | 'projectMapNode' | 'previewUrl' | 'previewViewport' | 'prompt' | 'quirk' | 'redirect' | 'signal' | 'test';
|
|
7
|
+
type EntityTypes = 'aggregate' | 'asset' | 'category' | 'workflow' | 'webhook' | 'component' | 'composition' | 'contentType' | 'dataType' | 'enrichment' | 'entry' | 'entryPattern' | 'locale' | 'componentPattern' | 'compositionPattern' | 'policyDocument' | 'projectMapDefinition' | 'projectMapNode' | 'previewUrl' | 'previewViewport' | 'prompt' | 'quirk' | 'redirect' | 'signal' | 'test';
|
|
8
8
|
type SyncFileFormat = 'yaml' | 'json';
|
|
9
9
|
type EntityConfiguration = {
|
|
10
10
|
mode?: SyncMode;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export { C as CLIConfiguration } from './index-
|
|
2
|
+
export { C as CLIConfiguration } from './index-ZI3elAaF.mjs';
|
package/dist/index.mjs
CHANGED
|
@@ -1124,7 +1124,7 @@ import { PostHog } from "posthog-node";
|
|
|
1124
1124
|
// package.json
|
|
1125
1125
|
var package_default = {
|
|
1126
1126
|
name: "@uniformdev/cli",
|
|
1127
|
-
version: "20.49.
|
|
1127
|
+
version: "20.49.2",
|
|
1128
1128
|
description: "Uniform command line interface tool",
|
|
1129
1129
|
license: "SEE LICENSE IN LICENSE.txt",
|
|
1130
1130
|
main: "./cli.js",
|
|
@@ -12637,6 +12637,7 @@ var SyncPullModule = {
|
|
|
12637
12637
|
contentType: ContentTypePullModule,
|
|
12638
12638
|
previewUrl: PreviewUrlPullModule,
|
|
12639
12639
|
previewViewport: PreviewViewportPullModule,
|
|
12640
|
+
policyDocument: PolicyDocumentsPullModule,
|
|
12640
12641
|
webhook: WebhookPullModule
|
|
12641
12642
|
}).filter(([entityType]) => {
|
|
12642
12643
|
return Boolean(config2.entitiesConfig?.[entityType]) && config2.entitiesConfig?.[entityType]?.disabled !== true && config2.entitiesConfig?.[entityType]?.pull?.disabled !== true;
|
|
@@ -12804,6 +12805,7 @@ var SyncPushModule = {
|
|
|
12804
12805
|
entryPattern: EntryPatternPushModule,
|
|
12805
12806
|
previewUrl: PreviewUrlPushModule,
|
|
12806
12807
|
previewViewport: PreviewViewportPushModule,
|
|
12808
|
+
policyDocument: PolicyDocumentsPushModule,
|
|
12807
12809
|
webhook: WebhookPushModule
|
|
12808
12810
|
}).filter(([entityType]) => {
|
|
12809
12811
|
return Boolean(config2.entitiesConfig?.[entityType]) && config2.entitiesConfig?.[entityType]?.disabled !== true && config2.entitiesConfig?.[entityType]?.push?.disabled !== true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "20.49.
|
|
3
|
+
"version": "20.49.2",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@inquirer/prompts": "^7.10.1",
|
|
30
30
|
"@thi.ng/mime": "^2.2.23",
|
|
31
|
-
"@uniformdev/assets": "20.49.
|
|
32
|
-
"@uniformdev/canvas": "20.49.
|
|
33
|
-
"@uniformdev/context": "20.49.
|
|
34
|
-
"@uniformdev/files": "20.49.
|
|
35
|
-
"@uniformdev/project-map": "20.49.
|
|
36
|
-
"@uniformdev/redirect": "20.49.
|
|
37
|
-
"@uniformdev/richtext": "20.49.
|
|
31
|
+
"@uniformdev/assets": "20.49.2",
|
|
32
|
+
"@uniformdev/canvas": "20.49.2",
|
|
33
|
+
"@uniformdev/context": "20.49.2",
|
|
34
|
+
"@uniformdev/files": "20.49.2",
|
|
35
|
+
"@uniformdev/project-map": "20.49.2",
|
|
36
|
+
"@uniformdev/redirect": "20.49.2",
|
|
37
|
+
"@uniformdev/richtext": "20.49.2",
|
|
38
38
|
"call-bind": "^1.0.2",
|
|
39
39
|
"colorette": "2.0.20",
|
|
40
40
|
"cosmiconfig": "9.0.0",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"publishConfig": {
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "6236dd13bff34cc8ec526d2e93e344428c1c9541"
|
|
85
85
|
}
|