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

Deploy v2.5.0 to production #255

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions docs/docs/spec/data-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,9 @@ components:
embedding_model:
type: string
description: The name of the inference model used to generate the `embedding` from the resource's content.
embedding_text_length:
type: string
description: The length of the embedding text in bytes.
file_sets:
type: array
description: File sets associated with the resource.
Expand Down Expand Up @@ -763,6 +766,7 @@ components:
- description
- embedding
- embedding_model
- embedding_text_length
- file_sets
- folder_name
- folder_number
Expand Down
11,525 changes: 1,371 additions & 10,154 deletions lambdas/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lambdas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lambdas",
"version": "2.4.1",
"version": "2.5.0",
"description": "Non-API handler lambdas",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2,787 changes: 3 additions & 2,784 deletions layers/api_dependencies/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion layers/api_dependencies/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dc-api-dependencies",
"version": "2.4.1",
"version": "2.5.0",
"description": "NUL Digital Collections API Dependencies",
"repository": "https://github.com/nulib/dc-api-v2",
"author": "nulib",
Expand Down
2,186 changes: 1,007 additions & 1,179 deletions node/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dc-api-build",
"version": "2.4.1",
"version": "2.5.0",
"description": "NUL Digital Collections API Build Environment",
"repository": "https://github.com/nulib/dc-api-v2",
"author": "nulib",
Expand Down
4,741 changes: 2,224 additions & 2,517 deletions node/src/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node/src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dc-api",
"version": "2.4.1",
"version": "2.5.0",
"description": "NUL Digital Collections API",
"repository": "https://github.com/nulib/dc-api-v2",
"author": "nulib",
Expand Down
Loading