Skip to content

Commit

Permalink
fix(core): build with event.proto update
Browse files Browse the repository at this point in the history
Signed-off-by: Godefroy Ponsinet <godefroy.ponsinet@outlook.com>
  • Loading branch information
90dy authored and moul committed Mar 22, 2019
1 parent 8634ad1 commit d538972
Show file tree
Hide file tree
Showing 17 changed files with 1,813 additions and 293 deletions.
44 changes: 44 additions & 0 deletions client/react-native/common/graphql/enums.gen.js
Expand Up @@ -234,6 +234,36 @@ export const ValueBertyEntityKindInputKind = {
99: 'Node',
}

export const BertyEntityEventInputAckStatus = {
UnknownAckStatus: 0,
NotAcked: 1,
AckedAtLeastOnce: 2,
AckedByAllContacts: 3,
AckedByAllDevices: 4,
}

export const ValueBertyEntityEventInputAckStatus = {
0: 'UnknownAckStatus',
1: 'NotAcked',
2: 'AckedAtLeastOnce',
3: 'AckedByAllContacts',
4: 'AckedByAllDevices',
}

export const BertyEntityEventInputSeenStatus = {
UnknownSeenStatus: 0,
NotSeen: 1,
SeenAtLeastOnce: 2,
SeenByAllContacts: 3,
}

export const ValueBertyEntityEventInputSeenStatus = {
0: 'UnknownSeenStatus',
1: 'NotSeen',
2: 'SeenAtLeastOnce',
3: 'SeenByAllContacts',
}

export const BertyEntityEventInputDirection = {
UnknownDirection: 0,
Incoming: 1,
Expand All @@ -248,6 +278,20 @@ export const ValueBertyEntityEventInputDirection = {
99: 'Node',
}

export const BertyEntityEventDispatchInputMedium = {
UnknownMedium: 0,
LocalNetwork: 1,
BLE: 2,
Relay: 3,
}

export const ValueBertyEntityEventDispatchInputMedium = {
0: 'UnknownMedium',
1: 'LocalNetwork',
2: 'BLE',
3: 'Relay',
}

export const BertyNetworkMetricMetricsTypeInputMetricsType = {
PEER: 0,
PROTOCOL: 1,
Expand Down
43 changes: 35 additions & 8 deletions client/react-native/common/schema.graphql

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

44 changes: 44 additions & 0 deletions core/api/node/graphql/enums.gen.js
Expand Up @@ -234,6 +234,36 @@ export const ValueBertyEntityKindInputKind = {
99: 'Node',
}

export const BertyEntityEventInputAckStatus = {
UnknownAckStatus: 0,
NotAcked: 1,
AckedAtLeastOnce: 2,
AckedByAllContacts: 3,
AckedByAllDevices: 4,
}

export const ValueBertyEntityEventInputAckStatus = {
0: 'UnknownAckStatus',
1: 'NotAcked',
2: 'AckedAtLeastOnce',
3: 'AckedByAllContacts',
4: 'AckedByAllDevices',
}

export const BertyEntityEventInputSeenStatus = {
UnknownSeenStatus: 0,
NotSeen: 1,
SeenAtLeastOnce: 2,
SeenByAllContacts: 3,
}

export const ValueBertyEntityEventInputSeenStatus = {
0: 'UnknownSeenStatus',
1: 'NotSeen',
2: 'SeenAtLeastOnce',
3: 'SeenByAllContacts',
}

export const BertyEntityEventInputDirection = {
UnknownDirection: 0,
Incoming: 1,
Expand All @@ -248,6 +278,20 @@ export const ValueBertyEntityEventInputDirection = {
99: 'Node',
}

export const BertyEntityEventDispatchInputMedium = {
UnknownMedium: 0,
LocalNetwork: 1,
BLE: 2,
Relay: 3,
}

export const ValueBertyEntityEventDispatchInputMedium = {
0: 'UnknownMedium',
1: 'LocalNetwork',
2: 'BLE',
3: 'Relay',
}

export const BertyNetworkMetricMetricsTypeInputMetricsType = {
PEER: 0,
PROTOCOL: 1,
Expand Down
64 changes: 52 additions & 12 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 d538972

Please sign in to comment.