Skip to content

Commit

Permalink
Chore(deps): bump the update-runtime group across 2 directories with …
Browse files Browse the repository at this point in the history
…3 updates (#316)
  • Loading branch information
dependabot[bot] authored Nov 19, 2024
1 parent 5c81c88 commit 307b461
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 39 deletions.
64 changes: 32 additions & 32 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"@js-soft/docdb-access-mongo": "1.1.9",
"@js-soft/node-logger": "1.2.0",
"@js-soft/ts-utils": "^2.3.3",
"@nmshd/runtime": "6.7.0",
"@nmshd/runtime": "6.7.1",
"@nmshd/typescript-ioc": "^3.2.4",
"@nmshd/typescript-rest": "^3.0.5",
"agentkeepalive": "4.5.0",
Expand Down Expand Up @@ -112,8 +112,8 @@
"@js-soft/eslint-config-ts": "1.6.13",
"@js-soft/license-check": "1.0.9",
"@nmshd/connector-sdk": "*",
"@nmshd/content": "6.7.0",
"@nmshd/core-types": "6.7.0",
"@nmshd/content": "6.7.1",
"@nmshd/core-types": "6.7.1",
"@nmshd/typescript-rest-swagger": "^1.4.1",
"@types/amqplib": "^0.10.5",
"@types/compression": "^1.7.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"build:schemas:watch": "npx nodemon -e ts -w 'src/types' --exec 'npm run build:schemas'"
},
"dependencies": {
"@nmshd/content": "6.7.0",
"@nmshd/content": "6.7.1",
"axios": "^1.7.7",
"form-data": "^4.0.1",
"qs": "^6.13.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ConnectorRelationshipStatus } from "./ConnectorRelationshipStatus";
export interface ConnectorRelationshipAuditLogEntry {
createdAt: string;
createdBy: string;
createdByDevice: string;
createdByDevice?: string;
reason: ConnectorRelationshipAuditLogEntryReason;
oldStatus?: ConnectorRelationshipStatus;
newStatus: ConnectorRelationshipStatus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ export enum ConnectorRelationshipAuditLogEntryReason {
AcceptanceOfReactivation = "AcceptanceOfReactivation",
RejectionOfReactivation = "RejectionOfReactivation",
RevocationOfReactivation = "RevocationOfReactivation",
Decomposition = "Decomposition"
Decomposition = "Decomposition",
DecompositionDueToIdentityDeletion = "DecompositionDueToIdentityDeletion"
}
2 changes: 1 addition & 1 deletion src/modules/coreHttpApi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5849,7 +5849,6 @@ components:
required:
- createdAt
- createdBy
- createdByDevice
- reason
- newStatus

Expand All @@ -5866,6 +5865,7 @@ components:
- RejectionOfReactivation
- RevocationOfReactivation
- Decomposition
- DecompositionDueToIdentityDeletion

RelationshipStatus:
type: string
Expand Down

0 comments on commit 307b461

Please sign in to comment.