├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── dataSources.xml ├── deno.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── jsLinters │ └── eslint.xml ├── misc.xml ├── modules.xml ├── monorepo.iml ├── prettier.xml └── vcs.xml ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── adrs └── 0001-json-schema-is-not-sufficient.md ├── backend ├── aws-ocr-types │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── aws-ocr │ ├── build.js │ ├── package.json │ ├── pdfs │ │ └── sample.pdf │ ├── pulumi │ │ ├── .gitignore │ │ ├── Pulumi.cozemble-aws-ocr-dev.yaml │ │ ├── Pulumi.yaml │ │ ├── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── tsconfig.json │ ├── run-curl.sh │ ├── src │ │ ├── convertToPng.ts │ │ ├── handler.ts │ │ ├── jsonToHtml.ts │ │ ├── ocr.ts │ │ ├── stashPdf.ts │ │ ├── syncOcr.ts │ │ ├── syncS3FileOcr.ts │ │ ├── textractToJson.ts │ │ └── uploadToS3.ts │ ├── test │ │ ├── green-delivery-note.json │ │ ├── green-delivery-note.png │ │ ├── jsonToHtml.spec.ts │ │ ├── textractToJson.spec.ts │ │ ├── waste-collection-invoice-textract-blocks.json │ │ └── waste-collection-invoice.pdf │ └── tsconfig.json ├── chat-up-agent │ ├── fetchAndStore.sh │ ├── package.json │ ├── src │ │ ├── fetchAndStore.ts │ │ ├── index.ts │ │ ├── slack.ts │ │ └── summarise.ts │ ├── summarise.sh │ ├── tsconfig.json │ └── vite.config.ts ├── gcp-infra │ ├── Pulumi.dev.yaml │ ├── Pulumi.yaml │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── google-vision-ocr │ ├── .dockerignore │ ├── Dockerfile │ ├── buildDocker.sh │ ├── env-development │ ├── nodemon.json │ ├── package.json │ ├── pushDocker.sh │ ├── rectangles.json │ ├── runDocker.sh │ ├── src │ │ ├── index.ts │ │ └── loadEnv.ts │ ├── tsconfig.json │ └── vite.config.ts ├── json-to-gql │ ├── .gitignore │ ├── package.json │ ├── src │ │ ├── @types │ │ │ └── index.d.ts │ │ ├── helpers │ │ │ ├── hasArrayType.ts │ │ │ ├── hasObjectType.ts │ │ │ ├── hasScalarType.ts │ │ │ ├── index.ts │ │ │ └── scalarTypes.ts │ │ ├── index.ts │ │ └── lib │ │ │ ├── getTypeName.ts │ │ │ ├── graphqlSafeEnumKey.ts │ │ │ ├── index.ts │ │ │ └── parseSchema.ts │ ├── test │ │ ├── @types │ │ │ └── index.d.ts │ │ ├── json2gql.spec.ts │ │ └── matchers │ │ │ ├── index.ts │ │ │ └── toEqualIgnoringWhitespace.ts │ └── tsconfig.json ├── model-to-jsonschema │ ├── customer.json │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── lib.ts │ │ ├── modelToJsonSchema.ts │ │ └── types │ │ │ └── schema.ts │ ├── test │ │ └── example.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tenanted-api-types │ ├── package.json │ ├── src │ │ ├── errorsTypes.ts │ │ ├── filters.ts │ │ ├── index.d.ts │ │ ├── index.ts │ │ └── records.ts │ ├── tsconfig.json │ └── vite.config.ts └── tenanted-api │ ├── .dockerignore │ ├── Dockerfile │ ├── buildDocker.sh │ ├── env-development │ ├── migrations │ ├── 001.do.auth-tables.sql │ ├── 002.do.model-tables.sql │ ├── 003.do.record-tables.sql │ ├── 004.do.add-rls-policies.sql │ ├── 005.do.add-record-gin-index.sql │ ├── 006.do.add-record-textification.sql │ ├── 007.do.enable-token-refresh.sql │ ├── 008.do.authorization-token.sql │ ├── 009.do.model-functions.sql │ ├── 010.do.trade-refresh-token.sql │ ├── 011.do.introducing-entities.sql │ ├── 012.do.get-single-record.sql │ ├── 013.do.store-references-records.sql │ ├── 014.do.objects-table.sql │ ├── 015.do.record-search-covering-references.sql │ ├── 016.do.get_records_that_reference.sql │ ├── 017.do.add-record-edges-table.sql │ └── 018.do.add-prompt-events-table.sql │ ├── nodemon.json │ ├── package.json │ ├── pushDocker.sh │ ├── runDocker.sh │ ├── scripts │ ├── psql.sh │ ├── rmDataFile.sh │ ├── run-backend.sh │ ├── run-clean-backend.sh │ ├── run-clean-postgres.sh │ ├── run-postgres.sh │ └── stop-postgres.sh │ ├── src │ ├── analytics │ │ └── prompts │ │ │ └── prompts.ts │ ├── appWithTestContainer.ts │ ├── auth │ │ ├── auth.ts │ │ ├── db.ts │ │ ├── establishSession.ts │ │ ├── githubAuth.ts │ │ └── githubUserDetails.ts │ ├── config.ts │ ├── devDb.ts │ ├── expressApp.ts │ ├── index.ts │ ├── infra │ │ ├── authenticatedDatabaseRequest.ts │ │ ├── jwt.ts │ │ ├── loadEnv.ts │ │ ├── logRequest.ts │ │ ├── middleware.ts │ │ ├── postgresPool.ts │ │ └── withClaimInPgSession.ts │ ├── storage │ │ ├── GoogleStorageProvider.ts │ │ ├── MemoryStorageProvider.ts │ │ ├── StorageProvider.ts │ │ ├── getFileObject.ts │ │ ├── signedUrls.ts │ │ └── storage.ts │ └── tenants │ │ ├── formattedFilters.ts │ │ └── tenants.ts │ ├── test │ ├── auth │ │ ├── authorization.token.spec.ts │ │ ├── github.spec.ts │ │ └── refresh.token.spec.ts │ ├── helper.ts │ ├── psql │ │ └── extract_references_records.spec.ts │ ├── storage │ │ ├── blank-document.pdf │ │ ├── one.png │ │ ├── storage.spec.ts │ │ └── two.png │ └── tenant │ │ ├── edges.spec.ts │ │ ├── formattedFilters.spec.ts │ │ ├── recordFiltering.spec.ts │ │ ├── referencingRecords.spec.ts │ │ ├── tenant.spec.ts │ │ ├── tenantEntities.spec.ts │ │ ├── testHelpers.ts │ │ └── uniqueSlots.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── data ├── editor-sdk │ ├── package.json │ ├── src │ │ ├── ModelViewManager.ts │ │ ├── dataRecordEditorHost.ts │ │ ├── dataRecordViewerHost.ts │ │ ├── index.d.ts │ │ └── index.ts │ └── tsconfig.json ├── filters-config │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── filters-core │ ├── package.json │ ├── src │ │ ├── actions.ts │ │ ├── filterGroupListReducer.ts │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── operators.ts │ │ └── types.ts │ ├── test │ │ └── .gitkeep │ ├── tsconfig.json │ └── vite.config.ts └── paginated-editor │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ ├── AttachmentsManager.ts │ │ ├── CellFocus.ts │ │ ├── DataRecordEditor.svelte │ │ ├── DataRecordEditorInner.svelte │ │ ├── DataRecordPathFocus.ts │ │ ├── DataRecordTable.svelte │ │ ├── DataRecordTableTd.svelte │ │ ├── DataTd.svelte │ │ ├── EditRecord.svelte │ │ ├── EditRecordListener.ts │ │ ├── MaybeError.svelte │ │ ├── NestedRecordArrayEditor.svelte │ │ ├── NestedRecordEditor.svelte │ │ ├── PaginatedEditor.svelte │ │ ├── PaginatedEditorHost.ts │ │ ├── RecordCreator.ts │ │ ├── RecordEditContext.ts │ │ ├── RecordSearcher.ts │ │ ├── SlotEdit.svelte │ │ ├── SlotView.svelte │ │ ├── StackingRecordEditor.svelte │ │ ├── dataRecordTableClicked.ts │ │ ├── getMyErrors.ts │ │ ├── index.ts │ │ ├── makeDataRecordViewer.ts │ │ ├── modelReferences │ │ │ ├── ConfigureViewModal.svelte │ │ │ ├── ConfigureViewParams.ts │ │ │ ├── ModelReferenceEditor.svelte │ │ │ ├── ModelReferenceEditorInner.svelte │ │ │ ├── ModelReferenceViewer.svelte │ │ │ ├── ModelReferenceViewerInner.svelte │ │ │ ├── dereference.ts │ │ │ ├── editorHelper.ts │ │ │ └── renderReference.ts │ │ └── styles │ │ │ └── global.css │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── modelReferenceEditor │ │ └── +page.svelte │ │ ├── modelReferenceViewer │ │ └── +page.svelte │ │ ├── paginatedEditor │ │ ├── +page.svelte │ │ ├── DataRecordEditEventInspector.svelte │ │ ├── EditEventInspector.svelte │ │ ├── RecordEditContextInspector.svelte │ │ ├── context.ts │ │ ├── dataRecordEditEventSummariser.ts │ │ └── recordPathErrorsFromHasuraError.ts │ │ └── testModels.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.js ├── file.html ├── frontend ├── ai-playground │ ├── .env.example │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── analytics │ │ │ │ ├── promptEventSender.ts │ │ │ │ └── types.ts │ │ │ ├── chat │ │ │ │ ├── ChatRequestModal.svelte │ │ │ │ ├── ChatTypes.ts │ │ │ │ └── makeAiChatRequest.ts │ │ │ ├── convertModelToJsonSchema.ts │ │ │ ├── dictate │ │ │ │ ├── DictatedRecordPreview.svelte │ │ │ │ ├── DictatedRecordsContext.svelte │ │ │ │ ├── ExtraRecordButtons.svelte │ │ │ │ ├── RecordDicationInner.svelte │ │ │ │ ├── RecordDictationPage.svelte │ │ │ │ ├── VoiceToJson.svelte │ │ │ │ ├── convertTextToJson.ts │ │ │ │ ├── safeConvertJsonToRecord.ts │ │ │ │ └── whisper │ │ │ │ │ ├── ImageNote.svelte │ │ │ │ │ ├── TranscribedAudio.ts │ │ │ │ │ ├── TranscriptionSourcer.svelte │ │ │ │ │ ├── UploadImage.svelte │ │ │ │ │ ├── VoiceNote.svelte │ │ │ │ │ ├── WebsiteNote.svelte │ │ │ │ │ ├── WhisperDictationInner.svelte │ │ │ │ │ ├── WhisperDictationPage.svelte │ │ │ │ │ └── WhisperVoiceToJson.svelte │ │ │ ├── generative │ │ │ │ ├── GenerativeAiBackend.ts │ │ │ │ ├── autoExpander.ts │ │ │ │ ├── components │ │ │ │ │ ├── AmendmentPrompts.svelte │ │ │ │ │ ├── ChatGPTInput.svelte │ │ │ │ │ ├── CommonDatabaseType.svelte │ │ │ │ │ ├── DataEditor.svelte │ │ │ │ │ ├── DataLoadingInsert.svelte │ │ │ │ │ ├── FirstPrompt.svelte │ │ │ │ │ ├── ManageModels.svelte │ │ │ │ │ ├── TableDataset.svelte │ │ │ │ │ ├── applyAmendment.ts │ │ │ │ │ └── helpers.ts │ │ │ │ ├── extractJson.ts │ │ │ │ ├── generateData.ts │ │ │ │ ├── parsedSchema.ts │ │ │ │ ├── stores.ts │ │ │ │ └── useSameSlotIds.ts │ │ │ ├── ocr │ │ │ │ ├── OcrActivity.svelte │ │ │ │ ├── OcrEntryPage.svelte │ │ │ │ ├── OcrEntryPageInner.svelte │ │ │ │ ├── OcrRecordButton.svelte │ │ │ │ └── convertHtmlToJson.ts │ │ │ ├── social │ │ │ │ └── SocialButtons.svelte │ │ │ └── styles │ │ │ │ └── global.css │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── +server.ts │ │ │ ├── amend │ │ │ ├── +page.svelte │ │ │ └── +server.ts │ │ │ ├── api │ │ │ ├── get-image │ │ │ │ └── +server.ts │ │ │ └── pdf-to-image │ │ │ │ └── +server.ts │ │ │ ├── aws-ocr │ │ │ ├── +server.ts │ │ │ └── awsOcrTypes.ts │ │ │ ├── delivery │ │ │ └── +page.svelte │ │ │ ├── fromDocument │ │ │ ├── +page.svelte │ │ │ ├── +server.ts │ │ │ ├── ApiExplainer.svelte │ │ │ ├── ConfigureTargetJsonSchema.svelte │ │ │ ├── CreateImagesOfPdfPages.svelte │ │ │ ├── EditSchema.svelte │ │ │ ├── GenerateJson.svelte │ │ │ ├── GeneratingJsonSchema.svelte │ │ │ ├── HandleAwsOcrResponse.svelte │ │ │ ├── PageOcrPreview.svelte │ │ │ ├── PageOcrProgress.svelte │ │ │ ├── PerformOcr.svelte │ │ │ ├── PostOcr.svelte │ │ │ ├── UploadDocument.svelte │ │ │ ├── data │ │ │ │ └── +page.svelte │ │ │ ├── jsonToHtml.ts │ │ │ ├── partialJson.ts │ │ │ ├── tableToCsv.ts │ │ │ └── types.ts │ │ │ ├── genai │ │ │ ├── sections │ │ │ │ ├── guessSections │ │ │ │ │ └── +server.ts │ │ │ │ └── labelKeywords │ │ │ │ │ └── +server.ts │ │ │ ├── stream │ │ │ │ ├── jsonFromHtml │ │ │ │ │ └── +server.ts │ │ │ │ ├── jsonFromOnlyHtml │ │ │ │ │ └── +server.ts │ │ │ │ ├── jsonFromVision │ │ │ │ │ └── +server.ts │ │ │ │ └── jsonSchemaFromHtml │ │ │ │ │ └── +server.ts │ │ │ └── tables │ │ │ │ ├── categorizeTableRows │ │ │ │ ├── +server.ts │ │ │ │ └── categorizeTableRows.ts │ │ │ │ └── guessTableType │ │ │ │ ├── +server.ts │ │ │ │ ├── callOpenAi.ts │ │ │ │ └── guessTableType.ts │ │ │ ├── generateData │ │ │ └── +server.ts │ │ │ ├── htmlToJson │ │ │ └── +server.ts │ │ │ ├── nicebook │ │ │ ├── api │ │ │ │ ├── addOns │ │ │ │ │ ├── +server.ts │ │ │ │ │ └── addOns.ts │ │ │ │ ├── appointment │ │ │ │ │ ├── +server.ts │ │ │ │ │ └── appoinmentDetails.ts │ │ │ │ ├── appointmentTypes │ │ │ │ │ ├── +server.ts │ │ │ │ │ └── appointmentType.ts │ │ │ │ └── availability │ │ │ │ │ └── times │ │ │ │ │ ├── +server.ts │ │ │ │ │ └── AvailabilityResponse.ts │ │ │ └── scratch │ │ │ │ ├── +page.svelte │ │ │ │ ├── AppointmentForm.svelte │ │ │ │ └── callAppointmentApi.ts │ │ │ ├── ocr-as-html │ │ │ ├── +page.svelte │ │ │ ├── ActionSummarizer.svelte │ │ │ ├── OcrCorrections.svelte │ │ │ ├── OcrJsonCorrection.svelte │ │ │ ├── Paragraphs.svelte │ │ │ ├── RenderOcrItem.svelte │ │ │ ├── RenderOcrJson.svelte │ │ │ ├── RenderOcrPage.svelte │ │ │ ├── RenderOcrTable.svelte │ │ │ ├── applyCorrections.ts │ │ │ ├── fomFormExtender.ts │ │ │ ├── ocrCorrectiveActions.ts │ │ │ ├── toSectionedJson.ts │ │ │ └── zodErrors.ts │ │ │ ├── ocr │ │ │ ├── +page.svelte │ │ │ └── +server.ts │ │ │ ├── prop │ │ │ └── +page.svelte │ │ │ ├── qr-batching │ │ │ ├── +page.svelte │ │ │ ├── BatchAsTable.svelte │ │ │ └── types.ts │ │ │ ├── qr-checkin │ │ │ ├── +page.svelte │ │ │ ├── QrScanList.svelte │ │ │ └── types.ts │ │ │ ├── qr-checkout │ │ │ ├── +page.svelte │ │ │ └── types.ts │ │ │ ├── rectangleSelection │ │ │ └── +page.svelte │ │ │ ├── s3Ocr │ │ │ └── +server.ts │ │ │ ├── screenshot │ │ │ ├── +page.svelte │ │ │ └── +server.ts │ │ │ ├── speech │ │ │ ├── +page.svelte │ │ │ ├── +server.ts │ │ │ └── schemas.ts │ │ │ ├── speech2 │ │ │ ├── +page.svelte │ │ │ └── +server.ts │ │ │ ├── stashPdf │ │ │ └── +server.ts │ │ │ ├── tojson │ │ │ ├── +page.svelte │ │ │ ├── BoundingBoxView.svelte │ │ │ ├── DocumentView.svelte │ │ │ ├── ImageForPdfPage.svelte │ │ │ ├── JsonApiWizard.svelte │ │ │ ├── JsonPreview.svelte │ │ │ ├── LineView.svelte │ │ │ ├── MergeTables.svelte │ │ │ ├── MouseDragHandler.ts │ │ │ ├── PageImage.svelte │ │ │ ├── ProposeDeduplication.svelte │ │ │ ├── ProposeMerge.svelte │ │ │ ├── SectionAnalysis.svelte │ │ │ ├── SelectedBoundingBoxView.svelte │ │ │ ├── StreamingJson.svelte │ │ │ ├── TableAI.ts │ │ │ ├── TableActions.svelte │ │ │ ├── TableAmendments.svelte │ │ │ ├── TableAnalysis.svelte │ │ │ ├── TableDeduplication.svelte │ │ │ ├── TableMerging.svelte │ │ │ ├── ToJson.svelte │ │ │ ├── WizardNarration.svelte │ │ │ ├── genai │ │ │ │ └── GenerateFirstGuessJson.svelte │ │ │ ├── helpers.ts │ │ │ ├── interactiveBoundingBoxes.ts │ │ │ ├── nearestFixedWords.ts │ │ │ ├── scratch │ │ │ │ └── +page.svelte │ │ │ ├── scratch2 │ │ │ │ ├── +page.svelte │ │ │ │ └── types.ts │ │ │ ├── sectionFinder.ts │ │ │ ├── tableCalcs.ts │ │ │ └── wizardState.ts │ │ │ ├── website │ │ │ └── +server.ts │ │ │ └── windows │ │ │ └── +page.svelte │ ├── static │ │ ├── beep.mp3 │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── test │ │ ├── convertJsonSchemaToModel.spec.ts │ │ ├── convertModelToJsonSchema.spec.ts │ │ ├── extractJson.spec.ts │ │ ├── learning-qr-codes.spec.ts │ │ ├── sampleSchemas.ts │ │ └── useSameSlotIds.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── bff │ ├── package.json │ ├── src │ │ ├── Backend.ts │ │ ├── ErrorListenerBackend.ts │ │ ├── LocalStorageBackend.ts │ │ ├── RestBackend.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── combined-editor │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── index.test.ts │ │ ├── lib │ │ │ ├── index.js │ │ │ └── styles │ │ │ │ └── global.css │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tests │ │ └── test.ts │ ├── tsconfig.json │ └── vite.config.ts ├── cozemble-forms │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── fom │ │ │ │ ├── Fom.ts │ │ │ │ ├── components │ │ │ │ │ ├── ArrayContainer.svelte │ │ │ │ │ ├── ArrayContainerInner.svelte │ │ │ │ │ ├── EnsureNestedObject.svelte │ │ │ │ │ ├── FomArray.svelte │ │ │ │ │ ├── FomArrayForm.svelte │ │ │ │ │ ├── FomBoolean.svelte │ │ │ │ │ ├── FomDiscriminatedUnion.svelte │ │ │ │ │ ├── FomEnum.svelte │ │ │ │ │ ├── FomForm.svelte │ │ │ │ │ ├── FomLiteral.svelte │ │ │ │ │ ├── FomObject.svelte │ │ │ │ │ ├── FomPrimitive.svelte │ │ │ │ │ ├── WithDefaultsHandled.svelte │ │ │ │ │ ├── componentPolicy.ts │ │ │ │ │ ├── errorsAtPath.ts │ │ │ │ │ └── helper.ts │ │ │ │ └── zodToFom.ts │ │ │ ├── index.ts │ │ │ ├── inputs │ │ │ │ ├── CheckboxInput.svelte │ │ │ │ ├── ErrorAlert.svelte │ │ │ │ ├── InputLabel.svelte │ │ │ │ ├── NumberInput.svelte │ │ │ │ ├── SelectInput.svelte │ │ │ │ └── TextInput.svelte │ │ │ └── styles │ │ │ │ └── global.css │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── ActionSummarizer.svelte │ │ │ └── types.ts │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── data-editor │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── common │ │ │ │ ├── actions.ts │ │ │ │ └── hosts │ │ │ │ │ └── mock.ts │ │ │ ├── components │ │ │ │ ├── ArrayEditor.svelte │ │ │ │ ├── LoadingButton.svelte │ │ │ │ ├── ObjectEditor.svelte │ │ │ │ ├── ObjectEditorTestCopy.svelte │ │ │ │ ├── inputWrappers │ │ │ │ │ ├── ObjectEditorWrapper.svelte │ │ │ │ │ └── SimpleInputWrapper.svelte │ │ │ │ ├── inputs │ │ │ │ │ └── simple │ │ │ │ │ │ ├── DateInput.svelte │ │ │ │ │ │ ├── NumberInput.svelte │ │ │ │ │ │ └── StringInput.svelte │ │ │ │ └── tableInputCells │ │ │ │ │ ├── CellInputWrapper.svelte │ │ │ │ │ ├── DateInput.svelte │ │ │ │ │ ├── DateRangeInput.svelte │ │ │ │ │ ├── NumberInput.svelte │ │ │ │ │ ├── SelectInput.svelte │ │ │ │ │ ├── StringInput.svelte │ │ │ │ │ └── index.ts │ │ │ ├── helpers │ │ │ │ ├── records.ts │ │ │ │ └── settings.ts │ │ │ ├── index.ts │ │ │ ├── mock │ │ │ │ └── models.ts │ │ │ ├── stores │ │ │ │ ├── errors.ts │ │ │ │ ├── models.ts │ │ │ │ └── records.ts │ │ │ ├── styles │ │ │ │ └── global.css │ │ │ ├── types │ │ │ │ ├── cozemble.d.ts │ │ │ │ ├── error.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── jsonSchema.d.ts │ │ │ │ └── value.d.ts │ │ │ └── utils.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ └── editor │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── datatable │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── canBeginEditingInNestedSlot.cy.ts │ │ │ ├── createNewRecordsInNestedTables.cy.ts │ │ │ ├── createNewRootRecordFromReferenceSlot.cy.ts │ │ │ ├── hasManyReferences.cy.ts │ │ │ ├── helpers.ts │ │ │ ├── milestone1.cy.ts │ │ │ ├── modelReferencesFromTheManySide.cy.ts │ │ │ └── supportForArrays.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── e2e.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── package.json │ ├── postcss.config.cjs │ ├── scripts │ │ └── run-cypress.sh │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── AddTableModal.svelte │ │ │ ├── AddTableNavButton.svelte │ │ │ ├── DataTable.svelte │ │ │ ├── DataTableInner.svelte │ │ │ ├── EditModelModal.svelte │ │ │ ├── Modals.svelte │ │ │ ├── ModelTab.svelte │ │ │ ├── app │ │ │ │ └── StoreSyncBackend.ts │ │ │ ├── appBackend.ts │ │ │ ├── backend │ │ │ │ ├── Backend.ts │ │ │ │ └── InMemoryBackend.ts │ │ │ ├── components │ │ │ │ └── editor │ │ │ │ │ ├── AddModelElementButton.svelte │ │ │ │ │ ├── Editor.svelte │ │ │ │ │ ├── ModelPane.svelte │ │ │ │ │ ├── RecordsTable.svelte │ │ │ │ │ └── nav │ │ │ │ │ ├── AddModelButton.svelte │ │ │ │ │ ├── AddModelModal.svelte │ │ │ │ │ ├── EditorNav.svelte │ │ │ │ │ └── NavItem.svelte │ │ │ ├── editors │ │ │ │ ├── EditableStringInput.svelte │ │ │ │ ├── GettableWritable.ts │ │ │ │ ├── dispatchChange.ts │ │ │ │ └── editableValue.ts │ │ │ ├── errors.ts │ │ │ ├── explainer │ │ │ │ ├── DataModellingExplainer.svelte │ │ │ │ ├── ExplainerButtons.svelte │ │ │ │ ├── SimpleCustomerTable.svelte │ │ │ │ ├── SimpleCustomerWithAddressTable.svelte │ │ │ │ └── SimpleInvoiceTable.svelte │ │ │ ├── extensions │ │ │ │ └── editorExtensions.ts │ │ │ ├── filtering │ │ │ │ └── RecordFilteringPanel.svelte │ │ │ ├── focus │ │ │ │ └── DataTableFocus.ts │ │ │ ├── icons │ │ │ │ └── DownCaret.svelte │ │ │ ├── index.ts │ │ │ ├── modelUi.ts │ │ │ ├── models │ │ │ │ ├── ModelDevConsole.svelte │ │ │ │ ├── ModelDevConsoleOption.svelte │ │ │ │ ├── ModelPane.svelte │ │ │ │ ├── ModellingControl.svelte │ │ │ │ ├── SwitchableModelPane.svelte │ │ │ │ ├── WithDataRecordEditorClient.svelte │ │ │ │ ├── editableTableName.ts │ │ │ │ ├── makeDataRecordEditorClient.ts │ │ │ │ └── modelReducer.ts │ │ │ ├── records │ │ │ │ ├── AddSubItemDialogue.svelte │ │ │ │ ├── AddSubItemSteps.svelte │ │ │ │ ├── DataRecordsTable.svelte │ │ │ │ ├── DataRecordsTableInContext.svelte │ │ │ │ ├── DataRecordsTableOptions.ts │ │ │ │ ├── EventSourcedRecordGraphStore.ts │ │ │ │ ├── ExpandCollapseButton.svelte │ │ │ │ ├── ExplainSubRecords.svelte │ │ │ │ ├── ExplainSubTables.svelte │ │ │ │ ├── MaybeDataTdError.svelte │ │ │ │ ├── ModelControls.ts │ │ │ │ ├── ModelRecordsContext.svelte │ │ │ │ ├── NestedDataRecords.svelte │ │ │ │ ├── NestedDataRecordsInContext.svelte │ │ │ │ ├── NestedModelName.svelte │ │ │ │ ├── RecordActionButton.svelte │ │ │ │ ├── RecordAdditionRow.svelte │ │ │ │ ├── RecordControls.ts │ │ │ │ ├── RecordGraphLoader.ts │ │ │ │ ├── RecordSaveButton.svelte │ │ │ │ ├── RecordsContext.ts │ │ │ │ ├── SlotEditModal.svelte │ │ │ │ ├── SubItemIntro.svelte │ │ │ │ ├── SubRecordPreview.svelte │ │ │ │ ├── SubTablePreview.svelte │ │ │ │ ├── WithNestedRecordsContext.svelte │ │ │ │ ├── WithSingleRecordContext.svelte │ │ │ │ ├── cells │ │ │ │ │ ├── ClassicSlotEdit.svelte │ │ │ │ │ ├── ClassicSlotView.svelte │ │ │ │ │ ├── DataTd.svelte │ │ │ │ │ ├── SimplerSlotEdit.svelte │ │ │ │ │ ├── SimplerSlotView.svelte │ │ │ │ │ ├── SlotEdit.svelte │ │ │ │ │ ├── SlotTh.svelte │ │ │ │ │ └── SlotView.svelte │ │ │ │ ├── contextHelper.ts │ │ │ │ ├── creator │ │ │ │ │ ├── CreateNewRecord.svelte │ │ │ │ │ ├── RecordCreatorContext.svelte │ │ │ │ │ ├── SingleRootRecordEditTable.svelte │ │ │ │ │ └── recordCreatorStore.ts │ │ │ │ ├── entry │ │ │ │ │ ├── DataEntryActions.svelte │ │ │ │ │ └── DataEntryRow.svelte │ │ │ │ ├── expandCollapse.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── makeCombinedDataRecordEditorClient.ts │ │ │ │ ├── makeFocusControls.ts │ │ │ │ ├── makeModelControls.ts │ │ │ │ ├── makeRecordControls.ts │ │ │ │ ├── modelRecordsContextFns.ts │ │ │ │ ├── modelReferences │ │ │ │ │ ├── ConfigureViewModal.svelte │ │ │ │ │ ├── ConfigureViewParams.ts │ │ │ │ │ ├── ManyReferenceEditor.svelte │ │ │ │ │ ├── ModelReferenceEditor.svelte │ │ │ │ │ ├── ModelReferenceEditorInner.svelte │ │ │ │ │ ├── ModelReferenceViewer.svelte │ │ │ │ │ ├── ModelReferenceViewerInner.svelte │ │ │ │ │ ├── RenderModelReferenceView.svelte │ │ │ │ │ ├── SingleReferenceSelector.svelte │ │ │ │ │ ├── dereference.ts │ │ │ │ │ ├── editorHelper.ts │ │ │ │ │ ├── mergeSubGraphs.ts │ │ │ │ │ └── renderReference.ts │ │ │ │ └── modelling │ │ │ │ │ └── AddModelElementButton.svelte │ │ │ ├── stores │ │ │ │ ├── EventSourcedStore.ts │ │ │ │ ├── allModelViews.ts │ │ │ │ ├── allModels.ts │ │ │ │ ├── contextHelper.ts │ │ │ │ ├── currentUserId.ts │ │ │ │ ├── introductions.ts │ │ │ │ ├── models │ │ │ │ │ ├── contexts.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── methods.ts │ │ │ │ ├── recordFilteringComponentStore.ts │ │ │ │ └── systemConfiguration.ts │ │ │ ├── styles │ │ │ │ └── global.css │ │ │ ├── tables │ │ │ │ └── actions.ts │ │ │ └── types.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── DevOptions.svelte │ │ │ ├── buttons │ │ │ ├── +page.svelte │ │ │ ├── DictationPane.svelte │ │ │ └── ExtraRecordButtons.svelte │ │ │ ├── cypress │ │ │ ├── +page.svelte │ │ │ └── testModels.ts │ │ │ ├── data │ │ │ └── explainer │ │ │ │ └── +page.svelte │ │ │ ├── empty │ │ │ └── +page.svelte │ │ │ ├── paste │ │ │ └── +page.svelte │ │ │ ├── refs │ │ │ └── +page.svelte │ │ │ └── temp.ts │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── json-schema-form │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── EnumSelector.svelte │ │ │ │ ├── JsonSchemaForm.svelte │ │ │ │ ├── Label.svelte │ │ │ │ └── MaybeErrorMessage.svelte │ │ │ ├── index.ts │ │ │ └── styles │ │ │ │ └── global.css │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── main-app │ ├── .postgratorrc.json │ ├── package.json │ ├── postcss.config.cjs │ ├── postgrator-local.config.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── auth │ │ │ │ ├── cozauth.ts │ │ │ │ └── tradeRefreshTokenForAccessToken.ts │ │ │ ├── backend │ │ │ │ ├── adapters.ts │ │ │ │ └── backendStore.ts │ │ │ ├── config.ts │ │ │ ├── generative │ │ │ │ ├── GenerativeAiBackend.ts │ │ │ │ ├── GenerativeAiModeling.svelte │ │ │ │ └── components │ │ │ │ │ ├── ChatGPTInput.svelte │ │ │ │ │ ├── ChatGPTResult.svelte │ │ │ │ │ └── TableDataset.svelte │ │ │ ├── icons │ │ │ │ ├── Cog6ToothIcon.svelte │ │ │ │ ├── DatabaseIcon.svelte │ │ │ │ ├── GenerativeIcon.svelte │ │ │ │ └── PuzzlePieceIcon.svelte │ │ │ ├── incrementalModelling │ │ │ │ ├── IncrementalModelingBackend.ts │ │ │ │ ├── IncrementalModelingData.svelte │ │ │ │ ├── IncrementalModelingMain.svelte │ │ │ │ ├── ShowDataModellingExplainer.svelte │ │ │ │ └── incrementalModelStore.ts │ │ │ ├── models │ │ │ │ ├── modelsStore.ts │ │ │ │ ├── tenantEntityStore.ts │ │ │ │ └── views.ts │ │ │ ├── notices │ │ │ │ ├── ToastNotices.svelte │ │ │ │ ├── UserInstructionNotices.svelte │ │ │ │ ├── toastNoticeStore.ts │ │ │ │ └── userInstructionStore.ts │ │ │ ├── settings │ │ │ │ ├── JsonSchemaSystemConfigEditor.svelte │ │ │ │ ├── SettingsPanel.svelte │ │ │ │ └── ThemeChange.svelte │ │ │ ├── styles │ │ │ │ └── global.css │ │ │ ├── tenant │ │ │ │ └── tenantStore.ts │ │ │ └── util │ │ │ │ └── ErrorMessage.svelte │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── [env] │ │ │ └── session │ │ │ │ └── establish │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── cozconfig │ │ │ └── +page.svelte │ │ │ └── tenants │ │ │ └── [tenantId] │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── temp.ts │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── sdk-components │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── index.ts │ │ │ └── modelViewEditor │ │ │ │ ├── HtmlModelViewEditor.svelte │ │ │ │ ├── ModelViewEditor.svelte │ │ │ │ ├── ModelViewEditorWithPreview.svelte │ │ │ │ ├── ModelViewPreview.svelte │ │ │ │ ├── Part.svelte │ │ │ │ ├── SummaryCardPreview.svelte │ │ │ │ └── htmlTemplateAsParts.ts │ │ └── routes │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts ├── tojson │ ├── .env.example │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── hooks.server.ts │ │ ├── index.test.ts │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── EmailOnRelease.svelte │ │ │ │ ├── FileDrop.svelte │ │ │ │ ├── Logo.svelte │ │ │ │ ├── ProgressBar.svelte │ │ │ │ ├── TypingAnimatedText.svelte │ │ │ │ ├── form │ │ │ │ │ └── FormInput.svelte │ │ │ │ ├── notifications │ │ │ │ │ ├── Notification.svelte │ │ │ │ │ └── NotificationProvider.svelte │ │ │ │ └── ocr │ │ │ │ │ ├── Table.svelte │ │ │ │ │ ├── TableActions.svelte │ │ │ │ │ └── TableRow.svelte │ │ │ ├── index.ts │ │ │ ├── stores │ │ │ │ ├── models.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── records.ts │ │ │ │ └── user.ts │ │ │ ├── styles │ │ │ │ └── global.css │ │ │ ├── types │ │ │ │ ├── database.types.ts │ │ │ │ └── index.d.ts │ │ │ └── utils.ts │ │ └── routes │ │ │ ├── (focused) │ │ │ ├── +layout.svelte │ │ │ ├── auth │ │ │ │ ├── AuthPageLayout.svelte │ │ │ │ ├── OAuthProviders.svelte │ │ │ │ ├── README.md │ │ │ │ ├── callback │ │ │ │ │ └── +server.ts │ │ │ │ ├── reset-password │ │ │ │ │ ├── +page.svelte │ │ │ │ │ ├── ForgotPasswordFrom.svelte │ │ │ │ │ ├── README.md │ │ │ │ │ └── UpdatePasswordForm.svelte │ │ │ │ ├── sign-in │ │ │ │ │ ├── +page.svelte │ │ │ │ │ ├── LoginForm.svelte │ │ │ │ │ └── README.md │ │ │ │ ├── sign-out │ │ │ │ │ └── +page.svelte │ │ │ │ └── sign-up │ │ │ │ │ ├── +page.svelte │ │ │ │ │ ├── README.md │ │ │ │ │ └── SignupForm.svelte │ │ │ └── create │ │ │ │ ├── +page.svelte │ │ │ │ ├── CorrectOCR.svelte │ │ │ │ └── README.md │ │ │ ├── (landing) │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── Footer.svelte │ │ │ ├── Header.svelte │ │ │ ├── README.md │ │ │ ├── TryItForm.svelte │ │ │ ├── coming-soon │ │ │ │ └── +page.svelte │ │ │ └── pricing │ │ │ │ ├── +page.svelte │ │ │ │ ├── Plan.svelte │ │ │ │ └── index.ts │ │ │ ├── +error.svelte │ │ │ ├── +layout.server.ts │ │ │ ├── +layout.svelte │ │ │ ├── +layout.ts │ │ │ ├── README.md │ │ │ ├── api │ │ │ ├── ocr │ │ │ │ └── +server.ts │ │ │ ├── schema │ │ │ │ └── +server.ts │ │ │ └── subscriber │ │ │ │ └── +server.ts │ │ │ └── dashboard │ │ │ └── README.md │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── ux.excalidraw │ └── vite.config.ts ├── ui-blocks │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── filtering │ │ │ │ ├── FilterConfigurer.svelte │ │ │ │ ├── FilterValueProviderUsingPropertyEditor.svelte │ │ │ │ ├── ShowFilterButton.svelte │ │ │ │ └── filtering.ts │ │ │ └── index.ts │ │ └── routes │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.ts └── website │ ├── package.json │ ├── src │ ├── app.d.ts │ ├── app.html │ └── routes │ │ └── +page.svelte │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── lang └── util │ ├── package.json │ ├── src │ ├── Counter.ts │ ├── Debouncer.ts │ ├── HeadAndTail.ts │ ├── Stack.ts │ ├── TextBlockParser.ts │ ├── arrays.ts │ ├── clock.ts │ ├── correlation.ts │ ├── dates.ts │ ├── errors.ts │ ├── index.d.ts │ ├── index.ts │ ├── maps.ts │ ├── nanoids.ts │ ├── numbers.ts │ ├── objects.ts │ ├── options.ts │ ├── outcomes.ts │ ├── partial.ts │ ├── promises.ts │ ├── random.ts │ ├── selections.ts │ ├── string.ts │ ├── time.ts │ ├── urls.ts │ ├── uuids.ts │ ├── value.ts │ └── window.ts │ ├── test │ ├── TextBlockParser.spec.ts │ ├── arrays.spec.ts │ ├── dates.spec.ts │ ├── numbers.spec.ts │ ├── paragraphs.spec.ts │ ├── random-elementOfArray.spec.ts │ ├── snakeCase.spec.ts │ ├── splitAtFirst.spec.ts │ ├── term_extractor.spec.ts │ ├── toJsonCase.spec.ts │ └── walkTo.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── model ├── api │ ├── package.json │ ├── src │ │ ├── dataRecordFns.ts │ │ ├── dataRecordPathElementFns.ts │ │ ├── dataRecordValuePathFns.ts │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── invoiceModel.ts │ │ ├── modelPathFns.ts │ │ ├── modelsFns.ts │ │ ├── modelsWithReferences.ts │ │ ├── nestedModelFns.ts │ │ ├── propertyFns.ts │ │ └── valuesForModelPath.ts │ ├── test │ │ ├── dataRecordFns │ │ │ ├── childRecords.spec.ts │ │ │ └── random.spec.ts │ │ ├── dataRecordPathElementFns │ │ │ └── getNestedRecord.spec.ts │ │ ├── dataRecordPathFns.spec.ts │ │ ├── dataRecordValuePathFns │ │ │ ├── addHasManyItem.spec.ts │ │ │ ├── functions.spec.ts │ │ │ └── getAndSetValues.spec.ts │ │ ├── fullStructure.spec.ts │ │ ├── jsonschema │ │ │ ├── attachmentAsJson.ts │ │ │ ├── consideration.ts │ │ │ └── modelToJsonSchema.spec.ts │ │ ├── modelFns │ │ │ ├── allPaths.spec.ts │ │ │ ├── findReferencingModels.spec.ts │ │ │ └── validate.spec.ts │ │ └── modelPathFns │ │ │ ├── valuesForModelPath.manyCardinality.spec.ts │ │ │ └── valuesForModelPath.oneCardinality.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── assembled │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── .gitkeep │ └── tsconfig.json ├── attachment │ ├── core │ │ ├── package.json │ │ ├── src │ │ │ ├── attachmentProperty.ts │ │ │ ├── attachmentPropertyDescriptor.ts │ │ │ ├── events.ts │ │ │ ├── index.d.ts │ │ │ └── index.ts │ │ ├── test │ │ │ └── .gitkeep │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── ui │ │ ├── package.json │ │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── AttachmentPropertyConfigurer.svelte │ │ │ ├── AttachmentPropertyEditor.svelte │ │ │ ├── AttachmentPropertyViewer.svelte │ │ │ ├── AttachmentPropertyViewerWrapper.svelte │ │ │ ├── AttachmentView.svelte │ │ │ ├── AttachmentsRibbon.svelte │ │ │ ├── MaybeErrorMessage.svelte │ │ │ ├── ShowAttachmentThumbs.svelte │ │ │ ├── helpers.ts │ │ │ └── index.ts │ │ └── routes │ │ │ └── +page.svelte │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── core │ ├── package.json │ ├── src │ │ ├── JsonPropertyDescriptor.ts │ │ ├── TinyValue.ts │ │ ├── core.ts │ │ ├── events.ts │ │ ├── graph.ts │ │ ├── graphQlPrompt.txt │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── modelIdFns.ts │ │ ├── prompt.txt │ │ ├── prompt2.txt │ │ ├── propertyDescriptor.ts │ │ ├── propertyIdFns.ts │ │ ├── systemConfiguration.ts │ │ └── views.ts │ ├── test │ │ └── recordGraphEdgeFns.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── currency │ ├── core │ │ ├── package.json │ │ ├── src │ │ │ ├── events.ts │ │ │ ├── index.d.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── ui │ │ ├── package.json │ │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── CurrencyPropertyConfigurer.svelte │ │ │ ├── CurrencyPropertyEditor.svelte │ │ │ ├── CurrencyPropertyViewer.svelte │ │ │ ├── CurrencyPropertyViewerWrapper.svelte │ │ │ ├── MaybeErrorMessage.svelte │ │ │ └── index.ts │ │ └── routes │ │ │ ├── +page.svelte │ │ │ └── CurrencyRepl.svelte │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ └── vite.config.js ├── editor-sdk │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── propertyEditor.ts │ └── tsconfig.json ├── editor │ ├── cypress.config.ts │ ├── cypress │ │ ├── e2e │ │ │ ├── modelNameChange.cy.ts │ │ │ ├── stringPropertyConfiguration.cy.ts │ │ │ ├── structuredModels.cy.ts │ │ │ └── supportsRequiredProperties.cy.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── support │ │ │ ├── commands.ts │ │ │ └── e2e.ts │ │ └── tsconfig.json │ ├── package.json │ ├── scripts │ │ └── run-cypress.sh │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── AddNestedModelDialog.svelte │ │ │ ├── ModelEditor.svelte │ │ │ ├── ModelEditorHost.ts │ │ │ ├── ModelReferenceEditor.svelte │ │ │ ├── ModelSlotEditor.svelte │ │ │ ├── ModelStructureEditor.svelte │ │ │ ├── PropertyEditor.svelte │ │ │ ├── index.ts │ │ │ ├── namingStore.ts │ │ │ └── validateSlot.ts │ │ └── routes │ │ │ ├── +page.svelte │ │ │ └── modelEditor │ │ │ ├── +page.svelte │ │ │ ├── host.ts │ │ │ └── toSql.ts │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.js ├── event-sourced │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── EventSourcedModel.ts │ │ │ ├── eventSourcedModelFns.ts │ │ │ ├── eventSourcedModelListFns.ts │ │ │ ├── events.ts │ │ │ └── modelSlotEvents.ts │ │ └── records │ │ │ ├── EventSourcedDataRecord.ts │ │ │ ├── EventSourcedRecordGraph.ts │ │ │ ├── dataRecordEditEvents.ts │ │ │ └── recordGraphEvents.ts │ ├── test │ │ ├── models │ │ │ ├── coreModelEvents.spec.ts │ │ │ ├── eventSourcedModelFns.addEvent.spec.ts │ │ │ ├── eventSourcedModelFns.playAll.spec.ts │ │ │ ├── eventSourcedModelListFns.spec.ts │ │ │ └── modelSlotEvents.spec.ts │ │ └── records │ │ │ └── EventSourcedRecordGraph.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── properties-core │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ ├── index.ts │ │ └── properties │ │ │ ├── JsonProperty.ts │ │ │ ├── array │ │ │ └── JsonArrayProperty.ts │ │ │ ├── date │ │ │ └── JsonDateProperty.ts │ │ │ ├── derived │ │ │ ├── derivedProperties.ts │ │ │ └── makeDerivedProperty.ts │ │ │ ├── events.ts │ │ │ ├── number │ │ │ └── JsonNumberProperty.ts │ │ │ └── string │ │ │ └── JsonStringProperty.ts │ ├── test │ │ └── .gitkeep │ ├── tsconfig.json │ └── vite.config.ts ├── properties-ui │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── index.ts │ │ │ ├── properties │ │ │ │ ├── array │ │ │ │ │ ├── JsonArrayPropertyEditor.svelte │ │ │ │ │ ├── JsonArrayPropertyViewer.svelte │ │ │ │ │ ├── MaybeError.svelte │ │ │ │ │ └── makeArrayItemProperty.ts │ │ │ │ ├── components │ │ │ │ │ ├── JsonPropertyConfigurer.svelte │ │ │ │ │ ├── JsonPropertyConfigurerInner.svelte │ │ │ │ │ ├── JsonPropertyEditor.svelte │ │ │ │ │ └── JsonPropertyViewer.svelte │ │ │ │ ├── date │ │ │ │ │ └── JsonDateEditor.svelte │ │ │ │ ├── number │ │ │ │ │ ├── GenericDecimalEditor.svelte │ │ │ │ │ ├── JsonIntegerEditor.svelte │ │ │ │ │ └── JsonNumberEditor.svelte │ │ │ │ ├── registerJsonPropertyViewers.ts │ │ │ │ └── string │ │ │ │ │ ├── GenericStringEditor.svelte │ │ │ │ │ └── JsonStringEditor.svelte │ │ │ ├── styles │ │ │ │ └── global.css │ │ │ └── types │ │ │ │ └── changeHandler.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.js ├── registries │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ └── index.ts │ └── tsconfig.json └── to-json │ ├── package.json │ ├── src │ ├── applyTemplate.ts │ ├── index.ts │ ├── jsonToRecord.ts │ └── modelToJson.ts │ ├── test │ ├── applyTemplate.spec.ts │ ├── invoiceWithCustomer.spec.ts │ └── jsonToRecord.spec.ts │ ├── tsconfig.json │ └── vite.config.ts ├── modelReferencePain.txt ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts └── packaging │ ├── package.json │ ├── rewrite-workspace-deps.sh │ ├── rewrite-workspace-deps.ts │ └── tsconfig.json ├── todo.txt ├── turbo.json ├── ui ├── atoms │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── Editable.svelte │ │ │ ├── EditableName.svelte │ │ │ ├── clickoutside │ │ │ │ └── clickOutside.ts │ │ │ ├── icons │ │ │ │ ├── Cog6Tooth.svelte │ │ │ │ ├── DownCaret.svelte │ │ │ │ ├── Info.svelte │ │ │ │ ├── PencilIcon.svelte │ │ │ │ ├── TrashIcon.svelte │ │ │ │ └── readme.md │ │ │ └── index.ts │ │ └── routes │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.js └── filter-editor │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ ├── app.d.ts │ ├── app.html │ ├── lib │ │ ├── filters │ │ │ ├── ConjunctionView.svelte │ │ │ ├── FilterGroupListView.svelte │ │ │ ├── FilterGroupView.svelte │ │ │ ├── FilterInstanceListView.svelte │ │ │ ├── FilterManagement.svelte │ │ │ ├── FilterRhsConfigurer.svelte │ │ │ ├── FilterRhsDateConfigurer.svelte │ │ │ ├── FilterRhsStringConfigurer.svelte │ │ │ ├── LhsSelector.svelte │ │ │ ├── OperatorSelector.svelte │ │ │ ├── RhsOptionTypePicker.svelte │ │ │ ├── UserSelectedRhsValue.svelte │ │ │ ├── onlyUserSelectedRhsValues.ts │ │ │ ├── rhsOptionsAsSelectOptions.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ └── styles │ │ │ └── global.css │ └── routes │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── filters │ │ └── +page.svelte │ │ ├── filtersOnOtherValues │ │ └── +page.svelte │ │ └── instances │ │ └── +server.ts │ ├── static │ └── favicon.png │ ├── svelte.config.js │ ├── tailwind.config.cjs │ ├── tsconfig.json │ └── vite.config.js └── zshrc /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/deno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/deno.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/jsLinters/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/jsLinters/eslint.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/monorepo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/monorepo.iml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/README.md -------------------------------------------------------------------------------- /adrs/0001-json-schema-is-not-sufficient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/adrs/0001-json-schema-is-not-sufficient.md -------------------------------------------------------------------------------- /backend/aws-ocr-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr-types/package.json -------------------------------------------------------------------------------- /backend/aws-ocr-types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr-types/src/index.ts -------------------------------------------------------------------------------- /backend/aws-ocr-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr-types/tsconfig.json -------------------------------------------------------------------------------- /backend/aws-ocr-types/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr-types/vite.config.ts -------------------------------------------------------------------------------- /backend/aws-ocr/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/build.js -------------------------------------------------------------------------------- /backend/aws-ocr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/package.json -------------------------------------------------------------------------------- /backend/aws-ocr/pdfs/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pdfs/sample.pdf -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /node_modules/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/Pulumi.cozemble-aws-ocr-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/Pulumi.cozemble-aws-ocr-dev.yaml -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/Pulumi.yaml -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/index.ts -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/package-lock.json -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/package.json -------------------------------------------------------------------------------- /backend/aws-ocr/pulumi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/pulumi/tsconfig.json -------------------------------------------------------------------------------- /backend/aws-ocr/run-curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/run-curl.sh -------------------------------------------------------------------------------- /backend/aws-ocr/src/convertToPng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/convertToPng.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/handler.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/jsonToHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/jsonToHtml.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/ocr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/ocr.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/stashPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/stashPdf.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/syncOcr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/syncOcr.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/syncS3FileOcr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/syncS3FileOcr.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/textractToJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/textractToJson.ts -------------------------------------------------------------------------------- /backend/aws-ocr/src/uploadToS3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/src/uploadToS3.ts -------------------------------------------------------------------------------- /backend/aws-ocr/test/green-delivery-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/test/green-delivery-note.json -------------------------------------------------------------------------------- /backend/aws-ocr/test/green-delivery-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/test/green-delivery-note.png -------------------------------------------------------------------------------- /backend/aws-ocr/test/jsonToHtml.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/test/jsonToHtml.spec.ts -------------------------------------------------------------------------------- /backend/aws-ocr/test/textractToJson.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/test/textractToJson.spec.ts -------------------------------------------------------------------------------- /backend/aws-ocr/test/waste-collection-invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/test/waste-collection-invoice.pdf -------------------------------------------------------------------------------- /backend/aws-ocr/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/aws-ocr/tsconfig.json -------------------------------------------------------------------------------- /backend/chat-up-agent/fetchAndStore.sh: -------------------------------------------------------------------------------- 1 | node --loader ts-node/esm src/fetchAndStore.ts -------------------------------------------------------------------------------- /backend/chat-up-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/package.json -------------------------------------------------------------------------------- /backend/chat-up-agent/src/fetchAndStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/src/fetchAndStore.ts -------------------------------------------------------------------------------- /backend/chat-up-agent/src/index.ts: -------------------------------------------------------------------------------- 1 | export const x = 1 -------------------------------------------------------------------------------- /backend/chat-up-agent/src/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/src/slack.ts -------------------------------------------------------------------------------- /backend/chat-up-agent/src/summarise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/src/summarise.ts -------------------------------------------------------------------------------- /backend/chat-up-agent/summarise.sh: -------------------------------------------------------------------------------- 1 | node --loader ts-node/esm src/summarise.ts -------------------------------------------------------------------------------- /backend/chat-up-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/tsconfig.json -------------------------------------------------------------------------------- /backend/chat-up-agent/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/chat-up-agent/vite.config.ts -------------------------------------------------------------------------------- /backend/gcp-infra/Pulumi.dev.yaml: -------------------------------------------------------------------------------- 1 | config: 2 | gcp:project: cozemble 3 | -------------------------------------------------------------------------------- /backend/gcp-infra/Pulumi.yaml: -------------------------------------------------------------------------------- 1 | name: gcp-infra 2 | runtime: nodejs 3 | description: What cozemble needs in GCP 4 | -------------------------------------------------------------------------------- /backend/gcp-infra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/gcp-infra/index.ts -------------------------------------------------------------------------------- /backend/gcp-infra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/gcp-infra/package.json -------------------------------------------------------------------------------- /backend/gcp-infra/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/gcp-infra/tsconfig.json -------------------------------------------------------------------------------- /backend/google-vision-ocr/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .turbo 3 | dist/esm -------------------------------------------------------------------------------- /backend/google-vision-ocr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/Dockerfile -------------------------------------------------------------------------------- /backend/google-vision-ocr/buildDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/buildDocker.sh -------------------------------------------------------------------------------- /backend/google-vision-ocr/env-development: -------------------------------------------------------------------------------- 1 | API_KEY= -------------------------------------------------------------------------------- /backend/google-vision-ocr/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/nodemon.json -------------------------------------------------------------------------------- /backend/google-vision-ocr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/package.json -------------------------------------------------------------------------------- /backend/google-vision-ocr/pushDocker.sh: -------------------------------------------------------------------------------- 1 | docker push gcr.io/cozemble/backend-google-vision-ocr:latest 2 | -------------------------------------------------------------------------------- /backend/google-vision-ocr/rectangles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/rectangles.json -------------------------------------------------------------------------------- /backend/google-vision-ocr/runDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/runDocker.sh -------------------------------------------------------------------------------- /backend/google-vision-ocr/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/src/index.ts -------------------------------------------------------------------------------- /backend/google-vision-ocr/src/loadEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/src/loadEnv.ts -------------------------------------------------------------------------------- /backend/google-vision-ocr/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/tsconfig.json -------------------------------------------------------------------------------- /backend/google-vision-ocr/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/google-vision-ocr/vite.config.ts -------------------------------------------------------------------------------- /backend/json-to-gql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/.gitignore -------------------------------------------------------------------------------- /backend/json-to-gql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/package.json -------------------------------------------------------------------------------- /backend/json-to-gql/src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/@types/index.d.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/helpers/hasArrayType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/helpers/hasArrayType.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/helpers/hasObjectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/helpers/hasObjectType.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/helpers/hasScalarType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/helpers/hasScalarType.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/helpers/index.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/helpers/scalarTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/helpers/scalarTypes.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/index.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/lib/getTypeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/lib/getTypeName.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/lib/graphqlSafeEnumKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/lib/graphqlSafeEnumKey.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/lib/index.ts -------------------------------------------------------------------------------- /backend/json-to-gql/src/lib/parseSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/src/lib/parseSchema.ts -------------------------------------------------------------------------------- /backend/json-to-gql/test/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/test/@types/index.d.ts -------------------------------------------------------------------------------- /backend/json-to-gql/test/json2gql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/test/json2gql.spec.ts -------------------------------------------------------------------------------- /backend/json-to-gql/test/matchers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './toEqualIgnoringWhitespace' 2 | -------------------------------------------------------------------------------- /backend/json-to-gql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/json-to-gql/tsconfig.json -------------------------------------------------------------------------------- /backend/model-to-jsonschema/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/customer.json -------------------------------------------------------------------------------- /backend/model-to-jsonschema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/package.json -------------------------------------------------------------------------------- /backend/model-to-jsonschema/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/src/index.d.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/src/index.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/src/lib.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/src/modelToJsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/src/modelToJsonSchema.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/src/types/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/src/types/schema.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/test/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/test/example.spec.ts -------------------------------------------------------------------------------- /backend/model-to-jsonschema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/tsconfig.json -------------------------------------------------------------------------------- /backend/model-to-jsonschema/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/model-to-jsonschema/vite.config.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/package.json -------------------------------------------------------------------------------- /backend/tenanted-api-types/src/errorsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/src/errorsTypes.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/src/filters.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/src/index.d.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/src/index.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/src/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/src/records.ts -------------------------------------------------------------------------------- /backend/tenanted-api-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/tsconfig.json -------------------------------------------------------------------------------- /backend/tenanted-api-types/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api-types/vite.config.ts -------------------------------------------------------------------------------- /backend/tenanted-api/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .turbo 3 | dist/esm -------------------------------------------------------------------------------- /backend/tenanted-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/Dockerfile -------------------------------------------------------------------------------- /backend/tenanted-api/buildDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/buildDocker.sh -------------------------------------------------------------------------------- /backend/tenanted-api/env-development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/env-development -------------------------------------------------------------------------------- /backend/tenanted-api/migrations/001.do.auth-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/migrations/001.do.auth-tables.sql -------------------------------------------------------------------------------- /backend/tenanted-api/migrations/002.do.model-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/migrations/002.do.model-tables.sql -------------------------------------------------------------------------------- /backend/tenanted-api/migrations/003.do.record-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/migrations/003.do.record-tables.sql -------------------------------------------------------------------------------- /backend/tenanted-api/migrations/014.do.objects-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/migrations/014.do.objects-table.sql -------------------------------------------------------------------------------- /backend/tenanted-api/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/nodemon.json -------------------------------------------------------------------------------- /backend/tenanted-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/package.json -------------------------------------------------------------------------------- /backend/tenanted-api/pushDocker.sh: -------------------------------------------------------------------------------- 1 | docker push gcr.io/cozemble/backend-tenanted-api:latest 2 | -------------------------------------------------------------------------------- /backend/tenanted-api/runDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/runDocker.sh -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/psql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/scripts/psql.sh -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/rmDataFile.sh: -------------------------------------------------------------------------------- 1 | rm -fr /tmp/docker-postgres-data -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/run-backend.sh: -------------------------------------------------------------------------------- 1 | node dist/cjs/index.js 2 | -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/run-clean-backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/scripts/run-clean-backend.sh -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/run-clean-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/scripts/run-clean-postgres.sh -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/run-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/scripts/run-postgres.sh -------------------------------------------------------------------------------- /backend/tenanted-api/scripts/stop-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/scripts/stop-postgres.sh -------------------------------------------------------------------------------- /backend/tenanted-api/src/analytics/prompts/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/analytics/prompts/prompts.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/appWithTestContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/appWithTestContainer.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/auth/auth.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/auth/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/auth/db.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/auth/establishSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/auth/establishSession.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/auth/githubAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/auth/githubAuth.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/auth/githubUserDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/auth/githubUserDetails.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/config.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/devDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/devDb.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/expressApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/expressApp.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/index.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/jwt.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/loadEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/loadEnv.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/logRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/logRequest.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/middleware.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/postgresPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/postgresPool.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/infra/withClaimInPgSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/infra/withClaimInPgSession.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/GoogleStorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/GoogleStorageProvider.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/MemoryStorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/MemoryStorageProvider.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/StorageProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/StorageProvider.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/getFileObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/getFileObject.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/signedUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/signedUrls.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/storage/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/storage/storage.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/tenants/formattedFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/tenants/formattedFilters.ts -------------------------------------------------------------------------------- /backend/tenanted-api/src/tenants/tenants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/src/tenants/tenants.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/auth/github.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/auth/github.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/auth/refresh.token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/auth/refresh.token.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/helper.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/storage/blank-document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/storage/blank-document.pdf -------------------------------------------------------------------------------- /backend/tenanted-api/test/storage/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/storage/one.png -------------------------------------------------------------------------------- /backend/tenanted-api/test/storage/storage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/storage/storage.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/storage/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/storage/two.png -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/edges.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/edges.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/formattedFilters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/formattedFilters.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/recordFiltering.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/recordFiltering.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/tenant.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/tenant.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/tenantEntities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/tenantEntities.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/testHelpers.ts -------------------------------------------------------------------------------- /backend/tenanted-api/test/tenant/uniqueSlots.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/test/tenant/uniqueSlots.spec.ts -------------------------------------------------------------------------------- /backend/tenanted-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/tsconfig.json -------------------------------------------------------------------------------- /backend/tenanted-api/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/backend/tenanted-api/vite.config.ts -------------------------------------------------------------------------------- /data/editor-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/package.json -------------------------------------------------------------------------------- /data/editor-sdk/src/ModelViewManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/src/ModelViewManager.ts -------------------------------------------------------------------------------- /data/editor-sdk/src/dataRecordEditorHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/src/dataRecordEditorHost.ts -------------------------------------------------------------------------------- /data/editor-sdk/src/dataRecordViewerHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/src/dataRecordViewerHost.ts -------------------------------------------------------------------------------- /data/editor-sdk/src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@cozemble/data-editor-sdk' 2 | 3 | export * from './index.js' -------------------------------------------------------------------------------- /data/editor-sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/src/index.ts -------------------------------------------------------------------------------- /data/editor-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/editor-sdk/tsconfig.json -------------------------------------------------------------------------------- /data/filters-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-config/package.json -------------------------------------------------------------------------------- /data/filters-config/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-config/src/index.d.ts -------------------------------------------------------------------------------- /data/filters-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-config/src/index.ts -------------------------------------------------------------------------------- /data/filters-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-config/tsconfig.json -------------------------------------------------------------------------------- /data/filters-config/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-config/vite.config.ts -------------------------------------------------------------------------------- /data/filters-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/package.json -------------------------------------------------------------------------------- /data/filters-core/src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/actions.ts -------------------------------------------------------------------------------- /data/filters-core/src/filterGroupListReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/filterGroupListReducer.ts -------------------------------------------------------------------------------- /data/filters-core/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/index.d.ts -------------------------------------------------------------------------------- /data/filters-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/index.ts -------------------------------------------------------------------------------- /data/filters-core/src/operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/operators.ts -------------------------------------------------------------------------------- /data/filters-core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/src/types.ts -------------------------------------------------------------------------------- /data/filters-core/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/filters-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/tsconfig.json -------------------------------------------------------------------------------- /data/filters-core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/filters-core/vite.config.ts -------------------------------------------------------------------------------- /data/paginated-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/package.json -------------------------------------------------------------------------------- /data/paginated-editor/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/postcss.config.cjs -------------------------------------------------------------------------------- /data/paginated-editor/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/app.d.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/app.html -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/AttachmentsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/AttachmentsManager.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/CellFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/CellFocus.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/DataRecordEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/DataRecordEditor.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/DataRecordPathFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/DataRecordPathFocus.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/DataRecordTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/DataRecordTable.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/DataRecordTableTd.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/DataRecordTableTd.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/DataTd.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/DataTd.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/EditRecord.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/EditRecord.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/EditRecordListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/EditRecordListener.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/MaybeError.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/MaybeError.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/NestedRecordEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/NestedRecordEditor.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/PaginatedEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/PaginatedEditor.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/PaginatedEditorHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/PaginatedEditorHost.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/RecordCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/RecordCreator.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/RecordEditContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/RecordEditContext.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/RecordSearcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/RecordSearcher.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/SlotEdit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/SlotEdit.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/SlotView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/SlotView.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/StackingRecordEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/StackingRecordEditor.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/dataRecordTableClicked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/dataRecordTableClicked.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/getMyErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/getMyErrors.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/index.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/makeDataRecordViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/makeDataRecordViewer.ts -------------------------------------------------------------------------------- /data/paginated-editor/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/lib/styles/global.css -------------------------------------------------------------------------------- /data/paginated-editor/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/routes/+layout.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/routes/+page.svelte -------------------------------------------------------------------------------- /data/paginated-editor/src/routes/testModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/src/routes/testModels.ts -------------------------------------------------------------------------------- /data/paginated-editor/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/static/favicon.png -------------------------------------------------------------------------------- /data/paginated-editor/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/svelte.config.js -------------------------------------------------------------------------------- /data/paginated-editor/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/tailwind.config.cjs -------------------------------------------------------------------------------- /data/paginated-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/tsconfig.json -------------------------------------------------------------------------------- /data/paginated-editor/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/data/paginated-editor/vite.config.js -------------------------------------------------------------------------------- /file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/file.html -------------------------------------------------------------------------------- /frontend/ai-playground/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/.env.example -------------------------------------------------------------------------------- /frontend/ai-playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/package.json -------------------------------------------------------------------------------- /frontend/ai-playground/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/ai-playground/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/app.d.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/app.html -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/analytics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/analytics/types.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/chat/ChatTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/chat/ChatTypes.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/generative/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/generative/stores.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/ocr/OcrActivity.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/ocr/OcrActivity.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/ocr/OcrEntryPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/ocr/OcrEntryPage.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/ocr/convertHtmlToJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/ocr/convertHtmlToJson.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/amend/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/amend/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/amend/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/amend/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/aws-ocr/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/aws-ocr/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/delivery/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/delivery/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/fromDocument/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/fromDocument/types.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/htmlToJson/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/htmlToJson/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/ocr/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/ocr/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/ocr/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/ocr/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/prop/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/prop/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/qr-batching/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/qr-batching/types.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/qr-checkin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/qr-checkin/types.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/qr-checkout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/qr-checkout/types.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/s3Ocr/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/s3Ocr/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/screenshot/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/screenshot/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/speech/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/speech/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/speech/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/speech/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/speech/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/speech/schemas.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/speech2/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/speech2/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/speech2/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/speech2/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/stashPdf/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/stashPdf/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/TableAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/TableAI.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/ToJson.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/ToJson.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/helpers.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/tableCalcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/tableCalcs.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/tojson/wizardState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/tojson/wizardState.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/website/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/website/+server.ts -------------------------------------------------------------------------------- /frontend/ai-playground/src/routes/windows/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/src/routes/windows/+page.svelte -------------------------------------------------------------------------------- /frontend/ai-playground/static/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/static/beep.mp3 -------------------------------------------------------------------------------- /frontend/ai-playground/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/static/favicon.png -------------------------------------------------------------------------------- /frontend/ai-playground/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/svelte.config.js -------------------------------------------------------------------------------- /frontend/ai-playground/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/ai-playground/test/extractJson.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/test/extractJson.spec.ts -------------------------------------------------------------------------------- /frontend/ai-playground/test/learning-qr-codes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/test/learning-qr-codes.spec.ts -------------------------------------------------------------------------------- /frontend/ai-playground/test/sampleSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/test/sampleSchemas.ts -------------------------------------------------------------------------------- /frontend/ai-playground/test/useSameSlotIds.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/test/useSameSlotIds.spec.ts -------------------------------------------------------------------------------- /frontend/ai-playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/tsconfig.json -------------------------------------------------------------------------------- /frontend/ai-playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ai-playground/vite.config.ts -------------------------------------------------------------------------------- /frontend/bff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/package.json -------------------------------------------------------------------------------- /frontend/bff/src/Backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/src/Backend.ts -------------------------------------------------------------------------------- /frontend/bff/src/ErrorListenerBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/src/ErrorListenerBackend.ts -------------------------------------------------------------------------------- /frontend/bff/src/LocalStorageBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/src/LocalStorageBackend.ts -------------------------------------------------------------------------------- /frontend/bff/src/RestBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/src/RestBackend.ts -------------------------------------------------------------------------------- /frontend/bff/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/src/index.ts -------------------------------------------------------------------------------- /frontend/bff/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/tsconfig.json -------------------------------------------------------------------------------- /frontend/bff/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/bff/vite.config.ts -------------------------------------------------------------------------------- /frontend/combined-editor/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/.eslintignore -------------------------------------------------------------------------------- /frontend/combined-editor/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/combined-editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/.gitignore -------------------------------------------------------------------------------- /frontend/combined-editor/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /frontend/combined-editor/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/.prettierignore -------------------------------------------------------------------------------- /frontend/combined-editor/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/.prettierrc -------------------------------------------------------------------------------- /frontend/combined-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/README.md -------------------------------------------------------------------------------- /frontend/combined-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/package.json -------------------------------------------------------------------------------- /frontend/combined-editor/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/playwright.config.ts -------------------------------------------------------------------------------- /frontend/combined-editor/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/combined-editor/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/app.d.ts -------------------------------------------------------------------------------- /frontend/combined-editor/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/app.html -------------------------------------------------------------------------------- /frontend/combined-editor/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/index.test.ts -------------------------------------------------------------------------------- /frontend/combined-editor/src/lib/index.js: -------------------------------------------------------------------------------- 1 | // Reexport your entry components here 2 | -------------------------------------------------------------------------------- /frontend/combined-editor/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/combined-editor/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/combined-editor/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/combined-editor/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/static/favicon.png -------------------------------------------------------------------------------- /frontend/combined-editor/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/svelte.config.js -------------------------------------------------------------------------------- /frontend/combined-editor/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/combined-editor/tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/tests/test.ts -------------------------------------------------------------------------------- /frontend/combined-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/tsconfig.json -------------------------------------------------------------------------------- /frontend/combined-editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/combined-editor/vite.config.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/package.json -------------------------------------------------------------------------------- /frontend/cozemble-forms/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/app.d.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/app.html -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/lib/fom/Fom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/lib/fom/Fom.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/lib/fom/zodToFom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/lib/fom/zodToFom.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/lib/inputs/TextInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/lib/inputs/TextInput.svelte -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/cozemble-forms/src/routes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/src/routes/types.ts -------------------------------------------------------------------------------- /frontend/cozemble-forms/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/static/favicon.png -------------------------------------------------------------------------------- /frontend/cozemble-forms/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/svelte.config.js -------------------------------------------------------------------------------- /frontend/cozemble-forms/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/cozemble-forms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/tsconfig.json -------------------------------------------------------------------------------- /frontend/cozemble-forms/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/cozemble-forms/vite.config.ts -------------------------------------------------------------------------------- /frontend/data-editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/.gitignore -------------------------------------------------------------------------------- /frontend/data-editor/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /frontend/data-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/README.md -------------------------------------------------------------------------------- /frontend/data-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/package.json -------------------------------------------------------------------------------- /frontend/data-editor/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/data-editor/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/app.d.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/app.html -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/common/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/common/actions.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/common/hosts/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/common/hosts/mock.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/helpers/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/helpers/records.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/helpers/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/helpers/settings.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/mock/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/mock/models.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/stores/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/stores/errors.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/stores/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/stores/models.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/stores/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/stores/records.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/types/cozemble.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/types/cozemble.d.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/types/error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/types/error.d.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/types/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/types/jsonSchema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/types/jsonSchema.d.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/types/value.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/types/value.d.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/data-editor/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/data-editor/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/data-editor/src/routes/editor/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/src/routes/editor/+page.svelte -------------------------------------------------------------------------------- /frontend/data-editor/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/static/favicon.png -------------------------------------------------------------------------------- /frontend/data-editor/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/svelte.config.js -------------------------------------------------------------------------------- /frontend/data-editor/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/data-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/tsconfig.json -------------------------------------------------------------------------------- /frontend/data-editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/data-editor/vite.config.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress.config.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/e2e/hasManyReferences.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/e2e/hasManyReferences.cy.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/e2e/helpers.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/e2e/milestone1.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/e2e/milestone1.cy.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/e2e/supportForArrays.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/e2e/supportForArrays.cy.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/datatable/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/datatable/cypress/support/index.ts: -------------------------------------------------------------------------------- 1 | import 'cypress-real-events' 2 | -------------------------------------------------------------------------------- /frontend/datatable/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/cypress/tsconfig.json -------------------------------------------------------------------------------- /frontend/datatable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/package.json -------------------------------------------------------------------------------- /frontend/datatable/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/datatable/scripts/run-cypress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/scripts/run-cypress.sh -------------------------------------------------------------------------------- /frontend/datatable/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/app.d.ts -------------------------------------------------------------------------------- /frontend/datatable/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/app.html -------------------------------------------------------------------------------- /frontend/datatable/src/lib/AddTableModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/AddTableModal.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/AddTableNavButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/AddTableNavButton.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/DataTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/DataTable.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/DataTableInner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/DataTableInner.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/EditModelModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/EditModelModal.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/Modals.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/Modals.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/ModelTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/ModelTab.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/app/StoreSyncBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/app/StoreSyncBackend.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/appBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/appBackend.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/backend/Backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/backend/Backend.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/backend/InMemoryBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/backend/InMemoryBackend.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/editors/GettableWritable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/editors/GettableWritable.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/editors/dispatchChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/editors/dispatchChange.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/editors/editableValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/editors/editableValue.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/errors.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/focus/DataTableFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/focus/DataTableFocus.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/icons/DownCaret.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/icons/DownCaret.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/modelUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/modelUi.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/models/ModelPane.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/models/ModelPane.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/models/editableTableName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/models/editableTableName.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/models/modelReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/models/modelReducer.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/ModelControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/ModelControls.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/RecordControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/RecordControls.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/RecordGraphLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/RecordGraphLoader.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/RecordsContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/RecordsContext.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/SlotEditModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/SlotEditModal.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/SubItemIntro.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/SubItemIntro.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/cells/DataTd.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/cells/DataTd.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/cells/SlotTh.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/cells/SlotTh.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/contextHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/contextHelper.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/expandCollapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/expandCollapse.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/helpers.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/makeFocusControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/makeFocusControls.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/records/makeModelControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/records/makeModelControls.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/EventSourcedStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/EventSourcedStore.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/allModelViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/allModelViews.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/allModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/allModels.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/contextHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/contextHelper.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/currentUserId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/currentUserId.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/introductions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/introductions.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/models/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/models/contexts.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/models/index.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/stores/models/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/stores/models/methods.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/datatable/src/lib/tables/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/tables/actions.ts -------------------------------------------------------------------------------- /frontend/datatable/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/lib/types.ts -------------------------------------------------------------------------------- /frontend/datatable/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/DevOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/DevOptions.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/buttons/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/buttons/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/cypress/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/cypress/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/cypress/testModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/cypress/testModels.ts -------------------------------------------------------------------------------- /frontend/datatable/src/routes/empty/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/empty/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/paste/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/paste/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/refs/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/refs/+page.svelte -------------------------------------------------------------------------------- /frontend/datatable/src/routes/temp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/src/routes/temp.ts -------------------------------------------------------------------------------- /frontend/datatable/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/static/favicon.png -------------------------------------------------------------------------------- /frontend/datatable/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/svelte.config.js -------------------------------------------------------------------------------- /frontend/datatable/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/datatable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/tsconfig.json -------------------------------------------------------------------------------- /frontend/datatable/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/datatable/vite.config.ts -------------------------------------------------------------------------------- /frontend/json-schema-form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/package.json -------------------------------------------------------------------------------- /frontend/json-schema-form/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/json-schema-form/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/app.d.ts -------------------------------------------------------------------------------- /frontend/json-schema-form/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/app.html -------------------------------------------------------------------------------- /frontend/json-schema-form/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/json-schema-form/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/json-schema-form/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/json-schema-form/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/json-schema-form/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/static/favicon.png -------------------------------------------------------------------------------- /frontend/json-schema-form/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/svelte.config.js -------------------------------------------------------------------------------- /frontend/json-schema-form/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/json-schema-form/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/tsconfig.json -------------------------------------------------------------------------------- /frontend/json-schema-form/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/json-schema-form/vite.config.ts -------------------------------------------------------------------------------- /frontend/main-app/.postgratorrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/.postgratorrc.json -------------------------------------------------------------------------------- /frontend/main-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/package.json -------------------------------------------------------------------------------- /frontend/main-app/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/main-app/postgrator-local.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/postgrator-local.config.json -------------------------------------------------------------------------------- /frontend/main-app/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/app.d.ts -------------------------------------------------------------------------------- /frontend/main-app/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/app.html -------------------------------------------------------------------------------- /frontend/main-app/src/lib/auth/cozauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/auth/cozauth.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/backend/adapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/backend/adapters.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/backend/backendStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/backend/backendStore.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/config.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/icons/Cog6ToothIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/icons/Cog6ToothIcon.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/icons/DatabaseIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/icons/DatabaseIcon.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/icons/GenerativeIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/icons/GenerativeIcon.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/icons/PuzzlePieceIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/icons/PuzzlePieceIcon.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/models/modelsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/models/modelsStore.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/models/tenantEntityStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/models/tenantEntityStore.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/models/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/models/views.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/notices/ToastNotices.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/notices/ToastNotices.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/notices/toastNoticeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/notices/toastNoticeStore.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/settings/SettingsPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/settings/SettingsPanel.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/settings/ThemeChange.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/settings/ThemeChange.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/main-app/src/lib/tenant/tenantStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/tenant/tenantStore.ts -------------------------------------------------------------------------------- /frontend/main-app/src/lib/util/ErrorMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/lib/util/ErrorMessage.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/routes/cozconfig/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/routes/cozconfig/+page.svelte -------------------------------------------------------------------------------- /frontend/main-app/src/routes/tenants/[tenantId]/temp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/src/routes/tenants/[tenantId]/temp.ts -------------------------------------------------------------------------------- /frontend/main-app/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/static/favicon.png -------------------------------------------------------------------------------- /frontend/main-app/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/svelte.config.js -------------------------------------------------------------------------------- /frontend/main-app/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/main-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/tsconfig.json -------------------------------------------------------------------------------- /frontend/main-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/main-app/vite.config.ts -------------------------------------------------------------------------------- /frontend/sdk-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/package.json -------------------------------------------------------------------------------- /frontend/sdk-components/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/sdk-components/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/src/app.d.ts -------------------------------------------------------------------------------- /frontend/sdk-components/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/src/app.html -------------------------------------------------------------------------------- /frontend/sdk-components/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/sdk-components/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/src/routes/+page.svelte -------------------------------------------------------------------------------- /frontend/sdk-components/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/static/favicon.png -------------------------------------------------------------------------------- /frontend/sdk-components/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/svelte.config.js -------------------------------------------------------------------------------- /frontend/sdk-components/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/sdk-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/tsconfig.json -------------------------------------------------------------------------------- /frontend/sdk-components/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/sdk-components/vite.config.ts -------------------------------------------------------------------------------- /frontend/tojson/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/.env.example -------------------------------------------------------------------------------- /frontend/tojson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/.gitignore -------------------------------------------------------------------------------- /frontend/tojson/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /frontend/tojson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/README.md -------------------------------------------------------------------------------- /frontend/tojson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/package.json -------------------------------------------------------------------------------- /frontend/tojson/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/tojson/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/app.d.ts -------------------------------------------------------------------------------- /frontend/tojson/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/app.html -------------------------------------------------------------------------------- /frontend/tojson/src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/hooks.server.ts -------------------------------------------------------------------------------- /frontend/tojson/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/index.test.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/components/FileDrop.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/components/FileDrop.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/lib/components/Logo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/components/Logo.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/lib/components/ProgressBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/components/ProgressBar.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/lib/components/ocr/Table.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/components/ocr/Table.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/lib/components/ocr/TableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/components/ocr/TableRow.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/stores/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/stores/models.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/stores/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/stores/notifications.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/stores/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/stores/records.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/stores/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/stores/user.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/styles/global.css -------------------------------------------------------------------------------- /frontend/tojson/src/lib/types/database.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/types/database.types.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/types/index.d.ts -------------------------------------------------------------------------------- /frontend/tojson/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(focused)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(focused)/+layout.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(focused)/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(focused)/auth/README.md -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(focused)/create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(focused)/create/README.md -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/+layout.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/+page.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/Footer.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/Header.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/README.md -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/TryItForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/TryItForm.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/(landing)/pricing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/(landing)/pricing/index.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/+error.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/+layout.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/+layout.server.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/+layout.svelte -------------------------------------------------------------------------------- /frontend/tojson/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/+layout.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/README.md -------------------------------------------------------------------------------- /frontend/tojson/src/routes/api/ocr/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/api/ocr/+server.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/api/schema/+server.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/tojson/src/routes/api/subscriber/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/api/subscriber/+server.ts -------------------------------------------------------------------------------- /frontend/tojson/src/routes/dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/src/routes/dashboard/README.md -------------------------------------------------------------------------------- /frontend/tojson/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/static/favicon.png -------------------------------------------------------------------------------- /frontend/tojson/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/svelte.config.js -------------------------------------------------------------------------------- /frontend/tojson/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/tojson/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/tsconfig.json -------------------------------------------------------------------------------- /frontend/tojson/ux.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/ux.excalidraw -------------------------------------------------------------------------------- /frontend/tojson/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/tojson/vite.config.ts -------------------------------------------------------------------------------- /frontend/ui-blocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/package.json -------------------------------------------------------------------------------- /frontend/ui-blocks/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/ui-blocks/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/src/app.d.ts -------------------------------------------------------------------------------- /frontend/ui-blocks/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/src/app.html -------------------------------------------------------------------------------- /frontend/ui-blocks/src/lib/filtering/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/src/lib/filtering/filtering.ts -------------------------------------------------------------------------------- /frontend/ui-blocks/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/src/lib/index.ts -------------------------------------------------------------------------------- /frontend/ui-blocks/src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /frontend/ui-blocks/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/static/favicon.png -------------------------------------------------------------------------------- /frontend/ui-blocks/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/svelte.config.js -------------------------------------------------------------------------------- /frontend/ui-blocks/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/ui-blocks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/tsconfig.json -------------------------------------------------------------------------------- /frontend/ui-blocks/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/ui-blocks/vite.config.ts -------------------------------------------------------------------------------- /frontend/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/website/package.json -------------------------------------------------------------------------------- /frontend/website/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/website/src/app.d.ts -------------------------------------------------------------------------------- /frontend/website/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cozemble/monorepo/HEAD/frontend/website/src/app.html -------------------------------------------------------------------------------- /frontend/website/src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 |