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

ci(codegen): fix the yarn codegen job in ci.yaml #13

Closed
wants to merge 5 commits into from
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
416 changes: 410 additions & 6 deletions .github/workflows/ci.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
},
"devDependencies": {
"@types/escape-html": "1.0.1",
"@types/node": "15.14.7"
"@types/node": "15.14.9"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@openzeppelin/contracts-upgradeable": "4.9.3",
"async-exit-hook": "2.0.1",
"fabric-network": "2.2.18",
"fs-extra": "10.0.0",
"fs-extra": "10.1.0",
"openapi-types": "9.1.0",
"typescript-optional": "2.0.1",
"uuid": "8.3.2",
Expand All @@ -75,9 +75,9 @@
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.12",
"@types/fs-extra": "9.0.13",
"@types/json-stable-stringify": "1.0.34",
"@types/uuid": "8.3.1",
"@types/uuid": "8.3.4",
"express-jwt": "8.4.1",
"hardhat": "2.13.1",
"http-status-codes": "2.1.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/chai": "4.3.5",
"@types/crypto-js": "4.1.1",
"@types/mocha": "8.2.2",
"@types/node": "16.18.40",
"@types/node": "16.18.41",
"@types/rewire": "2.5.28",
"chai": "4.3.7",
"mocha": "8.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "6.3.0"
"version": "6.6.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"devDependencies": {
"@types/express": "4.17.13",
"@types/ssh2": "0.5.47",
"@types/uuid": "8.3.1"
"@types/uuid": "8.3.4"
},
"engines": {
"node": ">=10",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"openapi": "3.1.0",
"openapi": "3.0.3",
"info": {
"title": "Hyperledger Cactus Example - Carbon Accounting App",
"description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.",
"version": "0.2.0",
"license": {
"name": "Apache-2.0",
"identifier": "Apache-2.0",

"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.0
6.6.0
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This runs all tests and packages the library.
* Some Kotlin and Java types are fully qualified to avoid conflicts with types defined in OpenAPI definitions.
* Implementation of ApiClient is intended to reduce method counts, specifically to benefit Android targets.

<a name="documentation-for-api-endpoints"></a>
<a id="documentation-for-api-endpoints"></a>
## Documentation for API Endpoints

All URIs are relative to *http://localhost*
Expand All @@ -48,7 +48,7 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**enrollAdminV1**](docs/DefaultApi.md#enrolladminv1) | **POST** /api/v1/utilityemissionchannel/registerEnroll/admin | Registers an admin account within the Fabric organization specified.


<a name="documentation-for-models"></a>
<a id="documentation-for-models"></a>
## Documentation for Models

- [org.openapitools.client.models.AuthzJwtClaim](docs/AuthzJwtClaim.md)
Expand All @@ -62,7 +62,8 @@ Class | Method | HTTP request | Description
- [org.openapitools.client.models.EnrollAdminV1Response](docs/EnrollAdminV1Response.md)


<a name="documentation-for-authorization"></a>
<a id="documentation-for-authorization"></a>
## Documentation for Authorization

All endpoints do not require authorization.
Endpoints do not require authorization.

Loading
Loading