@powerhousedao/shared 6.2.3-dev.1 → 6.2.3-dev.10
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/clis/args/common-CcYbXrBx.mjs.map +1 -1
- package/dist/clis/build-config.d.mts.map +1 -1
- package/dist/clis/build-config.mjs +6 -1
- package/dist/clis/build-config.mjs.map +1 -1
- package/dist/clis/constants.d.mts +13 -0
- package/dist/clis/constants.d.mts.map +1 -1
- package/dist/clis/constants.mjs +8 -0
- package/dist/clis/constants.mjs.map +1 -1
- package/dist/clis/index.d.mts +21 -8
- package/dist/clis/index.d.mts.map +1 -1
- package/dist/clis/index.mjs +8 -0
- package/dist/clis/index.mjs.map +1 -1
- package/dist/connect/config-loader.d.ts +1 -1
- package/dist/connect/index.d.ts +1 -1
- package/dist/document-drive/index.d.ts +43 -3
- package/dist/document-drive/index.d.ts.map +1 -1
- package/dist/document-drive/index.js +94 -34
- package/dist/document-drive/index.js.map +1 -1
- package/dist/document-model/index.d.ts +2 -2
- package/dist/document-model/index.js +1 -0
- package/dist/document-model/index.js.map +1 -1
- package/dist/{index-DyYIJtVy.d.ts → index-DP3QgHTq.d.ts} +2 -2
- package/dist/{index-DyYIJtVy.d.ts.map → index-DP3QgHTq.d.ts.map} +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/processors/index.d.ts +1 -1
- package/dist/registry/index.d.ts +2 -2
- package/dist/registry/index.js.map +1 -1
- package/dist/registry/manifest-slim.d.ts +1 -1
- package/dist/registry/manifest-slim.d.ts.map +1 -1
- package/dist/registry/manifest-slim.js +2 -1
- package/dist/registry/manifest-slim.js.map +1 -1
- package/dist/{types-CpnWmiFY.d.ts → types-BIoOWpOT.d.ts} +6 -1
- package/dist/types-BIoOWpOT.d.ts.map +1 -0
- package/dist/{types-YqLqb0Zb.d.ts → types-DDpRvBK_.d.ts} +2 -2
- package/dist/{types-YqLqb0Zb.d.ts.map → types-DDpRvBK_.d.ts.map} +1 -1
- package/package.json +1 -1
- package/dist/types-CpnWmiFY.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["createState"],"sources":["../../document-drive/constants.ts","../../document-drive/gen/schema/zod.ts","../../document-drive/gen/node/creators.ts","../../document-drive/gen/drive/creators.ts","../../document-drive/gen/creators.ts","../../document-drive/gen/document-model.ts","../../document-drive/gen/document-type.ts","../../document-drive/gen/document-schema.ts","../../document-drive/gen/ph-factories.ts","../../document-drive/src/reducers/drive.ts","../../document-drive/src/utils.ts","../../document-drive/src/reducers/node.ts","../../document-drive/gen/reducer.ts","../../document-drive/gen/utils.ts","../../document-drive/module.ts"],"sourcesContent":["export const driveDocumentFileExtension = \"phdd\";\n","import type {\n AddFileInput,\n AddFolderInput,\n AddListenerInput,\n AddTriggerInput,\n CopyNodeInput,\n DeleteNodeInput,\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n FileNode,\n FolderNode,\n Listener,\n ListenerCallInfo,\n ListenerCallInfoInput,\n ListenerFilter,\n ListenerFilterInput,\n ListenerInput,\n MoveNodeInput,\n PullResponderTriggerData,\n PullResponderTriggerDataInput,\n RemoveListenerInput,\n RemoveTriggerInput,\n SetAvailableOfflineInput,\n SetDriveIconInput,\n SetDriveNameInput,\n SetSharingTypeInput,\n Trigger,\n TriggerInput,\n UpdateFileInput,\n UpdateNodeInput,\n} from \"./types.js\";\nimport { z } from \"zod\";\n\ntype Properties<T> = Required<{\n [K in keyof T]: z.ZodType<T[K], T[K]>;\n}>;\n\ntype definedNonNullAny = {};\n\nexport const isDefinedNonNullAny = (v: any): v is definedNonNullAny =>\n v !== undefined && v !== null;\n\nexport const definedNonNullAnySchema = z\n .any()\n .refine((v) => isDefinedNonNullAny(v));\n\nexport const TransmitterTypeSchema = z.enum([\n \"Internal\",\n \"MatrixConnect\",\n \"PullResponder\",\n \"RESTWebhook\",\n \"SecureConnect\",\n \"SwitchboardPush\",\n]);\n\nexport const TriggerTypeSchema = z.enum([\"PullResponder\"]);\n\nexport function AddFileInputSchema(): z.ZodObject<Properties<AddFileInput>> {\n return z.object({\n documentType: z.string(),\n id: z.string(),\n name: z.string(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function AddFolderInputSchema(): z.ZodObject<\n Properties<AddFolderInput>\n> {\n return z.object({\n id: z.string(),\n name: z.string(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function AddListenerInputSchema(): z.ZodObject<\n Properties<AddListenerInput>\n> {\n return z.object({\n listener: ListenerInputSchema(),\n });\n}\n\nexport function AddTriggerInputSchema(): z.ZodObject<\n Properties<AddTriggerInput>\n> {\n return z.object({\n trigger: TriggerInputSchema(),\n });\n}\n\nexport function CopyNodeInputSchema(): z.ZodObject<Properties<CopyNodeInput>> {\n return z.object({\n srcId: z.string(),\n targetId: z.string(),\n targetName: z.string().nullish(),\n targetParentFolder: z.string().nullish(),\n });\n}\n\nexport function DeleteNodeInputSchema(): z.ZodObject<\n Properties<DeleteNodeInput>\n> {\n return z.object({\n id: z.string(),\n });\n}\n\nexport function DocumentDriveLocalStateSchema(): z.ZodObject<\n Properties<DocumentDriveLocalState>\n> {\n return z.object({\n __typename: z.literal(\"DocumentDriveLocalState\").optional(),\n availableOffline: z.boolean(),\n listeners: z.array(ListenerSchema()),\n sharingType: z.string().nullable(),\n triggers: z.array(TriggerSchema()),\n });\n}\n\nexport function DocumentDriveStateSchema(): z.ZodObject<\n Properties<DocumentDriveGlobalState>\n> {\n return z.object({\n __typename: z.literal(\"DocumentDriveState\").optional(),\n icon: z.string().nullable(),\n name: z.string(),\n nodes: z.array(NodeSchema()),\n });\n}\n\nexport function FileNodeSchema(): z.ZodObject<Properties<FileNode>> {\n return z.object({\n __typename: z.literal(\"FileNode\").optional(),\n documentType: z.string(),\n id: z.string(),\n kind: z.string(),\n name: z.string(),\n parentFolder: z.string().nullable(),\n });\n}\n\nexport function FolderNodeSchema(): z.ZodObject<Properties<FolderNode>> {\n return z.object({\n __typename: z.literal(\"FolderNode\").optional(),\n id: z.string(),\n kind: z.string(),\n name: z.string(),\n parentFolder: z.string().nullable(),\n });\n}\n\nexport function ListenerSchema(): z.ZodObject<Properties<Listener>> {\n return z.object({\n __typename: z.literal(\"Listener\").optional(),\n block: z.boolean(),\n callInfo: ListenerCallInfoSchema().nullable(),\n filter: ListenerFilterSchema(),\n label: z.string().nullable(),\n listenerId: z.string(),\n system: z.boolean(),\n });\n}\n\nexport function ListenerInputSchema(): z.ZodObject<Properties<ListenerInput>> {\n return z.object({\n block: z.boolean(),\n callInfo: ListenerCallInfoInputSchema().nullish(),\n filter: ListenerFilterInputSchema(),\n label: z.string().nullish(),\n listenerId: z.string(),\n system: z.boolean(),\n });\n}\n\nexport function ListenerCallInfoSchema(): z.ZodObject<\n Properties<ListenerCallInfo>\n> {\n return z.object({\n __typename: z.literal(\"ListenerCallInfo\").optional(),\n data: z.string().nullable(),\n name: z.string().nullable(),\n transmitterType: TransmitterTypeSchema.nullable(),\n });\n}\n\nexport function ListenerCallInfoInputSchema(): z.ZodObject<\n Properties<ListenerCallInfoInput>\n> {\n return z.object({\n data: z.string().nullish(),\n name: z.string().nullish(),\n transmitterType: TransmitterTypeSchema.nullish(),\n });\n}\n\nexport function ListenerFilterSchema(): z.ZodObject<\n Properties<ListenerFilter>\n> {\n return z.object({\n __typename: z.literal(\"ListenerFilter\").optional(),\n branch: z.array(z.string()).nullable(),\n documentId: z.array(z.string()).nullable(),\n documentType: z.array(z.string()),\n scope: z.array(z.string()).nullable(),\n });\n}\n\nexport function ListenerFilterInputSchema(): z.ZodObject<\n Properties<ListenerFilterInput>\n> {\n return z.object({\n branch: z.array(z.string()).nullish(),\n documentId: z.array(z.string()).nullish(),\n documentType: z.array(z.string()).nullish(),\n scope: z.array(z.string()).nullish(),\n });\n}\n\nexport function MoveNodeInputSchema(): z.ZodObject<Properties<MoveNodeInput>> {\n return z.object({\n srcFolder: z.string(),\n targetParentFolder: z.string().nullish(),\n });\n}\n\nexport function NodeSchema() {\n return z.union([FileNodeSchema(), FolderNodeSchema()]);\n}\n\nexport function PullResponderTriggerDataSchema(): z.ZodObject<\n Properties<PullResponderTriggerData>\n> {\n return z.object({\n __typename: z.literal(\"PullResponderTriggerData\").optional(),\n interval: z.string(),\n listenerId: z.string(),\n url: z.string(),\n });\n}\n\nexport function PullResponderTriggerDataInputSchema(): z.ZodObject<\n Properties<PullResponderTriggerDataInput>\n> {\n return z.object({\n interval: z.string(),\n listenerId: z.string(),\n url: z.string(),\n });\n}\n\nexport function RemoveListenerInputSchema(): z.ZodObject<\n Properties<RemoveListenerInput>\n> {\n return z.object({\n listenerId: z.string(),\n });\n}\n\nexport function RemoveTriggerInputSchema(): z.ZodObject<\n Properties<RemoveTriggerInput>\n> {\n return z.object({\n triggerId: z.string(),\n });\n}\n\nexport function SetAvailableOfflineInputSchema(): z.ZodObject<\n Properties<SetAvailableOfflineInput>\n> {\n return z.object({\n availableOffline: z.boolean(),\n });\n}\n\nexport function SetDriveIconInputSchema(): z.ZodObject<\n Properties<SetDriveIconInput>\n> {\n return z.object({\n icon: z.string().nullish(),\n });\n}\n\nexport function SetDriveNameInputSchema(): z.ZodObject<\n Properties<SetDriveNameInput>\n> {\n return z.object({\n name: z.string(),\n });\n}\n\nexport function SetSharingTypeInputSchema(): z.ZodObject<\n Properties<SetSharingTypeInput>\n> {\n return z.object({\n type: z.string(),\n });\n}\n\nexport function TriggerSchema(): z.ZodObject<Properties<Trigger>> {\n return z.object({\n __typename: z.literal(\"Trigger\").optional(),\n data: TriggerDataSchema().nullable(),\n id: z.string(),\n type: TriggerTypeSchema,\n });\n}\n\nexport function TriggerInputSchema(): z.ZodObject<Properties<TriggerInput>> {\n return z.object({\n data: PullResponderTriggerDataInputSchema().nullish(),\n id: z.string(),\n type: TriggerTypeSchema,\n });\n}\n\nexport function TriggerDataSchema() {\n return PullResponderTriggerDataSchema();\n}\n\nexport function UpdateFileInputSchema(): z.ZodObject<\n Properties<UpdateFileInput>\n> {\n return z.object({\n documentType: z.string().nullish(),\n id: z.string(),\n name: z.string().nullish(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function UpdateNodeInputSchema(): z.ZodObject<\n Properties<UpdateNodeInput>\n> {\n return z.object({\n id: z.string(),\n name: z.string().nullish(),\n parentFolder: z.string().nullish(),\n });\n}\n","import type {\n AddFileInput,\n AddFolderInput,\n CopyNodeInput,\n DeleteNodeInput,\n MoveNodeInput,\n UpdateFileInput,\n UpdateNodeInput,\n} from \"../schema/types.js\";\nimport type { LegacyAddFileAction, LegacyAddFileInput } from \"../types.js\";\nimport type {\n AddFileAction,\n AddFolderAction,\n CopyNodeAction,\n DeleteNodeAction,\n MoveNodeAction,\n UpdateFileAction,\n UpdateNodeAction,\n} from \"./actions.js\";\nimport { createAction } from \"document-model\";\nimport {\n AddFileInputSchema,\n AddFolderInputSchema,\n CopyNodeInputSchema,\n DeleteNodeInputSchema,\n MoveNodeInputSchema,\n UpdateFileInputSchema,\n UpdateNodeInputSchema,\n} from \"../schema/zod.js\";\n\n/**\n * @deprecated Use addFile with {@link AddFileInput} instead. This overload will be removed in the future.\n */\nexport function addFile(input: LegacyAddFileInput): LegacyAddFileAction;\nexport function addFile(input: AddFileInput): AddFileAction;\nexport function addFile(\n input: LegacyAddFileInput | AddFileInput,\n): typeof input extends LegacyAddFileInput\n ? LegacyAddFileAction\n : AddFileAction {\n if (input && typeof input === \"object\" && \"synchronizationUnits\" in input) {\n // Legacy overload\n return createAction<AddFileAction>(\n \"ADD_FILE\",\n { ...input },\n undefined,\n undefined,\n \"global\",\n );\n }\n // Standard overload\n return createAction<AddFileAction>(\n \"ADD_FILE\",\n { ...input },\n undefined,\n AddFileInputSchema,\n \"global\",\n );\n}\n\nexport const addFolder = (input: AddFolderInput) =>\n createAction<AddFolderAction>(\n \"ADD_FOLDER\",\n { ...input },\n undefined,\n AddFolderInputSchema,\n \"global\",\n );\n\nexport const deleteNode = (input: DeleteNodeInput) =>\n createAction<DeleteNodeAction>(\n \"DELETE_NODE\",\n { ...input },\n undefined,\n DeleteNodeInputSchema,\n \"global\",\n );\n\nexport const updateFile = (input: UpdateFileInput) =>\n createAction<UpdateFileAction>(\n \"UPDATE_FILE\",\n { ...input },\n undefined,\n UpdateFileInputSchema,\n \"global\",\n );\n\nexport const updateNode = (input: UpdateNodeInput) =>\n createAction<UpdateNodeAction>(\n \"UPDATE_NODE\",\n { ...input },\n undefined,\n UpdateNodeInputSchema,\n \"global\",\n );\n\nexport const copyNode = (input: CopyNodeInput) =>\n createAction<CopyNodeAction>(\n \"COPY_NODE\",\n { ...input },\n undefined,\n CopyNodeInputSchema,\n \"global\",\n );\n\nexport const moveNode = (input: MoveNodeInput) =>\n createAction<MoveNodeAction>(\n \"MOVE_NODE\",\n { ...input },\n undefined,\n MoveNodeInputSchema,\n \"global\",\n );\n","import type {\n AddListenerInput,\n AddTriggerInput,\n RemoveListenerInput,\n RemoveTriggerInput,\n SetAvailableOfflineInput,\n SetDriveIconInput,\n SetDriveNameInput,\n SetSharingTypeInput,\n} from \"../schema/types.js\";\nimport type {\n AddListenerAction,\n AddTriggerAction,\n RemoveListenerAction,\n RemoveTriggerAction,\n SetAvailableOfflineAction,\n SetDriveIconAction,\n SetDriveNameAction,\n SetSharingTypeAction,\n} from \"./actions.js\";\nimport { createAction } from \"document-model\";\nimport {\n AddListenerInputSchema,\n AddTriggerInputSchema,\n RemoveListenerInputSchema,\n RemoveTriggerInputSchema,\n SetAvailableOfflineInputSchema,\n SetDriveIconInputSchema,\n SetDriveNameInputSchema,\n SetSharingTypeInputSchema,\n} from \"../schema/zod.js\";\n\nexport const setDriveName = (input: SetDriveNameInput) =>\n createAction<SetDriveNameAction>(\n \"SET_DRIVE_NAME\",\n { ...input },\n undefined,\n SetDriveNameInputSchema,\n \"global\",\n );\n\nexport const setDriveIcon = (input: SetDriveIconInput) =>\n createAction<SetDriveIconAction>(\n \"SET_DRIVE_ICON\",\n { ...input },\n undefined,\n SetDriveIconInputSchema,\n \"global\",\n );\n\nexport const setSharingType = (input: SetSharingTypeInput) =>\n createAction<SetSharingTypeAction>(\n \"SET_SHARING_TYPE\",\n { ...input },\n undefined,\n SetSharingTypeInputSchema,\n \"local\",\n );\n\nexport const setAvailableOffline = (input: SetAvailableOfflineInput) =>\n createAction<SetAvailableOfflineAction>(\n \"SET_AVAILABLE_OFFLINE\",\n { ...input },\n undefined,\n SetAvailableOfflineInputSchema,\n \"local\",\n );\n\nexport const addListener = (input: AddListenerInput) =>\n createAction<AddListenerAction>(\n \"ADD_LISTENER\",\n { ...input },\n undefined,\n AddListenerInputSchema,\n \"local\",\n );\n\nexport const removeListener = (input: RemoveListenerInput) =>\n createAction<RemoveListenerAction>(\n \"REMOVE_LISTENER\",\n { ...input },\n undefined,\n RemoveListenerInputSchema,\n \"local\",\n );\n\nexport const addTrigger = (input: AddTriggerInput) =>\n createAction<AddTriggerAction>(\n \"ADD_TRIGGER\",\n { ...input },\n undefined,\n AddTriggerInputSchema,\n \"local\",\n );\n\nexport const removeTrigger = (input: RemoveTriggerInput) =>\n createAction<RemoveTriggerAction>(\n \"REMOVE_TRIGGER\",\n { ...input },\n undefined,\n RemoveTriggerInputSchema,\n \"local\",\n );\n","export * from \"./node/creators.js\";\nexport * from \"./drive/creators.js\";\n","import type { DocumentModelGlobalState } from \"../../document-model/types.js\";\n\nexport const driveDocumentModel: DocumentModelGlobalState = {\n id: \"powerhouse/document-drive\",\n name: \"DocumentDrive\",\n extension: \"phdd\",\n description: \"\",\n author: {\n name: \"Powerhouse Inc\",\n website: \"https://www.powerhouse.inc/\",\n },\n specifications: [\n {\n version: 1,\n changeLog: [],\n state: {\n global: {\n schema:\n \"type FolderNode {\\n id: String!\\n name: String!\\n kind: String!\\n parentFolder: String\\n}\\n\\ntype FileNode {\\n id: String!\\n name: String!\\n kind: String!\\n documentType: String!\\n parentFolder: String\\n}\\n\\nunion Node = FolderNode | FileNode\\n\\ntype DocumentDriveState {\\n name: String!\\n nodes: [Node!]!\\n icon: String\\n}\",\n initialValue: '\"{\\\\\"name\\\\\":\\\\\"\\\\\",\\\\\"nodes\\\\\":[],\\\\\"icon\\\\\":null}\"',\n examples: [],\n },\n local: {\n schema:\n \"type ListenerFilter {\\n documentType: [String!]!\\n documentId: [ID!]\\n scope: [String!]\\n branch: [String!]\\n}\\n\\nenum TransmitterType {\\n Internal,\\n SwitchboardPush,\\n PullResponder,\\n SecureConnect, \\n MatrixConnect,\\n RESTWebhook\\n}\\n\\ntype ListenerCallInfo {\\n transmitterType: TransmitterType\\n name: String\\n data: String\\n}\\n\\ntype Listener {\\n listenerId: ID!\\n label: String\\n block: Boolean!\\n system: Boolean!\\n filter: ListenerFilter!\\n callInfo: ListenerCallInfo\\n}\\n\\nenum TriggerType {\\n PullResponder\\n}\\n\\ntype PullResponderTriggerData {\\n listenerId: ID!\\n url: String!\\n interval: String!\\n}\\n\\nunion TriggerData = PullResponderTriggerData\\n\\ntype Trigger {\\n id: ID!\\n type: TriggerType!\\n data: TriggerData\\n}\\n\\ntype DocumentDriveLocalState{\\n sharingType: String\\n listeners: [Listener!]!\\n triggers: [Trigger!]!\\n availableOffline: Boolean!\\n}\",\n initialValue:\n '\"{ \\\\\"listeners\\\\\": [], \\\\\"triggers\\\\\": [], \\\\\"sharingType\\\\\": \\\\\"private\\\\\", \\\\\"availableOffline\\\\\": false}\"',\n examples: [],\n },\n },\n modules: [\n {\n id: \"GRzuvv78tBvmB6ciitokLfonNHA=\",\n name: \"Node\",\n description: \"\",\n operations: [\n {\n id: \"7xiTdxonc9yEASR8sfV/KnbSV10=\",\n name: \"ADD_FILE\",\n description: \"\",\n schema:\n \"input AddFileInput {\\n id: ID!\\n name: String!\\n documentType: String!\\n parentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"4lzNMMKKdIAtEU6i12xLgi9hp+U=\",\n name: \"ADD_FOLDER\",\n description: \"\",\n schema:\n \"input AddFolderInput {\\n id: ID!\\n name: String!\\n parentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"53jH2/3TWTTcgCJiv2C+BmuC6i0=\",\n name: \"DELETE_NODE\",\n description: \"\",\n schema: \"input DeleteNodeInput {\\n id: ID!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"pNn+Y1/HVq/GNMk7t0u3g3gtMLE=\",\n name: \"UPDATE_FILE\",\n description: \"\",\n schema:\n \"input UpdateFileInput {\\n id: ID!\\n parentFolder: ID\\n name: String\\n documentType: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"P0x1M8Mnt+Q/+9nggkwgVbfybsc=\",\n name: \"UPDATE_NODE\",\n description: \"\",\n schema:\n \"input UpdateNodeInput {\\n id: ID!\\n parentFolder: ID\\n name: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"vnQ7OB5b3wGLgjhbgJqAIpA+JLE=\",\n name: \"COPY_NODE\",\n description: \"\",\n schema:\n \"input CopyNodeInput {\\n srcId: ID!\\n targetId: ID!\\n targetName: String\\n targetParentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"VNyiD/sNGzk6k9A1Qe7s8dmrJxA=\",\n name: \"MOVE_NODE\",\n description: \"\",\n schema:\n \"input MoveNodeInput {\\n srcFolder: ID!\\n targetParentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n ],\n },\n {\n id: \"0dHwHlxOM9x0vMZ+gLnKxf2qTEo=\",\n name: \"Drive\",\n description: \"\",\n operations: [\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z1dsU=\",\n name: \"SET_DRIVE_NAME\",\n description: \"\",\n schema: \"input SetDriveNameInput {\\n name: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z30dsU=\",\n name: \"SET_DRIVE_ICON\",\n description: \"\",\n schema: \"input SetDriveIconInput {\\n icon: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z2dsU=\",\n name: \"SET_SHARING_TYPE\",\n description: \"\",\n schema: \"input SetSharingTypeInput {\\n type: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z3dsU=\",\n name: \"SET_AVAILABLE_OFFLINE\",\n description: \"\",\n schema:\n \"input SetAvailableOfflineInput {\\n availableOffline: Boolean!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z9dsU=\",\n name: \"ADD_LISTENER\",\n description: \"\",\n schema:\n \"input ListenerFilterInput {\\n documentType: [String!]\\n documentId: [ID!]\\n scope: [String!]\\n branch: [String!]\\n}\\n\\ninput ListenerCallInfoInput {\\n transmitterType: TransmitterType\\n name: String\\n data: String\\n}\\n\\ninput ListenerInput {\\n listenerId: ID!\\n label: String\\n block: Boolean!\\n system: Boolean!\\n filter: ListenerFilterInput!\\n callInfo: ListenerCallInfoInput\\n}\\n\\ninput AddListenerInput {\\n listener: ListenerInput!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z10dsU=\",\n name: \"REMOVE_LISTENER\",\n description: \"\",\n schema: \"input RemoveListenerInput {\\n listenerId: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z20dsU=\",\n name: \"ADD_TRIGGER\",\n description: \"\",\n schema:\n \"input PullResponderTriggerDataInput {\\n listenerId: ID!\\n url: String!\\n interval: String!\\n}\\n\\ninput TriggerInput {\\n id: ID!\\n type: TriggerType!\\n data: PullResponderTriggerDataInput\\n}\\n\\ninput AddTriggerInput {\\n trigger: TriggerInput!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z30dsU=\",\n name: \"REMOVE_TRIGGER\",\n description: \"\",\n schema: \"input RemoveTriggerInput {\\n triggerId: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n ],\n },\n ],\n },\n ],\n};\n","export const driveDocumentType = \"powerhouse/document-drive\";\n","import { z } from \"zod\";\nimport {\n BaseDocumentHeaderSchema,\n BaseDocumentStateSchema,\n} from \"../../document-model/document-schema.js\";\nimport { driveDocumentType } from \"./document-type.js\";\nimport {\n DocumentDriveLocalStateSchema,\n DocumentDriveStateSchema,\n} from \"./schema/zod.js\";\nimport type { DocumentDriveDocument, DocumentDrivePHState } from \"./types.js\";\n\n/** Schema for validating the header object of a Drive document */\nexport const DriveDocumentHeaderSchema = BaseDocumentHeaderSchema.extend({\n documentType: z.literal(driveDocumentType),\n});\n\n/** Schema for validating the state object of a Drive document */\nexport const DrivePHStateSchema = BaseDocumentStateSchema.extend({\n global: DocumentDriveStateSchema(),\n local: DocumentDriveLocalStateSchema(),\n});\n\nexport const DriveDocumentSchema = z.object({\n header: DriveDocumentHeaderSchema,\n state: DrivePHStateSchema,\n initialState: DrivePHStateSchema,\n});\n\n/** Simple helper function to check if a state object is a Drive document state object */\nexport function isDriveState(state: unknown): state is DocumentDrivePHState {\n return DrivePHStateSchema.safeParse(state).success;\n}\n\n/** Simple helper function to assert that a document state object is a Drive document state object */\nexport function assertIsDriveState(\n state: unknown,\n): asserts state is DocumentDrivePHState {\n DrivePHStateSchema.parse(state);\n}\n\n/** Simple helper function to check if a document is a Drive document */\nexport function isDriveDocument(\n document: unknown,\n): document is DocumentDriveDocument {\n return DriveDocumentSchema.safeParse(document).success;\n}\n\n/** Simple helper function to assert that a document is a Drive document */\nexport function assertIsDriveDocument(\n document: unknown,\n): asserts document is DocumentDriveDocument {\n DriveDocumentSchema.parse(document);\n}\n","/**\n * Factory methods for creating DocumentDriveDocument instances\n */\n\nimport {\n createBaseState,\n defaultBaseState,\n type PHBaseState,\n} from \"../../document-model/state.js\";\nimport type {\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n DocumentDrivePHState,\n} from \"./types.js\";\n\nexport function defaultGlobalState(): DocumentDriveGlobalState {\n return {\n icon: null,\n name: \"\",\n nodes: [],\n };\n}\n\nexport function defaultLocalState(): DocumentDriveLocalState {\n return {\n availableOffline: false,\n listeners: [],\n sharingType: null,\n triggers: [],\n };\n}\n\nexport function defaultPHState(): DocumentDrivePHState {\n return {\n ...defaultBaseState(),\n global: defaultGlobalState(),\n local: defaultLocalState(),\n };\n}\n\nexport function createGlobalState(\n state?: Partial<DocumentDriveGlobalState>,\n): DocumentDriveGlobalState {\n return {\n ...defaultGlobalState(),\n ...(state || {}),\n } as DocumentDriveGlobalState;\n}\n\nexport function createLocalState(\n state?: Partial<DocumentDriveLocalState>,\n): DocumentDriveLocalState {\n return {\n ...defaultLocalState(),\n ...(state || {}),\n } as DocumentDriveLocalState;\n}\n\nexport function createState(\n baseState?: Partial<PHBaseState>,\n globalState?: Partial<DocumentDriveGlobalState>,\n localState?: Partial<DocumentDriveLocalState>,\n): DocumentDrivePHState {\n return {\n ...createBaseState(baseState?.auth, baseState?.document),\n global: createGlobalState(globalState),\n local: createLocalState(localState),\n };\n}\n","/**\n * This is a scaffold file meant for customization:\n * - modify it by implementing the reducer functions\n * - delete the file and run the code generator again to have it reset\n */\n\nimport type { Listener, Trigger } from \"../../gen/schema/types.js\";\nimport type { DocumentDriveDriveOperations } from \"../../gen/drive/actions.js\";\n\nexport const driveReducer: DocumentDriveDriveOperations = {\n setDriveNameOperation(state, action, dispatch) {\n state.name = action.input.name;\n },\n setDriveIconOperation(state, action, dispatch) {\n state.icon = action.input.icon ?? null;\n },\n setSharingTypeOperation(state, action, dispatch) {\n state.sharingType = action.input.type;\n },\n setAvailableOfflineOperation(state, action, dispatch) {\n state.availableOffline = action.input.availableOffline;\n },\n addListenerOperation(state, action, dispatch) {\n const { listener: input } = action.input;\n if (state.listeners.find((l) => l.listenerId === input.listenerId)) {\n throw new Error(`A listener with Id: ${input.listenerId} already exists`);\n }\n // Convert InputMaybe (undefined | null | T) to Maybe (null | T)\n const listener: Listener = {\n listenerId: input.listenerId,\n label: input.label ?? null,\n block: input.block,\n system: input.system,\n filter: {\n documentType: input.filter.documentType ?? null,\n documentId: input.filter.documentId ?? null,\n scope: input.filter.scope ?? null,\n branch: input.filter.branch ?? null,\n },\n callInfo: input.callInfo\n ? {\n transmitterType: input.callInfo.transmitterType ?? null,\n name: input.callInfo.name ?? null,\n data: input.callInfo.data ?? null,\n }\n : null,\n };\n state.listeners.push(listener);\n },\n removeListenerOperation(state, action, dispatch) {\n state.listeners = state.listeners.filter(\n (listener) => listener.listenerId !== action.input.listenerId,\n );\n },\n addTriggerOperation(state, action, dispatch) {\n const { trigger: input } = action.input;\n if (state.triggers.find((t) => t.id === input.id)) {\n throw new Error(`A trigger with Id: ${input.id} already exists`);\n }\n // Convert InputMaybe to Maybe - PullResponderTriggerData has all required fields so spread works\n const trigger: Trigger = {\n id: input.id,\n type: input.type,\n data: input.data ? { ...input.data } : null,\n };\n state.triggers.push(trigger);\n },\n removeTriggerOperation(state, action, dispatch) {\n state.triggers = state.triggers.filter(\n (trigger) => trigger.id !== action.input.triggerId,\n );\n },\n};\n","import type {\n CopyNodeInput,\n FileNode,\n FolderNode,\n Node,\n} from \"../gen/schema/types.js\";\nimport type {\n GenerateNodesCopyIdGenerator,\n GenerateNodesCopySrc,\n} from \"./types.js\";\n\nexport function isFileNode(node: Node): node is FileNode {\n return node.kind === \"file\";\n}\n\nexport function isFolderNode(node: Node): node is FolderNode {\n return node.kind === \"folder\";\n}\n\nexport function getAncestors(node: Node, allNodes: Node[]): Node[] {\n if (!node.parentFolder) {\n return [];\n } else {\n const parentNode = allNodes.find((_node) => _node.id === node.parentFolder);\n if (!parentNode) {\n throw new Error(`Parent node with id ${node.parentFolder} not found`);\n }\n return [parentNode, ...getAncestors(parentNode, allNodes)];\n }\n}\n\nexport function getDescendants(node: Node, allNodes: Node[]): Node[] {\n const children = allNodes.filter((_node) => _node.parentFolder === node.id);\n const descendants = children.map((child) => getDescendants(child, allNodes));\n return [...children, ...descendants.flat()];\n}\n\n/**\n * Generates a copy of nodes based on the provided source and target information.\n * @param src - The source information for generating the copy.\n * @param idGenerator - The function used to generate new IDs for the copied nodes.\n * @param nodes - The array of nodes to copy from.\n * @returns An array of copied nodes with updated IDs and parent folders.\n * @throws Error if the root node with the specified ID is not found.\n */\nexport function generateNodesCopy(\n src: GenerateNodesCopySrc,\n idGenerator: GenerateNodesCopyIdGenerator,\n nodes: Node[],\n): CopyNodeInput[] {\n const rootNode = nodes.find((node) => node.id === src.srcId);\n\n if (!rootNode) {\n throw new Error(`Node with id ${src.srcId} not found`);\n }\n\n const nodesToCopy = [\n {\n ...rootNode,\n name: src.targetName || rootNode.name,\n parentFolder: src.targetParentFolder || null,\n },\n ...getDescendants(rootNode, nodes),\n ];\n\n const ids: Record<string, string | undefined> = {};\n\n // Add targetParentFolder to ids so that is not replaced by a new id\n if (src.targetParentFolder) {\n ids[src.targetParentFolder] = src.targetParentFolder;\n }\n\n const getNewNodeId = (node: Node): string => {\n let newId = ids[node.id];\n\n if (!newId) {\n const oldId = node.id;\n newId = idGenerator(node);\n ids[oldId] = newId;\n }\n\n return newId;\n };\n\n const copyNodesInput = nodesToCopy.map<CopyNodeInput>((node) => ({\n srcId: node.id,\n targetId: getNewNodeId(node),\n targetName: node.name,\n targetParentFolder: node.parentFolder ? ids[node.parentFolder] : null,\n }));\n\n return copyNodesInput;\n}\n\nexport function getNextCopyNumber(\n files: string[],\n baseFilename: string,\n): number {\n let maxNumber = 0; // Start by assuming no copies exist\n\n // Regex to find files that match the base filename followed by \" (copy)\" and possibly a number\n const regex = new RegExp(\n `^${escapeRegExp(baseFilename)} \\\\(copy\\\\)(?: (\\\\d+))?$`,\n );\n\n for (const file of files) {\n const match = file.match(regex);\n if (match) {\n const number = match[1] ? parseInt(match[1], 10) : 1;\n if (number > maxNumber) {\n maxNumber = number;\n }\n }\n }\n\n return maxNumber + 1;\n}\n\nexport function escapeRegExp(string: string) {\n return string.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\nexport function handleTargetNameCollisions(params: {\n nodes: Node[];\n targetParentFolder: string | null;\n srcName: string;\n srcKind: \"file\" | \"folder\";\n}) {\n const { nodes, targetParentFolder, srcName, srcKind } = params;\n\n const targetNodeChildrenNames = nodes\n .filter((node) =>\n targetParentFolder === \"\"\n ? node.parentFolder === null\n : node.parentFolder === targetParentFolder,\n )\n .filter((node) => node.kind === srcKind)\n .map((node) => node.name);\n\n const targetHasNodesWithSameName = targetNodeChildrenNames.includes(srcName);\n\n const targetName = targetHasNodesWithSameName\n ? `${srcName} (copy) ${getNextCopyNumber(targetNodeChildrenNames, srcName)}`\n : srcName;\n\n return targetName;\n}\n\nexport const isValidName = (name: string) => {\n // Names are display labels (URLs use a slugified id), so allow any unicode;\n // reject only empty/whitespace-only names and control characters.\n // eslint-disable-next-line no-control-regex\n return name.trim().length > 0 && !/[\\u0000-\\u001F\\u007F]/.test(name);\n};\n","/**\n * This is a scaffold file meant for customization:\n * - modify it by implementing the reducer functions\n * - delete the file and run the code generator again to have it reset\n */\n\nimport type { FileNode } from \"../../gen/schema/types.js\";\nimport type { DocumentDriveNodeOperations } from \"../../gen/node/actions.js\";\nimport {\n getDescendants,\n handleTargetNameCollisions,\n isFileNode,\n isFolderNode,\n isValidName,\n} from \"../utils.js\";\n\nexport const nodeReducer: DocumentDriveNodeOperations = {\n addFileOperation(state, action, dispatch) {\n if (state.nodes.find((node) => node.id === action.input.id)) {\n throw new Error(`Node with id ${action.input.id} already exists!`);\n }\n\n if (!isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const name = handleTargetNameCollisions({\n nodes: state.nodes,\n srcName: action.input.name,\n srcKind: \"file\",\n targetParentFolder: action.input.parentFolder || null,\n });\n\n const fileNode: FileNode = {\n id: action.input.id,\n name,\n kind: \"file\",\n parentFolder: action.input.parentFolder ?? null,\n documentType: action.input.documentType,\n };\n state.nodes.push(fileNode);\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n\n dispatch?.({\n type: \"CREATE_CHILD_DOCUMENT\",\n input: {\n id: action.input.id,\n documentType: action.input.documentType,\n },\n });\n },\n addFolderOperation(state, action) {\n if (state.nodes.find((node) => node.id === action.input.id)) {\n throw new Error(`Node with id ${action.input.id} already exists!`);\n }\n\n if (!isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const name = handleTargetNameCollisions({\n nodes: state.nodes,\n srcName: action.input.name,\n srcKind: \"folder\",\n targetParentFolder: action.input.parentFolder || null,\n });\n\n state.nodes.push({\n ...action.input,\n name,\n kind: \"folder\",\n parentFolder: action.input.parentFolder ?? null,\n });\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n },\n deleteNodeOperation(state, action, dispatch) {\n const node = state.nodes.find((node) => node.id === action.input.id);\n if (!node) {\n throw new Error(`Node with id ${action.input.id} not found`);\n }\n const descendants = getDescendants(node, state.nodes);\n state.nodes = state.nodes.filter(\n (node) =>\n node.id !== action.input.id &&\n !descendants.find((descendant) => descendant.id === node.id),\n );\n\n [node, ...descendants]\n .filter((node) => isFileNode(node))\n .forEach((node) => {\n dispatch?.({\n type: \"DELETE_CHILD_DOCUMENT\",\n input: {\n id: node.id,\n },\n });\n });\n },\n updateFileOperation(state, action) {\n if (action.input.name && !isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n state.nodes = state.nodes.map((node) =>\n node.id === action.input.id\n ? {\n ...node,\n ...{\n name: handleTargetNameCollisions({\n nodes: state.nodes.filter((n) => n.id !== action.input.id),\n srcName: action.input.name ?? node.name,\n srcKind: \"file\",\n targetParentFolder:\n action.input.parentFolder ?? node.parentFolder,\n }),\n documentType:\n action.input.documentType ?? (node as FileNode).documentType,\n },\n }\n : node,\n );\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n },\n updateNodeOperation(state, action) {\n if (action.input.name && !isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n state.nodes = state.nodes.map((node) =>\n node.id === action.input.id\n ? {\n ...node,\n ...{\n name: handleTargetNameCollisions({\n nodes: state.nodes.filter((n) => n.id !== action.input.id),\n srcName: action.input.name ?? node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder:\n action.input.parentFolder ?? node.parentFolder,\n }),\n parentFolder:\n action.input.parentFolder === null ? null : node.parentFolder,\n },\n }\n : node,\n );\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n },\n copyNodeOperation(state, action, dispatch) {\n const node = state.nodes.find((node) => node.id === action.input.srcId);\n\n if (!node) {\n throw new Error(`Node with id ${action.input.srcId} not found`);\n }\n\n const duplicatedNode = state.nodes.find(\n (node) => node.id === action.input.targetId,\n );\n\n if (duplicatedNode) {\n throw new Error(`Node with id ${action.input.targetId} already exists`);\n }\n\n const name = handleTargetNameCollisions({\n nodes: state.nodes,\n srcName: action.input.targetName || node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder: action.input.targetParentFolder || null,\n });\n\n const newNode = {\n ...node,\n id: action.input.targetId,\n slug: action.input.targetId,\n name,\n parentFolder: action.input.targetParentFolder || null,\n };\n\n state.nodes.push(newNode);\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n\n const isFile = isFileNode(newNode);\n if (isFile) {\n dispatch?.({\n type: \"COPY_CHILD_DOCUMENT\",\n input: {\n id: action.input.srcId,\n newId: action.input.targetId,\n },\n });\n }\n },\n moveNodeOperation(state, action) {\n if (action.input.srcFolder === action.input.targetParentFolder) {\n throw new Error(\n \"Circular Reference Error: Attempting to move a node to its current parent folder\",\n );\n }\n\n const node = state.nodes.find((node) => node.id === action.input.srcFolder);\n\n if (!node) {\n throw new Error(`Node with id ${action.input.srcFolder} not found`);\n }\n\n const name = handleTargetNameCollisions({\n nodes: state.nodes,\n srcName: node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder: action.input.targetParentFolder || null,\n });\n\n if (isFolderNode(node)) {\n const descendants = getDescendants(node, state.nodes);\n // throw error if moving a folder to one of its descendants\n if (\n descendants.find(\n (descendant) => descendant.id === action.input.targetParentFolder,\n )\n ) {\n throw new Error(\n \"Circular Reference Error: Cannot move a folder to one of its descendants\",\n );\n }\n }\n\n state.nodes = state.nodes.map((node) => {\n if (node.id === action.input.srcFolder) {\n return {\n ...node,\n name,\n parentFolder: action.input.targetParentFolder || null,\n };\n }\n\n return node;\n });\n\n // deterministically sort nodes by id\n state.nodes.sort((a, b) => a.id.localeCompare(b.id));\n },\n};\n","import { isDocumentAction } from \"../../document-model/documents.js\";\nimport { createReducer } from \"../../document-model/reducer.js\";\nimport type { Reducer, StateReducer } from \"../../document-model/types.js\";\nimport { driveReducer } from \"../src/reducers/drive.js\";\nimport { nodeReducer } from \"../src/reducers/node.js\";\nimport {\n AddFileInputSchema,\n AddFolderInputSchema,\n AddListenerInputSchema,\n AddTriggerInputSchema,\n CopyNodeInputSchema,\n DeleteNodeInputSchema,\n MoveNodeInputSchema,\n RemoveListenerInputSchema,\n RemoveTriggerInputSchema,\n SetAvailableOfflineInputSchema,\n SetDriveIconInputSchema,\n SetDriveNameInputSchema,\n SetSharingTypeInputSchema,\n UpdateFileInputSchema,\n UpdateNodeInputSchema,\n} from \"./schema/zod.js\";\nimport type { DocumentDrivePHState } from \"./types.js\";\n\nconst driveStateReducer: StateReducer<DocumentDrivePHState> = (\n state,\n action,\n dispatch,\n) => {\n if (isDocumentAction(action)) {\n return state;\n }\n\n const typedAction = action as any;\n switch (typedAction.type) {\n case \"ADD_FILE\":\n AddFileInputSchema().parse(typedAction.input);\n nodeReducer.addFileOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_FOLDER\":\n AddFolderInputSchema().parse(typedAction.input);\n nodeReducer.addFolderOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"DELETE_NODE\":\n DeleteNodeInputSchema().parse(typedAction.input);\n nodeReducer.deleteNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"UPDATE_FILE\":\n UpdateFileInputSchema().parse(typedAction.input);\n nodeReducer.updateFileOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"UPDATE_NODE\":\n UpdateNodeInputSchema().parse(typedAction.input);\n nodeReducer.updateNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"COPY_NODE\":\n CopyNodeInputSchema().parse(typedAction.input);\n nodeReducer.copyNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"MOVE_NODE\":\n MoveNodeInputSchema().parse(typedAction.input);\n nodeReducer.moveNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_DRIVE_NAME\":\n SetDriveNameInputSchema().parse(typedAction.input);\n driveReducer.setDriveNameOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_DRIVE_ICON\":\n SetDriveIconInputSchema().parse(typedAction.input);\n driveReducer.setDriveIconOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_SHARING_TYPE\":\n SetSharingTypeInputSchema().parse(typedAction.input);\n driveReducer.setSharingTypeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_AVAILABLE_OFFLINE\":\n SetAvailableOfflineInputSchema().parse(typedAction.input);\n driveReducer.setAvailableOfflineOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_LISTENER\":\n AddListenerInputSchema().parse(typedAction.input);\n driveReducer.addListenerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"REMOVE_LISTENER\":\n RemoveListenerInputSchema().parse(typedAction.input);\n driveReducer.removeListenerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_TRIGGER\":\n AddTriggerInputSchema().parse(typedAction.input);\n driveReducer.addTriggerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"REMOVE_TRIGGER\":\n RemoveTriggerInputSchema().parse(typedAction.input);\n driveReducer.removeTriggerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n default:\n return state;\n }\n};\n\nexport const driveDocumentReducer: Reducer<DocumentDrivePHState> =\n createReducer<DocumentDrivePHState>(driveStateReducer);\n","import type {\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n} from \"./schema/types.js\";\nimport type { DocumentDrivePHState } from \"./types.js\";\nimport type {\n AssertIsDocumentOfType,\n AssertIsStateOfType,\n CreateDocument,\n CreateState,\n IsDocumentOfType,\n IsStateOfType,\n LoadFromInput,\n SaveToFileHandle,\n} from \"document-model\";\nimport {\n baseCreateDocument,\n baseLoadFromInput,\n baseSaveToFileHandle,\n defaultBaseState,\n} from \"document-model\";\nimport {\n assertIsDriveDocument,\n assertIsDriveState,\n isDriveDocument,\n isDriveState,\n} from \"./document-schema.js\";\nimport { driveDocumentType } from \"./document-type.js\";\nimport { driveDocumentReducer } from \"./reducer.js\";\n\nexport const initialGlobalState: DocumentDriveGlobalState = {\n name: \"\",\n nodes: [],\n icon: null,\n};\nexport const initialLocalState: DocumentDriveLocalState = {\n listeners: [],\n triggers: [],\n sharingType: \"private\",\n availableOffline: false,\n};\n\nexport const driveCreateState: CreateState<DocumentDrivePHState> = (\n state: Partial<DocumentDrivePHState> | undefined,\n) => {\n return {\n ...defaultBaseState(),\n global: { ...initialGlobalState, ...state?.global },\n local: { ...initialLocalState, ...state?.local },\n };\n};\n\nexport const driveCreateDocument: CreateDocument<DocumentDrivePHState> = (\n state,\n) => {\n return baseCreateDocument(driveCreateState, state, driveDocumentType);\n};\n\nexport const driveSaveToFileHandle: SaveToFileHandle = (document, input) => {\n return baseSaveToFileHandle(document, input);\n};\n\nexport const driveLoadFromInput: LoadFromInput<DocumentDrivePHState> = (\n input,\n) => {\n return baseLoadFromInput(input, driveDocumentReducer);\n};\n\nexport const isStateOfType: IsStateOfType<DocumentDrivePHState> = (state) => {\n return isDriveState(state);\n};\n\nexport const assertIsStateOfType: AssertIsStateOfType<DocumentDrivePHState> = (\n state,\n) => {\n assertIsDriveState(state);\n};\n\nexport const isDocumentOfType: IsDocumentOfType<DocumentDrivePHState> = (\n document,\n) => {\n return isDriveDocument(document);\n};\n\nexport const assertIsDocumentOfType: AssertIsDocumentOfType<\n DocumentDrivePHState\n> = (document) => {\n assertIsDriveDocument(document);\n};\n","import { createState, defaultBaseState } from \"../document-model/state.js\";\nimport { driveDocumentFileExtension } from \"./constants.js\";\nimport * as actions from \"./gen/creators.js\";\nimport { driveDocumentModel } from \"./gen/document-model.js\";\nimport { driveDocumentReducer } from \"./gen/reducer.js\";\nimport {\n assertIsDocumentOfType,\n assertIsStateOfType,\n driveCreateDocument,\n driveCreateState,\n driveLoadFromInput,\n driveSaveToFileHandle,\n isDocumentOfType,\n isStateOfType,\n} from \"./gen/utils.js\";\nimport type { DriveDocumentModelModule } from \"./types.js\";\nexport const driveDocumentModelModule: DriveDocumentModelModule = {\n actions,\n reducer: driveDocumentReducer,\n documentModel: createState(defaultBaseState(), driveDocumentModel),\n utils: {\n fileExtension: driveDocumentFileExtension,\n createState: driveCreateState,\n createDocument: driveCreateDocument,\n loadFromInput: driveLoadFromInput,\n saveToFileHandle: driveSaveToFileHandle,\n isStateOfType,\n assertIsStateOfType,\n isDocumentOfType,\n assertIsDocumentOfType,\n },\n};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["createState"],"sources":["../../document-drive/constants.ts","../../document-drive/gen/schema/zod.ts","../../document-drive/gen/node/creators.ts","../../document-drive/gen/drive/creators.ts","../../document-drive/gen/creators.ts","../../document-drive/gen/document-model.ts","../../document-drive/gen/document-type.ts","../../document-drive/gen/document-schema.ts","../../document-drive/gen/ph-factories.ts","../../document-drive/src/reducers/drive.ts","../../document-drive/src/utils.ts","../../document-drive/src/reducers/node.ts","../../document-drive/gen/reducer.ts","../../document-drive/gen/utils.ts","../../document-drive/module.ts"],"sourcesContent":["export const driveDocumentFileExtension = \"phdd\";\n","import type {\n AddFileInput,\n AddFolderInput,\n AddListenerInput,\n AddTriggerInput,\n CopyNodeInput,\n DeleteNodeInput,\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n FileNode,\n FolderNode,\n Listener,\n ListenerCallInfo,\n ListenerCallInfoInput,\n ListenerFilter,\n ListenerFilterInput,\n ListenerInput,\n MoveNodeInput,\n PullResponderTriggerData,\n PullResponderTriggerDataInput,\n RemoveListenerInput,\n RemoveTriggerInput,\n SetAvailableOfflineInput,\n SetDriveIconInput,\n SetDriveNameInput,\n SetSharingTypeInput,\n Trigger,\n TriggerInput,\n UpdateFileInput,\n UpdateNodeInput,\n} from \"./types.js\";\nimport { z } from \"zod\";\n\ntype Properties<T> = Required<{\n [K in keyof T]: z.ZodType<T[K], T[K]>;\n}>;\n\ntype definedNonNullAny = {};\n\nexport const isDefinedNonNullAny = (v: any): v is definedNonNullAny =>\n v !== undefined && v !== null;\n\nexport const definedNonNullAnySchema = z\n .any()\n .refine((v) => isDefinedNonNullAny(v));\n\nexport const TransmitterTypeSchema = z.enum([\n \"Internal\",\n \"MatrixConnect\",\n \"PullResponder\",\n \"RESTWebhook\",\n \"SecureConnect\",\n \"SwitchboardPush\",\n]);\n\nexport const TriggerTypeSchema = z.enum([\"PullResponder\"]);\n\nexport function AddFileInputSchema(): z.ZodObject<Properties<AddFileInput>> {\n return z.object({\n documentType: z.string(),\n id: z.string(),\n name: z.string(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function AddFolderInputSchema(): z.ZodObject<\n Properties<AddFolderInput>\n> {\n return z.object({\n id: z.string(),\n name: z.string(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function AddListenerInputSchema(): z.ZodObject<\n Properties<AddListenerInput>\n> {\n return z.object({\n listener: ListenerInputSchema(),\n });\n}\n\nexport function AddTriggerInputSchema(): z.ZodObject<\n Properties<AddTriggerInput>\n> {\n return z.object({\n trigger: TriggerInputSchema(),\n });\n}\n\nexport function CopyNodeInputSchema(): z.ZodObject<Properties<CopyNodeInput>> {\n return z.object({\n srcId: z.string(),\n targetId: z.string(),\n targetName: z.string().nullish(),\n targetParentFolder: z.string().nullish(),\n });\n}\n\nexport function DeleteNodeInputSchema(): z.ZodObject<\n Properties<DeleteNodeInput>\n> {\n return z.object({\n id: z.string(),\n });\n}\n\nexport function DocumentDriveLocalStateSchema(): z.ZodObject<\n Properties<DocumentDriveLocalState>\n> {\n return z.object({\n __typename: z.literal(\"DocumentDriveLocalState\").optional(),\n availableOffline: z.boolean(),\n listeners: z.array(ListenerSchema()),\n sharingType: z.string().nullable(),\n triggers: z.array(TriggerSchema()),\n });\n}\n\nexport function DocumentDriveStateSchema(): z.ZodObject<\n Properties<DocumentDriveGlobalState>\n> {\n return z.object({\n __typename: z.literal(\"DocumentDriveState\").optional(),\n icon: z.string().nullable(),\n name: z.string(),\n nodes: z.array(NodeSchema()),\n });\n}\n\nexport function FileNodeSchema(): z.ZodObject<Properties<FileNode>> {\n return z.object({\n __typename: z.literal(\"FileNode\").optional(),\n documentType: z.string(),\n id: z.string(),\n kind: z.string(),\n name: z.string(),\n parentFolder: z.string().nullable(),\n });\n}\n\nexport function FolderNodeSchema(): z.ZodObject<Properties<FolderNode>> {\n return z.object({\n __typename: z.literal(\"FolderNode\").optional(),\n id: z.string(),\n kind: z.string(),\n name: z.string(),\n parentFolder: z.string().nullable(),\n });\n}\n\nexport function ListenerSchema(): z.ZodObject<Properties<Listener>> {\n return z.object({\n __typename: z.literal(\"Listener\").optional(),\n block: z.boolean(),\n callInfo: ListenerCallInfoSchema().nullable(),\n filter: ListenerFilterSchema(),\n label: z.string().nullable(),\n listenerId: z.string(),\n system: z.boolean(),\n });\n}\n\nexport function ListenerInputSchema(): z.ZodObject<Properties<ListenerInput>> {\n return z.object({\n block: z.boolean(),\n callInfo: ListenerCallInfoInputSchema().nullish(),\n filter: ListenerFilterInputSchema(),\n label: z.string().nullish(),\n listenerId: z.string(),\n system: z.boolean(),\n });\n}\n\nexport function ListenerCallInfoSchema(): z.ZodObject<\n Properties<ListenerCallInfo>\n> {\n return z.object({\n __typename: z.literal(\"ListenerCallInfo\").optional(),\n data: z.string().nullable(),\n name: z.string().nullable(),\n transmitterType: TransmitterTypeSchema.nullable(),\n });\n}\n\nexport function ListenerCallInfoInputSchema(): z.ZodObject<\n Properties<ListenerCallInfoInput>\n> {\n return z.object({\n data: z.string().nullish(),\n name: z.string().nullish(),\n transmitterType: TransmitterTypeSchema.nullish(),\n });\n}\n\nexport function ListenerFilterSchema(): z.ZodObject<\n Properties<ListenerFilter>\n> {\n return z.object({\n __typename: z.literal(\"ListenerFilter\").optional(),\n branch: z.array(z.string()).nullable(),\n documentId: z.array(z.string()).nullable(),\n documentType: z.array(z.string()),\n scope: z.array(z.string()).nullable(),\n });\n}\n\nexport function ListenerFilterInputSchema(): z.ZodObject<\n Properties<ListenerFilterInput>\n> {\n return z.object({\n branch: z.array(z.string()).nullish(),\n documentId: z.array(z.string()).nullish(),\n documentType: z.array(z.string()).nullish(),\n scope: z.array(z.string()).nullish(),\n });\n}\n\nexport function MoveNodeInputSchema(): z.ZodObject<Properties<MoveNodeInput>> {\n return z.object({\n srcFolder: z.string(),\n targetParentFolder: z.string().nullish(),\n });\n}\n\nexport function NodeSchema() {\n return z.union([FileNodeSchema(), FolderNodeSchema()]);\n}\n\nexport function PullResponderTriggerDataSchema(): z.ZodObject<\n Properties<PullResponderTriggerData>\n> {\n return z.object({\n __typename: z.literal(\"PullResponderTriggerData\").optional(),\n interval: z.string(),\n listenerId: z.string(),\n url: z.string(),\n });\n}\n\nexport function PullResponderTriggerDataInputSchema(): z.ZodObject<\n Properties<PullResponderTriggerDataInput>\n> {\n return z.object({\n interval: z.string(),\n listenerId: z.string(),\n url: z.string(),\n });\n}\n\nexport function RemoveListenerInputSchema(): z.ZodObject<\n Properties<RemoveListenerInput>\n> {\n return z.object({\n listenerId: z.string(),\n });\n}\n\nexport function RemoveTriggerInputSchema(): z.ZodObject<\n Properties<RemoveTriggerInput>\n> {\n return z.object({\n triggerId: z.string(),\n });\n}\n\nexport function SetAvailableOfflineInputSchema(): z.ZodObject<\n Properties<SetAvailableOfflineInput>\n> {\n return z.object({\n availableOffline: z.boolean(),\n });\n}\n\nexport function SetDriveIconInputSchema(): z.ZodObject<\n Properties<SetDriveIconInput>\n> {\n return z.object({\n icon: z.string().nullish(),\n });\n}\n\nexport function SetDriveNameInputSchema(): z.ZodObject<\n Properties<SetDriveNameInput>\n> {\n return z.object({\n name: z.string(),\n });\n}\n\nexport function SetSharingTypeInputSchema(): z.ZodObject<\n Properties<SetSharingTypeInput>\n> {\n return z.object({\n type: z.string(),\n });\n}\n\nexport function TriggerSchema(): z.ZodObject<Properties<Trigger>> {\n return z.object({\n __typename: z.literal(\"Trigger\").optional(),\n data: TriggerDataSchema().nullable(),\n id: z.string(),\n type: TriggerTypeSchema,\n });\n}\n\nexport function TriggerInputSchema(): z.ZodObject<Properties<TriggerInput>> {\n return z.object({\n data: PullResponderTriggerDataInputSchema().nullish(),\n id: z.string(),\n type: TriggerTypeSchema,\n });\n}\n\nexport function TriggerDataSchema() {\n return PullResponderTriggerDataSchema();\n}\n\nexport function UpdateFileInputSchema(): z.ZodObject<\n Properties<UpdateFileInput>\n> {\n return z.object({\n documentType: z.string().nullish(),\n id: z.string(),\n name: z.string().nullish(),\n parentFolder: z.string().nullish(),\n });\n}\n\nexport function UpdateNodeInputSchema(): z.ZodObject<\n Properties<UpdateNodeInput>\n> {\n return z.object({\n id: z.string(),\n name: z.string().nullish(),\n parentFolder: z.string().nullish(),\n });\n}\n","import type {\n AddFileInput,\n AddFolderInput,\n CopyNodeInput,\n DeleteNodeInput,\n MoveNodeInput,\n UpdateFileInput,\n UpdateNodeInput,\n} from \"../schema/types.js\";\nimport type { LegacyAddFileAction, LegacyAddFileInput } from \"../types.js\";\nimport type {\n AddFileAction,\n AddFolderAction,\n CopyNodeAction,\n DeleteNodeAction,\n MoveNodeAction,\n UpdateFileAction,\n UpdateNodeAction,\n} from \"./actions.js\";\nimport { createAction } from \"document-model\";\nimport {\n AddFileInputSchema,\n AddFolderInputSchema,\n CopyNodeInputSchema,\n DeleteNodeInputSchema,\n MoveNodeInputSchema,\n UpdateFileInputSchema,\n UpdateNodeInputSchema,\n} from \"../schema/zod.js\";\n\n/**\n * @deprecated Use addFile with {@link AddFileInput} instead. This overload will be removed in the future.\n */\nexport function addFile(input: LegacyAddFileInput): LegacyAddFileAction;\nexport function addFile(input: AddFileInput): AddFileAction;\nexport function addFile(\n input: LegacyAddFileInput | AddFileInput,\n): typeof input extends LegacyAddFileInput\n ? LegacyAddFileAction\n : AddFileAction {\n if (input && typeof input === \"object\" && \"synchronizationUnits\" in input) {\n // Legacy overload\n return createAction<AddFileAction>(\n \"ADD_FILE\",\n { ...input },\n undefined,\n undefined,\n \"global\",\n );\n }\n // Standard overload\n return createAction<AddFileAction>(\n \"ADD_FILE\",\n { ...input },\n undefined,\n AddFileInputSchema,\n \"global\",\n );\n}\n\nexport const addFolder = (input: AddFolderInput) =>\n createAction<AddFolderAction>(\n \"ADD_FOLDER\",\n { ...input },\n undefined,\n AddFolderInputSchema,\n \"global\",\n );\n\nexport const deleteNode = (input: DeleteNodeInput) =>\n createAction<DeleteNodeAction>(\n \"DELETE_NODE\",\n { ...input },\n undefined,\n DeleteNodeInputSchema,\n \"global\",\n );\n\nexport const updateFile = (input: UpdateFileInput) =>\n createAction<UpdateFileAction>(\n \"UPDATE_FILE\",\n { ...input },\n undefined,\n UpdateFileInputSchema,\n \"global\",\n );\n\nexport const updateNode = (input: UpdateNodeInput) =>\n createAction<UpdateNodeAction>(\n \"UPDATE_NODE\",\n { ...input },\n undefined,\n UpdateNodeInputSchema,\n \"global\",\n );\n\nexport const copyNode = (input: CopyNodeInput) =>\n createAction<CopyNodeAction>(\n \"COPY_NODE\",\n { ...input },\n undefined,\n CopyNodeInputSchema,\n \"global\",\n );\n\nexport const moveNode = (input: MoveNodeInput) =>\n createAction<MoveNodeAction>(\n \"MOVE_NODE\",\n { ...input },\n undefined,\n MoveNodeInputSchema,\n \"global\",\n );\n","import type {\n AddListenerInput,\n AddTriggerInput,\n RemoveListenerInput,\n RemoveTriggerInput,\n SetAvailableOfflineInput,\n SetDriveIconInput,\n SetDriveNameInput,\n SetSharingTypeInput,\n} from \"../schema/types.js\";\nimport type {\n AddListenerAction,\n AddTriggerAction,\n RemoveListenerAction,\n RemoveTriggerAction,\n SetAvailableOfflineAction,\n SetDriveIconAction,\n SetDriveNameAction,\n SetSharingTypeAction,\n} from \"./actions.js\";\nimport { createAction } from \"document-model\";\nimport {\n AddListenerInputSchema,\n AddTriggerInputSchema,\n RemoveListenerInputSchema,\n RemoveTriggerInputSchema,\n SetAvailableOfflineInputSchema,\n SetDriveIconInputSchema,\n SetDriveNameInputSchema,\n SetSharingTypeInputSchema,\n} from \"../schema/zod.js\";\n\nexport const setDriveName = (input: SetDriveNameInput) =>\n createAction<SetDriveNameAction>(\n \"SET_DRIVE_NAME\",\n { ...input },\n undefined,\n SetDriveNameInputSchema,\n \"global\",\n );\n\nexport const setDriveIcon = (input: SetDriveIconInput) =>\n createAction<SetDriveIconAction>(\n \"SET_DRIVE_ICON\",\n { ...input },\n undefined,\n SetDriveIconInputSchema,\n \"global\",\n );\n\nexport const setSharingType = (input: SetSharingTypeInput) =>\n createAction<SetSharingTypeAction>(\n \"SET_SHARING_TYPE\",\n { ...input },\n undefined,\n SetSharingTypeInputSchema,\n \"local\",\n );\n\nexport const setAvailableOffline = (input: SetAvailableOfflineInput) =>\n createAction<SetAvailableOfflineAction>(\n \"SET_AVAILABLE_OFFLINE\",\n { ...input },\n undefined,\n SetAvailableOfflineInputSchema,\n \"local\",\n );\n\nexport const addListener = (input: AddListenerInput) =>\n createAction<AddListenerAction>(\n \"ADD_LISTENER\",\n { ...input },\n undefined,\n AddListenerInputSchema,\n \"local\",\n );\n\nexport const removeListener = (input: RemoveListenerInput) =>\n createAction<RemoveListenerAction>(\n \"REMOVE_LISTENER\",\n { ...input },\n undefined,\n RemoveListenerInputSchema,\n \"local\",\n );\n\nexport const addTrigger = (input: AddTriggerInput) =>\n createAction<AddTriggerAction>(\n \"ADD_TRIGGER\",\n { ...input },\n undefined,\n AddTriggerInputSchema,\n \"local\",\n );\n\nexport const removeTrigger = (input: RemoveTriggerInput) =>\n createAction<RemoveTriggerAction>(\n \"REMOVE_TRIGGER\",\n { ...input },\n undefined,\n RemoveTriggerInputSchema,\n \"local\",\n );\n","export * from \"./node/creators.js\";\nexport * from \"./drive/creators.js\";\n","import type { DocumentModelGlobalState } from \"../../document-model/types.js\";\n\nexport const driveDocumentModel: DocumentModelGlobalState = {\n id: \"powerhouse/document-drive\",\n name: \"DocumentDrive\",\n extension: \"phdd\",\n description: \"\",\n author: {\n name: \"Powerhouse Inc\",\n website: \"https://www.powerhouse.inc/\",\n },\n specifications: [\n {\n version: 1,\n changeLog: [],\n state: {\n global: {\n schema:\n \"type FolderNode {\\n id: String!\\n name: String!\\n kind: String!\\n parentFolder: String\\n}\\n\\ntype FileNode {\\n id: String!\\n name: String!\\n kind: String!\\n documentType: String!\\n parentFolder: String\\n}\\n\\nunion Node = FolderNode | FileNode\\n\\ntype DocumentDriveState {\\n name: String!\\n nodes: [Node!]!\\n icon: String\\n}\",\n initialValue: '\"{\\\\\"name\\\\\":\\\\\"\\\\\",\\\\\"nodes\\\\\":[],\\\\\"icon\\\\\":null}\"',\n examples: [],\n },\n local: {\n schema:\n \"type ListenerFilter {\\n documentType: [String!]!\\n documentId: [ID!]\\n scope: [String!]\\n branch: [String!]\\n}\\n\\nenum TransmitterType {\\n Internal,\\n SwitchboardPush,\\n PullResponder,\\n SecureConnect, \\n MatrixConnect,\\n RESTWebhook\\n}\\n\\ntype ListenerCallInfo {\\n transmitterType: TransmitterType\\n name: String\\n data: String\\n}\\n\\ntype Listener {\\n listenerId: ID!\\n label: String\\n block: Boolean!\\n system: Boolean!\\n filter: ListenerFilter!\\n callInfo: ListenerCallInfo\\n}\\n\\nenum TriggerType {\\n PullResponder\\n}\\n\\ntype PullResponderTriggerData {\\n listenerId: ID!\\n url: String!\\n interval: String!\\n}\\n\\nunion TriggerData = PullResponderTriggerData\\n\\ntype Trigger {\\n id: ID!\\n type: TriggerType!\\n data: TriggerData\\n}\\n\\ntype DocumentDriveLocalState{\\n sharingType: String\\n listeners: [Listener!]!\\n triggers: [Trigger!]!\\n availableOffline: Boolean!\\n}\",\n initialValue:\n '\"{ \\\\\"listeners\\\\\": [], \\\\\"triggers\\\\\": [], \\\\\"sharingType\\\\\": \\\\\"private\\\\\", \\\\\"availableOffline\\\\\": false}\"',\n examples: [],\n },\n },\n modules: [\n {\n id: \"GRzuvv78tBvmB6ciitokLfonNHA=\",\n name: \"Node\",\n description: \"\",\n operations: [\n {\n id: \"7xiTdxonc9yEASR8sfV/KnbSV10=\",\n name: \"ADD_FILE\",\n description: \"\",\n schema:\n \"input AddFileInput {\\n id: ID!\\n name: String!\\n documentType: String!\\n parentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"4lzNMMKKdIAtEU6i12xLgi9hp+U=\",\n name: \"ADD_FOLDER\",\n description: \"\",\n schema:\n \"input AddFolderInput {\\n id: ID!\\n name: String!\\n parentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"53jH2/3TWTTcgCJiv2C+BmuC6i0=\",\n name: \"DELETE_NODE\",\n description: \"\",\n schema: \"input DeleteNodeInput {\\n id: ID!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"pNn+Y1/HVq/GNMk7t0u3g3gtMLE=\",\n name: \"UPDATE_FILE\",\n description: \"\",\n schema:\n \"input UpdateFileInput {\\n id: ID!\\n parentFolder: ID\\n name: String\\n documentType: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"P0x1M8Mnt+Q/+9nggkwgVbfybsc=\",\n name: \"UPDATE_NODE\",\n description: \"\",\n schema:\n \"input UpdateNodeInput {\\n id: ID!\\n parentFolder: ID\\n name: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"vnQ7OB5b3wGLgjhbgJqAIpA+JLE=\",\n name: \"COPY_NODE\",\n description: \"\",\n schema:\n \"input CopyNodeInput {\\n srcId: ID!\\n targetId: ID!\\n targetName: String\\n targetParentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"VNyiD/sNGzk6k9A1Qe7s8dmrJxA=\",\n name: \"MOVE_NODE\",\n description: \"\",\n schema:\n \"input MoveNodeInput {\\n srcFolder: ID!\\n targetParentFolder: ID\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n ],\n },\n {\n id: \"0dHwHlxOM9x0vMZ+gLnKxf2qTEo=\",\n name: \"Drive\",\n description: \"\",\n operations: [\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z1dsU=\",\n name: \"SET_DRIVE_NAME\",\n description: \"\",\n schema: \"input SetDriveNameInput {\\n name: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z30dsU=\",\n name: \"SET_DRIVE_ICON\",\n description: \"\",\n schema: \"input SetDriveIconInput {\\n icon: String\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"global\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z2dsU=\",\n name: \"SET_SHARING_TYPE\",\n description: \"\",\n schema: \"input SetSharingTypeInput {\\n type: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z3dsU=\",\n name: \"SET_AVAILABLE_OFFLINE\",\n description: \"\",\n schema:\n \"input SetAvailableOfflineInput {\\n availableOffline: Boolean!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z9dsU=\",\n name: \"ADD_LISTENER\",\n description: \"\",\n schema:\n \"input ListenerFilterInput {\\n documentType: [String!]\\n documentId: [ID!]\\n scope: [String!]\\n branch: [String!]\\n}\\n\\ninput ListenerCallInfoInput {\\n transmitterType: TransmitterType\\n name: String\\n data: String\\n}\\n\\ninput ListenerInput {\\n listenerId: ID!\\n label: String\\n block: Boolean!\\n system: Boolean!\\n filter: ListenerFilterInput!\\n callInfo: ListenerCallInfoInput\\n}\\n\\ninput AddListenerInput {\\n listener: ListenerInput!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z10dsU=\",\n name: \"REMOVE_LISTENER\",\n description: \"\",\n schema: \"input RemoveListenerInput {\\n listenerId: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z20dsU=\",\n name: \"ADD_TRIGGER\",\n description: \"\",\n schema:\n \"input PullResponderTriggerDataInput {\\n listenerId: ID!\\n url: String!\\n interval: String!\\n}\\n\\ninput TriggerInput {\\n id: ID!\\n type: TriggerType!\\n data: PullResponderTriggerDataInput\\n}\\n\\ninput AddTriggerInput {\\n trigger: TriggerInput!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n {\n id: \"qGCiPGpTt/cyz3HzyrBn92z30dsU=\",\n name: \"REMOVE_TRIGGER\",\n description: \"\",\n schema: \"input RemoveTriggerInput {\\n triggerId: String!\\n}\",\n template: \"\",\n reducer: \"\",\n errors: [],\n examples: [],\n scope: \"local\",\n },\n ],\n },\n ],\n },\n ],\n};\n","export const driveDocumentType = \"powerhouse/document-drive\";\n","import { z } from \"zod\";\nimport {\n BaseDocumentHeaderSchema,\n BaseDocumentStateSchema,\n} from \"../../document-model/document-schema.js\";\nimport { driveDocumentType } from \"./document-type.js\";\nimport {\n DocumentDriveLocalStateSchema,\n DocumentDriveStateSchema,\n} from \"./schema/zod.js\";\nimport type { DocumentDriveDocument, DocumentDrivePHState } from \"./types.js\";\n\n/** Schema for validating the header object of a Drive document */\nexport const DriveDocumentHeaderSchema = BaseDocumentHeaderSchema.extend({\n documentType: z.literal(driveDocumentType),\n});\n\n/** Schema for validating the state object of a Drive document */\nexport const DrivePHStateSchema = BaseDocumentStateSchema.extend({\n global: DocumentDriveStateSchema(),\n local: DocumentDriveLocalStateSchema(),\n});\n\nexport const DriveDocumentSchema = z.object({\n header: DriveDocumentHeaderSchema,\n state: DrivePHStateSchema,\n initialState: DrivePHStateSchema,\n});\n\n/** Simple helper function to check if a state object is a Drive document state object */\nexport function isDriveState(state: unknown): state is DocumentDrivePHState {\n return DrivePHStateSchema.safeParse(state).success;\n}\n\n/** Simple helper function to assert that a document state object is a Drive document state object */\nexport function assertIsDriveState(\n state: unknown,\n): asserts state is DocumentDrivePHState {\n DrivePHStateSchema.parse(state);\n}\n\n/** Simple helper function to check if a document is a Drive document */\nexport function isDriveDocument(\n document: unknown,\n): document is DocumentDriveDocument {\n return DriveDocumentSchema.safeParse(document).success;\n}\n\n/** Simple helper function to assert that a document is a Drive document */\nexport function assertIsDriveDocument(\n document: unknown,\n): asserts document is DocumentDriveDocument {\n DriveDocumentSchema.parse(document);\n}\n","/**\n * Factory methods for creating DocumentDriveDocument instances\n */\n\nimport {\n createBaseState,\n defaultBaseState,\n type PHBaseState,\n} from \"../../document-model/state.js\";\nimport type {\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n DocumentDrivePHState,\n} from \"./types.js\";\n\nexport function defaultGlobalState(): DocumentDriveGlobalState {\n return {\n icon: null,\n name: \"\",\n nodes: [],\n };\n}\n\nexport function defaultLocalState(): DocumentDriveLocalState {\n return {\n availableOffline: false,\n listeners: [],\n sharingType: null,\n triggers: [],\n };\n}\n\nexport function defaultPHState(): DocumentDrivePHState {\n return {\n ...defaultBaseState(),\n global: defaultGlobalState(),\n local: defaultLocalState(),\n };\n}\n\nexport function createGlobalState(\n state?: Partial<DocumentDriveGlobalState>,\n): DocumentDriveGlobalState {\n return {\n ...defaultGlobalState(),\n ...(state || {}),\n } as DocumentDriveGlobalState;\n}\n\nexport function createLocalState(\n state?: Partial<DocumentDriveLocalState>,\n): DocumentDriveLocalState {\n return {\n ...defaultLocalState(),\n ...(state || {}),\n } as DocumentDriveLocalState;\n}\n\nexport function createState(\n baseState?: Partial<PHBaseState>,\n globalState?: Partial<DocumentDriveGlobalState>,\n localState?: Partial<DocumentDriveLocalState>,\n): DocumentDrivePHState {\n return {\n ...createBaseState(baseState?.auth, baseState?.document),\n global: createGlobalState(globalState),\n local: createLocalState(localState),\n };\n}\n","/**\n * This is a scaffold file meant for customization:\n * - modify it by implementing the reducer functions\n * - delete the file and run the code generator again to have it reset\n */\n\nimport type { Listener, Trigger } from \"../../gen/schema/types.js\";\nimport type { DocumentDriveDriveOperations } from \"../../gen/drive/actions.js\";\n\nexport const driveReducer: DocumentDriveDriveOperations = {\n setDriveNameOperation(state, action, dispatch) {\n state.name = action.input.name;\n },\n setDriveIconOperation(state, action, dispatch) {\n state.icon = action.input.icon ?? null;\n },\n setSharingTypeOperation(state, action, dispatch) {\n state.sharingType = action.input.type;\n },\n setAvailableOfflineOperation(state, action, dispatch) {\n state.availableOffline = action.input.availableOffline;\n },\n addListenerOperation(state, action, dispatch) {\n const { listener: input } = action.input;\n if (state.listeners.find((l) => l.listenerId === input.listenerId)) {\n throw new Error(`A listener with Id: ${input.listenerId} already exists`);\n }\n // Convert InputMaybe (undefined | null | T) to Maybe (null | T)\n const listener: Listener = {\n listenerId: input.listenerId,\n label: input.label ?? null,\n block: input.block,\n system: input.system,\n filter: {\n documentType: input.filter.documentType ?? null,\n documentId: input.filter.documentId ?? null,\n scope: input.filter.scope ?? null,\n branch: input.filter.branch ?? null,\n },\n callInfo: input.callInfo\n ? {\n transmitterType: input.callInfo.transmitterType ?? null,\n name: input.callInfo.name ?? null,\n data: input.callInfo.data ?? null,\n }\n : null,\n };\n state.listeners.push(listener);\n },\n removeListenerOperation(state, action, dispatch) {\n state.listeners = state.listeners.filter(\n (listener) => listener.listenerId !== action.input.listenerId,\n );\n },\n addTriggerOperation(state, action, dispatch) {\n const { trigger: input } = action.input;\n if (state.triggers.find((t) => t.id === input.id)) {\n throw new Error(`A trigger with Id: ${input.id} already exists`);\n }\n // Convert InputMaybe to Maybe - PullResponderTriggerData has all required fields so spread works\n const trigger: Trigger = {\n id: input.id,\n type: input.type,\n data: input.data ? { ...input.data } : null,\n };\n state.triggers.push(trigger);\n },\n removeTriggerOperation(state, action, dispatch) {\n state.triggers = state.triggers.filter(\n (trigger) => trigger.id !== action.input.triggerId,\n );\n },\n};\n","import type {\n CopyNodeInput,\n FileNode,\n FolderNode,\n Node,\n} from \"../gen/schema/types.js\";\nimport type {\n GenerateNodesCopyIdGenerator,\n GenerateNodesCopySrc,\n} from \"./types.js\";\nimport { isDraft, original } from \"mutative\";\n\nexport function isFileNode(node: Node): node is FileNode {\n return node.kind === \"file\";\n}\n\nexport function isFolderNode(node: Node): node is FolderNode {\n return node.kind === \"folder\";\n}\n\nexport function getAncestors(node: Node, allNodes: Node[]): Node[] {\n if (!node.parentFolder) {\n return [];\n } else {\n const parentNode = allNodes.find((_node) => _node.id === node.parentFolder);\n if (!parentNode) {\n throw new Error(`Parent node with id ${node.parentFolder} not found`);\n }\n return [parentNode, ...getAncestors(parentNode, allNodes)];\n }\n}\n\nexport function getDescendants(node: Node, allNodes: Node[]): Node[] {\n const children = allNodes.filter((_node) => _node.parentFolder === node.id);\n const descendants = children.map((child) => getDescendants(child, allNodes));\n return [...children, ...descendants.flat()];\n}\n\n/**\n * Generates a copy of nodes based on the provided source and target information.\n * @param src - The source information for generating the copy.\n * @param idGenerator - The function used to generate new IDs for the copied nodes.\n * @param nodes - The array of nodes to copy from.\n * @returns An array of copied nodes with updated IDs and parent folders.\n * @throws Error if the root node with the specified ID is not found.\n */\nexport function generateNodesCopy(\n src: GenerateNodesCopySrc,\n idGenerator: GenerateNodesCopyIdGenerator,\n nodes: Node[],\n): CopyNodeInput[] {\n const rootNode = nodes.find((node) => node.id === src.srcId);\n\n if (!rootNode) {\n throw new Error(`Node with id ${src.srcId} not found`);\n }\n\n const nodesToCopy = [\n {\n ...rootNode,\n name: src.targetName || rootNode.name,\n parentFolder: src.targetParentFolder || null,\n },\n ...getDescendants(rootNode, nodes),\n ];\n\n const ids: Record<string, string | undefined> = {};\n\n // Add targetParentFolder to ids so that is not replaced by a new id\n if (src.targetParentFolder) {\n ids[src.targetParentFolder] = src.targetParentFolder;\n }\n\n const getNewNodeId = (node: Node): string => {\n let newId = ids[node.id];\n\n if (!newId) {\n const oldId = node.id;\n newId = idGenerator(node);\n ids[oldId] = newId;\n }\n\n return newId;\n };\n\n const copyNodesInput = nodesToCopy.map<CopyNodeInput>((node) => ({\n srcId: node.id,\n targetId: getNewNodeId(node),\n targetName: node.name,\n targetParentFolder: node.parentFolder ? ids[node.parentFolder] : null,\n }));\n\n return copyNodesInput;\n}\n\nexport function getNextCopyNumber(\n files: string[],\n baseFilename: string,\n): number {\n let maxNumber = 0; // Start by assuming no copies exist\n\n // Regex to find files that match the base filename followed by \" (copy)\" and possibly a number\n const regex = new RegExp(\n `^${escapeRegExp(baseFilename)} \\\\(copy\\\\)(?: (\\\\d+))?$`,\n );\n\n for (const file of files) {\n const match = file.match(regex);\n if (match) {\n const number = match[1] ? parseInt(match[1], 10) : 1;\n if (number > maxNumber) {\n maxNumber = number;\n }\n }\n }\n\n return maxNumber + 1;\n}\n\nexport function escapeRegExp(string: string) {\n return string.replace(/[.*+?^${}()|[\\]\\\\]/g, \"\\\\$&\");\n}\n\n/**\n * A plain, unfrozen copy of the node list for read-only scans. Inside a\n * mutative draft the copy is taken from the untouched base list, so a find or\n * filter over it does not create a child draft per element it visits, and it is\n * a copy because the stored list is frozen and V8 scans a frozen array several\n * times slower than a normal one. Callers must read before they write: the base\n * list does not see mutations made earlier in the same action.\n */\nexport function readNodes(state: { nodes: Node[] }): Node[] {\n return [...(isDraft(state) ? original(state).nodes : state.nodes)];\n}\n\n/**\n * The given array sorted by id and frozen, in place -- it takes ownership of\n * the array it is handed, which is why it is private to this module and only\n * ever given a list built at the call site. The freeze is what makes assigning\n * the list to a mutative draft cheap: assigning a draftable value to a draft\n * property queues a finalize pass that walks every element of the assigned\n * value, and the walk exits at its Object.isFrozen check instead. Elements must\n * be plain nodes -- an element that is still a draft would never be replaced by\n * its final value, because the walk that does that replacement is the one being\n * skipped.\n */\nfunction freezeSortedById(nodes: Node[]): readonly Node[] {\n nodes.sort((a, b) => a.id.localeCompare(b.id));\n return Object.freeze(nodes);\n}\n\n/**\n * A copy of the given list, sorted by id and frozen, which is the shape the\n * node reducer assigns. Read the list with readNodes, build the new list from\n * it, and pass what this returns to assignNodes. The copy is what keeps the\n * freeze off the caller's array.\n */\nexport function sortNodesById(nodes: readonly Node[]): readonly Node[] {\n return freezeSortedById([...nodes]);\n}\n\n/**\n * The node list with a node added, ordered by id and frozen, in the same shape\n * sortNodesById returns. The list is built and sorted as plain objects, so\n * inside a mutative draft the comparator never reads an element through the\n * draft proxy. Pass the list read with readNodes: the draft's own list would\n * put child drafts in the result, which the freeze then keeps mutative from\n * resolving.\n */\nexport function insertNodeSorted(\n nodes: readonly Node[],\n node: Node,\n): readonly Node[] {\n return freezeSortedById([...nodes, node]);\n}\n\n/**\n * Installs a node list as state.nodes. Every assignment the node reducer makes\n * goes through here, and this is the one place a frozen array crosses into\n * state: the generated DocumentDriveGlobalState types nodes as a mutable\n * Node[], so the cast below is where that gap is paid rather than spread over\n * the reducer. Consumers must treat drive.state.global.nodes as read-only --\n * mutating it in place (push, sort, splice) throws in strict mode; copy it\n * first, as readNodes does. Note that LOAD_STATE replaces a whole scope and can\n * install a list this function never saw.\n */\nexport function assignNodes(\n state: { nodes: Node[] },\n nodes: readonly Node[],\n): void {\n state.nodes = nodes as Node[];\n}\n\nexport function handleTargetNameCollisions(params: {\n nodes: Node[];\n targetParentFolder: string | null;\n srcName: string;\n srcKind: \"file\" | \"folder\";\n}) {\n const { nodes, targetParentFolder, srcName, srcKind } = params;\n\n const targetNodeChildrenNames = nodes\n .filter((node) =>\n targetParentFolder === \"\"\n ? node.parentFolder === null\n : node.parentFolder === targetParentFolder,\n )\n .filter((node) => node.kind === srcKind)\n .map((node) => node.name);\n\n const targetHasNodesWithSameName = targetNodeChildrenNames.includes(srcName);\n\n const targetName = targetHasNodesWithSameName\n ? `${srcName} (copy) ${getNextCopyNumber(targetNodeChildrenNames, srcName)}`\n : srcName;\n\n return targetName;\n}\n\nexport const isValidName = (name: string) => {\n // Names are display labels (URLs use a slugified id), so allow any unicode;\n // reject only empty/whitespace-only names and control characters.\n // eslint-disable-next-line no-control-regex\n return name.trim().length > 0 && !/[\\u0000-\\u001F\\u007F]/.test(name);\n};\n","/**\n * This is a scaffold file meant for customization:\n * - modify it by implementing the reducer functions\n * - delete the file and run the code generator again to have it reset\n */\n\nimport type { FileNode } from \"../../gen/schema/types.js\";\nimport type { DocumentDriveNodeOperations } from \"../../gen/node/actions.js\";\nimport {\n assignNodes,\n getDescendants,\n handleTargetNameCollisions,\n insertNodeSorted,\n isFileNode,\n isFolderNode,\n isValidName,\n readNodes,\n sortNodesById,\n} from \"../utils.js\";\n\nexport const nodeReducer: DocumentDriveNodeOperations = {\n addFileOperation(state, action, dispatch) {\n const nodes = readNodes(state);\n if (nodes.find((node) => node.id === action.input.id)) {\n throw new Error(`Node with id ${action.input.id} already exists!`);\n }\n\n if (!isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const name = handleTargetNameCollisions({\n nodes,\n srcName: action.input.name,\n srcKind: \"file\",\n targetParentFolder: action.input.parentFolder || null,\n });\n\n const fileNode: FileNode = {\n id: action.input.id,\n name,\n kind: \"file\",\n parentFolder: action.input.parentFolder ?? null,\n documentType: action.input.documentType,\n };\n assignNodes(state, insertNodeSorted(nodes, fileNode));\n\n dispatch?.({\n type: \"CREATE_CHILD_DOCUMENT\",\n input: {\n id: action.input.id,\n documentType: action.input.documentType,\n },\n });\n },\n addFolderOperation(state, action) {\n const nodes = readNodes(state);\n if (nodes.find((node) => node.id === action.input.id)) {\n throw new Error(`Node with id ${action.input.id} already exists!`);\n }\n\n if (!isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const name = handleTargetNameCollisions({\n nodes,\n srcName: action.input.name,\n srcKind: \"folder\",\n targetParentFolder: action.input.parentFolder || null,\n });\n\n assignNodes(\n state,\n insertNodeSorted(nodes, {\n ...action.input,\n name,\n kind: \"folder\",\n parentFolder: action.input.parentFolder ?? null,\n }),\n );\n },\n deleteNodeOperation(state, action, dispatch) {\n const nodes = readNodes(state);\n const node = nodes.find((node) => node.id === action.input.id);\n if (!node) {\n throw new Error(`Node with id ${action.input.id} not found`);\n }\n const descendants = getDescendants(node, nodes);\n assignNodes(\n state,\n sortNodesById(\n nodes.filter(\n (node) =>\n node.id !== action.input.id &&\n !descendants.find((descendant) => descendant.id === node.id),\n ),\n ),\n );\n\n [node, ...descendants]\n .filter((node) => isFileNode(node))\n .forEach((node) => {\n dispatch?.({\n type: \"DELETE_CHILD_DOCUMENT\",\n input: {\n id: node.id,\n },\n });\n });\n },\n updateFileOperation(state, action) {\n if (action.input.name && !isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const nodes = readNodes(state);\n assignNodes(\n state,\n sortNodesById(\n nodes.map((node) =>\n node.id === action.input.id\n ? {\n ...node,\n ...{\n name: handleTargetNameCollisions({\n nodes: nodes.filter((n) => n.id !== action.input.id),\n srcName: action.input.name ?? node.name,\n srcKind: \"file\",\n targetParentFolder:\n action.input.parentFolder ?? node.parentFolder,\n }),\n documentType:\n action.input.documentType ??\n (node as FileNode).documentType,\n },\n }\n : node,\n ),\n ),\n );\n },\n updateNodeOperation(state, action) {\n if (action.input.name && !isValidName(action.input.name)) {\n throw new Error(\n `Invalid name: '${action.input.name}'. Names must not be empty or contain control characters.`,\n );\n }\n\n const nodes = readNodes(state);\n assignNodes(\n state,\n sortNodesById(\n nodes.map((node) =>\n node.id === action.input.id\n ? {\n ...node,\n ...{\n name: handleTargetNameCollisions({\n nodes: nodes.filter((n) => n.id !== action.input.id),\n srcName: action.input.name ?? node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder:\n action.input.parentFolder ?? node.parentFolder,\n }),\n parentFolder:\n action.input.parentFolder === null\n ? null\n : node.parentFolder,\n },\n }\n : node,\n ),\n ),\n );\n },\n copyNodeOperation(state, action, dispatch) {\n const nodes = readNodes(state);\n const node = nodes.find((node) => node.id === action.input.srcId);\n\n if (!node) {\n throw new Error(`Node with id ${action.input.srcId} not found`);\n }\n\n const duplicatedNode = nodes.find(\n (node) => node.id === action.input.targetId,\n );\n\n if (duplicatedNode) {\n throw new Error(`Node with id ${action.input.targetId} already exists`);\n }\n\n const name = handleTargetNameCollisions({\n nodes,\n srcName: action.input.targetName || node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder: action.input.targetParentFolder || null,\n });\n\n const newNode = {\n ...node,\n id: action.input.targetId,\n slug: action.input.targetId,\n name,\n parentFolder: action.input.targetParentFolder || null,\n };\n\n assignNodes(state, insertNodeSorted(nodes, newNode));\n\n const isFile = isFileNode(newNode);\n if (isFile) {\n dispatch?.({\n type: \"COPY_CHILD_DOCUMENT\",\n input: {\n id: action.input.srcId,\n newId: action.input.targetId,\n },\n });\n }\n },\n moveNodeOperation(state, action) {\n if (action.input.srcFolder === action.input.targetParentFolder) {\n throw new Error(\n \"Circular Reference Error: Attempting to move a node to its current parent folder\",\n );\n }\n\n const nodes = readNodes(state);\n const node = nodes.find((node) => node.id === action.input.srcFolder);\n\n if (!node) {\n throw new Error(`Node with id ${action.input.srcFolder} not found`);\n }\n\n const name = handleTargetNameCollisions({\n nodes,\n srcName: node.name,\n srcKind: node.kind === \"file\" ? \"file\" : \"folder\",\n targetParentFolder: action.input.targetParentFolder || null,\n });\n\n if (isFolderNode(node)) {\n const descendants = getDescendants(node, nodes);\n // throw error if moving a folder to one of its descendants\n if (\n descendants.find(\n (descendant) => descendant.id === action.input.targetParentFolder,\n )\n ) {\n throw new Error(\n \"Circular Reference Error: Cannot move a folder to one of its descendants\",\n );\n }\n }\n\n assignNodes(\n state,\n sortNodesById(\n nodes.map((node) => {\n if (node.id === action.input.srcFolder) {\n return {\n ...node,\n name,\n parentFolder: action.input.targetParentFolder || null,\n };\n }\n\n return node;\n }),\n ),\n );\n },\n};\n","import { isDocumentAction } from \"../../document-model/documents.js\";\nimport { createReducer } from \"../../document-model/reducer.js\";\nimport type { Reducer, StateReducer } from \"../../document-model/types.js\";\nimport { driveReducer } from \"../src/reducers/drive.js\";\nimport { nodeReducer } from \"../src/reducers/node.js\";\nimport {\n AddFileInputSchema,\n AddFolderInputSchema,\n AddListenerInputSchema,\n AddTriggerInputSchema,\n CopyNodeInputSchema,\n DeleteNodeInputSchema,\n MoveNodeInputSchema,\n RemoveListenerInputSchema,\n RemoveTriggerInputSchema,\n SetAvailableOfflineInputSchema,\n SetDriveIconInputSchema,\n SetDriveNameInputSchema,\n SetSharingTypeInputSchema,\n UpdateFileInputSchema,\n UpdateNodeInputSchema,\n} from \"./schema/zod.js\";\nimport type { DocumentDrivePHState } from \"./types.js\";\n\nconst driveStateReducer: StateReducer<DocumentDrivePHState> = (\n state,\n action,\n dispatch,\n) => {\n if (isDocumentAction(action)) {\n return state;\n }\n\n const typedAction = action as any;\n switch (typedAction.type) {\n case \"ADD_FILE\":\n AddFileInputSchema().parse(typedAction.input);\n nodeReducer.addFileOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_FOLDER\":\n AddFolderInputSchema().parse(typedAction.input);\n nodeReducer.addFolderOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"DELETE_NODE\":\n DeleteNodeInputSchema().parse(typedAction.input);\n nodeReducer.deleteNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"UPDATE_FILE\":\n UpdateFileInputSchema().parse(typedAction.input);\n nodeReducer.updateFileOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"UPDATE_NODE\":\n UpdateNodeInputSchema().parse(typedAction.input);\n nodeReducer.updateNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"COPY_NODE\":\n CopyNodeInputSchema().parse(typedAction.input);\n nodeReducer.copyNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"MOVE_NODE\":\n MoveNodeInputSchema().parse(typedAction.input);\n nodeReducer.moveNodeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_DRIVE_NAME\":\n SetDriveNameInputSchema().parse(typedAction.input);\n driveReducer.setDriveNameOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_DRIVE_ICON\":\n SetDriveIconInputSchema().parse(typedAction.input);\n driveReducer.setDriveIconOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_SHARING_TYPE\":\n SetSharingTypeInputSchema().parse(typedAction.input);\n driveReducer.setSharingTypeOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"SET_AVAILABLE_OFFLINE\":\n SetAvailableOfflineInputSchema().parse(typedAction.input);\n driveReducer.setAvailableOfflineOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_LISTENER\":\n AddListenerInputSchema().parse(typedAction.input);\n driveReducer.addListenerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"REMOVE_LISTENER\":\n RemoveListenerInputSchema().parse(typedAction.input);\n driveReducer.removeListenerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"ADD_TRIGGER\":\n AddTriggerInputSchema().parse(typedAction.input);\n driveReducer.addTriggerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n case \"REMOVE_TRIGGER\":\n RemoveTriggerInputSchema().parse(typedAction.input);\n driveReducer.removeTriggerOperation(\n (state as any)[typedAction.scope],\n action as any,\n dispatch,\n );\n break;\n\n default:\n return state;\n }\n};\n\nexport const driveDocumentReducer: Reducer<DocumentDrivePHState> =\n createReducer<DocumentDrivePHState>(driveStateReducer);\n","import type {\n DocumentDriveGlobalState,\n DocumentDriveLocalState,\n} from \"./schema/types.js\";\nimport type { DocumentDrivePHState } from \"./types.js\";\nimport type {\n AssertIsDocumentOfType,\n AssertIsStateOfType,\n CreateDocument,\n CreateState,\n IsDocumentOfType,\n IsStateOfType,\n LoadFromInput,\n SaveToFileHandle,\n} from \"document-model\";\nimport {\n baseCreateDocument,\n baseLoadFromInput,\n baseSaveToFileHandle,\n defaultBaseState,\n} from \"document-model\";\nimport {\n assertIsDriveDocument,\n assertIsDriveState,\n isDriveDocument,\n isDriveState,\n} from \"./document-schema.js\";\nimport { driveDocumentType } from \"./document-type.js\";\nimport { driveDocumentReducer } from \"./reducer.js\";\n\nexport const initialGlobalState: DocumentDriveGlobalState = {\n name: \"\",\n nodes: [],\n icon: null,\n};\nexport const initialLocalState: DocumentDriveLocalState = {\n listeners: [],\n triggers: [],\n sharingType: \"private\",\n availableOffline: false,\n};\n\nexport const driveCreateState: CreateState<DocumentDrivePHState> = (\n state: Partial<DocumentDrivePHState> | undefined,\n) => {\n return {\n ...defaultBaseState(),\n global: { ...initialGlobalState, ...state?.global },\n local: { ...initialLocalState, ...state?.local },\n };\n};\n\nexport const driveCreateDocument: CreateDocument<DocumentDrivePHState> = (\n state,\n) => {\n return baseCreateDocument(driveCreateState, state, driveDocumentType);\n};\n\nexport const driveSaveToFileHandle: SaveToFileHandle = (document, input) => {\n return baseSaveToFileHandle(document, input);\n};\n\nexport const driveLoadFromInput: LoadFromInput<DocumentDrivePHState> = (\n input,\n) => {\n return baseLoadFromInput(input, driveDocumentReducer);\n};\n\nexport const isStateOfType: IsStateOfType<DocumentDrivePHState> = (state) => {\n return isDriveState(state);\n};\n\nexport const assertIsStateOfType: AssertIsStateOfType<DocumentDrivePHState> = (\n state,\n) => {\n assertIsDriveState(state);\n};\n\nexport const isDocumentOfType: IsDocumentOfType<DocumentDrivePHState> = (\n document,\n) => {\n return isDriveDocument(document);\n};\n\nexport const assertIsDocumentOfType: AssertIsDocumentOfType<\n DocumentDrivePHState\n> = (document) => {\n assertIsDriveDocument(document);\n};\n","import { createState, defaultBaseState } from \"../document-model/state.js\";\nimport { driveDocumentFileExtension } from \"./constants.js\";\nimport * as actions from \"./gen/creators.js\";\nimport { driveDocumentModel } from \"./gen/document-model.js\";\nimport { driveDocumentReducer } from \"./gen/reducer.js\";\nimport {\n assertIsDocumentOfType,\n assertIsStateOfType,\n driveCreateDocument,\n driveCreateState,\n driveLoadFromInput,\n driveSaveToFileHandle,\n isDocumentOfType,\n isStateOfType,\n} from \"./gen/utils.js\";\nimport type { DriveDocumentModelModule } from \"./types.js\";\nexport const driveDocumentModelModule: DriveDocumentModelModule = {\n actions,\n reducer: driveDocumentReducer,\n documentModel: createState(defaultBaseState(), driveDocumentModel),\n utils: {\n fileExtension: driveDocumentFileExtension,\n createState: driveCreateState,\n createDocument: driveCreateDocument,\n loadFromInput: driveLoadFromInput,\n saveToFileHandle: driveSaveToFileHandle,\n isStateOfType,\n assertIsStateOfType,\n isDocumentOfType,\n assertIsDocumentOfType,\n },\n};\n"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as AddOperationExampleAction, $a as UpgradeReducer, $c as deleteOperationExample, $i as SetOperationErrorCodeAction, $l as baseCreateDocument, $n as MutationDeleteOperationErrorArgs, $o as SetAuthorWebsiteInputSchema, $r as RedoActionInput, $t as DocumentModelOperationExampleOperations, $u as PHDocumentState, Aa as SigningParameters, Ai as SetAuthorNameAction, Al as setOperationErrorDescription, An as LoadStateActionInput, Ao as ModuleSchema, Ar as MutationSetOperationTemplateArgs, As as UpdateStateExampleInputSchema, At as DeleteOperationErrorInput, Au as sortMappedOperations, Ba as UpdateChangeLogItemAction, Bc as addModule, Bi as SetModelIdAction, Bl as undo, Bn as ModuleSpecification, Bo as PublisherSchema, Br as OperationsByScope, Bt as DocumentModelGlobalState, Bu as operationOutcome, Ca as Set_PreferredEditor, Ci as SchemaNOOPAction, Cl as setModelId, Cn as Incremental, Co as DocumentModelInputSchema, Cr as MutationSetOperationErrorCodeArgs, Cs as Set_PreferredEditorSchema, Ct as DeleteChildDocumentSignal, Cu as prepareOperations, Da as SignalResults, Di as SchemaSetPreferredEditorAction, Dl as setName, Dn as LoadFromFile, Do as LoadStateActionStateInputSchema, Dr as MutationSetOperationNameArgs, Ds as UndoSchema, Dt as DeleteModuleInput, Du as reshuffleByTimestamp, Ea as SignalResult, Ei as SchemaSetNameAction, El as setModuleName, En as IsStateOfType, Eo as LoadStateActionSchema, Er as MutationSetOperationErrorTemplateArgs, Es as UndoActionSchema, Et as DeleteModuleAction, Eu as replayDocument, Fa as SubgraphModule, Fc as actionContext, Fi as SetInitialStateInput, Fl as setOperationSchema, Fn as MakeOptional, Fo as PowerhouseModuleSchema, Fr as MutationUpdateStateExampleArgs, Ft as DeleteStateExampleInput, Fu as Operation, G as Actions, Ga as UpdateRelationshipActionInput, Gc as baseActions, Gi as SetModuleDescriptionInput, Gl as IntegrityIssueSubType, Gn as MutationAddModuleArgs, Go as ReorderChangeLogItemsInputSchema, Gr as PowerhouseModule, Gt as DocumentModelLocalState, Gu as undoOperationV2, H as ActionSignatureContext, Ha as UpdateOperationExampleAction, Hc as addOperationError, Hi as SetModelNameAction, Hl as updateOperationExample, Hn as MoveOperationInput, Ho as RedoActionInputSchema, Hr as PartialState, Ht as DocumentModelHeaderOperations, Hu as setNameOperation, Ia as Undo, Ic as actionFromAction, Ii as SetModelDescriptionAction, Il as setOperationScope, In as Manifest, Io as PowerhouseModulesSchema, Ir as NOOPAction, It as DocumentAction, Iu as OperationContext, J as AddModuleAction, Ja as UpgradeDocumentAction, Jc as createAction, Ji as SetNameAction, Jl as PHDocumentHeader, Jn as MutationAddOperationExampleArgs, Jo as ReorderOperationErrorsInputSchema, Jr as PruneActionInput, Jt as DocumentModelModuleOperations, Ju as Condition, K as AddChangeLogItemAction, Ka as UpdateStateExampleAction, Kc as buildOperationSignature, Ki as SetModuleNameAction, Kl as IntegrityIssueType, Kn as MutationAddOperationArgs, Ko as ReorderModuleOperationsInputSchema, Kr as Prune, Kt as DocumentModelModule, Ku as AuthGroups, La as UndoAction, Lc as actionSigner, Li as SetModelDescriptionInput, Ll as setOperationTemplate, Ln as MappedOperation, Lo as PruneActionInputSchema, Lr as OperationErrorSpecification, Lt as DocumentModelAction, Lu as OperationOutcome, Ma as SkipHeaderOperations, Mi as SetAuthorWebsiteAction, Ml as setOperationErrorTemplate, Mn as Load_State, Mo as OperationErrorSchema, Mr as MutationUndoArgs, Ms as isDefinedNonNullAny, Mt as DeleteOperationExampleInput, Mu as split, Na as State, Nc as Action, Ni as SetAuthorWebsiteInput, Nl as setOperationName, Nn as MakeEmpty, No as OperationScopeSchema, Nr as MutationUpdateChangeLogItemInputArgs, Nt as DeleteOperationInput, Nu as updateHeaderRevision, Oa as SignalType, Oi as SchemaUndoAction, Ol as setOperationDescription, On as LoadFromInput, Oo as Load_StateSchema, Or as MutationSetOperationReducerArgs, Os as UpdateChangeLogItemInputSchema, Ot as DeleteOperationAction, Ou as reshuffleByTimestampAndIndex, Pa as StateReducer, Pc as ActionContext, Pi as SetInitialStateAction, Pl as setOperationReducer, Pn as MakeMaybe, Po as OperationSpecificationSchema, Pr as MutationUpdateOperationExampleArgs, Pt as DeleteStateExampleAction, Pu as DocumentOperations, Q as AddOperationErrorInput, Qa as UpgradeManifest, Qc as deleteOperationError, Qi as SetOperationDescriptionInput, Ql as attachBranch, Qn as MutationDeleteOperationArgs, Qo as SetAuthorNameInputSchema, Qr as RedoAction, Qt as DocumentModelOperationExampleAction, Qu as PHBaseState, Ra as UndoActionInput, Rc as actions, Ri as SetModelExtensionAction, Rl as setPreferredEditor, Rn as Maybe, Ro as PruneActionSchema, Rr as OperationIndex, Rt as DocumentModelDocument, Ru as OperationWithContext, Sa as Set_Name, Sd as serializeSignature, Si as SchemaLoadStateAction, Sl as setModelExtension, Sn as ISigner, So as DocumentModelGlobalStateSchema, Sr as MutationSetOperationDescriptionArgs, Ss as Set_NameSchema, St as DeleteChildDocumentInput, Su as precedes, Ta as SignalDispatch, Ti as SchemaRedoAction, Tl as setModuleDescription, Tn as IsDocumentOfType, To as LoadStateActionInputSchema, Tr as MutationSetOperationErrorNameArgs, Ts as UndoActionInputSchema, Tt as DeleteDocumentActionInput, Tu as removeExistingOperations, U as ActionSigningHandler, Ua as UpdateOperationExampleInput, Uc as addOperationExample, Ui as SetModelNameInput, Ul as updateStateExample, Un as Mutation, Uo as RedoActionSchema, Ur as PhAiToolAnnotations, Ut as DocumentModelInput, Uu as setPreferredEditorOperation, V as ActionErrorCallback, Va as UpdateChangeLogItemInput, Vc as addOperation, Vi as SetModelIdInput, Vl as updateChangeLogItem, Vn as MoveOperationAction, Vo as PwaConfigSchema, Vr as PartialRecord, Vt as DocumentModelHeaderAction, Vu as redoOperation, W as ActionVerificationHandler, Wa as UpdateRelationshipAction, Wc as addStateExample, Wi as SetModuleDescriptionAction, Wl as verifyOperationSignature, Wn as MutationAddChangeLogItemInputArgs, Wo as RedoSchema, Wr as PhAiToolDescriptor, Wt as DocumentModelLib, Wu as undoOperation, X as AddOperationAction, Xa as User, Xc as deleteModule, Xi as SetNameOperation, Xl as addUndo, Xn as MutationDeleteChangeLogItemInputArgs, Xo as ReorderStateExamplesInputSchema, Xr as Query, Xt as DocumentModelOperationErrorAction, Xu as Operand, Y as AddModuleInput, Ya as UpgradeDocumentActionInput, Yc as deleteChangeLogItem, Yi as SetNameActionInput, Yl as PHDocumentMeta, Yn as MutationAddStateExampleArgs, Yo as ReorderOperationExamplesInputSchema, Yr as Publisher, Yt as DocumentModelOperationAction, Yu as Grant, Z as AddOperationErrorAction, Za as ValidationError, Zc as deleteOperation, Zi as SetOperationDescriptionAction, Zl as appendWithoutApplying, Zn as MutationDeleteModuleArgs, Zo as ScopeStateSchema, Zr as Redo, Zt as DocumentModelOperationErrorOperations, Zu as PHAuthState, _a as SetPreferredEditorAction, _d as HashConfig, _i as ReplayDocumentOptions, _l as reorderStateExamples, _n as ID, _o as DeleteOperationErrorInputSchema, _r as MutationSetModelIdArgs, _s as SetOperationScopeInputSchema, _t as CreateDocumentAction, _u as mapSkippedOperationsV2, aa as SetOperationErrorTemplateAction, ad as createDocumentState, ai as ReorderChangeLogItemsAction, al as operationExampleCreators, an as DocumentModelVersioningAction, ao as AddChangeLogItemInputSchema, ar as MutationRedoArgs, as as SetModuleDescriptionInputSchema, at as AddStateExampleInput, au as filterDuplicatedOperations, ba as SetStateSchemaAction, bd as UserActionSigner, bi as SaveToFileHandle, bl as setInitialState, bn as ISignal, bo as DeleteStateExampleInputSchema, br as MutationSetModuleNameArgs, bs as SetPreferredEditorActionSchema, bt as DeleteChangeLogItemAction, bu as operationsAreEqual, ca as SetOperationNameInput, cd as createState, ci as ReorderModuleOperationsInput, cl as operationWithContext, cn as DocumentSpecification, co as AddOperationExampleInputSchema, cr as MutationReorderModulesArgs, cs as SetNameActionSchema, ct as Author, cu as garbageCollectV2, da as SetOperationSchemaAction, dd as defaultDocumentState, di as ReorderOperationErrorsAction, dl as releaseNewVersion, dn as EditorModule, do as AuthorSchema, dr as MutationReorderStateExamplesArgs, ds as SetOperationErrorDescriptionInputSchema, dt as ConfigEntryType, du as hashDocumentStateForScope, ea as SetOperationErrorCodeInput, ed as PHGroupState, ei as Reducer, el as deleteStateExample, en as DocumentModelOperationOperations, eo as UpgradeTransition, er as MutationDeleteOperationExampleArgs, es as SetInitialStateInputSchema, et as AddOperationExampleInput, eu as baseReducerVersion, fa as SetOperationSchemaInput, fd as defaultGlobalState, fi as ReorderOperationErrorsInput, fl as reorderChangeLogItems, fn as EditorProps, fo as CodeExampleSchema, fr as MutationSetAuthorNameArgs, fs as SetOperationErrorNameInputSchema, ft as CopyChildDocumentInput, fu as isDocumentAction, ga as SetOperationTemplateInput, gd as AppActionSigner, gi as ReorderStateExamplesInput, gl as reorderOperationExamples, gn as IAction, go as DeleteModuleInputSchema, gr as MutationSetModelExtensionArgs, gs as SetOperationSchemaInputSchema, gt as CreateDocument, gu as mapSkippedOperations, ha as SetOperationTemplateAction, hd as ActionSigner, hi as ReorderStateExamplesAction, hl as reorderOperationErrors, hn as GetDocumentOptions, ho as DeleteChangeLogItemInputSchema, hr as MutationSetModelDescriptionArgs, hs as SetOperationReducerInputSchema, ht as CreateChildDocumentSignal, hu as isUndoRedo, ia as SetOperationErrorNameInput, id as createBaseState, ii as RemoveRelationshipActionInput, il as noop, in as DocumentModelUtils, io as normalizeDocumentModelVersion, ir as MutationPruneArgs, is as SetModelNameInputSchema, it as AddStateExampleAction, iu as filterDocumentOperationsResultingState, ja as SkipHeaderOperationIndex, ji as SetAuthorNameInput, jl as setOperationErrorName, jn as LoadStateActionStateInput, jo as MoveOperationInputSchema, jr as MutationSetStateSchemaArgs, js as definedNonNullAnySchema, jt as DeleteOperationExampleAction, ju as sortOperations, ka as SignatureVerificationHandler, ki as ScopeState, kl as setOperationErrorCode, kn as LoadStateAction, ko as ManifestSchema, kr as MutationSetOperationSchemaArgs, ks as UpdateOperationExampleInputSchema, kt as DeleteOperationErrorAction, ku as skipHeaderOperations, la as SetOperationReducerAction, ld as defaultAuthState, li as ReorderModulesAction, ll as prune, ln as ENSInfo, lo as AddOperationInputSchema, lr as MutationReorderOperationErrorsArgs, ls as SetOperationDescriptionInputSchema, lt as CodeExample, lu as getDocumentLastModified, ma as SetOperationScopeInput, md as defaultPHState, mi as ReorderOperationExamplesInput, ml as reorderModules, mn as FileInput, mo as ConfigEntryTypeSchema, mr as MutationSetInitialStateArgs, ms as SetOperationNameInputSchema, mt as CreateChildDocumentInput, mu as isUndo, na as SetOperationErrorDescriptionInput, nd as backfillAuthState, ni as ReleaseNewVersionAction, nl as loadState, nn as DocumentModelStateAction, no as applyUpgradeDocumentAction, nr as MutationLoadStateArgs, ns as SetModelExtensionInputSchema, nt as AddRelationshipAction, nu as checkOperationsIntegrity, oa as SetOperationErrorTemplateInput, od as createGlobalState, oi as ReorderChangeLogItemsInput, ol as operationFromAction, on as DocumentModelVersioningOperations, oo as AddModuleInputSchema, or as MutationReorderChangeLogItemsInputArgs, os as SetModuleNameInputSchema, ot as AssertIsDocumentOfType, ou as garbageCollect, pa as SetOperationScopeAction, pd as defaultLocalState, pi as ReorderOperationExamplesAction, pl as reorderModuleOperations, pn as Exact, po as ConfigEntrySchema, pr as MutationSetAuthorWebsiteArgs, ps as SetOperationErrorTemplateInputSchema, pt as CopyChildDocumentSignal, pu as isNoopOperation, q as AddChangeLogItemInput, qa as UpdateStateExampleInput, qc as buildSignedAction, qi as SetModuleNameInput, ql as PHDocument, qn as MutationAddOperationErrorArgs, qo as ReorderModulesInputSchema, qr as PruneAction, qt as DocumentModelModuleAction, qu as Capability, ra as SetOperationErrorNameAction, rd as createAuthState, ri as RemoveRelationshipAction, rl as moveOperation, rn as DocumentModelStateOperations, ro as computeUpgradeTransitions, rr as MutationMoveOperationArgs, rs as SetModelIdInputSchema, rt as AddRelationshipActionInput, ru as diffOperations, sa as SetOperationNameAction, sd as createLocalState, si as ReorderModuleOperationsAction, sl as operationFromOperation, sn as DocumentOperationsIgnoreMap, so as AddOperationErrorInputSchema, sr as MutationReorderModuleOperationsArgs, ss as SetNameActionInputSchema, st as AssertIsStateOfType, su as garbageCollectDocumentOperations, ta as SetOperationErrorDescriptionAction, td as Principal, ti as ReducerOptions, tl as documentModelActions, tn as DocumentModelPHState, to as applyDeleteDocumentAction, tr as MutationDeleteStateExampleArgs, ts as SetModelDescriptionInputSchema, tt as AddOperationInput, tu as checkCleanedOperationsIntegrity, ua as SetOperationReducerInput, ud as defaultBaseState, ui as ReorderModulesInput, ul as redo, un as EditorDispatch, uo as AddStateExampleInputSchema, ur as MutationReorderOperationExamplesArgs, us as SetOperationErrorCodeInputSchema, ut as ConfigEntry, uu as groupOperationsByScope, va as SetPreferredEditorActionInput, vd as PHDocumentSignatureInfo, vi as RevisionsFilter, vl as setAuthorName, vn as IDocument, vo as DeleteOperationExampleInputSchema, vr as MutationSetModelNameArgs, vs as SetOperationTemplateInputSchema, vt as CreateDocumentActionInput, vu as merge, wa as Signal, wi as SchemaPruneAction, wl as setModelName, wn as InputMaybe, wo as DocumentSpecificationSchema, wr as MutationSetOperationErrorDescriptionArgs, ws as StateSchema, wt as DeleteDocumentAction, wu as readOnly, xa as SetStateSchemaInput, xd as deserializeSignature, xi as Scalars, xl as setModelDescription, xn as ISignalResult, xo as DocumentActionSchema, xr as MutationSetNameArgs, xs as SetStateSchemaInputSchema, xt as DeleteChangeLogItemInput, xu as parseResultingState, ya as SetPreferredEditorOperation, yd as Signature, yi as SaveToFile, yl as setAuthorWebsite, yn as IOperation, yo as DeleteOperationInputSchema, yr as MutationSetModuleDescriptionArgs, ys as SetPreferredEditorActionInputSchema, yt as CreateState, yu as nextSkipNumber, za as UndoRedoAction, zc as addChangeLogItem, zi as SetModelExtensionInput, zl as setStateSchema, zn as MinimalBackupData, zo as PruneSchema, zr as OperationSpecification, zt as DocumentModelDocumentModelModule, zu as loadStateOperation } from "../types-CpnWmiFY.js";
|
|
2
|
-
import { $ as getFileBrowser, $n as mentionedGroupIds, $t as documentModelInitialLocalState, A as documentModelVersioningReducer, An as InitializeAuthActionInputSchema, At as isDocumentModelDocument, B as createVerificationSigner, Bn as SetGrantActionInputSchema, Bt as buildOperationSignatureMessage, C as documentModelModuleReducer, Cn as AuthRefusal, Ct as BaseDocumentHeaderSchema, D as documentModelReducer, Dn as ConditionContext, Dt as DocumentModelSchema, E as documentModelOperationReducer, En as AuthVerb, Et as DocumentModelPHStateSchema, F as replayOperations, Fn as RemoveGrantAction, Ft as DOCUMENT_DELETED_REASON, G as baseLoadFromInput, Gn as applySetGrantAction, Gt as HASH_ALGORITHM_SHA1, H as validateHeader, Hn as applyInitializeAuthAction, Ht as getUnixTimestamp, I as updateDocument, In as RemoveGrantActionInput, It as isDenied, J as createMinimalZip, Jn as decide, Jt as HASH_ENCODING_BASE64, K as baseLoadFromInputVersioned, Kn as assertAuthPreservedOnDuplicate, Kt as HASH_ALGORITHM_SHA256, L as createPresignedHeader, Ln as RemoveGrantActionInputSchema, Lt as ab2hex, M as createReducer, Mn as MoveGrantAction, Mt as AUTH_DENIED_BY_GRANT_REASON, N as processUndoRedo, Nn as MoveGrantActionInput, Nt as AUTH_NO_GRANT_REASON, O as documentModelStateReducer, On as InitializeAuthAction, Ot as assertIsDocumentModelDocument, P as pruneOperation, Pn as MoveGrantActionInputSchema, Pt as AUTH_VERSION_UNSUPPORTED_REASON, Q as fetchFileBrowser, Qn as isDocumentCreator, Qt as documentModelInitialGlobalState, R as createSignedHeader, Rn as SetGrantAction, Rt as base58Decode, S as documentModelHeaderReducer, Sn as AuthEvaluation, St as groupMembershipActionTypes, T as documentModelOperationExampleReducer, Tn as AuthSubject, Tt as DocumentModelHeaderSchema, U as verify, Un as applyMoveGrantAction, Ut as hashBrowser, V as sign, Vn as applyAuthAction, Vt as buildOperationSignatureParams, W as BulkArchiveEntry, Wn as applyRemoveGrantAction, Wt as hex2ab, X as documentModelLoadFromInput, Xn as initializeAuth, Xt as documentModelFileExtension, Y as createZip, Yn as evaluate, Yt as HASH_ENCODING_HEX, Z as documentModelSaveToFileHandle, Zn as isAuthAction, Zt as documentModelGlobalState, _ as validateModuleOperation, _n as isPlainValue, _t as InvalidActionInputZodError, a as assertOperationErrorIdUnique, an as MAX_AUTH_GRANTS, ar as TransportActionContext, at as VersionedReducers, b as validateOperations, bn as AuthAction, bt as documentModelDocumentType, c as findModuleOrThrow, cn as MAX_CONDITION_NODES, ct as AuthActionNotAllowedError, d as findOperationOrThrow, dn as assertValidGrantUpsert, dt as AuthPolicyNotPreservedError, en as AuthAdministrationLockoutError, er as moveGrant, et as isDocumentZip, f as getAllOperationNames, fn as assertValidInitialGrants, ft as DowngradeNotSupportedError, g as validateModule, gn as grantProblem, gt as InvalidActionInputError, h as validateInitialState, hn as evaluateGrants, ht as HashMismatchError, i as assertModuleIdUnique, in as InvalidGrantError, ir as TransportAction, it as zipEntries, j as baseReducer, jn as MAX_SUPPORTED_AUTH_VERSION, jt as isDocumentModelState, k as documentModelStateSchemaReducer, kn as InitializeAuthActionInput, kt as assertIsDocumentModelState, l as findOperationErrorOrThrow, ln as assertAuthAdministrationRetained, lt as AuthAlreadyInitializedError, m as isValidOperationNameFormat, mn as evaluateGrantStack, mt as GrantNotFoundError, n as RESERVED_OPERATION_NAMES, nn as GrantSchema, nr as resolveSnapshotAuth, nt as readFileBrowser, o as assertOperationExampleIdUnique, on as MAX_CAPABILITY_OPERATIONS, or as TransportSigner, ot as VersionedReplayConfig, p as isReservedOperationName, pn as evaluateCondition, pt as FileSystemError, q as baseSaveToFileHandle, qn as assertAuthScopeActionAllowed, qt as HASH_ALGORITHM_SHA512, r as ReservedOperationName, rn as GroupPrincipalNotAllowedError, rr as setGrant, rt as writeFileBrowser, s as assertOperationIdUnique, sn as MAX_CONDITION_DEPTH, sr as toTransportAction, st as replayDocumentVersioned, t as OPERATION_NAME_PATTERN, tn as AuthAdministrationMissingError, tr as removeGrant, tt as parseBulkArchive, u as findOperationExampleOrThrow, un as assertValidGrant, ut as AuthInitializerNotCreatorError, v as validateModules, vn as referencedGroupIds, vt as InvalidAuthVersionError, w as documentModelOperationErrorReducer, wn as AuthRequest, wt as BaseDocumentStateSchema, x as validateStateSchemaName, xn as AuthDecision, xt as groupDocumentType, y as validateOperationName, yn as AUTH_ACTION_TYPES, yt as UnsupportedDocumentModelVersionError, z as createSignedHeaderForSigner, zn as SetGrantActionInput, zt as base64UrlToBytes } from "../index-
|
|
1
|
+
import { $ as AddOperationExampleAction, $a as UpgradeReducer, $c as deleteOperationExample, $i as SetOperationErrorCodeAction, $l as baseCreateDocument, $n as MutationDeleteOperationErrorArgs, $o as SetAuthorWebsiteInputSchema, $r as RedoActionInput, $t as DocumentModelOperationExampleOperations, $u as PHDocumentState, Aa as SigningParameters, Ai as SetAuthorNameAction, Al as setOperationErrorDescription, An as LoadStateActionInput, Ao as ModuleSchema, Ar as MutationSetOperationTemplateArgs, As as UpdateStateExampleInputSchema, At as DeleteOperationErrorInput, Au as sortMappedOperations, Ba as UpdateChangeLogItemAction, Bc as addModule, Bi as SetModelIdAction, Bl as undo, Bn as ModuleSpecification, Bo as PublisherSchema, Br as OperationsByScope, Bt as DocumentModelGlobalState, Bu as operationOutcome, Ca as Set_PreferredEditor, Ci as SchemaNOOPAction, Cl as setModelId, Cn as Incremental, Co as DocumentModelInputSchema, Cr as MutationSetOperationErrorCodeArgs, Cs as Set_PreferredEditorSchema, Ct as DeleteChildDocumentSignal, Cu as prepareOperations, Da as SignalResults, Di as SchemaSetPreferredEditorAction, Dl as setName, Dn as LoadFromFile, Do as LoadStateActionStateInputSchema, Dr as MutationSetOperationNameArgs, Ds as UndoSchema, Dt as DeleteModuleInput, Du as reshuffleByTimestamp, Ea as SignalResult, Ei as SchemaSetNameAction, El as setModuleName, En as IsStateOfType, Eo as LoadStateActionSchema, Er as MutationSetOperationErrorTemplateArgs, Es as UndoActionSchema, Et as DeleteModuleAction, Eu as replayDocument, Fa as SubgraphModule, Fc as actionContext, Fi as SetInitialStateInput, Fl as setOperationSchema, Fn as MakeOptional, Fo as PowerhouseModuleSchema, Fr as MutationUpdateStateExampleArgs, Ft as DeleteStateExampleInput, Fu as Operation, G as Actions, Ga as UpdateRelationshipActionInput, Gc as baseActions, Gi as SetModuleDescriptionInput, Gl as IntegrityIssueSubType, Gn as MutationAddModuleArgs, Go as ReorderChangeLogItemsInputSchema, Gr as PowerhouseModule, Gt as DocumentModelLocalState, Gu as undoOperationV2, H as ActionSignatureContext, Ha as UpdateOperationExampleAction, Hc as addOperationError, Hi as SetModelNameAction, Hl as updateOperationExample, Hn as MoveOperationInput, Ho as RedoActionInputSchema, Hr as PartialState, Ht as DocumentModelHeaderOperations, Hu as setNameOperation, Ia as Undo, Ic as actionFromAction, Ii as SetModelDescriptionAction, Il as setOperationScope, In as Manifest, Io as PowerhouseModulesSchema, Ir as NOOPAction, It as DocumentAction, Iu as OperationContext, J as AddModuleAction, Ja as UpgradeDocumentAction, Jc as createAction, Ji as SetNameAction, Jl as PHDocumentHeader, Jn as MutationAddOperationExampleArgs, Jo as ReorderOperationErrorsInputSchema, Jr as PruneActionInput, Jt as DocumentModelModuleOperations, Ju as Condition, K as AddChangeLogItemAction, Ka as UpdateStateExampleAction, Kc as buildOperationSignature, Ki as SetModuleNameAction, Kl as IntegrityIssueType, Kn as MutationAddOperationArgs, Ko as ReorderModuleOperationsInputSchema, Kr as Prune, Kt as DocumentModelModule, Ku as AuthGroups, La as UndoAction, Lc as actionSigner, Li as SetModelDescriptionInput, Ll as setOperationTemplate, Ln as MappedOperation, Lo as PruneActionInputSchema, Lr as OperationErrorSpecification, Lt as DocumentModelAction, Lu as OperationOutcome, Ma as SkipHeaderOperations, Mi as SetAuthorWebsiteAction, Ml as setOperationErrorTemplate, Mn as Load_State, Mo as OperationErrorSchema, Mr as MutationUndoArgs, Ms as isDefinedNonNullAny, Mt as DeleteOperationExampleInput, Mu as split, Na as State, Nc as Action, Ni as SetAuthorWebsiteInput, Nl as setOperationName, Nn as MakeEmpty, No as OperationScopeSchema, Nr as MutationUpdateChangeLogItemInputArgs, Nt as DeleteOperationInput, Nu as updateHeaderRevision, Oa as SignalType, Oi as SchemaUndoAction, Ol as setOperationDescription, On as LoadFromInput, Oo as Load_StateSchema, Or as MutationSetOperationReducerArgs, Os as UpdateChangeLogItemInputSchema, Ot as DeleteOperationAction, Ou as reshuffleByTimestampAndIndex, Pa as StateReducer, Pc as ActionContext, Pi as SetInitialStateAction, Pl as setOperationReducer, Pn as MakeMaybe, Po as OperationSpecificationSchema, Pr as MutationUpdateOperationExampleArgs, Pt as DeleteStateExampleAction, Pu as DocumentOperations, Q as AddOperationErrorInput, Qa as UpgradeManifest, Qc as deleteOperationError, Qi as SetOperationDescriptionInput, Ql as attachBranch, Qn as MutationDeleteOperationArgs, Qo as SetAuthorNameInputSchema, Qr as RedoAction, Qt as DocumentModelOperationExampleAction, Qu as PHBaseState, Ra as UndoActionInput, Rc as actions, Ri as SetModelExtensionAction, Rl as setPreferredEditor, Rn as Maybe, Ro as PruneActionSchema, Rr as OperationIndex, Rt as DocumentModelDocument, Ru as OperationWithContext, Sa as Set_Name, Sd as serializeSignature, Si as SchemaLoadStateAction, Sl as setModelExtension, Sn as ISigner, So as DocumentModelGlobalStateSchema, Sr as MutationSetOperationDescriptionArgs, Ss as Set_NameSchema, St as DeleteChildDocumentInput, Su as precedes, Ta as SignalDispatch, Ti as SchemaRedoAction, Tl as setModuleDescription, Tn as IsDocumentOfType, To as LoadStateActionInputSchema, Tr as MutationSetOperationErrorNameArgs, Ts as UndoActionInputSchema, Tt as DeleteDocumentActionInput, Tu as removeExistingOperations, U as ActionSigningHandler, Ua as UpdateOperationExampleInput, Uc as addOperationExample, Ui as SetModelNameInput, Ul as updateStateExample, Un as Mutation, Uo as RedoActionSchema, Ur as PhAiToolAnnotations, Ut as DocumentModelInput, Uu as setPreferredEditorOperation, V as ActionErrorCallback, Va as UpdateChangeLogItemInput, Vc as addOperation, Vi as SetModelIdInput, Vl as updateChangeLogItem, Vn as MoveOperationAction, Vo as PwaConfigSchema, Vr as PartialRecord, Vt as DocumentModelHeaderAction, Vu as redoOperation, W as ActionVerificationHandler, Wa as UpdateRelationshipAction, Wc as addStateExample, Wi as SetModuleDescriptionAction, Wl as verifyOperationSignature, Wn as MutationAddChangeLogItemInputArgs, Wo as RedoSchema, Wr as PhAiToolDescriptor, Wt as DocumentModelLib, Wu as undoOperation, X as AddOperationAction, Xa as User, Xc as deleteModule, Xi as SetNameOperation, Xl as addUndo, Xn as MutationDeleteChangeLogItemInputArgs, Xo as ReorderStateExamplesInputSchema, Xr as Query, Xt as DocumentModelOperationErrorAction, Xu as Operand, Y as AddModuleInput, Ya as UpgradeDocumentActionInput, Yc as deleteChangeLogItem, Yi as SetNameActionInput, Yl as PHDocumentMeta, Yn as MutationAddStateExampleArgs, Yo as ReorderOperationExamplesInputSchema, Yr as Publisher, Yt as DocumentModelOperationAction, Yu as Grant, Z as AddOperationErrorAction, Za as ValidationError, Zc as deleteOperation, Zi as SetOperationDescriptionAction, Zl as appendWithoutApplying, Zn as MutationDeleteModuleArgs, Zo as ScopeStateSchema, Zr as Redo, Zt as DocumentModelOperationErrorOperations, Zu as PHAuthState, _a as SetPreferredEditorAction, _d as HashConfig, _i as ReplayDocumentOptions, _l as reorderStateExamples, _n as ID, _o as DeleteOperationErrorInputSchema, _r as MutationSetModelIdArgs, _s as SetOperationScopeInputSchema, _t as CreateDocumentAction, _u as mapSkippedOperationsV2, aa as SetOperationErrorTemplateAction, ad as createDocumentState, ai as ReorderChangeLogItemsAction, al as operationExampleCreators, an as DocumentModelVersioningAction, ao as AddChangeLogItemInputSchema, ar as MutationRedoArgs, as as SetModuleDescriptionInputSchema, at as AddStateExampleInput, au as filterDuplicatedOperations, ba as SetStateSchemaAction, bd as UserActionSigner, bi as SaveToFileHandle, bl as setInitialState, bn as ISignal, bo as DeleteStateExampleInputSchema, br as MutationSetModuleNameArgs, bs as SetPreferredEditorActionSchema, bt as DeleteChangeLogItemAction, bu as operationsAreEqual, ca as SetOperationNameInput, cd as createState, ci as ReorderModuleOperationsInput, cl as operationWithContext, cn as DocumentSpecification, co as AddOperationExampleInputSchema, cr as MutationReorderModulesArgs, cs as SetNameActionSchema, ct as Author, cu as garbageCollectV2, da as SetOperationSchemaAction, dd as defaultDocumentState, di as ReorderOperationErrorsAction, dl as releaseNewVersion, dn as EditorModule, do as AuthorSchema, dr as MutationReorderStateExamplesArgs, ds as SetOperationErrorDescriptionInputSchema, dt as ConfigEntryType, du as hashDocumentStateForScope, ea as SetOperationErrorCodeInput, ed as PHGroupState, ei as Reducer, el as deleteStateExample, en as DocumentModelOperationOperations, eo as UpgradeTransition, er as MutationDeleteOperationExampleArgs, es as SetInitialStateInputSchema, et as AddOperationExampleInput, eu as baseReducerVersion, fa as SetOperationSchemaInput, fd as defaultGlobalState, fi as ReorderOperationErrorsInput, fl as reorderChangeLogItems, fn as EditorProps, fo as CodeExampleSchema, fr as MutationSetAuthorNameArgs, fs as SetOperationErrorNameInputSchema, ft as CopyChildDocumentInput, fu as isDocumentAction, ga as SetOperationTemplateInput, gd as AppActionSigner, gi as ReorderStateExamplesInput, gl as reorderOperationExamples, gn as IAction, go as DeleteModuleInputSchema, gr as MutationSetModelExtensionArgs, gs as SetOperationSchemaInputSchema, gt as CreateDocument, gu as mapSkippedOperations, ha as SetOperationTemplateAction, hd as ActionSigner, hi as ReorderStateExamplesAction, hl as reorderOperationErrors, hn as GetDocumentOptions, ho as DeleteChangeLogItemInputSchema, hr as MutationSetModelDescriptionArgs, hs as SetOperationReducerInputSchema, ht as CreateChildDocumentSignal, hu as isUndoRedo, ia as SetOperationErrorNameInput, id as createBaseState, ii as RemoveRelationshipActionInput, il as noop, in as DocumentModelUtils, io as normalizeDocumentModelVersion, ir as MutationPruneArgs, is as SetModelNameInputSchema, it as AddStateExampleAction, iu as filterDocumentOperationsResultingState, ja as SkipHeaderOperationIndex, ji as SetAuthorNameInput, jl as setOperationErrorName, jn as LoadStateActionStateInput, jo as MoveOperationInputSchema, jr as MutationSetStateSchemaArgs, js as definedNonNullAnySchema, jt as DeleteOperationExampleAction, ju as sortOperations, ka as SignatureVerificationHandler, ki as ScopeState, kl as setOperationErrorCode, kn as LoadStateAction, ko as ManifestSchema, kr as MutationSetOperationSchemaArgs, ks as UpdateOperationExampleInputSchema, kt as DeleteOperationErrorAction, ku as skipHeaderOperations, la as SetOperationReducerAction, ld as defaultAuthState, li as ReorderModulesAction, ll as prune, ln as ENSInfo, lo as AddOperationInputSchema, lr as MutationReorderOperationErrorsArgs, ls as SetOperationDescriptionInputSchema, lt as CodeExample, lu as getDocumentLastModified, ma as SetOperationScopeInput, md as defaultPHState, mi as ReorderOperationExamplesInput, ml as reorderModules, mn as FileInput, mo as ConfigEntryTypeSchema, mr as MutationSetInitialStateArgs, ms as SetOperationNameInputSchema, mt as CreateChildDocumentInput, mu as isUndo, na as SetOperationErrorDescriptionInput, nd as backfillAuthState, ni as ReleaseNewVersionAction, nl as loadState, nn as DocumentModelStateAction, no as applyUpgradeDocumentAction, nr as MutationLoadStateArgs, ns as SetModelExtensionInputSchema, nt as AddRelationshipAction, nu as checkOperationsIntegrity, oa as SetOperationErrorTemplateInput, od as createGlobalState, oi as ReorderChangeLogItemsInput, ol as operationFromAction, on as DocumentModelVersioningOperations, oo as AddModuleInputSchema, or as MutationReorderChangeLogItemsInputArgs, os as SetModuleNameInputSchema, ot as AssertIsDocumentOfType, ou as garbageCollect, pa as SetOperationScopeAction, pd as defaultLocalState, pi as ReorderOperationExamplesAction, pl as reorderModuleOperations, pn as Exact, po as ConfigEntrySchema, pr as MutationSetAuthorWebsiteArgs, ps as SetOperationErrorTemplateInputSchema, pt as CopyChildDocumentSignal, pu as isNoopOperation, q as AddChangeLogItemInput, qa as UpdateStateExampleInput, qc as buildSignedAction, qi as SetModuleNameInput, ql as PHDocument, qn as MutationAddOperationErrorArgs, qo as ReorderModulesInputSchema, qr as PruneAction, qt as DocumentModelModuleAction, qu as Capability, ra as SetOperationErrorNameAction, rd as createAuthState, ri as RemoveRelationshipAction, rl as moveOperation, rn as DocumentModelStateOperations, ro as computeUpgradeTransitions, rr as MutationMoveOperationArgs, rs as SetModelIdInputSchema, rt as AddRelationshipActionInput, ru as diffOperations, sa as SetOperationNameAction, sd as createLocalState, si as ReorderModuleOperationsAction, sl as operationFromOperation, sn as DocumentOperationsIgnoreMap, so as AddOperationErrorInputSchema, sr as MutationReorderModuleOperationsArgs, ss as SetNameActionInputSchema, st as AssertIsStateOfType, su as garbageCollectDocumentOperations, ta as SetOperationErrorDescriptionAction, td as Principal, ti as ReducerOptions, tl as documentModelActions, tn as DocumentModelPHState, to as applyDeleteDocumentAction, tr as MutationDeleteStateExampleArgs, ts as SetModelDescriptionInputSchema, tt as AddOperationInput, tu as checkCleanedOperationsIntegrity, ua as SetOperationReducerInput, ud as defaultBaseState, ui as ReorderModulesInput, ul as redo, un as EditorDispatch, uo as AddStateExampleInputSchema, ur as MutationReorderOperationExamplesArgs, us as SetOperationErrorCodeInputSchema, ut as ConfigEntry, uu as groupOperationsByScope, va as SetPreferredEditorActionInput, vd as PHDocumentSignatureInfo, vi as RevisionsFilter, vl as setAuthorName, vn as IDocument, vo as DeleteOperationExampleInputSchema, vr as MutationSetModelNameArgs, vs as SetOperationTemplateInputSchema, vt as CreateDocumentActionInput, vu as merge, wa as Signal, wi as SchemaPruneAction, wl as setModelName, wn as InputMaybe, wo as DocumentSpecificationSchema, wr as MutationSetOperationErrorDescriptionArgs, ws as StateSchema, wt as DeleteDocumentAction, wu as readOnly, xa as SetStateSchemaInput, xd as deserializeSignature, xi as Scalars, xl as setModelDescription, xn as ISignalResult, xo as DocumentActionSchema, xr as MutationSetNameArgs, xs as SetStateSchemaInputSchema, xt as DeleteChangeLogItemInput, xu as parseResultingState, ya as SetPreferredEditorOperation, yd as Signature, yi as SaveToFile, yl as setAuthorWebsite, yn as IOperation, yo as DeleteOperationInputSchema, yr as MutationSetModuleDescriptionArgs, ys as SetPreferredEditorActionInputSchema, yt as CreateState, yu as nextSkipNumber, za as UndoRedoAction, zc as addChangeLogItem, zi as SetModelExtensionInput, zl as setStateSchema, zn as MinimalBackupData, zo as PruneSchema, zr as OperationSpecification, zt as DocumentModelDocumentModelModule, zu as loadStateOperation } from "../types-BIoOWpOT.js";
|
|
2
|
+
import { $ as getFileBrowser, $n as mentionedGroupIds, $t as documentModelInitialLocalState, A as documentModelVersioningReducer, An as InitializeAuthActionInputSchema, At as isDocumentModelDocument, B as createVerificationSigner, Bn as SetGrantActionInputSchema, Bt as buildOperationSignatureMessage, C as documentModelModuleReducer, Cn as AuthRefusal, Ct as BaseDocumentHeaderSchema, D as documentModelReducer, Dn as ConditionContext, Dt as DocumentModelSchema, E as documentModelOperationReducer, En as AuthVerb, Et as DocumentModelPHStateSchema, F as replayOperations, Fn as RemoveGrantAction, Ft as DOCUMENT_DELETED_REASON, G as baseLoadFromInput, Gn as applySetGrantAction, Gt as HASH_ALGORITHM_SHA1, H as validateHeader, Hn as applyInitializeAuthAction, Ht as getUnixTimestamp, I as updateDocument, In as RemoveGrantActionInput, It as isDenied, J as createMinimalZip, Jn as decide, Jt as HASH_ENCODING_BASE64, K as baseLoadFromInputVersioned, Kn as assertAuthPreservedOnDuplicate, Kt as HASH_ALGORITHM_SHA256, L as createPresignedHeader, Ln as RemoveGrantActionInputSchema, Lt as ab2hex, M as createReducer, Mn as MoveGrantAction, Mt as AUTH_DENIED_BY_GRANT_REASON, N as processUndoRedo, Nn as MoveGrantActionInput, Nt as AUTH_NO_GRANT_REASON, O as documentModelStateReducer, On as InitializeAuthAction, Ot as assertIsDocumentModelDocument, P as pruneOperation, Pn as MoveGrantActionInputSchema, Pt as AUTH_VERSION_UNSUPPORTED_REASON, Q as fetchFileBrowser, Qn as isDocumentCreator, Qt as documentModelInitialGlobalState, R as createSignedHeader, Rn as SetGrantAction, Rt as base58Decode, S as documentModelHeaderReducer, Sn as AuthEvaluation, St as groupMembershipActionTypes, T as documentModelOperationExampleReducer, Tn as AuthSubject, Tt as DocumentModelHeaderSchema, U as verify, Un as applyMoveGrantAction, Ut as hashBrowser, V as sign, Vn as applyAuthAction, Vt as buildOperationSignatureParams, W as BulkArchiveEntry, Wn as applyRemoveGrantAction, Wt as hex2ab, X as documentModelLoadFromInput, Xn as initializeAuth, Xt as documentModelFileExtension, Y as createZip, Yn as evaluate, Yt as HASH_ENCODING_HEX, Z as documentModelSaveToFileHandle, Zn as isAuthAction, Zt as documentModelGlobalState, _ as validateModuleOperation, _n as isPlainValue, _t as InvalidActionInputZodError, a as assertOperationErrorIdUnique, an as MAX_AUTH_GRANTS, ar as TransportActionContext, at as VersionedReducers, b as validateOperations, bn as AuthAction, bt as documentModelDocumentType, c as findModuleOrThrow, cn as MAX_CONDITION_NODES, ct as AuthActionNotAllowedError, d as findOperationOrThrow, dn as assertValidGrantUpsert, dt as AuthPolicyNotPreservedError, en as AuthAdministrationLockoutError, er as moveGrant, et as isDocumentZip, f as getAllOperationNames, fn as assertValidInitialGrants, ft as DowngradeNotSupportedError, g as validateModule, gn as grantProblem, gt as InvalidActionInputError, h as validateInitialState, hn as evaluateGrants, ht as HashMismatchError, i as assertModuleIdUnique, in as InvalidGrantError, ir as TransportAction, it as zipEntries, j as baseReducer, jn as MAX_SUPPORTED_AUTH_VERSION, jt as isDocumentModelState, k as documentModelStateSchemaReducer, kn as InitializeAuthActionInput, kt as assertIsDocumentModelState, l as findOperationErrorOrThrow, ln as assertAuthAdministrationRetained, lt as AuthAlreadyInitializedError, m as isValidOperationNameFormat, mn as evaluateGrantStack, mt as GrantNotFoundError, n as RESERVED_OPERATION_NAMES, nn as GrantSchema, nr as resolveSnapshotAuth, nt as readFileBrowser, o as assertOperationExampleIdUnique, on as MAX_CAPABILITY_OPERATIONS, or as TransportSigner, ot as VersionedReplayConfig, p as isReservedOperationName, pn as evaluateCondition, pt as FileSystemError, q as baseSaveToFileHandle, qn as assertAuthScopeActionAllowed, qt as HASH_ALGORITHM_SHA512, r as ReservedOperationName, rn as GroupPrincipalNotAllowedError, rr as setGrant, rt as writeFileBrowser, s as assertOperationIdUnique, sn as MAX_CONDITION_DEPTH, sr as toTransportAction, st as replayDocumentVersioned, t as OPERATION_NAME_PATTERN, tn as AuthAdministrationMissingError, tr as removeGrant, tt as parseBulkArchive, u as findOperationExampleOrThrow, un as assertValidGrant, ut as AuthInitializerNotCreatorError, v as validateModules, vn as referencedGroupIds, vt as InvalidAuthVersionError, w as documentModelOperationErrorReducer, wn as AuthRequest, wt as BaseDocumentStateSchema, x as validateStateSchemaName, xn as AuthDecision, xt as groupDocumentType, y as validateOperationName, yn as AUTH_ACTION_TYPES, yt as UnsupportedDocumentModelVersionError, z as createSignedHeaderForSigner, zn as SetGrantActionInput, zt as base64UrlToBytes } from "../index-DP3QgHTq.js";
|
|
3
3
|
import { n as generateId, r as generateMock, t as deriveOperationId } from "../utils-DP122OSS.js";
|
|
4
4
|
export { AUTH_ACTION_TYPES, AUTH_DENIED_BY_GRANT_REASON, AUTH_NO_GRANT_REASON, AUTH_VERSION_UNSUPPORTED_REASON, Action, ActionContext, ActionErrorCallback, ActionSignatureContext, ActionSigner, ActionSigningHandler, ActionVerificationHandler, Actions, AddChangeLogItemAction, AddChangeLogItemInput, AddChangeLogItemInputSchema, AddModuleAction, AddModuleInput, AddModuleInputSchema, AddOperationAction, AddOperationErrorAction, AddOperationErrorInput, AddOperationErrorInputSchema, AddOperationExampleAction, AddOperationExampleInput, AddOperationExampleInputSchema, AddOperationInput, AddOperationInputSchema, AddRelationshipAction, AddRelationshipActionInput, AddStateExampleAction, AddStateExampleInput, AddStateExampleInputSchema, AppActionSigner, AssertIsDocumentOfType, AssertIsStateOfType, AuthAction, AuthActionNotAllowedError, AuthAdministrationLockoutError, AuthAdministrationMissingError, AuthAlreadyInitializedError, AuthDecision, AuthEvaluation, AuthGroups, AuthInitializerNotCreatorError, AuthPolicyNotPreservedError, AuthRefusal, AuthRequest, AuthSubject, AuthVerb, Author, AuthorSchema, BaseDocumentHeaderSchema, BaseDocumentStateSchema, BulkArchiveEntry, Capability, CodeExample, CodeExampleSchema, Condition, ConditionContext, ConfigEntry, ConfigEntrySchema, ConfigEntryType, ConfigEntryTypeSchema, CopyChildDocumentInput, CopyChildDocumentSignal, CreateChildDocumentInput, CreateChildDocumentSignal, CreateDocument, CreateDocumentAction, CreateDocumentActionInput, CreateState, DOCUMENT_DELETED_REASON, DeleteChangeLogItemAction, DeleteChangeLogItemInput, DeleteChangeLogItemInputSchema, DeleteChildDocumentInput, DeleteChildDocumentSignal, DeleteDocumentAction, DeleteDocumentActionInput, DeleteModuleAction, DeleteModuleInput, DeleteModuleInputSchema, DeleteOperationAction, DeleteOperationErrorAction, DeleteOperationErrorInput, DeleteOperationErrorInputSchema, DeleteOperationExampleAction, DeleteOperationExampleInput, DeleteOperationExampleInputSchema, DeleteOperationInput, DeleteOperationInputSchema, DeleteStateExampleAction, DeleteStateExampleInput, DeleteStateExampleInputSchema, DocumentAction, DocumentActionSchema, DocumentModelAction, DocumentModelDocument, DocumentModelDocumentModelModule, DocumentModelGlobalState, DocumentModelGlobalStateSchema, DocumentModelHeaderAction, DocumentModelHeaderOperations, DocumentModelHeaderSchema, DocumentModelInput, DocumentModelInputSchema, DocumentModelLib, DocumentModelLocalState, DocumentModelModule, DocumentModelModuleAction, DocumentModelModuleOperations, DocumentModelOperationAction, DocumentModelOperationErrorAction, DocumentModelOperationErrorOperations, DocumentModelOperationExampleAction, DocumentModelOperationExampleOperations, DocumentModelOperationOperations, DocumentModelPHState, DocumentModelPHStateSchema, DocumentModelSchema, DocumentModelStateAction, DocumentModelStateOperations, DocumentModelUtils, DocumentModelVersioningAction, DocumentModelVersioningOperations, DocumentOperations, DocumentOperationsIgnoreMap, DocumentSpecification, DocumentSpecificationSchema, DowngradeNotSupportedError, ENSInfo, EditorDispatch, EditorModule, EditorProps, Exact, FileInput, FileSystemError, GetDocumentOptions, Grant, GrantNotFoundError, GrantSchema, GroupPrincipalNotAllowedError, HASH_ALGORITHM_SHA1, HASH_ALGORITHM_SHA256, HASH_ALGORITHM_SHA512, HASH_ENCODING_BASE64, HASH_ENCODING_HEX, HashConfig, HashMismatchError, IAction, ID, IDocument, IOperation, ISignal, ISignalResult, ISigner, Incremental, InitializeAuthAction, InitializeAuthActionInput, InitializeAuthActionInputSchema, InputMaybe, IntegrityIssueSubType, IntegrityIssueType, InvalidActionInputError, InvalidActionInputZodError, InvalidAuthVersionError, InvalidGrantError, IsDocumentOfType, IsStateOfType, LoadFromFile, LoadFromInput, LoadStateAction, LoadStateActionInput, LoadStateActionInputSchema, LoadStateActionSchema, LoadStateActionStateInput, LoadStateActionStateInputSchema, Load_State, Load_StateSchema, MAX_AUTH_GRANTS, MAX_CAPABILITY_OPERATIONS, MAX_CONDITION_DEPTH, MAX_CONDITION_NODES, MAX_SUPPORTED_AUTH_VERSION, MakeEmpty, MakeMaybe, MakeOptional, Manifest, ManifestSchema, MappedOperation, Maybe, MinimalBackupData, ModuleSchema, ModuleSpecification, MoveGrantAction, MoveGrantActionInput, MoveGrantActionInputSchema, MoveOperationAction, MoveOperationInput, MoveOperationInputSchema, Mutation, MutationAddChangeLogItemInputArgs, MutationAddModuleArgs, MutationAddOperationArgs, MutationAddOperationErrorArgs, MutationAddOperationExampleArgs, MutationAddStateExampleArgs, MutationDeleteChangeLogItemInputArgs, MutationDeleteModuleArgs, MutationDeleteOperationArgs, MutationDeleteOperationErrorArgs, MutationDeleteOperationExampleArgs, MutationDeleteStateExampleArgs, MutationLoadStateArgs, MutationMoveOperationArgs, MutationPruneArgs, MutationRedoArgs, MutationReorderChangeLogItemsInputArgs, MutationReorderModuleOperationsArgs, MutationReorderModulesArgs, MutationReorderOperationErrorsArgs, MutationReorderOperationExamplesArgs, MutationReorderStateExamplesArgs, MutationSetAuthorNameArgs, MutationSetAuthorWebsiteArgs, MutationSetInitialStateArgs, MutationSetModelDescriptionArgs, MutationSetModelExtensionArgs, MutationSetModelIdArgs, MutationSetModelNameArgs, MutationSetModuleDescriptionArgs, MutationSetModuleNameArgs, MutationSetNameArgs, MutationSetOperationDescriptionArgs, MutationSetOperationErrorCodeArgs, MutationSetOperationErrorDescriptionArgs, MutationSetOperationErrorNameArgs, MutationSetOperationErrorTemplateArgs, MutationSetOperationNameArgs, MutationSetOperationReducerArgs, MutationSetOperationSchemaArgs, MutationSetOperationTemplateArgs, MutationSetStateSchemaArgs, MutationUndoArgs, MutationUpdateChangeLogItemInputArgs, MutationUpdateOperationExampleArgs, MutationUpdateStateExampleArgs, NOOPAction, OPERATION_NAME_PATTERN, Operand, Operation, OperationContext, OperationErrorSchema, OperationErrorSpecification, OperationIndex, OperationOutcome, OperationScopeSchema, OperationSpecification, OperationSpecificationSchema, OperationWithContext, OperationsByScope, PHAuthState, PHBaseState, PHDocument, PHDocumentHeader, PHDocumentMeta, PHDocumentSignatureInfo, PHDocumentState, PHGroupState, PartialRecord, PartialState, PhAiToolAnnotations, PhAiToolDescriptor, PowerhouseModule, PowerhouseModuleSchema, PowerhouseModulesSchema, Principal, Prune, PruneAction, PruneActionInput, PruneActionInputSchema, PruneActionSchema, PruneSchema, Publisher, PublisherSchema, PwaConfigSchema, Query, RESERVED_OPERATION_NAMES, Redo, RedoAction, RedoActionInput, RedoActionInputSchema, RedoActionSchema, RedoSchema, Reducer, ReducerOptions, ReleaseNewVersionAction, RemoveGrantAction, RemoveGrantActionInput, RemoveGrantActionInputSchema, RemoveRelationshipAction, RemoveRelationshipActionInput, ReorderChangeLogItemsAction, ReorderChangeLogItemsInput, ReorderChangeLogItemsInputSchema, ReorderModuleOperationsAction, ReorderModuleOperationsInput, ReorderModuleOperationsInputSchema, ReorderModulesAction, ReorderModulesInput, ReorderModulesInputSchema, ReorderOperationErrorsAction, ReorderOperationErrorsInput, ReorderOperationErrorsInputSchema, ReorderOperationExamplesAction, ReorderOperationExamplesInput, ReorderOperationExamplesInputSchema, ReorderStateExamplesAction, ReorderStateExamplesInput, ReorderStateExamplesInputSchema, ReplayDocumentOptions, ReservedOperationName, RevisionsFilter, SaveToFile, SaveToFileHandle, Scalars, SchemaLoadStateAction, SchemaNOOPAction, SchemaPruneAction, SchemaRedoAction, SchemaSetNameAction, SchemaSetPreferredEditorAction, SchemaUndoAction, ScopeState, ScopeStateSchema, SetAuthorNameAction, SetAuthorNameInput, SetAuthorNameInputSchema, SetAuthorWebsiteAction, SetAuthorWebsiteInput, SetAuthorWebsiteInputSchema, SetGrantAction, SetGrantActionInput, SetGrantActionInputSchema, SetInitialStateAction, SetInitialStateInput, SetInitialStateInputSchema, SetModelDescriptionAction, SetModelDescriptionInput, SetModelDescriptionInputSchema, SetModelExtensionAction, SetModelExtensionInput, SetModelExtensionInputSchema, SetModelIdAction, SetModelIdInput, SetModelIdInputSchema, SetModelNameAction, SetModelNameInput, SetModelNameInputSchema, SetModuleDescriptionAction, SetModuleDescriptionInput, SetModuleDescriptionInputSchema, SetModuleNameAction, SetModuleNameInput, SetModuleNameInputSchema, SetNameAction, SetNameActionInput, SetNameActionInputSchema, SetNameActionSchema, SetNameOperation, SetOperationDescriptionAction, SetOperationDescriptionInput, SetOperationDescriptionInputSchema, SetOperationErrorCodeAction, SetOperationErrorCodeInput, SetOperationErrorCodeInputSchema, SetOperationErrorDescriptionAction, SetOperationErrorDescriptionInput, SetOperationErrorDescriptionInputSchema, SetOperationErrorNameAction, SetOperationErrorNameInput, SetOperationErrorNameInputSchema, SetOperationErrorTemplateAction, SetOperationErrorTemplateInput, SetOperationErrorTemplateInputSchema, SetOperationNameAction, SetOperationNameInput, SetOperationNameInputSchema, SetOperationReducerAction, SetOperationReducerInput, SetOperationReducerInputSchema, SetOperationSchemaAction, SetOperationSchemaInput, SetOperationSchemaInputSchema, SetOperationScopeAction, SetOperationScopeInput, SetOperationScopeInputSchema, SetOperationTemplateAction, SetOperationTemplateInput, SetOperationTemplateInputSchema, SetPreferredEditorAction, SetPreferredEditorActionInput, SetPreferredEditorActionInputSchema, SetPreferredEditorActionSchema, SetPreferredEditorOperation, SetStateSchemaAction, SetStateSchemaInput, SetStateSchemaInputSchema, Set_Name, Set_NameSchema, Set_PreferredEditor, Set_PreferredEditorSchema, Signal, SignalDispatch, SignalResult, SignalResults, SignalType, Signature, SignatureVerificationHandler, SigningParameters, SkipHeaderOperationIndex, SkipHeaderOperations, State, StateReducer, StateSchema, SubgraphModule, TransportAction, TransportActionContext, TransportSigner, Undo, UndoAction, UndoActionInput, UndoActionInputSchema, UndoActionSchema, UndoRedoAction, UndoSchema, UnsupportedDocumentModelVersionError, UpdateChangeLogItemAction, UpdateChangeLogItemInput, UpdateChangeLogItemInputSchema, UpdateOperationExampleAction, UpdateOperationExampleInput, UpdateOperationExampleInputSchema, UpdateRelationshipAction, UpdateRelationshipActionInput, UpdateStateExampleAction, UpdateStateExampleInput, UpdateStateExampleInputSchema, UpgradeDocumentAction, UpgradeDocumentActionInput, UpgradeManifest, UpgradeReducer, UpgradeTransition, User, UserActionSigner, ValidationError, VersionedReducers, VersionedReplayConfig, ab2hex, actionContext, actionFromAction, actionSigner, actions, addChangeLogItem, addModule, addOperation, addOperationError, addOperationExample, addStateExample, addUndo, appendWithoutApplying, applyAuthAction, applyDeleteDocumentAction, applyInitializeAuthAction, applyMoveGrantAction, applyRemoveGrantAction, applySetGrantAction, applyUpgradeDocumentAction, assertAuthAdministrationRetained, assertAuthPreservedOnDuplicate, assertAuthScopeActionAllowed, assertIsDocumentModelDocument, assertIsDocumentModelState, assertModuleIdUnique, assertOperationErrorIdUnique, assertOperationExampleIdUnique, assertOperationIdUnique, assertValidGrant, assertValidGrantUpsert, assertValidInitialGrants, attachBranch, backfillAuthState, base58Decode, base64UrlToBytes, baseActions, baseCreateDocument, baseLoadFromInput, baseLoadFromInputVersioned, baseReducer, baseReducerVersion, baseSaveToFileHandle, buildOperationSignature, buildOperationSignatureMessage, buildOperationSignatureParams, buildSignedAction, checkCleanedOperationsIntegrity, checkOperationsIntegrity, computeUpgradeTransitions, createAction, createAuthState, createBaseState, createDocumentState, createGlobalState, createLocalState, createMinimalZip, createPresignedHeader, createReducer, createSignedHeader, createSignedHeaderForSigner, createState, createVerificationSigner, createZip, decide, defaultAuthState, defaultBaseState, defaultDocumentState, defaultGlobalState, defaultLocalState, defaultPHState, definedNonNullAnySchema, deleteChangeLogItem, deleteModule, deleteOperation, deleteOperationError, deleteOperationExample, deleteStateExample, deriveOperationId, deserializeSignature, diffOperations, documentModelActions, documentModelDocumentType, documentModelFileExtension, documentModelGlobalState, documentModelHeaderReducer, documentModelInitialGlobalState, documentModelInitialLocalState, documentModelLoadFromInput, documentModelModuleReducer, documentModelOperationErrorReducer, documentModelOperationExampleReducer, documentModelOperationReducer, documentModelReducer, documentModelSaveToFileHandle, documentModelStateReducer, documentModelStateSchemaReducer, documentModelVersioningReducer, evaluate, evaluateCondition, evaluateGrantStack, evaluateGrants, fetchFileBrowser, filterDocumentOperationsResultingState, filterDuplicatedOperations, findModuleOrThrow, findOperationErrorOrThrow, findOperationExampleOrThrow, findOperationOrThrow, garbageCollect, garbageCollectDocumentOperations, garbageCollectV2, generateId, generateMock, getAllOperationNames, getDocumentLastModified, getFileBrowser, getUnixTimestamp, grantProblem, groupDocumentType, groupMembershipActionTypes, groupOperationsByScope, hashBrowser, hashDocumentStateForScope, hex2ab, initializeAuth, isAuthAction, isDefinedNonNullAny, isDenied, isDocumentAction, isDocumentCreator, isDocumentModelDocument, isDocumentModelState, isDocumentZip, isNoopOperation, isPlainValue, isReservedOperationName, isUndo, isUndoRedo, isValidOperationNameFormat, loadState, loadStateOperation, mapSkippedOperations, mapSkippedOperationsV2, mentionedGroupIds, merge, moveGrant, moveOperation, nextSkipNumber, noop, normalizeDocumentModelVersion, operationExampleCreators, operationFromAction, operationFromOperation, operationOutcome, operationWithContext, operationsAreEqual, parseBulkArchive, parseResultingState, precedes, prepareOperations, processUndoRedo, prune, pruneOperation, readFileBrowser, readOnly, redo, redoOperation, referencedGroupIds, releaseNewVersion, removeExistingOperations, removeGrant, reorderChangeLogItems, reorderModuleOperations, reorderModules, reorderOperationErrors, reorderOperationExamples, reorderStateExamples, replayDocument, replayDocumentVersioned, replayOperations, reshuffleByTimestamp, reshuffleByTimestampAndIndex, resolveSnapshotAuth, serializeSignature, setAuthorName, setAuthorWebsite, setGrant, setInitialState, setModelDescription, setModelExtension, setModelId, setModelName, setModuleDescription, setModuleName, setName, setNameOperation, setOperationDescription, setOperationErrorCode, setOperationErrorDescription, setOperationErrorName, setOperationErrorTemplate, setOperationName, setOperationReducer, setOperationSchema, setOperationScope, setOperationTemplate, setPreferredEditor, setPreferredEditorOperation, setStateSchema, sign, skipHeaderOperations, sortMappedOperations, sortOperations, split, toTransportAction, undo, undoOperation, undoOperationV2, updateChangeLogItem, updateDocument, updateHeaderRevision, updateOperationExample, updateStateExample, validateHeader, validateInitialState, validateModule, validateModuleOperation, validateModules, validateOperationName, validateOperations, validateStateSchemaName, verify, verifyOperationSignature, writeFileBrowser, zipEntries };
|
|
@@ -835,6 +835,7 @@ const ManifestSchema = z.object({
|
|
|
835
835
|
editors: PowerhouseModulesSchema,
|
|
836
836
|
processors: PowerhouseModulesSchema,
|
|
837
837
|
subgraphs: PowerhouseModulesSchema,
|
|
838
|
+
pieces: PowerhouseModulesSchema,
|
|
838
839
|
config: z.array(ConfigEntrySchema).optional(),
|
|
839
840
|
pwa: PwaConfigSchema.optional()
|
|
840
841
|
});
|