Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
chore: bump versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdevos committed Mar 18, 2024
1 parent 708f3f6 commit b0eda51
Show file tree
Hide file tree
Showing 3 changed files with 889 additions and 2,076 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logion-directory",
"version": "0.9.1",
"version": "0.9.2",
"private": true,
"author": {
"name": "Logion Team",
Expand All @@ -23,8 +23,8 @@
"typeorm": "node ./node_modules/typeorm/cli.js -d ./dist/db-tools/ormconfig.js"
},
"dependencies": {
"@logion/node-api": "^0.28.2",
"@logion/rest-api-core": "^0.4.6-1",
"@logion/node-api": "^0.28.3",
"@logion/rest-api-core": "^0.4.6",
"ansi-regex": "^6.0.1",
"body-parser": "^1.19.1",
"bson": "^4.6.1",
Expand All @@ -45,6 +45,7 @@
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"bignumber.js": "^9.1.2",
"istanbul-reports": "^3.1.3",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
Expand Down
10 changes: 6 additions & 4 deletions src/logion/controllers/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ export type webhooks = Record<string, never>;
export interface components {
schemas: {
/**
* FetchLegalOfficersView
* FetchLegalOfficersView
* @description The fetched Legal Officers
*/
FetchLegalOfficersView: {
/** @description All the legal officers */
legalOfficers?: (components["schemas"]["LegalOfficerView"])[];
legalOfficers?: components["schemas"]["LegalOfficerView"][];
};
LegalOfficerView: {
/** @description The SS58 address of the legal officer */
Expand All @@ -37,7 +37,7 @@ export interface components {
additionalDetails?: string;
};
/**
* UserIdentityView
* UserIdentityView
* @description Physical person identification data
*/
UserIdentityView: {
Expand All @@ -51,7 +51,7 @@ export interface components {
phoneNumber?: string;
};
/**
* PostalAddressView
* PostalAddressView
* @description A postal address
*/
PostalAddressView: {
Expand All @@ -76,6 +76,8 @@ export interface components {
pathItems: never;
}

export type $defs = Record<string, never>;

export type external = Record<string, never>;

export type operations = Record<string, never>;
Loading

0 comments on commit b0eda51

Please sign in to comment.