Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ permissions:
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.18.0
v20
4 changes: 2 additions & 2 deletions lib/cmds/organization_cmds/taxonomy/taxonomy-import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const taxonomyImport = async (
concepts.map((concept: ConceptProps | CreateConceptWithIdProps) =>
ctx.requestQueue.add(() => {
if (entityHasVersion(concept)) {
return ctx.cmaClient.concept.updatePut(
return ctx.cmaClient.concept.update(
{
organizationId: organizationId,
conceptId: concept.sys.id,
Expand Down Expand Up @@ -126,7 +126,7 @@ const taxonomyImport = async (
) =>
ctx.requestQueue.add(() => {
if (entityHasVersion(conceptScheme)) {
return ctx.cmaClient.conceptScheme.updatePut(
return ctx.cmaClient.conceptScheme.update(
{
organizationId: organizationId,
conceptSchemeId: conceptScheme.sys.id,
Expand Down
263 changes: 214 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading