Skip to content

Commit

Permalink
feat(node): add commit log stream
Browse files Browse the repository at this point in the history
fix #777

Signed-off-by: Godefroy Ponsinet <godefroy.ponsinet@outlook.com>
  • Loading branch information
90dy committed Dec 18, 2018
1 parent 553fa27 commit 9f6e851
Show file tree
Hide file tree
Showing 15 changed files with 2,086 additions and 249 deletions.
12 changes: 12 additions & 0 deletions client/react-native/common/graphql/enums.gen.js
Expand Up @@ -272,6 +272,18 @@ export const ValueBertyPkgDeviceinfoTypeInputType = {
2: 'Json',
}

export const BertyNodeCommitLogInputOperation = {
Create: 0,
Update: 1,
Delete: 2,
}

export const ValueBertyNodeCommitLogInputOperation = {
0: 'Create',
1: 'Update',
2: 'Delete',
}

export const BertyNodeNullableTrueFalseInputNullableTrueFalse = {
Null: 0,
True: 1,
Expand Down
31 changes: 31 additions & 0 deletions client/react-native/common/schema.graphql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions client/react-native/gomobile/go.sum
Expand Up @@ -233,6 +233,8 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 h1:BWIsLfhgKhV5g/oF34aRjniBHLTZe5DNekSjbAjIS6c=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20181112102510-3304cc886352 h1:1GXyC+LmruB9uk340NwSS6UPwWNXM3xe6pbGpsXqAKc=
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20181112102510-3304cc886352/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
github.com/gxed/GoEndian v0.0.0-20160916112711-0f5c6873267e h1:eIhARPSF2zPr1hKxiL81XWQ392f5stEEcs38UzZVSWo=
github.com/gxed/GoEndian v0.0.0-20160916112711-0f5c6873267e/go.mod h1:vckkIQ0K+GGne8aC4LseYg586YwBQhOxXMXGAmKsCdY=
github.com/gxed/eventfd v0.0.0-20160916113412-80a92cca79a8 h1:N97hyGE4Q7bfXLQHvCtVvhLA9ofDkh5nzFcaB+1kLic=
Expand Down Expand Up @@ -432,6 +434,8 @@ github.com/multiformats/go-multicodec v0.1.6 h1:4u6lcjbE4VVVoigU4QJSSVYsGVP4j2jt
github.com/multiformats/go-multicodec v0.1.6/go.mod h1:lliaRHbcG8q33yf4Ot9BGD7JqR/Za9HE7HTyVyKwrUQ=
github.com/multiformats/go-multihash v1.0.8 h1:pyowaBSivNxBr137ZjYkr0q4o41MKSJVPKuO7F7AAfY=
github.com/multiformats/go-multihash v1.0.8/go.mod h1:sT17phG+xVgnrZc8ht/ZoCIV0sKRwvmZkXk46UfSxM4=
github.com/multiformats/go-multihash v1.0.9-0.20181210174334-1dbee63c8258 h1:HEsTgicXTbbKgh35PO0ZtaISF8OmCt+xDgb3BL1Oijs=
github.com/multiformats/go-multihash v1.0.9-0.20181210174334-1dbee63c8258/go.mod h1:sT17phG+xVgnrZc8ht/ZoCIV0sKRwvmZkXk46UfSxM4=
github.com/multiformats/go-multistream v0.3.9 h1:ZqVaUxtVzjRUCGaO3596vk/rj9UXheIGAdKXXo/VKUA=
github.com/multiformats/go-multistream v0.3.9/go.mod h1:fJTiDfXJVmItycydCnNx4+wSzZ5NwG2FEVAI30fiovg=
github.com/nicksnyder/go-i18n v1.10.0/go.mod h1:HrK7VCrbOvQoUAQ7Vpy7i87N7JZZZ7R2xBGjv0j365Q=
Expand Down
18 changes: 18 additions & 0 deletions core/api/client/berty.node.service.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions core/api/client/jsonclient/berty.node.service.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions core/api/node/graphql/enums.gen.js
Expand Up @@ -272,6 +272,18 @@ export const ValueBertyPkgDeviceinfoTypeInputType = {
2: 'Json',
}

export const BertyNodeCommitLogInputOperation = {
Create: 0,
Update: 1,
Delete: 2,
}

export const ValueBertyNodeCommitLogInputOperation = {
0: 'Create',
1: 'Update',
2: 'Delete',
}

export const BertyNodeNullableTrueFalseInputNullableTrueFalse = {
Null: 0,
True: 1,
Expand Down
79 changes: 79 additions & 0 deletions core/api/node/graphql/gqlgen.gen.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9f6e851

Please sign in to comment.