Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update @comapeo/schema to 1.2.0, adding alerts and server #805

Merged
merged 27 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c826f31
add `remoteDetectionAlert` dataType
Sep 2, 2024
5906c49
add `remoteDetectionAlert` to data namespace
Sep 3, 2024
0b3f2be
add crud test for `remoteDetectionAlert`
Sep 3, 2024
e2f0e68
Merge branch 'main' of github.com:digidem/mapeo-core-next into feat/a…
Sep 3, 2024
068ef5a
Merge branch 'main' of github.com:digidem/mapeo-core-next into feat/a…
Sep 3, 2024
1357bb7
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Sep 26, 2024
eedd446
remove old mapeo-schema
Sep 26, 2024
a7a3ecd
udpate 'remoteDetectionAlert' fixture with geometry
Sep 26, 2024
b1fad02
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Sep 26, 2024
09fcce4
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Sep 30, 2024
495198a
re-generate db, update local comapeo/schema
Sep 30, 2024
339a8bb
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Oct 1, 2024
8546b17
Minor: reorder things to be alphabetical
EvanHahn Oct 1, 2024
95095b1
Fix type error
EvanHahn Oct 1, 2024
0763ce6
Fix test because mapeo-mock-data lacked support
EvanHahn Oct 1, 2024
916da66
migration on drizzle project
Oct 2, 2024
b12de1c
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Oct 2, 2024
44b1f9c
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Oct 3, 2024
95dadfc
use published version of comapeo/schema, use local build of mock-data
Oct 10, 2024
91c5faf
update mock-data with published version
Oct 14, 2024
67f3a88
remove locally built schema and mock-data
Oct 14, 2024
48fcacd
Merge branch 'main' of github.com:digidem/comapeo-core into feat/addR…
Oct 14, 2024
9e6262c
update schema after wrong merge
Oct 14, 2024
fdd8f04
Merge branch 'main' into feat/addRemoteDetectionAlertDataType
EvanHahn Oct 24, 2024
2d54b34
Update to schema 1.2.0, rebuild migrations
EvanHahn Oct 24, 2024
8511d54
mapeo-mock-data now has remoteDetectionAlert support
EvanHahn Oct 24, 2024
cf4e6a3
Remove unnecessary fixture helper
EvanHahn Oct 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions drizzle/project/0001_medical_wendell_rand.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
CREATE TABLE `remoteDetectionAlert_backlink` (
`versionId` text PRIMARY KEY NOT NULL
);
--> statement-breakpoint
CREATE TABLE `remoteDetectionAlert` (
`docId` text PRIMARY KEY NOT NULL,
`versionId` text NOT NULL,
`originalVersionId` text NOT NULL,
`schemaName` text NOT NULL,
`createdAt` text NOT NULL,
`updatedAt` text NOT NULL,
`links` text NOT NULL,
`deleted` integer NOT NULL,
`detectionDateStart` text NOT NULL,
`detectionDateEnd` text NOT NULL,
`sourceId` text NOT NULL,
`metadata` text NOT NULL,
`geometry` text NOT NULL,
`forks` text NOT NULL
);
--> statement-breakpoint
ALTER TABLE deviceInfo ADD `selfHostedServerDetails` text;
Loading
Loading