@agent-native/core 0.80.5 → 0.80.6
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +7 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/cli/create.ts +1 -0
- package/corpus/core/src/sharing/registry.ts +17 -0
- package/corpus/core/src/templates/default/pnpm-workspace.yaml +1 -0
- package/corpus/core/src/templates/workspace-root/pnpm-workspace.yaml +1 -0
- package/corpus/templates/content/AGENTS.md +45 -44
- package/corpus/templates/content/README.md +16 -0
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +125 -0
- package/corpus/templates/content/actions/_builder-cms-source-adapter.ts +28 -6
- package/corpus/templates/content/actions/_builder-cms-write-adapter.ts +238 -69
- package/corpus/templates/content/actions/_builder-cms-write-settings.ts +125 -43
- package/corpus/templates/content/actions/_database-source-utils.ts +746 -97
- package/corpus/templates/content/actions/_database-utils.ts +17 -14
- package/corpus/templates/content/actions/_federation-join.ts +14 -2
- package/corpus/templates/content/actions/_join-suggestion.ts +89 -14
- package/corpus/templates/content/actions/_local-file-documents.ts +2 -1
- package/corpus/templates/content/actions/attach-content-database-source.ts +124 -5
- package/corpus/templates/content/actions/bind-content-database-source-field.ts +256 -0
- package/corpus/templates/content/actions/change-content-database-source-role.ts +420 -0
- package/corpus/templates/content/actions/create-document.ts +8 -0
- package/corpus/templates/content/actions/execute-builder-source-batch.ts +282 -0
- package/corpus/templates/content/actions/execute-builder-source-execution.ts +220 -8
- package/corpus/templates/content/actions/get-content-database.ts +10 -2
- package/corpus/templates/content/actions/prepare-builder-source-execution.ts +19 -2
- package/corpus/templates/content/actions/prepare-builder-source-review.ts +47 -15
- package/corpus/templates/content/actions/refresh-content-database-source.ts +11 -4
- package/corpus/templates/content/actions/review-content-database-source-change-set.ts +6 -2
- package/corpus/templates/content/actions/set-content-database-source-write-mode.ts +32 -12
- package/corpus/templates/content/actions/stage-builder-revision.ts +14 -10
- package/corpus/templates/content/actions/validate-builder-source-execution.ts +25 -3
- package/corpus/templates/content/app/components/editor/DocumentDatabase.tsx +1520 -553
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +150 -1
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +647 -66
- package/corpus/templates/content/app/components/editor/database-sources/BuilderSourceReviewDialog.tsx +543 -204
- package/corpus/templates/content/app/hooks/use-content-database.ts +62 -0
- package/corpus/templates/content/app/i18n/zh-TW.ts +64 -0
- package/corpus/templates/content/app/i18n-data.ts +784 -0
- package/corpus/templates/content/changelog/2026-06-29-builder-review-checks-now-preserve-publish-and-unpublish-cho.md +6 -0
- package/corpus/templates/content/changelog/2026-06-29-database-sources-can-now-be-added-as-more-rows-or-matched.md +6 -0
- package/corpus/templates/content/changelog/2026-06-29-fixed-loading-the-final-rows-in-larger-databases-without-bre.md +6 -0
- package/corpus/templates/content/shared/api.ts +91 -1
- package/corpus/templates/content/vite.config.ts +14 -7
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +1 -0
- package/dist/cli/create.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +2 -2
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/sharing/registry.d.ts.map +1 -1
- package/dist/sharing/registry.js +11 -0
- package/dist/sharing/registry.js.map +1 -1
- package/dist/templates/default/pnpm-workspace.yaml +1 -0
- package/dist/templates/workspace-root/pnpm-workspace.yaml +1 -0
- package/package.json +1 -1
- package/src/templates/default/pnpm-workspace.yaml +1 -0
- package/src/templates/workspace-root/pnpm-workspace.yaml +1 -0
|
@@ -351,6 +351,11 @@ export type ContentDatabaseSourcePushMode =
|
|
|
351
351
|
| "autosave"
|
|
352
352
|
| "draft"
|
|
353
353
|
| "publish";
|
|
354
|
+
export type ContentDatabaseSourceWriteMode =
|
|
355
|
+
| "read_only"
|
|
356
|
+
| "stage_only"
|
|
357
|
+
| "publish_updates";
|
|
358
|
+
export type BuilderCmsPublicationTransitionIntent = "publish" | "unpublish";
|
|
354
359
|
export const BUILDER_CMS_SAFE_WRITE_MODEL = "agent-native-blog-article-test";
|
|
355
360
|
export type ContentDatabaseSourceChangeDirection = "outbound";
|
|
356
361
|
export type ContentDatabaseSourceChangeState =
|
|
@@ -545,6 +550,8 @@ export interface ContentDatabaseSource {
|
|
|
545
550
|
pushMode?: ContentDatabaseSourcePushMode;
|
|
546
551
|
pushModeLabel?: string | null;
|
|
547
552
|
pushModeDescription?: string | null;
|
|
553
|
+
writeMode?: ContentDatabaseSourceWriteMode;
|
|
554
|
+
allowPublicationTransitions?: boolean;
|
|
548
555
|
notes?: string | null;
|
|
549
556
|
readMode?: "fixture" | "builder-api" | string | null;
|
|
550
557
|
liveReadConfigured?: boolean;
|
|
@@ -688,6 +695,21 @@ export interface AttachContentDatabaseSourceRequest {
|
|
|
688
695
|
sourceType?: ContentDatabaseSourceType;
|
|
689
696
|
sourceName?: string;
|
|
690
697
|
sourceTable?: string;
|
|
698
|
+
/** "items" adds more rows; "details" joins fields onto existing rows. */
|
|
699
|
+
relationshipMode?: "items" | "details";
|
|
700
|
+
join?: ContentDatabaseSourceJoinRequest;
|
|
701
|
+
/** "add" attaches an additional row-union source; "replace" (default) re-links the primary. */
|
|
702
|
+
mode?: "replace" | "add";
|
|
703
|
+
limit?: number;
|
|
704
|
+
offset?: number;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
export interface ChangeContentDatabaseSourceRoleRequest {
|
|
708
|
+
databaseId?: string;
|
|
709
|
+
documentId?: string;
|
|
710
|
+
sourceId: string;
|
|
711
|
+
/** "items" adds more rows; "details" joins fields onto existing rows. */
|
|
712
|
+
relationshipMode: "items" | "details";
|
|
691
713
|
join?: ContentDatabaseSourceJoinRequest;
|
|
692
714
|
limit?: number;
|
|
693
715
|
offset?: number;
|
|
@@ -748,6 +770,7 @@ export interface SuggestSourceJoinKeyResponse {
|
|
|
748
770
|
export interface RefreshContentDatabaseSourceRequest {
|
|
749
771
|
databaseId?: string;
|
|
750
772
|
documentId?: string;
|
|
773
|
+
sourceId?: string;
|
|
751
774
|
}
|
|
752
775
|
|
|
753
776
|
export interface DisconnectContentDatabaseSourceRequest {
|
|
@@ -762,14 +785,24 @@ export interface AddContentDatabaseSourceFieldPropertyRequest {
|
|
|
762
785
|
sourceFieldId: string;
|
|
763
786
|
}
|
|
764
787
|
|
|
788
|
+
export interface BindContentDatabaseSourceFieldRequest {
|
|
789
|
+
databaseId?: string;
|
|
790
|
+
documentId?: string;
|
|
791
|
+
sourceFieldId: string;
|
|
792
|
+
// Target column to bind the source field to, or null to unbind.
|
|
793
|
+
propertyId: string | null;
|
|
794
|
+
}
|
|
795
|
+
|
|
765
796
|
export interface StageBuilderRevisionRequest {
|
|
766
797
|
databaseId?: string;
|
|
767
798
|
documentId?: string;
|
|
799
|
+
sourceId?: string;
|
|
768
800
|
}
|
|
769
801
|
|
|
770
802
|
export interface ReviewContentDatabaseSourceChangeSetRequest {
|
|
771
803
|
databaseId?: string;
|
|
772
804
|
documentId?: string;
|
|
805
|
+
sourceId?: string;
|
|
773
806
|
changeSetId: string;
|
|
774
807
|
decision: "approve" | "reject";
|
|
775
808
|
note?: string;
|
|
@@ -778,29 +811,74 @@ export interface ReviewContentDatabaseSourceChangeSetRequest {
|
|
|
778
811
|
export interface PrepareBuilderSourceExecutionRequest {
|
|
779
812
|
databaseId?: string;
|
|
780
813
|
documentId?: string;
|
|
814
|
+
sourceId?: string;
|
|
781
815
|
changeSetId: string;
|
|
782
816
|
pushModeConfirmation?: ContentDatabaseSourcePushMode;
|
|
817
|
+
publicationTransition?: BuilderCmsPublicationTransitionIntent;
|
|
818
|
+
confirmUnpublish?: boolean;
|
|
783
819
|
}
|
|
784
820
|
|
|
785
821
|
export interface ValidateBuilderSourceExecutionRequest {
|
|
786
822
|
databaseId?: string;
|
|
787
823
|
documentId?: string;
|
|
824
|
+
sourceId?: string;
|
|
788
825
|
changeSetId: string;
|
|
789
826
|
idempotencyKey?: string;
|
|
827
|
+
pushModeConfirmation?: ContentDatabaseSourcePushMode;
|
|
828
|
+
publicationTransition?: BuilderCmsPublicationTransitionIntent;
|
|
829
|
+
confirmUnpublish?: boolean;
|
|
790
830
|
}
|
|
791
831
|
|
|
792
832
|
export interface ExecuteBuilderSourceExecutionRequest {
|
|
793
833
|
databaseId?: string;
|
|
794
834
|
documentId?: string;
|
|
835
|
+
sourceId?: string;
|
|
795
836
|
changeSetId: string;
|
|
796
837
|
idempotencyKey?: string;
|
|
797
838
|
pushModeConfirmation?: ContentDatabaseSourcePushMode;
|
|
839
|
+
publicationTransition?: BuilderCmsPublicationTransitionIntent;
|
|
840
|
+
confirmUnpublish?: boolean;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
export interface ExecuteBuilderSourceBatchTransition {
|
|
844
|
+
publicationTransition?: BuilderCmsPublicationTransitionIntent;
|
|
845
|
+
confirmUnpublish?: boolean;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
export interface ExecuteBuilderSourceBatchRequest {
|
|
849
|
+
databaseId?: string;
|
|
850
|
+
documentId?: string;
|
|
851
|
+
sourceId?: string;
|
|
852
|
+
changeSetIds?: string[];
|
|
853
|
+
maxConcurrency?: number;
|
|
854
|
+
transitions?: Record<string, ExecuteBuilderSourceBatchTransition>;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
export type BuilderSourceBatchItemStatus = "succeeded" | "blocked" | "failed";
|
|
858
|
+
|
|
859
|
+
export interface BuilderSourceBatchItemResult {
|
|
860
|
+
changeSetId: string;
|
|
861
|
+
status: BuilderSourceBatchItemStatus;
|
|
862
|
+
message?: string;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
export interface ExecuteBuilderSourceBatchResponse {
|
|
866
|
+
summary: {
|
|
867
|
+
total: number;
|
|
868
|
+
succeeded: number;
|
|
869
|
+
blocked: number;
|
|
870
|
+
failed: number;
|
|
871
|
+
};
|
|
872
|
+
results: BuilderSourceBatchItemResult[];
|
|
798
873
|
}
|
|
799
874
|
|
|
800
875
|
export interface SetContentDatabaseSourceWriteModeRequest {
|
|
801
876
|
databaseId?: string;
|
|
802
877
|
documentId?: string;
|
|
803
|
-
|
|
878
|
+
sourceId?: string;
|
|
879
|
+
liveWritesEnabled?: boolean;
|
|
880
|
+
writeMode?: ContentDatabaseSourceWriteMode;
|
|
881
|
+
allowPublicationTransitions?: boolean;
|
|
804
882
|
allowedWriteModes?: Exclude<ContentDatabaseSourcePushMode, "none">[];
|
|
805
883
|
allowDraftWrites?: boolean;
|
|
806
884
|
allowPublishWrites?: boolean;
|
|
@@ -809,9 +887,19 @@ export interface SetContentDatabaseSourceWriteModeRequest {
|
|
|
809
887
|
export interface PrepareBuilderSourceReviewRequest {
|
|
810
888
|
databaseId?: string;
|
|
811
889
|
documentId?: string;
|
|
890
|
+
sourceId?: string;
|
|
812
891
|
pushModeConfirmation?: ContentDatabaseSourcePushMode;
|
|
892
|
+
publicationTransition?: BuilderCmsPublicationTransitionIntent;
|
|
893
|
+
confirmUnpublish?: boolean;
|
|
813
894
|
}
|
|
814
895
|
|
|
896
|
+
export type BuilderCmsWriteEffect =
|
|
897
|
+
| "autosave"
|
|
898
|
+
| "update_in_place"
|
|
899
|
+
| "create_draft"
|
|
900
|
+
| "publish"
|
|
901
|
+
| "unpublish";
|
|
902
|
+
|
|
815
903
|
export interface ContentDatabaseSourceReviewRowSummary {
|
|
816
904
|
changeSetId: string;
|
|
817
905
|
databaseItemId: string | null;
|
|
@@ -822,6 +910,8 @@ export interface ContentDatabaseSourceReviewRowSummary {
|
|
|
822
910
|
riskLevel: ContentDatabaseSourceRiskLevel;
|
|
823
911
|
riskReasons: string[];
|
|
824
912
|
conflictState: ContentDatabaseSourceConflictState;
|
|
913
|
+
/** Resolved write effect for this row — drives plain-language UI labels. */
|
|
914
|
+
effect: BuilderCmsWriteEffect;
|
|
825
915
|
execution: ContentDatabaseSourceExecution | null;
|
|
826
916
|
}
|
|
827
917
|
|
|
@@ -31,6 +31,15 @@ const LOCAL_COMPONENTS_STUB_IMPORTS = new Set([
|
|
|
31
31
|
"./local-components.generated.ts",
|
|
32
32
|
]);
|
|
33
33
|
const COMPONENT_EXTENSIONS = new Set([".tsx", ".jsx", ".ts", ".js"]);
|
|
34
|
+
const LOCAL_COMPONENT_SKIP_DIRS = new Set([
|
|
35
|
+
"__tests__",
|
|
36
|
+
"build",
|
|
37
|
+
"coverage",
|
|
38
|
+
"dist",
|
|
39
|
+
"node_modules",
|
|
40
|
+
]);
|
|
41
|
+
const LOCAL_COMPONENT_SKIP_FILE_RE =
|
|
42
|
+
/(?:^|[.-])(?:test|spec|stories|story)\.[cm]?[jt]sx?$/;
|
|
34
43
|
const ALLOW_PRODUCTION_LOCAL_FILES_ENV =
|
|
35
44
|
"AGENT_NATIVE_ALLOW_LOCAL_FILES_IN_PRODUCTION";
|
|
36
45
|
const CONTENT_LOCAL_DEFAULTS: LocalArtifactOptions["defaults"] = {
|
|
@@ -145,18 +154,16 @@ async function walkComponentFiles(directory: string): Promise<string[]> {
|
|
|
145
154
|
if (entry.isSymbolicLink()) continue;
|
|
146
155
|
const absolutePath = path.join(directory, entry.name);
|
|
147
156
|
if (entry.isDirectory()) {
|
|
148
|
-
if (
|
|
149
|
-
entry.name === "node_modules" ||
|
|
150
|
-
entry.name === "dist" ||
|
|
151
|
-
entry.name === "build"
|
|
152
|
-
) {
|
|
153
|
-
continue;
|
|
154
|
-
}
|
|
157
|
+
if (LOCAL_COMPONENT_SKIP_DIRS.has(entry.name)) continue;
|
|
155
158
|
files.push(...(await walkComponentFiles(absolutePath)));
|
|
156
159
|
continue;
|
|
157
160
|
}
|
|
158
161
|
if (
|
|
159
162
|
!entry.isFile() ||
|
|
163
|
+
entry.name.endsWith(".generated.ts") ||
|
|
164
|
+
entry.name.endsWith(".generated.tsx") ||
|
|
165
|
+
entry.name.endsWith(".d.ts") ||
|
|
166
|
+
LOCAL_COMPONENT_SKIP_FILE_RE.test(entry.name) ||
|
|
160
167
|
!COMPONENT_EXTENSIONS.has(path.extname(entry.name).toLowerCase())
|
|
161
168
|
) {
|
|
162
169
|
continue;
|
package/dist/cli/create.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../src/cli/create.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAkB,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAmBvE;;;;;GAKG;AACH,qBAAa,eAAgB,SAAQ,KAAK;IACxC,YAAY,OAAO,EAAE,MAAM,EAG1B;CACF;AA6BD,MAAM,WAAW,gBAAgB;IAC/B,iFAAiF;IACjF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iFAAiF;IACjF,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,0DAA0D;IAC1D,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;;;;;;;GAQG;AACH,wBAAsB,SAAS,CAC7B,IAAI,CAAC,EAAE,MAAM,EACb,IAAI,CAAC,EAAE,gBAAgB,GACtB,OAAO,CAAC,IAAI,CAAC,CAwEf;AA0OD,iBAAS,oCAAoC,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAa1E;AAiBD,iBAAe,qBAAqB,CAClC,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,IAAI,CAAC,CA0Cf;AAiDD;;;;;;;GAOG;AACH,wBAAsB,iBAAiB,CACrC,IAAI,CAAC,EAAE,MAAM,EACb,IAAI,CAAC,EAAE,gBAAgB,GACtB,OAAO,CAAC,IAAI,CAAC,CA4Cf;AAmLD;;;;;GAKG;AACH,iBAAe,mBAAmB,CAChC,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,IAAI,CAAC,CA4Cf;AAoDD;;;;GAIG;AACH,iBAAe,wBAAwB,CACrC,aAAa,EAAE,MAAM,EAAE,EACvB,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,IAAI,CAAC,CA2Ef;AAED;;;GAGG;AACH,iBAAS,qBAAqB,CAC5B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,YAAY,CAAC,EAAE,MAAM,GACpB,IAAI,
|
|
1
|
+
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../src/cli/create.ts"],"names":[],"mappings":"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"}
|
package/dist/cli/create.js
CHANGED
|
@@ -865,6 +865,7 @@ function postProcessStandalone(name, targetDir, templateName) {
|
|
|
865
865
|
sections.overrides = {
|
|
866
866
|
'"@assistant-ui/store"': '">=0.2.9 <0.2.14"',
|
|
867
867
|
'"@assistant-ui/tap"': '"^0.5.14"',
|
|
868
|
+
nf3: '"0.3.17"',
|
|
868
869
|
};
|
|
869
870
|
}
|
|
870
871
|
let updated = mergeWorkspaceYamlSections(existing, sections);
|