Skip to content

Commit 50a959e

Browse files
Merge pull request #34 from open-olive/SIDE-1060-disambiguation-card-type-frame-node
Side 1060 disambiguation card type frame node
2 parents 98d795a + 3b1c4ea commit 50a959e

38 files changed

+37562
-20
lines changed

ldk/go/ldk-test/whisperService.go

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@ import (
77
)
88

99
type WhisperService struct {
10-
Confirmf func(context.Context, *ldk.WhisperContentConfirm) (bool, error)
11-
Formf func(context.Context, *ldk.WhisperContentForm) (bool, map[string]ldk.WhisperContentFormOutput, error)
12-
Listf func(context.Context, *ldk.WhisperContentList) error
13-
Markdownf func(context.Context, *ldk.WhisperContentMarkdown) error
10+
Confirmf func(context.Context, *ldk.WhisperContentConfirm) (bool, error)
11+
Disambiguationf func(context.Context, *ldk.WhisperContentDisambiguation) (bool, error)
12+
Formf func(context.Context, *ldk.WhisperContentForm) (bool, map[string]ldk.WhisperContentFormOutput, error)
13+
Listf func(context.Context, *ldk.WhisperContentList) error
14+
Markdownf func(context.Context, *ldk.WhisperContentMarkdown) error
1415
}
1516

1617
func (w *WhisperService) Confirm(ctx context.Context, content *ldk.WhisperContentConfirm) (bool, error) {
1718
return w.Confirmf(ctx, content)
1819
}
1920

21+
func (w *WhisperService) Disambiguation(ctx context.Context, content *ldk.WhisperContentDisambiguation) (bool, error) {
22+
return w.Disambiguationf(ctx, content)
23+
}
24+
2025
func (w *WhisperService) Form(ctx context.Context, content *ldk.WhisperContentForm) (bool, map[string]ldk.WhisperContentFormOutput, error) {
2126
return w.Formf(ctx, content)
2227
}

ldk/node/dist/bin/build.js

100755100644
File mode changed.

ldk/node/dist/grpc/whisper_grpc_pb.d.ts

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ldk/node/dist/grpc/whisper_grpc_pb.js

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ldk/node/dist/grpc/whisper_pb.d.ts

Lines changed: 174 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)