@powerhousedao/shared 6.2.2-dev.82 → 6.2.2-dev.84

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.
Files changed (31) hide show
  1. package/dist/clis/args/{common-zPBoTNJF.d.mts → common-Dsf1vpHV.d.mts} +3 -3
  2. package/dist/clis/args/{common-zPBoTNJF.d.mts.map → common-Dsf1vpHV.d.mts.map} +1 -1
  3. package/dist/clis/args/common.d.mts +1 -1
  4. package/dist/clis/args/index.d.mts +1 -1
  5. package/dist/clis/constants.d.mts +9 -1
  6. package/dist/clis/constants.d.mts.map +1 -1
  7. package/dist/clis/index.d.mts +49 -15
  8. package/dist/clis/index.d.mts.map +1 -1
  9. package/dist/clis/index.mjs +23 -3
  10. package/dist/clis/index.mjs.map +1 -1
  11. package/dist/connect/config-loader.d.ts +1 -1
  12. package/dist/connect/index.d.ts +40 -14
  13. package/dist/connect/index.js +23 -3
  14. package/dist/connect/index.js.map +1 -1
  15. package/dist/document-drive/index.d.ts +2 -2
  16. package/dist/document-drive/index.js +3 -3
  17. package/dist/document-drive/index.js.map +1 -1
  18. package/dist/document-model/index.d.ts +3 -3
  19. package/dist/document-model/index.js +37 -1
  20. package/dist/document-model/index.js.map +1 -1
  21. package/dist/{index-h-fhfCG7.d.ts → index-DPuio_se.d.ts} +25 -3
  22. package/dist/{index-h-fhfCG7.d.ts.map → index-DPuio_se.d.ts.map} +1 -1
  23. package/dist/index.d.ts +3 -3
  24. package/dist/processors/index.d.ts +1 -1
  25. package/dist/registry/index.d.ts +2 -2
  26. package/dist/registry/manifest-slim.d.ts +1 -1
  27. package/dist/{types-ByzmqLEu.d.ts → types-BBUlASQ7.d.ts} +3 -3
  28. package/dist/{types-ByzmqLEu.d.ts.map → types-BBUlASQ7.d.ts.map} +1 -1
  29. package/dist/{types-DBj2HxyL.d.ts → types-BzWRXB7f.d.ts} +11 -3
  30. package/dist/{types-DBj2HxyL.d.ts.map → types-BzWRXB7f.d.ts.map} +1 -1
  31. package/package.json +1 -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(),\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;\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\";\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,4 +1,4 @@
