File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/codefresh-io/go-sdk
2
2
3
3
require (
4
4
github.com/BurntSushi/toml v0.3.1 // indirect
5
- github.com/codefresh-io/argo-platform v1.12.4-0.20210630081821-dfc9fd4ddae9
5
+ github.com/codefresh-io/argo-platform v1.13.0
6
6
github.com/dustin/go-humanize v1.0.0
7
7
github.com/google/go-querystring v1.1.0
8
8
github.com/inconshreveable/mousetrap v1.0.0 // indirect
Original file line number Diff line number Diff line change 1
1
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ =
2
2
github.com/BurntSushi/toml v0.3.1 /go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU =
3
3
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 /go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8 =
4
- github.com/codefresh-io/argo-platform v1.12.4-0.20210630081821-dfc9fd4ddae9 h1:lUrKubj1uhE2q60hSJ8uPqVPax9jk6Wzu8UEhK5A5rM =
5
- github.com/codefresh-io/argo-platform v1.12.4-0.20210630081821-dfc9fd4ddae9 /go.mod h1:u/eLWAySJ1nRzNWnB5baeyIc5vqINghwYJvydU+EC3c =
4
+ github.com/codefresh-io/argo-platform v1.13.0 h1:eWAWkxtO0nGZuekrQJsfFT5KfBMdWby0cOucy4yTExs =
5
+ github.com/codefresh-io/argo-platform v1.13.0 /go.mod h1:u/eLWAySJ1nRzNWnB5baeyIc5vqINghwYJvydU+EC3c =
6
6
github.com/coreos/etcd v3.3.10+incompatible /go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE =
7
7
github.com/coreos/go-etcd v2.0.0+incompatible /go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk =
8
8
github.com/coreos/go-semver v0.2.0 /go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk =
Original file line number Diff line number Diff line change 1
1
package codefresh
2
2
3
3
import (
4
- "bytes"
5
4
"encoding/json"
6
5
"fmt"
7
6
"io/ioutil"
@@ -18,11 +17,10 @@ type (
18
17
codefresh * codefresh
19
18
}
20
19
graphqlRuntimesResponse struct {
21
- Data graphqlRuntimesInnerResponse `json:"data"`
22
- // Errors []byte
23
- }
24
- graphqlRuntimesInnerResponse struct {
25
- Runtimes model.RuntimePage `json:"runtimes"`
20
+ Data struct {
21
+ Runtimes model.RuntimePage `json:"runtimes"`
22
+ } `json:"data"`
23
+ Errors []byte
26
24
}
27
25
)
28
26
You can’t perform that action at this time.
0 commit comments