-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
1,426 additions
and
1,163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,16 +41,16 @@ | |
"@changesets/cli": "2.27.1", | ||
"@turbo/gen": "1.12.5", | ||
"@types/lint-staged": "13.3.0", | ||
"@types/node": "20.11.26", | ||
"@types/node": "20.11.28", | ||
"@types/yargs": "17.0.32", | ||
"@weareinreach/config": "workspace:*", | ||
"@weareinreach/eslint-config": "0.100.0", | ||
"boxen": "7.1.1", | ||
"docker-compose": "0.24.6", | ||
"docker-compose": "0.24.7", | ||
"dotenv": "16.4.5", | ||
"dotenv-expand": "11.0.6", | ||
"husky": "9.0.11", | ||
"knip": "5.0.4", | ||
"knip": "5.1.2", | ||
"lint-staged": "15.2.2", | ||
"prettier": "3.2.5", | ||
"prettier-plugin-jsdoc": "1.3.0", | ||
|
@@ -63,7 +63,7 @@ | |
"typesync": "0.12.1", | ||
"yargs": "17.7.2" | ||
}, | ||
"packageManager": "[email protected].4", | ||
"packageManager": "[email protected].5", | ||
"engines": { | ||
"node": "^20.0.0", | ||
"pnpm": "^8.10.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
packages/db/prisma/data-migrations/2024-03-15_update-dead-links/!schemas.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { z } from 'zod' | ||
|
||
export const AccessLinksSchema = z.object({ | ||
addNew: z | ||
.object({ id: z.string(), serviceId: z.string(), slug: z.string(), url: z.string().url() }) | ||
.array(), | ||
updates: z | ||
.object({ | ||
supplementId: z.string(), | ||
newUrl: z.string().url(), | ||
}) | ||
.array(), | ||
}) | ||
|
||
export const OrgUpdatesSchema = z | ||
.object({ | ||
orgDesc: z.string().optional(), | ||
orgName: z.string().optional(), | ||
orgUrl: z.string().url().optional(), | ||
slug: z.string(), | ||
}) | ||
.array() | ||
|
||
export const ServiceNameSchema = z | ||
.object({ | ||
serviceName: z.string(), | ||
serviceId: z.string(), | ||
}) | ||
.array() | ||
export const UnpublishSchema = z.object({ | ||
orgs: z.string().array(), | ||
services: z.string().array(), | ||
locations: z.string().array(), | ||
attributeSupplements: z.string().array(), | ||
}) | ||
|
||
export const NewAlertsSchema = z | ||
.object({ | ||
slug: z.string(), | ||
alertText: z.string(), | ||
supplementId: z.string(), | ||
freeTextId: z.string(), | ||
}) | ||
.array() |
Oops, something went wrong.
2f66ecf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
inreach-app – ./apps/app
inreach-app.vercel.app
admin.inreach.org
inreach-app-weareinreach.vercel.app
www.app.inreach.org
beta.inreach.org
app.inreach.org
inreach-app-git-main-weareinreach.vercel.app