1
- import { $ as AddOperationInput, $a as applyDeleteDocumentAction, $c as setOperationDescription, $i as SetOperationErrorDescriptionAction, $l as reshuffleByTimestampAndIndex, $n as MutationDeleteStateExampleArgs, $o as SetModelDescriptionInputSchema, $r as ReducerOptions, $t as DocumentModelPHState, Aa as SkipHeaderOperations, Ac as operationExampleCreators, Ai as SetAuthorWebsiteAction, Al as filterDuplicatedOperations, An as Load_State, Ao as OperationErrorSchema, Ar as MutationUndoArgs, As as isDefinedNonNullAny, At as DeleteOperationExampleInput, Au as createDocumentState, B as ActionSignatureContext, Ba as UpdateOperationExampleAction, Bc as reorderOperationErrors, Bi as SetModelNameAction, Bl as isUndoRedo, Bn as MoveOperationInput, Bo as RedoActionInputSchema, Br as PartialState, Bt as DocumentModelHeaderOperations, Bu as ActionSigner, Ca as SignalDispatch, Cc as deleteOperationError, Ci as SchemaRedoAction, Cl as attachBranch, Cn as IsDocumentOfType, Co as LoadStateActionInputSchema, Cr as MutationSetOperationErrorNameArgs, Cs as UndoActionInputSchema, Ct as DeleteDocumentActionInput, Cu as PHBaseState, Da as SignatureVerificationHandler, Dc as loadState, Di as ScopeState, Dl as checkOperationsIntegrity, Dn as LoadStateAction, Do as ManifestSchema, Dr as MutationSetOperationSchemaArgs, Ds as UpdateOperationExampleInputSchema, Dt as DeleteOperationErrorAction, Du as backfillAuthState, Ea as SignalType, Ec as documentModelActions, Ei as SchemaUndoAction, El as checkCleanedOperationsIntegrity, En as LoadFromInput, Eo as Load_StateSchema, Er as MutationSetOperationReducerArgs, Es as UpdateChangeLogItemInputSchema, Et as DeleteOperationAction, Eu as Principal, Fa as UndoAction, Fc as redo, Fi as SetModelDescriptionInput, Fl as groupOperationsByScope, Fn as MappedOperation, Fo as PruneActionInputSchema, Fr as OperationErrorSpecification, Ft as DocumentModelAction, Fu as defaultBaseState, G as AddChangeLogItemInput, Ga as UpdateStateExampleInput, Gc as setInitialState, Gi as SetModuleNameInput, Gl as operationsAreEqual, Gn as MutationAddOperationErrorArgs, Go as ReorderModulesInputSchema, Gr as PruneAction, Gt as DocumentModelModuleAction, Gu as UserActionSigner, H as ActionVerificationHandler, Ha as UpdateRelationshipAction, Hc as reorderStateExamples, Hi as SetModuleDescriptionAction, Hl as mapSkippedOperationsV2, Hn as MutationAddChangeLogItemInputArgs, Ho as RedoSchema, Hr as PhAiToolDescriptor, Ht as DocumentModelLib, Hu as HashConfig, Ia as UndoActionInput, Ic as releaseNewVersion, Ii as SetModelExtensionAction, Il as hashDocumentStateForScope, In as Maybe, Io as PruneActionSchema, Ir as OperationIndex, It as DocumentModelDocument, Iu as defaultDocumentState, J as AddOperationAction, Ja as User, Jc as setModelId, Ji as SetNameOperation, Jl as prepareOperations, Jn as MutationDeleteChangeLogItemInputArgs, Jo as ReorderStateExamplesInputSchema, Jr as Query, Jt as DocumentModelOperationErrorAction, K as AddModuleAction, Ka as UpgradeDocumentAction, Kc as setModelDescription, Ki as SetNameAction, Kl as parseResultingState, Kn as MutationAddOperationExampleArgs, Ko as ReorderOperationErrorsInputSchema, Kr as PruneActionInput, Kt as DocumentModelModuleOperations, Ku as deserializeSignature, La as UndoRedoAction, Lc as reorderChangeLogItems, Li as SetModelExtensionInput, Ll as isDocumentAction, Ln as MinimalBackupData, Lo as PruneSchema, Lr as OperationSpecification, Lt as DocumentModelDocumentModelModule, Lu as defaultGlobalState, Ma as StateReducer, Mc as operationFromOperation, Mi as SetInitialStateAction, Ml as garbageCollectDocumentOperations, Mn as MakeMaybe, Mo as OperationSpecificationSchema, Mr as MutationUpdateOperationExampleArgs, Mt as DeleteStateExampleAction, Mu as createLocalState, Na as SubgraphModule, Nc as operationWithContext, Ni as SetInitialStateInput, Nl as garbageCollectV2, Nn as MakeOptional, No as PowerhouseModuleSchema, Nr as MutationUpdateStateExampleArgs, Nt as DeleteStateExampleInput, Nu as createState, Oa as SigningParameters, Oc as moveOperation, Oi as SetAuthorNameAction, Ol as diffOperations, On as LoadStateActionInput, Oo as ModuleSchema, Or as MutationSetOperationTemplateArgs, Os as UpdateStateExampleInputSchema, Ot as DeleteOperationErrorInput, Ou as createAuthState, Pa as Undo, Pc as prune, Pi as SetModelDescriptionAction, Pl as getDocumentLastModified, Pn as Manifest, Po as PowerhouseModulesSchema, Pr as NOOPAction, Pt as DocumentAction, Pu as defaultAuthState, Q as AddOperationExampleInput, Qa as UpgradeTransition, Qc as setName, Qi as SetOperationErrorCodeInput, Ql as reshuffleByTimestamp, Qn as MutationDeleteOperationExampleArgs, Qo as SetInitialStateInputSchema, Qr as Reducer, Qt as DocumentModelOperationOperations, Ra as UpdateChangeLogItemAction, Rc as reorderModuleOperations, Ri as SetModelIdAction, Rl as isNoopOperation, Rn as ModuleSpecification, Ro as PublisherSchema, Rr as OperationsByScope, Rt as DocumentModelGlobalState, Ru as defaultLocalState, Sa as Signal, Sc as deleteOperation, Si as SchemaPruneAction, Sl as appendWithoutApplying, Sn as InputMaybe, So as DocumentSpecificationSchema, Sr as MutationSetOperationErrorDescriptionArgs, Ss as StateSchema, St as DeleteDocumentAction, Su as PHAuthState, Ta as SignalResults, Tc as deleteStateExample, Ti as SchemaSetPreferredEditorAction, Tl as baseReducerVersion, Tn as LoadFromFile, To as LoadStateActionStateInputSchema, Tr as MutationSetOperationNameArgs, Ts as UndoSchema, Tt as DeleteModuleInput, Tu as PHGroupState, U as Actions, Ua as UpdateRelationshipActionInput, Uc as setAuthorName, Ui as SetModuleDescriptionInput, Ul as merge, Un as MutationAddModuleArgs, Uo as ReorderChangeLogItemsInputSchema, Ur as PowerhouseModule, Ut as DocumentModelLocalState, Uu as PHDocumentSignatureInfo, V as ActionSigningHandler, Va as UpdateOperationExampleInput, Vc as reorderOperationExamples, Vi as SetModelNameInput, Vl as mapSkippedOperations, Vn as Mutation, Vo as RedoActionSchema, Vr as PhAiToolAnnotations, Vt as DocumentModelInput, Vu as AppActionSigner, W as AddChangeLogItemAction, Wa as UpdateStateExampleAction, Wc as setAuthorWebsite, Wi as SetModuleNameAction, Wl as nextSkipNumber, Wn as MutationAddOperationArgs, Wo as ReorderModuleOperationsInputSchema, Wr as Prune, Wt as DocumentModelModule, Wu as Signature, X as AddOperationErrorInput, Xa as UpgradeManifest, Xc as setModuleDescription, Xi as SetOperationDescriptionInput, Xl as removeExistingOperations, Xn as MutationDeleteOperationArgs, Xo as SetAuthorNameInputSchema, Xr as RedoAction, Xt as DocumentModelOperationExampleAction, Y as AddOperationErrorAction, Ya as ValidationError, Yc as setModelName, Yi as SetOperationDescriptionAction, Yl as readOnly, Yn as MutationDeleteModuleArgs, Yo as ScopeStateSchema, Yr as Redo, Yt as DocumentModelOperationErrorOperations, Z as AddOperationExampleAction, Za as UpgradeReducer, Zc as setModuleName, Zi as SetOperationErrorCodeAction, Zl as replayDocument, Zn as MutationDeleteOperationErrorArgs, Zo as SetAuthorWebsiteInputSchema, Zr as RedoActionInput, Zt as DocumentModelOperationExampleOperations, _a as SetPreferredEditorOperation, _c as buildOperationSignature, _i as SaveToFile, _l as IntegrityIssueType, _n as IOperation, _o as DeleteOperationInputSchema, _r as MutationSetModuleDescriptionArgs, _s as SetPreferredEditorActionInputSchema, _t as CreateState, _u as AuthGroups, aa as SetOperationNameAction, ac as ActionContext, ai as ReorderModuleOperationsAction, al as setOperationReducer, an as DocumentOperationsIgnoreMap, ao as AddOperationErrorInputSchema, ar as MutationReorderModuleOperationsArgs, as as SetNameActionInputSchema, at as AssertIsStateOfType, au as DocumentOperations, ba as Set_Name, bc as deleteChangeLogItem, bi as SchemaLoadStateAction, bl as PHDocumentMeta, bn as ISigner, bo as DocumentModelGlobalStateSchema, br as MutationSetOperationDescriptionArgs, bs as Set_NameSchema, bt as DeleteChildDocumentInput, bu as Grant, ca as SetOperationReducerInput, cc as actionSigner, ci as ReorderModulesInput, cl as setOperationTemplate, cn as EditorDispatch, co as AddStateExampleInputSchema, cr as MutationReorderOperationExamplesArgs, cs as SetOperationErrorCodeInputSchema, ct as ConfigEntry, cu as OperationOutcome, da as SetOperationScopeAction, dc as addModule, di as ReorderOperationExamplesAction, dl as undo, dn as Exact, do as ConfigEntrySchema, dr as MutationSetAuthorWebsiteArgs, ds as SetOperationErrorTemplateInputSchema, dt as CopyChildDocumentSignal, du as operationOutcome, ea as SetOperationErrorDescriptionInput, ei as ReleaseNewVersionAction, el as setOperationErrorCode, en as DocumentModelStateAction, eo as applyUpgradeDocumentAction, er as MutationLoadStateArgs, es as SetModelExtensionInputSchema, et as AddRelationshipAction, eu as skipHeaderOperations, fa as SetOperationScopeInput, fc as addOperation, fi as ReorderOperationExamplesInput, fl as updateChangeLogItem, fn as FileInput, fo as ConfigEntryTypeSchema, fr as MutationSetInitialStateArgs, fs as SetOperationNameInputSchema, ft as CreateChildDocumentInput, fu as redoOperation, ga as SetPreferredEditorActionInput, gc as baseActions, gi as RevisionsFilter, gl as IntegrityIssueSubType, gn as IDocument, go as DeleteOperationExampleInputSchema, gr as MutationSetModelNameArgs, gs as SetOperationTemplateInputSchema, gt as CreateDocumentActionInput, gu as undoOperationV2, ha as SetPreferredEditorAction, hc as addStateExample, hi as ReplayDocumentOptions, hl as verifyOperationSignature, hn as ID, ho as DeleteOperationErrorInputSchema, hr as MutationSetModelIdArgs, hs as SetOperationScopeInputSchema, ht as CreateDocumentAction, hu as undoOperation, ia as SetOperationErrorTemplateInput, ic as Action, ii as ReorderChangeLogItemsInput, il as setOperationName, in as DocumentModelVersioningOperations, io as AddModuleInputSchema, ir as MutationReorderChangeLogItemsInputArgs, is as SetModuleNameInputSchema, it as AssertIsDocumentOfType, iu as updateHeaderRevision, ja as State, jc as operationFromAction, ji as SetAuthorWebsiteInput, jl as garbageCollect, jn as MakeEmpty, jo as OperationScopeSchema, jr as MutationUpdateChangeLogItemInputArgs, jt as DeleteOperationInput, ju as createGlobalState, ka as SkipHeaderOperationIndex, kc as noop, ki as SetAuthorNameInput, kl as filterDocumentOperationsResultingState, kn as LoadStateActionStateInput, ko as MoveOperationInputSchema, kr as MutationSetStateSchemaArgs, ks as definedNonNullAnySchema, kt as DeleteOperationExampleAction, ku as createBaseState, la as SetOperationSchemaAction, lc as actions, li as ReorderOperationErrorsAction, ll as setPreferredEditor, ln as EditorModule, lo as AuthorSchema, lr as MutationReorderStateExamplesArgs, ls as SetOperationErrorDescriptionInputSchema, lt as ConfigEntryType, lu as OperationWithContext, ma as SetOperationTemplateInput, mc as addOperationExample, mi as ReorderStateExamplesInput, ml as updateStateExample, mn as IAction, mo as DeleteModuleInputSchema, mr as MutationSetModelExtensionArgs, ms as SetOperationSchemaInputSchema, mt as CreateDocument, mu as setPreferredEditorOperation, na as SetOperationErrorNameInput, ni as RemoveRelationshipActionInput, nl as setOperationErrorName, nn as DocumentModelUtils, no as normalizeDocumentModelVersion, nr as MutationPruneArgs, ns as SetModelNameInputSchema, nt as AddStateExampleAction, nu as sortOperations, oa as SetOperationNameInput, oc as actionContext, oi as ReorderModuleOperationsInput, ol as setOperationSchema, on as DocumentSpecification, oo as AddOperationExampleInputSchema, or as MutationReorderModulesArgs, os as SetNameActionSchema, ot as Author, ou as Operation, pa as SetOperationTemplateAction, pc as addOperationError, pi as ReorderStateExamplesAction, pl as updateOperationExample, pn as GetDocumentOptions, po as DeleteChangeLogItemInputSchema, pr as MutationSetModelDescriptionArgs, ps as SetOperationReducerInputSchema, pt as CreateChildDocumentSignal, pu as setNameOperation, q as AddModuleInput, qa as UpgradeDocumentActionInput, qc as setModelExtension, qi as SetNameActionInput, ql as precedes, qn as MutationAddStateExampleArgs, qo as ReorderOperationExamplesInputSchema, qr as Publisher, qt as DocumentModelOperationAction, qu as serializeSignature, ra as SetOperationErrorTemplateAction, ri as ReorderChangeLogItemsAction, rl as setOperationErrorTemplate, rn as DocumentModelVersioningAction, ro as AddChangeLogItemInputSchema, rr as MutationRedoArgs, rs as SetModuleDescriptionInputSchema, rt as AddStateExampleInput, ru as split, sa as SetOperationReducerAction, sc as actionFromAction, si as ReorderModulesAction, sl as setOperationScope, sn as ENSInfo, so as AddOperationInputSchema, sr as MutationReorderOperationErrorsArgs, ss as SetOperationDescriptionInputSchema, st as CodeExample, su as OperationContext, ta as SetOperationErrorNameAction, ti as RemoveRelationshipAction, tl as setOperationErrorDescription, tn as DocumentModelStateOperations, to as computeUpgradeTransitions, tr as MutationMoveOperationArgs, ts as SetModelIdInputSchema, tt as AddRelationshipActionInput, tu as sortMappedOperations, ua as SetOperationSchemaInput, uc as addChangeLogItem, ui as ReorderOperationErrorsInput, ul as setStateSchema, un as EditorProps, uo as CodeExampleSchema, ur as MutationSetAuthorNameArgs, us as SetOperationErrorNameInputSchema, ut as CopyChildDocumentInput, uu as loadStateOperation, va as SetStateSchemaAction, vc as buildSignedAction, vi as SaveToFileHandle, vl as PHDocument, vn as ISignal, vo as DeleteStateExampleInputSchema, vr as MutationSetModuleNameArgs, vs as SetPreferredEditorActionSchema, vt as DeleteChangeLogItemAction, vu as Capability, wa as SignalResult, wc as deleteOperationExample, wi as SchemaSetNameAction, wl as baseCreateDocument, wn as IsStateOfType, wo as LoadStateActionSchema, wr as MutationSetOperationErrorTemplateArgs, ws as UndoActionSchema, wt as DeleteModuleAction, wu as PHDocumentState, xa as Set_PreferredEditor, xc as deleteModule, xi as SchemaNOOPAction, xl as addUndo, xn as Incremental, xo as DocumentModelInputSchema, xr as MutationSetOperationErrorCodeArgs, xs as Set_PreferredEditorSchema, xt as DeleteChildDocumentSignal, xu as Operand, ya as SetStateSchemaInput, yc as createAction, yi as Scalars, yl as PHDocumentHeader, yn as ISignalResult, yo as DocumentActionSchema, yr as MutationSetNameArgs, ys as SetStateSchemaInputSchema, yt as DeleteChangeLogItemInput, yu as Condition, z as ActionErrorCallback, za as UpdateChangeLogItemInput, zc as reorderModules, zi as SetModelIdInput, zl as isUndo, zn as MoveOperationAction, zo as PwaConfigSchema, zr as PartialRecord, zt as DocumentModelHeaderAction, zu as defaultPHState } from "../types-DBj2HxyL.js";
2
- import { $ as readFileBrowser, $n as setGrant, $t as GroupPrincipalNotAllowedError, A as documentModelVersioningReducer, An as MoveGrantActionInputSchema, At as AUTH_VERSION_UNSUPPORTED_REASON, B as createVerificationSigner, Bn as applyRemoveGrantAction, Bt as hex2ab, C as documentModelModuleReducer, Cn as ConditionContext, Ct as DocumentModelSchema, D as documentModelReducer, Dn as MAX_SUPPORTED_AUTH_VERSION, Dt as isDocumentModelState, E as documentModelOperationReducer, En as InitializeAuthActionInputSchema, Et as isDocumentModelDocument, F as replayOperations, Fn as SetGrantActionInput, Ft as base64UrlToBytes, G as baseLoadFromInputVersioned, Gn as evaluate, Gt as HASH_ENCODING_HEX, H as validateHeader, Hn as assertAuthPreservedOnDuplicate, Ht as HASH_ALGORITHM_SHA256, I as updateDocument, In as SetGrantActionInputSchema, It as buildOperationSignatureMessage, J as createZip, Jn as isDocumentCreator, Jt as documentModelInitialGlobalState, K as baseSaveToFileHandle, Kn as initializeAuth, Kt as documentModelFileExtension, L as createPresignedHeader, Ln as applyAuthAction, Lt as buildOperationSignatureParams, M as createReducer, Mn as RemoveGrantActionInput, Mt as isDenied, N as processUndoRedo, Nn as RemoveGrantActionInputSchema, Nt as ab2hex, O as documentModelStateReducer, On as MoveGrantAction, Ot as AUTH_DENIED_BY_GRANT_REASON, P as pruneOperation, Pn as SetGrantAction, Pt as base58Decode, Q as getFileBrowser, Qn as resolveSnapshotAuth, Qt as GrantSchema, R as createSignedHeader, Rn as applyInitializeAuthAction, Rt as getUnixTimestamp, S as documentModelHeaderReducer, Sn as AuthVerb, St as DocumentModelPHStateSchema, T as documentModelOperationExampleReducer, Tn as InitializeAuthActionInput, Tt as assertIsDocumentModelState, U as verify, Un as assertAuthScopeActionAllowed, Ut as HASH_ALGORITHM_SHA512, V as sign, Vn as applySetGrantAction, Vt as HASH_ALGORITHM_SHA1, W as baseLoadFromInput, Wn as decide, Wt as HASH_ENCODING_BASE64, X as documentModelSaveToFileHandle, Xn as moveGrant, Xt as AuthAdministrationLockoutError, Y as documentModelLoadFromInput, Yn as mentionedGroupIds, Yt as documentModelInitialLocalState, Z as fetchFileBrowser, Zn as removeGrant, Zt as AuthAdministrationMissingError, _ as validateModuleOperation, _n as AuthDecision, _t as groupDocumentType, a as assertOperationErrorIdUnique, an as assertAuthAdministrationRetained, at as AuthAlreadyInitializedError, b as validateOperations, bn as AuthRequest, bt as BaseDocumentStateSchema, c as findModuleOrThrow, cn as assertValidInitialGrants, ct as DowngradeNotSupportedError, d as findOperationOrThrow, dn as evaluateGrants, dt as HashMismatchError, en as InvalidGrantError, er as TransportAction, et as writeFileBrowser, f as getAllOperationNames, fn as grantProblem, ft as InvalidActionInputError, g as validateModule, gn as AuthAction, gt as documentModelDocumentType, h as validateInitialState, hn as AUTH_ACTION_TYPES, ht as UnsupportedDocumentModelVersionError, i as assertModuleIdUnique, in as MAX_CONDITION_NODES, it as AuthActionNotAllowedError, j as baseReducer, jn as RemoveGrantAction, jt as DOCUMENT_DELETED_REASON, k as documentModelStateSchemaReducer, kn as MoveGrantActionInput, kt as AUTH_NO_GRANT_REASON, l as findOperationErrorOrThrow, ln as evaluateCondition, lt as FileSystemError, m as isValidOperationNameFormat, mn as referencedGroupIds, mt as InvalidAuthVersionError, n as RESERVED_OPERATION_NAMES, nn as MAX_CAPABILITY_OPERATIONS, nr as TransportSigner, nt as VersionedReplayConfig, o as assertOperationExampleIdUnique, on as assertValidGrant, ot as AuthInitializerNotCreatorError, p as isReservedOperationName, pn as isPlainValue, pt as InvalidActionInputZodError, q as createMinimalZip, qn as isAuthAction, qt as documentModelGlobalState, r as ReservedOperationName, rn as MAX_CONDITION_DEPTH, rr as toTransportAction, rt as replayDocumentVersioned, s as assertOperationIdUnique, sn as assertValidGrantUpsert, st as AuthPolicyNotPreservedError, t as OPERATION_NAME_PATTERN, tn as MAX_AUTH_GRANTS, tr as TransportActionContext, tt as VersionedReducers, u as findOperationExampleOrThrow, un as evaluateGrantStack, ut as GrantNotFoundError, v as validateModules, vn as AuthEvaluation, vt as groupMembershipActionTypes, w as documentModelOperationErrorReducer, wn as InitializeAuthAction, wt as assertIsDocumentModelDocument, x as validateStateSchemaName, xn as AuthSubject, xt as DocumentModelHeaderSchema, y as validateOperationName, yn as AuthRefusal, yt as BaseDocumentHeaderSchema, z as createSignedHeaderForSigner, zn as applyMoveGrantAction, zt as hashBrowser } from "../index-h-fhfCG7.js";
1
+ import { $ as AddOperationExampleAction, $a as UpgradeReducer, $c as setModuleName, $i as SetOperationErrorCodeAction, $l as replayDocument, $n as MutationDeleteOperationErrorArgs, $o as SetAuthorWebsiteInputSchema, $r as RedoActionInput, $t as DocumentModelOperationExampleOperations, Aa as SigningParameters, Ac as moveOperation, Ai as SetAuthorNameAction, Al as diffOperations, An as LoadStateActionInput, Ao as ModuleSchema, Ar as MutationSetOperationTemplateArgs, As as UpdateStateExampleInputSchema, At as DeleteOperationErrorInput, Au as createAuthState, Ba as UpdateChangeLogItemAction, Bc as reorderModuleOperations, Bi as SetModelIdAction, Bl as isNoopOperation, Bn as ModuleSpecification, Bo as PublisherSchema, Br as OperationsByScope, Bt as DocumentModelGlobalState, Bu as defaultLocalState, Ca as Set_PreferredEditor, Cc as deleteModule, Ci as SchemaNOOPAction, Cl as addUndo, Cn as Incremental, Co as DocumentModelInputSchema, Cr as MutationSetOperationErrorCodeArgs, Cs as Set_PreferredEditorSchema, Ct as DeleteChildDocumentSignal, Cu as Operand, Da as SignalResults, Dc as deleteStateExample, Di as SchemaSetPreferredEditorAction, Dl as baseReducerVersion, Dn as LoadFromFile, Do as LoadStateActionStateInputSchema, Dr as MutationSetOperationNameArgs, Ds as UndoSchema, Dt as DeleteModuleInput, Du as PHGroupState, Ea as SignalResult, Ec as deleteOperationExample, Ei as SchemaSetNameAction, El as baseCreateDocument, En as IsStateOfType, Eo as LoadStateActionSchema, Er as MutationSetOperationErrorTemplateArgs, Es as UndoActionSchema, Et as DeleteModuleAction, Eu as PHDocumentState, Fa as SubgraphModule, Fc as operationWithContext, Fi as SetInitialStateInput, Fl as garbageCollectV2, Fn as MakeOptional, Fo as PowerhouseModuleSchema, Fr as MutationUpdateStateExampleArgs, Ft as DeleteStateExampleInput, Fu as createState, G as Actions, Ga as UpdateRelationshipActionInput, Gc as setAuthorName, Gi as SetModuleDescriptionInput, Gl as merge, Gn as MutationAddModuleArgs, Go as ReorderChangeLogItemsInputSchema, Gr as PowerhouseModule, Gt as DocumentModelLocalState, Gu as PHDocumentSignatureInfo, H as ActionSignatureContext, Ha as UpdateOperationExampleAction, Hc as reorderOperationErrors, Hi as SetModelNameAction, Hl as isUndoRedo, Hn as MoveOperationInput, Ho as RedoActionInputSchema, Hr as PartialState, Ht as DocumentModelHeaderOperations, Hu as ActionSigner, Ia as Undo, Ic as prune, Ii as SetModelDescriptionAction, Il as getDocumentLastModified, In as Manifest, Io as PowerhouseModulesSchema, Ir as NOOPAction, It as DocumentAction, Iu as defaultAuthState, J as AddModuleAction, Ja as UpgradeDocumentAction, Jc as setModelDescription, Ji as SetNameAction, Jl as parseResultingState, Jn as MutationAddOperationExampleArgs, Jo as ReorderOperationErrorsInputSchema, Jr as PruneActionInput, Jt as DocumentModelModuleOperations, Ju as deserializeSignature, K as AddChangeLogItemAction, Ka as UpdateStateExampleAction, Kc as setAuthorWebsite, Ki as SetModuleNameAction, Kl as nextSkipNumber, Kn as MutationAddOperationArgs, Ko as ReorderModuleOperationsInputSchema, Kr as Prune, Kt as DocumentModelModule, Ku as Signature, La as UndoAction, Lc as redo, Li as SetModelDescriptionInput, Ll as groupOperationsByScope, Ln as MappedOperation, Lo as PruneActionInputSchema, Lr as OperationErrorSpecification, Lt as DocumentModelAction, Lu as defaultBaseState, Ma as SkipHeaderOperations, Mc as operationExampleCreators, Mi as SetAuthorWebsiteAction, Ml as filterDuplicatedOperations, Mn as Load_State, Mo as OperationErrorSchema, Mr as MutationUndoArgs, Ms as isDefinedNonNullAny, Mt as DeleteOperationExampleInput, Mu as createDocumentState, Na as State, Nc as operationFromAction, Ni as SetAuthorWebsiteInput, Nl as garbageCollect, Nn as MakeEmpty, No as OperationScopeSchema, Nr as MutationUpdateChangeLogItemInputArgs, Nt as DeleteOperationInput, Nu as createGlobalState, Oa as SignalType, Oc as documentModelActions, Oi as SchemaUndoAction, Ol as checkCleanedOperationsIntegrity, On as LoadFromInput, Oo as Load_StateSchema, Or as MutationSetOperationReducerArgs, Os as UpdateChangeLogItemInputSchema, Ot as DeleteOperationAction, Ou as Principal, Pa as StateReducer, Pc as operationFromOperation, Pi as SetInitialStateAction, Pl as garbageCollectDocumentOperations, Pn as MakeMaybe, Po as OperationSpecificationSchema, Pr as MutationUpdateOperationExampleArgs, Pt as DeleteStateExampleAction, Pu as createLocalState, Q as AddOperationErrorInput, Qa as UpgradeManifest, Qc as setModuleDescription, Qi as SetOperationDescriptionInput, Ql as removeExistingOperations, Qn as MutationDeleteOperationArgs, Qo as SetAuthorNameInputSchema, Qr as RedoAction, Qt as DocumentModelOperationExampleAction, Ra as UndoActionInput, Rc as releaseNewVersion, Ri as SetModelExtensionAction, Rl as hashDocumentStateForScope, Rn as Maybe, Ro as PruneActionSchema, Rr as OperationIndex, Rt as DocumentModelDocument, Ru as defaultDocumentState, Sa as Set_Name, Sc as deleteChangeLogItem, Si as SchemaLoadStateAction, Sl as PHDocumentMeta, Sn as ISigner, So as DocumentModelGlobalStateSchema, Sr as MutationSetOperationDescriptionArgs, Ss as Set_NameSchema, St as DeleteChildDocumentInput, Su as Grant, Ta as SignalDispatch, Tc as deleteOperationError, Ti as SchemaRedoAction, Tl as attachBranch, Tn as IsDocumentOfType, To as LoadStateActionInputSchema, Tr as MutationSetOperationErrorNameArgs, Ts as UndoActionInputSchema, Tt as DeleteDocumentActionInput, Tu as PHBaseState, U as ActionSigningHandler, Ua as UpdateOperationExampleInput, Uc as reorderOperationExamples, Ui as SetModelNameInput, Ul as mapSkippedOperations, Un as Mutation, Uo as RedoActionSchema, Ur as PhAiToolAnnotations, Ut as DocumentModelInput, Uu as AppActionSigner, V as ActionErrorCallback, Va as UpdateChangeLogItemInput, Vc as reorderModules, Vi as SetModelIdInput, Vl as isUndo, Vn as MoveOperationAction, Vo as PwaConfigSchema, Vr as PartialRecord, Vt as DocumentModelHeaderAction, Vu as defaultPHState, W as ActionVerificationHandler, Wa as UpdateRelationshipAction, Wc as reorderStateExamples, Wi as SetModuleDescriptionAction, Wl as mapSkippedOperationsV2, Wn as MutationAddChangeLogItemInputArgs, Wo as RedoSchema, Wr as PhAiToolDescriptor, Wt as DocumentModelLib, Wu as HashConfig, X as AddOperationAction, Xa as User, Xc as setModelId, Xi as SetNameOperation, Xl as prepareOperations, Xn as MutationDeleteChangeLogItemInputArgs, Xo as ReorderStateExamplesInputSchema, Xr as Query, Xt as DocumentModelOperationErrorAction, Y as AddModuleInput, Ya as UpgradeDocumentActionInput, Yc as setModelExtension, Yi as SetNameActionInput, Yl as precedes, Yn as MutationAddStateExampleArgs, Yo as ReorderOperationExamplesInputSchema, Yr as Publisher, Yt as DocumentModelOperationAction, Yu as serializeSignature, Z as AddOperationErrorAction, Za as ValidationError, Zc as setModelName, Zi as SetOperationDescriptionAction, Zl as readOnly, Zn as MutationDeleteModuleArgs, Zo as ScopeStateSchema, Zr as Redo, Zt as DocumentModelOperationErrorOperations, _a as SetPreferredEditorAction, _c as addStateExample, _i as ReplayDocumentOptions, _l as verifyOperationSignature, _n as ID, _o as DeleteOperationErrorInputSchema, _r as MutationSetModelIdArgs, _s as SetOperationScopeInputSchema, _t as CreateDocumentAction, _u as undoOperation, aa as SetOperationErrorTemplateAction, ai as ReorderChangeLogItemsAction, al as setOperationErrorTemplate, an as DocumentModelVersioningAction, ao as AddChangeLogItemInputSchema, ar as MutationRedoArgs, as as SetModuleDescriptionInputSchema, at as AddStateExampleInput, au as split, ba as SetStateSchemaAction, bc as buildSignedAction, bi as SaveToFileHandle, bl as PHDocument, bn as ISignal, bo as DeleteStateExampleInputSchema, br as MutationSetModuleNameArgs, bs as SetPreferredEditorActionSchema, bt as DeleteChangeLogItemAction, bu as Capability, ca as SetOperationNameInput, cc as actionContext, ci as ReorderModuleOperationsInput, cl as setOperationSchema, cn as DocumentSpecification, co as AddOperationExampleInputSchema, cr as MutationReorderModulesArgs, cs as SetNameActionSchema, ct as Author, cu as Operation, da as SetOperationSchemaAction, dc as actions, di as ReorderOperationErrorsAction, dl as setPreferredEditor, dn as EditorModule, do as AuthorSchema, dr as MutationReorderStateExamplesArgs, ds as SetOperationErrorDescriptionInputSchema, dt as ConfigEntryType, du as OperationWithContext, ea as SetOperationErrorCodeInput, ei as Reducer, el as setName, en as DocumentModelOperationOperations, eo as UpgradeTransition, er as MutationDeleteOperationExampleArgs, es as SetInitialStateInputSchema, et as AddOperationExampleInput, eu as reshuffleByTimestamp, fa as SetOperationSchemaInput, fc as addChangeLogItem, fi as ReorderOperationErrorsInput, fl as setStateSchema, fn as EditorProps, fo as CodeExampleSchema, fr as MutationSetAuthorNameArgs, fs as SetOperationErrorNameInputSchema, ft as CopyChildDocumentInput, fu as loadStateOperation, ga as SetOperationTemplateInput, gc as addOperationExample, gi as ReorderStateExamplesInput, gl as updateStateExample, gn as IAction, go as DeleteModuleInputSchema, gr as MutationSetModelExtensionArgs, gs as SetOperationSchemaInputSchema, gt as CreateDocument, gu as setPreferredEditorOperation, ha as SetOperationTemplateAction, hc as addOperationError, hi as ReorderStateExamplesAction, hl as updateOperationExample, hn as GetDocumentOptions, ho as DeleteChangeLogItemInputSchema, hr as MutationSetModelDescriptionArgs, hs as SetOperationReducerInputSchema, ht as CreateChildDocumentSignal, hu as setNameOperation, ia as SetOperationErrorNameInput, ii as RemoveRelationshipActionInput, il as setOperationErrorName, in as DocumentModelUtils, io as normalizeDocumentModelVersion, ir as MutationPruneArgs, is as SetModelNameInputSchema, it as AddStateExampleAction, iu as sortOperations, ja as SkipHeaderOperationIndex, jc as noop, ji as SetAuthorNameInput, jl as filterDocumentOperationsResultingState, jn as LoadStateActionStateInput, jo as MoveOperationInputSchema, jr as MutationSetStateSchemaArgs, js as definedNonNullAnySchema, jt as DeleteOperationExampleAction, ju as createBaseState, ka as SignatureVerificationHandler, kc as loadState, ki as ScopeState, kl as checkOperationsIntegrity, kn as LoadStateAction, ko as ManifestSchema, kr as MutationSetOperationSchemaArgs, ks as UpdateOperationExampleInputSchema, kt as DeleteOperationErrorAction, ku as backfillAuthState, la as SetOperationReducerAction, lc as actionFromAction, li as ReorderModulesAction, ll as setOperationScope, ln as ENSInfo, lo as AddOperationInputSchema, lr as MutationReorderOperationErrorsArgs, ls as SetOperationDescriptionInputSchema, lt as CodeExample, lu as OperationContext, ma as SetOperationScopeInput, mc as addOperation, mi as ReorderOperationExamplesInput, ml as updateChangeLogItem, mn as FileInput, mo as ConfigEntryTypeSchema, mr as MutationSetInitialStateArgs, ms as SetOperationNameInputSchema, mt as CreateChildDocumentInput, mu as redoOperation, na as SetOperationErrorDescriptionInput, ni as ReleaseNewVersionAction, nl as setOperationErrorCode, nn as DocumentModelStateAction, no as applyUpgradeDocumentAction, nr as MutationLoadStateArgs, ns as SetModelExtensionInputSchema, nt as AddRelationshipAction, nu as skipHeaderOperations, oa as SetOperationErrorTemplateInput, oc as Action, oi as ReorderChangeLogItemsInput, ol as setOperationName, on as DocumentModelVersioningOperations, oo as AddModuleInputSchema, or as MutationReorderChangeLogItemsInputArgs, os as SetModuleNameInputSchema, ot as AssertIsDocumentOfType, ou as updateHeaderRevision, pa as SetOperationScopeAction, pc as addModule, pi as ReorderOperationExamplesAction, pl as undo, pn as Exact, po as ConfigEntrySchema, pr as MutationSetAuthorWebsiteArgs, ps as SetOperationErrorTemplateInputSchema, pt as CopyChildDocumentSignal, pu as operationOutcome, q as AddChangeLogItemInput, qa as UpdateStateExampleInput, qc as setInitialState, qi as SetModuleNameInput, ql as operationsAreEqual, qn as MutationAddOperationErrorArgs, qo as ReorderModulesInputSchema, qr as PruneAction, qt as DocumentModelModuleAction, qu as UserActionSigner, ra as SetOperationErrorNameAction, ri as RemoveRelationshipAction, rl as setOperationErrorDescription, rn as DocumentModelStateOperations, ro as computeUpgradeTransitions, rr as MutationMoveOperationArgs, rs as SetModelIdInputSchema, rt as AddRelationshipActionInput, ru as sortMappedOperations, sa as SetOperationNameAction, sc as ActionContext, si as ReorderModuleOperationsAction, sl as setOperationReducer, sn as DocumentOperationsIgnoreMap, so as AddOperationErrorInputSchema, sr as MutationReorderModuleOperationsArgs, ss as SetNameActionInputSchema, st as AssertIsStateOfType, su as DocumentOperations, ta as SetOperationErrorDescriptionAction, ti as ReducerOptions, tl as setOperationDescription, tn as DocumentModelPHState, to as applyDeleteDocumentAction, tr as MutationDeleteStateExampleArgs, ts as SetModelDescriptionInputSchema, tt as AddOperationInput, tu as reshuffleByTimestampAndIndex, ua as SetOperationReducerInput, uc as actionSigner, ui as ReorderModulesInput, ul as setOperationTemplate, un as EditorDispatch, uo as AddStateExampleInputSchema, ur as MutationReorderOperationExamplesArgs, us as SetOperationErrorCodeInputSchema, ut as ConfigEntry, uu as OperationOutcome, va as SetPreferredEditorActionInput, vc as baseActions, vi as RevisionsFilter, vl as IntegrityIssueSubType, vn as IDocument, vo as DeleteOperationExampleInputSchema, vr as MutationSetModelNameArgs, vs as SetOperationTemplateInputSchema, vt as CreateDocumentActionInput, vu as undoOperationV2, wa as Signal, wc as deleteOperation, wi as SchemaPruneAction, wl as appendWithoutApplying, wn as InputMaybe, wo as DocumentSpecificationSchema, wr as MutationSetOperationErrorDescriptionArgs, ws as StateSchema, wt as DeleteDocumentAction, wu as PHAuthState, xa as SetStateSchemaInput, xc as createAction, xi as Scalars, xl as PHDocumentHeader, xn as ISignalResult, xo as DocumentActionSchema, xr as MutationSetNameArgs, xs as SetStateSchemaInputSchema, xt as DeleteChangeLogItemInput, xu as Condition, ya as SetPreferredEditorOperation, yc as buildOperationSignature, yi as SaveToFile, yl as IntegrityIssueType, yn as IOperation, yo as DeleteOperationInputSchema, yr as MutationSetModuleDescriptionArgs, ys as SetPreferredEditorActionInputSchema, yt as CreateState, yu as AuthGroups, za as UndoRedoAction, zc as reorderChangeLogItems, zi as SetModelExtensionInput, zl as isDocumentAction, zn as MinimalBackupData, zo as PruneSchema, zr as OperationSpecification, zt as DocumentModelDocumentModelModule, zu as defaultGlobalState } from "../types-BzWRXB7f.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-DPuio_se.js";
3
3
  import { n as generateId, r as generateMock, t as deriveOperationId } from "../utils-DP122OSS.js";
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, 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, isNoopOperation, isPlainValue, isReservedOperationName, isUndo, isUndoRedo, isValidOperationNameFormat, loadState, loadStateOperation, mapSkippedOperations, mapSkippedOperationsV2, mentionedGroupIds, merge, moveGrant, moveOperation, nextSkipNumber, noop, normalizeDocumentModelVersion, operationExampleCreators, operationFromAction, operationFromOperation, operationOutcome, operationWithContext, operationsAreEqual, 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 };
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 };
@@ -5083,6 +5083,42 @@ async function baseLoadFromInput(input, reducer, options) {
5083
5083
  async function baseLoadFromInputVersioned(input, config, options) {
5084
5084
  return loadFromZipDataVersioned(await toUint8Array(input), config, options);
5085
5085
  }
5086
+ /**
5087
+ * Whether this zip is a single Powerhouse document: the document's four JSON
5088
+ * entries (header/state/current-state/operations) at the archive root. A
5089
+ * bulk archive has a folder tree instead. Returns false for any input that
5090
+ * is not a readable zip.
5091
+ */
5092
+ async function isDocumentZip(data) {
5093
+ let files;
5094
+ try {
5095
+ files = await unzipAsync(data);
5096
+ } catch {
5097
+ return false;
5098
+ }
5099
+ return Boolean(files["header.json"]) && Boolean(files["state.json"]) && Boolean(files["operations.json"]);
5100
+ }
5101
+ /**
5102
+ * The file entries of a zip (directory entries excluded). Used for bulk
5103
+ * archives; throws when the archive holds no files. Note this does NOT
5104
+ * validate that the entries are document zips — pair with isDocumentZip.
5105
+ */
5106
+ async function parseBulkArchive(data) {
5107
+ const files = await unzipAsync(data);
5108
+ const entries = Object.entries(files).filter(([name]) => !name.endsWith("/")).map(([path, value]) => ({
5109
+ path,
5110
+ data: value
5111
+ }));
5112
+ if (entries.length === 0) throw new Error("Archive contains no files");
5113
+ return entries;
5114
+ }
5115
+ /**
5116
+ * Assemble a zip from raw entries. A key ending in "/" with empty data is a
5117
+ * directory entry, so an archive's folder structure survives a round-trip.
5118
+ */
5119
+ async function zipEntries(entries) {
5120
+ return zipAsync(entries);
5121
+ }
5086
5122
  const documentModelLoadFromInput = (input) => {
5087
5123
  return baseLoadFromInput(input, documentModelReducer);
5088
5124
  };
@@ -5102,6 +5138,6 @@ const getFileBrowser = (file) => {
5102
5138
  return Promise.resolve().then(() => readFileBrowser(file));
5103
5139
  };
5104
5140
  //#endregion
5105
- export { AUTH_ACTION_TYPES, AUTH_DENIED_BY_GRANT_REASON, AUTH_NO_GRANT_REASON, AUTH_VERSION_UNSUPPORTED_REASON, AddChangeLogItemInputSchema, AddModuleInputSchema, AddOperationErrorInputSchema, AddOperationExampleInputSchema, AddOperationInputSchema, AddStateExampleInputSchema, AuthActionNotAllowedError, AuthAdministrationLockoutError, AuthAdministrationMissingError, AuthAlreadyInitializedError, AuthInitializerNotCreatorError, AuthPolicyNotPreservedError, AuthorSchema, BaseDocumentHeaderSchema, BaseDocumentStateSchema, CodeExampleSchema, ConfigEntrySchema, ConfigEntryTypeSchema, DOCUMENT_DELETED_REASON, DeleteChangeLogItemInputSchema, DeleteModuleInputSchema, DeleteOperationErrorInputSchema, DeleteOperationExampleInputSchema, DeleteOperationInputSchema, DeleteStateExampleInputSchema, DocumentActionSchema, DocumentModelGlobalStateSchema, DocumentModelHeaderSchema, DocumentModelInputSchema, DocumentModelPHStateSchema, DocumentModelSchema, DocumentSpecificationSchema, DowngradeNotSupportedError, FileSystemError, GrantNotFoundError, GrantSchema, GroupPrincipalNotAllowedError, HASH_ALGORITHM_SHA1, HASH_ALGORITHM_SHA256, HASH_ALGORITHM_SHA512, HASH_ENCODING_BASE64, HASH_ENCODING_HEX, HashMismatchError, InitializeAuthActionInputSchema, IntegrityIssueSubType, IntegrityIssueType, InvalidActionInputError, InvalidActionInputZodError, InvalidAuthVersionError, InvalidGrantError, LoadStateActionInputSchema, LoadStateActionSchema, LoadStateActionStateInputSchema, Load_StateSchema, MAX_AUTH_GRANTS, MAX_CAPABILITY_OPERATIONS, MAX_CONDITION_DEPTH, MAX_CONDITION_NODES, MAX_SUPPORTED_AUTH_VERSION, ManifestSchema, ModuleSchema, MoveGrantActionInputSchema, MoveOperationInputSchema, OPERATION_NAME_PATTERN, OperationErrorSchema, OperationScopeSchema, OperationSpecificationSchema, PowerhouseModuleSchema, PowerhouseModulesSchema, PruneActionInputSchema, PruneActionSchema, PruneSchema, PublisherSchema, PwaConfigSchema, RESERVED_OPERATION_NAMES, RedoActionInputSchema, RedoActionSchema, RedoSchema, RemoveGrantActionInputSchema, ReorderChangeLogItemsInputSchema, ReorderModuleOperationsInputSchema, ReorderModulesInputSchema, ReorderOperationErrorsInputSchema, ReorderOperationExamplesInputSchema, ReorderStateExamplesInputSchema, ScopeStateSchema, SetAuthorNameInputSchema, SetAuthorWebsiteInputSchema, SetGrantActionInputSchema, SetInitialStateInputSchema, SetModelDescriptionInputSchema, SetModelExtensionInputSchema, SetModelIdInputSchema, SetModelNameInputSchema, SetModuleDescriptionInputSchema, SetModuleNameInputSchema, SetNameActionInputSchema, SetNameActionSchema, SetOperationDescriptionInputSchema, SetOperationErrorCodeInputSchema, SetOperationErrorDescriptionInputSchema, SetOperationErrorNameInputSchema, SetOperationErrorTemplateInputSchema, SetOperationNameInputSchema, SetOperationReducerInputSchema, SetOperationSchemaInputSchema, SetOperationScopeInputSchema, SetOperationTemplateInputSchema, SetPreferredEditorActionInputSchema, SetPreferredEditorActionSchema, SetStateSchemaInputSchema, Set_NameSchema, Set_PreferredEditorSchema, StateSchema, UndoActionInputSchema, UndoActionSchema, UndoSchema, UnsupportedDocumentModelVersionError, UpdateChangeLogItemInputSchema, UpdateOperationExampleInputSchema, UpdateStateExampleInputSchema, 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, isNoopOperation, isPlainValue, isReservedOperationName, isUndo, isUndoRedo, isValidOperationNameFormat, loadState, loadStateOperation, mapSkippedOperations, mapSkippedOperationsV2, mentionedGroupIds, merge, moveGrant, moveOperation, nextSkipNumber, noop, normalizeDocumentModelVersion, operationExampleCreators, operationFromAction, operationFromOperation, operationOutcome, operationWithContext, operationsAreEqual, 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 };
5141
+ export { AUTH_ACTION_TYPES, AUTH_DENIED_BY_GRANT_REASON, AUTH_NO_GRANT_REASON, AUTH_VERSION_UNSUPPORTED_REASON, AddChangeLogItemInputSchema, AddModuleInputSchema, AddOperationErrorInputSchema, AddOperationExampleInputSchema, AddOperationInputSchema, AddStateExampleInputSchema, AuthActionNotAllowedError, AuthAdministrationLockoutError, AuthAdministrationMissingError, AuthAlreadyInitializedError, AuthInitializerNotCreatorError, AuthPolicyNotPreservedError, AuthorSchema, BaseDocumentHeaderSchema, BaseDocumentStateSchema, CodeExampleSchema, ConfigEntrySchema, ConfigEntryTypeSchema, DOCUMENT_DELETED_REASON, DeleteChangeLogItemInputSchema, DeleteModuleInputSchema, DeleteOperationErrorInputSchema, DeleteOperationExampleInputSchema, DeleteOperationInputSchema, DeleteStateExampleInputSchema, DocumentActionSchema, DocumentModelGlobalStateSchema, DocumentModelHeaderSchema, DocumentModelInputSchema, DocumentModelPHStateSchema, DocumentModelSchema, DocumentSpecificationSchema, DowngradeNotSupportedError, FileSystemError, GrantNotFoundError, GrantSchema, GroupPrincipalNotAllowedError, HASH_ALGORITHM_SHA1, HASH_ALGORITHM_SHA256, HASH_ALGORITHM_SHA512, HASH_ENCODING_BASE64, HASH_ENCODING_HEX, HashMismatchError, InitializeAuthActionInputSchema, IntegrityIssueSubType, IntegrityIssueType, InvalidActionInputError, InvalidActionInputZodError, InvalidAuthVersionError, InvalidGrantError, LoadStateActionInputSchema, LoadStateActionSchema, LoadStateActionStateInputSchema, Load_StateSchema, MAX_AUTH_GRANTS, MAX_CAPABILITY_OPERATIONS, MAX_CONDITION_DEPTH, MAX_CONDITION_NODES, MAX_SUPPORTED_AUTH_VERSION, ManifestSchema, ModuleSchema, MoveGrantActionInputSchema, MoveOperationInputSchema, OPERATION_NAME_PATTERN, OperationErrorSchema, OperationScopeSchema, OperationSpecificationSchema, PowerhouseModuleSchema, PowerhouseModulesSchema, PruneActionInputSchema, PruneActionSchema, PruneSchema, PublisherSchema, PwaConfigSchema, RESERVED_OPERATION_NAMES, RedoActionInputSchema, RedoActionSchema, RedoSchema, RemoveGrantActionInputSchema, ReorderChangeLogItemsInputSchema, ReorderModuleOperationsInputSchema, ReorderModulesInputSchema, ReorderOperationErrorsInputSchema, ReorderOperationExamplesInputSchema, ReorderStateExamplesInputSchema, ScopeStateSchema, SetAuthorNameInputSchema, SetAuthorWebsiteInputSchema, SetGrantActionInputSchema, SetInitialStateInputSchema, SetModelDescriptionInputSchema, SetModelExtensionInputSchema, SetModelIdInputSchema, SetModelNameInputSchema, SetModuleDescriptionInputSchema, SetModuleNameInputSchema, SetNameActionInputSchema, SetNameActionSchema, SetOperationDescriptionInputSchema, SetOperationErrorCodeInputSchema, SetOperationErrorDescriptionInputSchema, SetOperationErrorNameInputSchema, SetOperationErrorTemplateInputSchema, SetOperationNameInputSchema, SetOperationReducerInputSchema, SetOperationSchemaInputSchema, SetOperationScopeInputSchema, SetOperationTemplateInputSchema, SetPreferredEditorActionInputSchema, SetPreferredEditorActionSchema, SetStateSchemaInputSchema, Set_NameSchema, Set_PreferredEditorSchema, StateSchema, UndoActionInputSchema, UndoActionSchema, UndoSchema, UnsupportedDocumentModelVersionError, UpdateChangeLogItemInputSchema, UpdateOperationExampleInputSchema, UpdateStateExampleInputSchema, 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 };
5106
5142
 
5107
5143
  //# sourceMappingURL=index.js.map