Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,10 @@ const docTemplate = `{
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
"type": "string"
},
"signature": {
"description": "Signature hold the signature of the a cloudevent's data field.",
"type": "string"
},
"source": {
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
"type": "string"
Expand Down Expand Up @@ -478,6 +482,10 @@ const docTemplate = `{
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
"type": "string"
},
"signature": {
"description": "Signature hold the signature of the a cloudevent's data field.",
"type": "string"
},
"source": {
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
"type": "string"
Expand Down
8 changes: 8 additions & 0 deletions docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,10 @@
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
"type": "string"
},
"signature": {
"description": "Signature hold the signature of the a cloudevent's data field.",
"type": "string"
},
"source": {
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
"type": "string"
Expand Down Expand Up @@ -469,6 +473,10 @@
"description": "Producer is a specific instance, process or device that creates the data structure describing the CloudEvent.",
"type": "string"
},
"signature": {
"description": "Signature hold the signature of the a cloudevent's data field.",
"type": "string"
},
"source": {
"description": "Source is the context in which the event happened. In a distributed system it might consist of multiple Producers.",
"type": "string"
Expand Down
6 changes: 6 additions & 0 deletions docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ definitions:
description: Producer is a specific instance, process or device that creates
the data structure describing the CloudEvent.
type: string
signature:
description: Signature hold the signature of the a cloudevent's data field.
type: string
source:
description: Source is the context in which the event happened. In a distributed
system it might consist of multiple Producers.
Expand Down Expand Up @@ -86,6 +89,9 @@ definitions:
description: Producer is a specific instance, process or device that creates
the data structure describing the CloudEvent.
type: string
signature:
description: Signature hold the signature of the a cloudevent's data field.
type: string
source:
description: Source is the context in which the event happened. In a distributed
system it might consist of multiple Producers.
Expand Down
18 changes: 9 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module github.com/DIMO-Network/fetch-api
go 1.24

require (
github.com/ClickHouse/clickhouse-go/v2 v2.34.0
github.com/ClickHouse/clickhouse-go/v2 v2.35.0
github.com/DIMO-Network/clickhouse-infra v0.0.3
github.com/DIMO-Network/cloudevent v0.1.0
github.com/DIMO-Network/cloudevent v0.1.1
github.com/DIMO-Network/shared v0.12.7
github.com/aws/aws-sdk-go-v2 v1.36.3
github.com/aws/aws-sdk-go-v2/credentials v1.17.48
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.3
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.4
github.com/ethereum/go-ethereum v1.15.11
github.com/gofiber/contrib/jwt v1.0.10
github.com/gofiber/fiber/v2 v2.52.6
Expand All @@ -28,7 +28,7 @@ require (
)

require (
github.com/ClickHouse/ch-go v0.65.1 // indirect
github.com/ClickHouse/ch-go v0.66.0 // indirect
github.com/DIMO-Network/yaml v0.1.0 // indirect
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/MicahParks/keyfunc/v2 v2.1.0 // indirect
Expand All @@ -41,7 +41,7 @@ require (
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.34 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.34 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.3 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.2 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.15 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.15 // indirect
github.com/aws/aws-sdk-go-v2/service/kms v1.35.3 // indirect
Expand All @@ -60,7 +60,7 @@ require (
github.com/google/uuid v1.6.0 // indirect
github.com/holiman/uint256 v1.3.2 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/klauspost/compress v1.18.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
Expand All @@ -86,17 +86,17 @@ require (
github.com/valyala/fasthttp v1.55.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/volatiletech/inflect v0.0.1 // indirect
github.com/volatiletech/sqlboiler/v4 v4.19.0 // indirect
github.com/volatiletech/sqlboiler/v4 v4.19.1 // indirect
github.com/volatiletech/strmangle v0.0.7-0.20240503230658-86517898275a // indirect
go.opentelemetry.io/otel v1.35.0 // indirect
go.opentelemetry.io/otel/trace v1.35.0 // indirect
golang.org/x/crypto v0.38.0 // indirect
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
golang.org/x/net v0.36.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.25.0 // indirect
golang.org/x/time v0.9.0 // indirect
golang.org/x/tools v0.30.0 // indirect
golang.org/x/tools v0.32.0 // indirect
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down
Loading