fix merge conflicts #328
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
2 errors and 2 warnings
type annotations needed:
fiberplane-api-client/src/lib.rs#L572
error[E0282]: type annotations needed
--> fiberplane-api-client/src/lib.rs:572:5
|
572 | Ok(response)
| ^^ cannot infer type of the type parameter `E` declared on the enum `Result`
|
help: consider specifying the generic arguments
|
572 | Ok::<(), E>(response)
| +++++++++
|
cannot find type `Integration` in module `models`:
fiberplane-api-client/src/lib.rs#L568
error[E0412]: cannot find type `Integration` in module `models`
--> fiberplane-api-client/src/lib.rs:568:73
|
568 | pub async fn integrations_get(client: &ApiClient) -> Result<Vec<models::Integration>> {
| ^^^^^^^^^^^ not found in `models`
|
help: consider importing this struct
|
7 + use fiberplane_models::integrations::Integration;
|
help: if you import `Integration`, refer to it directly
|
568 - pub async fn integrations_get(client: &ApiClient) -> Result<Vec<models::Integration>> {
568 + pub async fn integrations_get(client: &ApiClient) -> Result<Vec<Integration>> {
|
|
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
security_audit
1 warnings found!
|