├── .changes ├── header.tpl.md ├── unreleased │ └── .gitkeep ├── v1.17.5.md ├── v1.17.6.md ├── v1.17.7.md ├── v1.18.0.md ├── v1.19.0.md └── v1.19.1.md ├── .changie.yaml ├── .github └── workflows │ ├── deploy.yml │ ├── release.yml │ └── test-deploy.yml ├── .gitignore ├── .goreleaser.yml ├── .mockery.yaml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── buf.cliv3.gen.yaml ├── buf.gen.yaml ├── buf.local.gen.yaml ├── buf.lock ├── buf.nexus.gen.yaml ├── buf.patch.gen.yaml ├── buf.yaml ├── cmd └── protoc-gen-go_temporal │ └── main.go ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── basic.md ├── docs │ ├── about.mdx │ ├── configuration │ │ ├── activity.mdx │ │ ├── fields.mdx │ │ ├── plugin.mdx │ │ ├── query.mdx │ │ ├── service.mdx │ │ ├── signal.mdx │ │ ├── update.mdx │ │ └── workflow.mdx │ ├── examples │ │ ├── codecserver.mdx │ │ ├── helloworld.mdx │ │ ├── mutex.mdx │ │ ├── schedule.mdx │ │ ├── searchattributes.mdx │ │ ├── shoppingcart.mdx │ │ ├── updatabletimer.mdx │ │ └── xns.mdx │ ├── getting-started.mdx │ ├── guides │ │ ├── activities.mdx │ │ ├── bloblang.mdx │ │ ├── child-workflows.mdx │ │ ├── cli.mdx │ │ ├── clients.mdx │ │ ├── codec-server.mdx │ │ ├── documentation.mdx │ │ ├── nexus.mdx │ │ ├── patches.mdx │ │ ├── queries.mdx │ │ ├── signals.mdx │ │ ├── testing.mdx │ │ ├── updates.mdx │ │ ├── workflows.mdx │ │ └── xns.mdx │ ├── how-it-works.mdx │ ├── how-it-works.tsx │ ├── install.mdx │ └── reference.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── _about.mdx │ │ │ ├── _features.mdx │ │ │ ├── _inspiration.mdx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── cli-query-completed.png │ │ ├── cli-query.png │ │ ├── cli-start-workflow.png │ │ ├── cli-update.png │ │ ├── cli-usage.png │ │ ├── code_black_24dp.svg │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── logo.png │ │ ├── rocket_launch_black_24dp.svg │ │ └── schema_black_24dp.svg └── tsconfig.json ├── examples ├── codecserver │ ├── README.md │ └── main.go ├── example │ ├── README.md │ ├── buf.gen.yaml │ ├── cmd │ │ ├── client │ │ │ └── main.go │ │ └── example │ │ │ └── main.go │ ├── example.go │ ├── example_test.go │ └── proto │ │ └── example │ │ └── v1 │ │ └── example.proto ├── helloworld │ ├── README.md │ ├── cmd │ │ └── client │ │ │ └── main.go │ ├── internal │ │ └── example.go │ ├── main.go │ └── proto │ │ └── example │ │ └── helloworld │ │ └── v1 │ │ └── example.proto ├── mutex │ ├── README.md │ ├── main.go │ ├── main_test.go │ └── proto │ │ └── example │ │ └── mutex │ │ └── v1 │ │ └── mutex.proto ├── nexus │ ├── echo │ │ ├── workflows.go │ │ └── workflows_test.go │ ├── greeting │ │ └── workflows.go │ ├── main.go │ └── proto │ │ └── example │ │ └── nexus │ │ └── v1 │ │ └── nexus.proto ├── schedule │ ├── main.go │ └── proto │ │ └── example │ │ └── schedule │ │ └── v1 │ │ └── schedule.proto ├── searchattributes │ ├── README.md │ ├── main.go │ ├── main_test.go │ └── proto │ │ └── example │ │ └── searchattributes │ │ └── v1 │ │ └── searchattributes.proto ├── shoppingcart │ ├── cmd │ │ └── shoppingcart │ │ │ └── main.go │ ├── proto │ │ └── example │ │ │ └── shoppingcart │ │ │ └── v1 │ │ │ └── shoppingcart.proto │ ├── workflows.go │ └── workflows_test.go ├── updatabletimer │ ├── README.md │ ├── main.go │ ├── main_test.go │ └── proto │ │ └── example │ │ └── updatabletimer │ │ └── v1 │ │ └── updatabletimer.proto └── xns │ ├── README.md │ ├── example.go │ ├── main.go │ └── proto │ └── example │ └── xns │ └── v1 │ └── xns.proto ├── gen ├── example │ ├── helloworld │ │ └── v1 │ │ │ ├── example.pb.go │ │ │ ├── example_temporal.pb.go │ │ │ └── helloworldv1xns │ │ │ └── example_xns_temporal.pb.go │ ├── mutex │ │ └── v1 │ │ │ ├── mutex.pb.go │ │ │ ├── mutex_temporal.pb.go │ │ │ └── mutexv1xns │ │ │ └── mutex_xns_temporal.pb.go │ ├── nexus │ │ └── v1 │ │ │ ├── nexus.pb.go │ │ │ ├── nexus_temporal.pb.go │ │ │ ├── nexusv1nexus │ │ │ └── nexus_nexus.pb.go │ │ │ ├── nexusv1nexustemporal │ │ │ └── nexus_nexus_temporal.pb.go │ │ │ └── nexusv1temporal │ │ │ └── nexus_temporal.pb.go │ ├── schedule │ │ └── v1 │ │ │ ├── schedule.pb.go │ │ │ ├── schedule_temporal.pb.go │ │ │ └── schedulev1xns │ │ │ └── schedule_xns_temporal.pb.go │ ├── searchattributes │ │ └── v1 │ │ │ ├── searchattributes.pb.go │ │ │ ├── searchattributes_temporal.pb.go │ │ │ └── searchattributesv1xns │ │ │ └── searchattributes_xns_temporal.pb.go │ ├── shoppingcart │ │ └── v1 │ │ │ ├── shoppingcart.pb.go │ │ │ ├── shoppingcart_temporal.pb.go │ │ │ └── shoppingcartv1xns │ │ │ └── shoppingcart_xns_temporal.pb.go │ ├── updatabletimer │ │ └── v1 │ │ │ ├── updatabletimer.pb.go │ │ │ ├── updatabletimer_temporal.pb.go │ │ │ └── updatabletimerv1xns │ │ │ └── updatabletimer_xns_temporal.pb.go │ ├── v1 │ │ ├── example.pb.go │ │ └── example_temporal.pb.go │ └── xns │ │ └── v1 │ │ ├── xns.pb.go │ │ ├── xns_temporal.pb.go │ │ └── xnsv1xns │ │ └── xns_xns_temporal.pb.go ├── temporal │ ├── v1 │ │ └── temporal.pb.go │ └── xns │ │ └── v1 │ │ └── xns.pb.go └── test │ ├── acronym │ └── v1 │ │ ├── acronym.pb.go │ │ ├── acronym_temporal.pb.go │ │ └── acronymv1xns │ │ └── acronym_xns_temporal.pb.go │ ├── activity │ └── v1 │ │ ├── activity.pb.go │ │ └── activity_temporal.pb.go │ ├── cliv3 │ ├── cliv3.pb.go │ └── cliv3_temporal.pb.go │ ├── editions │ ├── editionsxns │ │ └── example_xns_temporal.pb.go │ ├── example.pb.go │ └── example_temporal.pb.go │ ├── expression │ └── v1 │ │ └── expression.pb.go │ ├── issue-125 │ └── v1 │ │ ├── issue-125.pb.go │ │ ├── issue-125_temporal.pb.go │ │ └── issue_125v1xns │ │ └── issue-125_xns_temporal.pb.go │ ├── issue-133 │ └── v1 │ │ ├── issue-133.pb.go │ │ └── issue-133_temporal.pb.go │ ├── issue-135 │ └── v1 │ │ ├── issue-135.pb.go │ │ └── issue-135_temporal.pb.go │ ├── opaque │ ├── common.pb.go │ ├── hybrid.pb.go │ ├── hybrid_protoopaque.pb.go │ ├── hybrid_temporal.pb.go │ ├── opaque.pb.go │ ├── opaque_temporal.pb.go │ ├── opaquexns │ │ ├── hybrid_xns_temporal.pb.go │ │ ├── opaque_xns_temporal.pb.go │ │ ├── open_xns_temporal.pb.go │ │ └── optional_xns_temporal.pb.go │ ├── open.pb.go │ ├── open_temporal.pb.go │ ├── optional.pb.go │ └── optional_temporal.pb.go │ ├── option │ └── v1 │ │ ├── option.pb.go │ │ ├── option_temporal.pb.go │ │ └── optionv1xns │ │ └── option_xns_temporal.pb.go │ ├── patch │ ├── example.pb.go │ ├── example_temporal.pb.go │ └── patchxns │ │ └── example_xns_temporal.pb.go │ ├── proto3optional │ ├── example.pb.go │ ├── example_temporal.pb.go │ └── proto3optionalxns │ │ └── example_xns_temporal.pb.go │ ├── simple │ ├── common │ │ └── v1 │ │ │ └── common.pb.go │ └── v1 │ │ ├── simple.pb.go │ │ ├── simple_temporal.pb.go │ │ └── v1xns │ │ └── simple_xns_temporal.pb.go │ ├── workerversioning │ └── v1 │ │ ├── example.pb.go │ │ ├── example_temporal.pb.go │ │ └── workerversioningv1xns │ │ └── example_xns_temporal.pb.go │ ├── xnserr │ └── v1 │ │ ├── xnserr.pb.go │ │ ├── xnserr_temporal.pb.go │ │ └── xnserrv1xns │ │ └── xnserr_xns_temporal.pb.go │ └── xnsheartbeat │ └── v1 │ ├── xnsheartbeat.pb.go │ ├── xnsheartbeat_temporal.pb.go │ └── xnsheartbeatv1xns │ └── xnsheartbeat_xns_temporal.pb.go ├── go.mod ├── go.sum ├── internal ├── plugin │ ├── activities.go │ ├── cli.go │ ├── cli_flag.go │ ├── cli_v3.go │ ├── client.go │ ├── codec.go │ ├── debug.go │ ├── docs.go │ ├── docs │ │ ├── docs.go │ │ └── visitor.go │ ├── names.go │ ├── nexus.go │ ├── parse.go │ ├── patch.go │ ├── plugin.go │ ├── strcase.go │ ├── testclient.go │ ├── worker.go │ └── xns.go ├── templates │ ├── basic.tpl │ └── templates.go └── testutil │ └── testutil.go ├── mise.toml ├── mocks ├── example │ └── v1 │ │ └── mocks.go ├── go.temporal.io │ └── sdk │ │ ├── client │ │ └── mocks.go │ │ └── worker │ │ └── mocks.go └── test │ ├── simple │ └── v1 │ │ └── mocks.go │ └── xnserr │ └── v1 │ └── mocks.go ├── pkg ├── codec │ └── codec.go ├── convert │ ├── api.go │ ├── cast.go │ ├── map.go │ ├── must.go │ ├── searchattributes.go │ ├── searchattributes_test.go │ └── slice.go ├── expression │ ├── expression.go │ ├── expression_test.go │ ├── lexer.go │ └── lexer_test.go ├── helpers │ ├── cli_flag.go │ └── helpers.go ├── patch │ └── patch.go ├── scheme │ └── scheme.go ├── strcase │ ├── strcase.go │ └── strcase_test.go ├── testutil │ └── updatecallbacks.go └── xns │ ├── xns.go │ └── xns_test.go ├── proto ├── README.md └── temporal │ ├── README.md │ ├── buf.gen.yaml │ ├── v1 │ └── temporal.proto │ └── xns │ └── v1 │ └── xns.proto ├── scripts └── install.sh └── test ├── acronym ├── main.go ├── main_test.go └── proto │ └── test │ └── acronym │ └── v1 │ └── acronym.proto ├── activity ├── main.go ├── main_test.go └── proto │ └── test │ └── activity │ └── v1 │ └── activity.proto ├── cliv3 ├── cmd │ └── cliv3 │ │ ├── main.go │ │ └── main_test.go ├── proto │ └── test │ │ └── cliv3 │ │ └── cliv3.proto └── workflows.go ├── codec └── codec_test.go ├── editions └── proto │ └── test │ └── editions │ └── example.proto ├── expression └── proto │ └── test │ └── expression │ └── v1 │ └── expression.proto ├── issue-125 ├── main.go ├── main_test.go └── proto │ └── test │ └── issue-125 │ └── v1 │ └── issue-125.proto ├── issue-133 └── proto │ └── test │ └── issue-133 │ └── v1 │ └── issue-133.proto ├── issue-135 ├── main.go ├── main_test.go └── proto │ └── test │ └── issue-135 │ └── v1 │ └── issue-135.proto ├── opaque ├── main_test.go └── proto │ └── test │ └── opaque │ ├── common.proto │ ├── hybrid.proto │ ├── opaque.proto │ ├── open.proto │ └── optional.proto ├── option ├── main.go ├── main_test.go └── proto │ └── test │ └── option │ └── v1 │ └── option.proto ├── patch └── proto │ └── test │ └── patch │ └── example.proto ├── proto3optional └── proto │ └── test │ └── proto3optional │ └── example.proto ├── simple ├── deprecated.go ├── main.go ├── main_test.go ├── only_activities.go ├── only_activities_test.go ├── other.go ├── other_test.go ├── proto │ └── test │ │ └── simple │ │ ├── common │ │ └── v1 │ │ │ └── common.proto │ │ └── v1 │ │ └── simple.proto └── task_queue_test.go ├── workerversioning ├── main.go ├── main_test.go └── proto │ └── test │ └── workerversioning │ └── v1 │ └── example.proto ├── xnserr ├── client.go ├── client_test.go ├── cmd │ └── xnserr │ │ └── main.go ├── proto │ └── test │ │ └── xnserr │ │ └── v1 │ │ └── xnserr.proto └── server.go └── xnsheartbeat ├── cmd └── xnsheartbeat │ └── main.go ├── proto └── test │ └── xnsheartbeat │ └── v1 │ └── xnsheartbeat.proto └── xnsheartbeat.go /.changes/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/header.tpl.md -------------------------------------------------------------------------------- /.changes/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changes/v1.17.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.17.5.md -------------------------------------------------------------------------------- /.changes/v1.17.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.17.6.md -------------------------------------------------------------------------------- /.changes/v1.17.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.17.7.md -------------------------------------------------------------------------------- /.changes/v1.18.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.18.0.md -------------------------------------------------------------------------------- /.changes/v1.19.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.19.0.md -------------------------------------------------------------------------------- /.changes/v1.19.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changes/v1.19.1.md -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.github/workflows/test-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.mockery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/.mockery.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/README.md -------------------------------------------------------------------------------- /buf.cliv3.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.cliv3.gen.yaml -------------------------------------------------------------------------------- /buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.gen.yaml -------------------------------------------------------------------------------- /buf.local.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.local.gen.yaml -------------------------------------------------------------------------------- /buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.lock -------------------------------------------------------------------------------- /buf.nexus.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.nexus.gen.yaml -------------------------------------------------------------------------------- /buf.patch.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.patch.gen.yaml -------------------------------------------------------------------------------- /buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/buf.yaml -------------------------------------------------------------------------------- /cmd/protoc-gen-go_temporal/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/cmd/protoc-gen-go_temporal/main.go -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/basic.md -------------------------------------------------------------------------------- /docs/docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/about.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/activity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/activity.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/fields.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/fields.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/plugin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/plugin.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/query.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/service.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/service.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/signal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/signal.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/update.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/update.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/configuration/workflow.mdx -------------------------------------------------------------------------------- /docs/docs/examples/codecserver.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/codecserver.mdx -------------------------------------------------------------------------------- /docs/docs/examples/helloworld.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/helloworld.mdx -------------------------------------------------------------------------------- /docs/docs/examples/mutex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/mutex.mdx -------------------------------------------------------------------------------- /docs/docs/examples/schedule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/schedule.mdx -------------------------------------------------------------------------------- /docs/docs/examples/searchattributes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/searchattributes.mdx -------------------------------------------------------------------------------- /docs/docs/examples/shoppingcart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/shoppingcart.mdx -------------------------------------------------------------------------------- /docs/docs/examples/updatabletimer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/updatabletimer.mdx -------------------------------------------------------------------------------- /docs/docs/examples/xns.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/examples/xns.mdx -------------------------------------------------------------------------------- /docs/docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/docs/guides/activities.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/activities.mdx -------------------------------------------------------------------------------- /docs/docs/guides/bloblang.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/bloblang.mdx -------------------------------------------------------------------------------- /docs/docs/guides/child-workflows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/child-workflows.mdx -------------------------------------------------------------------------------- /docs/docs/guides/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/cli.mdx -------------------------------------------------------------------------------- /docs/docs/guides/clients.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/clients.mdx -------------------------------------------------------------------------------- /docs/docs/guides/codec-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/codec-server.mdx -------------------------------------------------------------------------------- /docs/docs/guides/documentation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/documentation.mdx -------------------------------------------------------------------------------- /docs/docs/guides/nexus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/nexus.mdx -------------------------------------------------------------------------------- /docs/docs/guides/patches.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/patches.mdx -------------------------------------------------------------------------------- /docs/docs/guides/queries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/queries.mdx -------------------------------------------------------------------------------- /docs/docs/guides/signals.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/signals.mdx -------------------------------------------------------------------------------- /docs/docs/guides/testing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/testing.mdx -------------------------------------------------------------------------------- /docs/docs/guides/updates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/updates.mdx -------------------------------------------------------------------------------- /docs/docs/guides/workflows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/workflows.mdx -------------------------------------------------------------------------------- /docs/docs/guides/xns.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/guides/xns.mdx -------------------------------------------------------------------------------- /docs/docs/how-it-works.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/how-it-works.mdx -------------------------------------------------------------------------------- /docs/docs/how-it-works.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/how-it-works.tsx -------------------------------------------------------------------------------- /docs/docs/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/install.mdx -------------------------------------------------------------------------------- /docs/docs/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docs/reference.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/_about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/components/HomepageFeatures/_about.mdx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/_features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/components/HomepageFeatures/_features.mdx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/_inspiration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/components/HomepageFeatures/_inspiration.mdx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/cli-query-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/cli-query-completed.png -------------------------------------------------------------------------------- /docs/static/img/cli-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/cli-query.png -------------------------------------------------------------------------------- /docs/static/img/cli-start-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/cli-start-workflow.png -------------------------------------------------------------------------------- /docs/static/img/cli-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/cli-update.png -------------------------------------------------------------------------------- /docs/static/img/cli-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/cli-usage.png -------------------------------------------------------------------------------- /docs/static/img/code_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/code_black_24dp.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/rocket_launch_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/rocket_launch_black_24dp.svg -------------------------------------------------------------------------------- /docs/static/img/schema_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/static/img/schema_black_24dp.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /examples/codecserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/codecserver/README.md -------------------------------------------------------------------------------- /examples/codecserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/codecserver/main.go -------------------------------------------------------------------------------- /examples/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/README.md -------------------------------------------------------------------------------- /examples/example/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/buf.gen.yaml -------------------------------------------------------------------------------- /examples/example/cmd/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/cmd/client/main.go -------------------------------------------------------------------------------- /examples/example/cmd/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/cmd/example/main.go -------------------------------------------------------------------------------- /examples/example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/example.go -------------------------------------------------------------------------------- /examples/example/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/example_test.go -------------------------------------------------------------------------------- /examples/example/proto/example/v1/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/example/proto/example/v1/example.proto -------------------------------------------------------------------------------- /examples/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/helloworld/README.md -------------------------------------------------------------------------------- /examples/helloworld/cmd/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/helloworld/cmd/client/main.go -------------------------------------------------------------------------------- /examples/helloworld/internal/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/helloworld/internal/example.go -------------------------------------------------------------------------------- /examples/helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/helloworld/main.go -------------------------------------------------------------------------------- /examples/helloworld/proto/example/helloworld/v1/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/helloworld/proto/example/helloworld/v1/example.proto -------------------------------------------------------------------------------- /examples/mutex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/mutex/README.md -------------------------------------------------------------------------------- /examples/mutex/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/mutex/main.go -------------------------------------------------------------------------------- /examples/mutex/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/mutex/main_test.go -------------------------------------------------------------------------------- /examples/mutex/proto/example/mutex/v1/mutex.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/mutex/proto/example/mutex/v1/mutex.proto -------------------------------------------------------------------------------- /examples/nexus/echo/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/nexus/echo/workflows.go -------------------------------------------------------------------------------- /examples/nexus/echo/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/nexus/echo/workflows_test.go -------------------------------------------------------------------------------- /examples/nexus/greeting/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/nexus/greeting/workflows.go -------------------------------------------------------------------------------- /examples/nexus/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/nexus/main.go -------------------------------------------------------------------------------- /examples/nexus/proto/example/nexus/v1/nexus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/nexus/proto/example/nexus/v1/nexus.proto -------------------------------------------------------------------------------- /examples/schedule/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/schedule/main.go -------------------------------------------------------------------------------- /examples/schedule/proto/example/schedule/v1/schedule.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/schedule/proto/example/schedule/v1/schedule.proto -------------------------------------------------------------------------------- /examples/searchattributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/searchattributes/README.md -------------------------------------------------------------------------------- /examples/searchattributes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/searchattributes/main.go -------------------------------------------------------------------------------- /examples/searchattributes/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/searchattributes/main_test.go -------------------------------------------------------------------------------- /examples/searchattributes/proto/example/searchattributes/v1/searchattributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/searchattributes/proto/example/searchattributes/v1/searchattributes.proto -------------------------------------------------------------------------------- /examples/shoppingcart/cmd/shoppingcart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/shoppingcart/cmd/shoppingcart/main.go -------------------------------------------------------------------------------- /examples/shoppingcart/proto/example/shoppingcart/v1/shoppingcart.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/shoppingcart/proto/example/shoppingcart/v1/shoppingcart.proto -------------------------------------------------------------------------------- /examples/shoppingcart/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/shoppingcart/workflows.go -------------------------------------------------------------------------------- /examples/shoppingcart/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/shoppingcart/workflows_test.go -------------------------------------------------------------------------------- /examples/updatabletimer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/updatabletimer/README.md -------------------------------------------------------------------------------- /examples/updatabletimer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/updatabletimer/main.go -------------------------------------------------------------------------------- /examples/updatabletimer/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/updatabletimer/main_test.go -------------------------------------------------------------------------------- /examples/updatabletimer/proto/example/updatabletimer/v1/updatabletimer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/updatabletimer/proto/example/updatabletimer/v1/updatabletimer.proto -------------------------------------------------------------------------------- /examples/xns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/xns/README.md -------------------------------------------------------------------------------- /examples/xns/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/xns/example.go -------------------------------------------------------------------------------- /examples/xns/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/xns/main.go -------------------------------------------------------------------------------- /examples/xns/proto/example/xns/v1/xns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/examples/xns/proto/example/xns/v1/xns.proto -------------------------------------------------------------------------------- /gen/example/helloworld/v1/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/helloworld/v1/example.pb.go -------------------------------------------------------------------------------- /gen/example/helloworld/v1/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/helloworld/v1/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/helloworld/v1/helloworldv1xns/example_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/helloworld/v1/helloworldv1xns/example_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/mutex/v1/mutex.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/mutex/v1/mutex.pb.go -------------------------------------------------------------------------------- /gen/example/mutex/v1/mutex_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/mutex/v1/mutex_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/mutex/v1/mutexv1xns/mutex_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/mutex/v1/mutexv1xns/mutex_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/nexus/v1/nexus.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/nexus/v1/nexus.pb.go -------------------------------------------------------------------------------- /gen/example/nexus/v1/nexus_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/nexus/v1/nexus_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/nexus/v1/nexusv1nexus/nexus_nexus.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/nexus/v1/nexusv1nexus/nexus_nexus.pb.go -------------------------------------------------------------------------------- /gen/example/nexus/v1/nexusv1nexustemporal/nexus_nexus_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/nexus/v1/nexusv1nexustemporal/nexus_nexus_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/nexus/v1/nexusv1temporal/nexus_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/nexus/v1/nexusv1temporal/nexus_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/schedule/v1/schedule.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/schedule/v1/schedule.pb.go -------------------------------------------------------------------------------- /gen/example/schedule/v1/schedule_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/schedule/v1/schedule_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/schedule/v1/schedulev1xns/schedule_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/schedule/v1/schedulev1xns/schedule_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/searchattributes/v1/searchattributes.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/searchattributes/v1/searchattributes.pb.go -------------------------------------------------------------------------------- /gen/example/searchattributes/v1/searchattributes_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/searchattributes/v1/searchattributes_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/searchattributes/v1/searchattributesv1xns/searchattributes_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/searchattributes/v1/searchattributesv1xns/searchattributes_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/shoppingcart/v1/shoppingcart.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/shoppingcart/v1/shoppingcart.pb.go -------------------------------------------------------------------------------- /gen/example/shoppingcart/v1/shoppingcart_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/shoppingcart/v1/shoppingcart_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/shoppingcart/v1/shoppingcartv1xns/shoppingcart_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/shoppingcart/v1/shoppingcartv1xns/shoppingcart_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/updatabletimer/v1/updatabletimer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/updatabletimer/v1/updatabletimer.pb.go -------------------------------------------------------------------------------- /gen/example/updatabletimer/v1/updatabletimer_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/updatabletimer/v1/updatabletimer_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/updatabletimer/v1/updatabletimerv1xns/updatabletimer_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/updatabletimer/v1/updatabletimerv1xns/updatabletimer_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/v1/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/v1/example.pb.go -------------------------------------------------------------------------------- /gen/example/v1/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/v1/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/xns/v1/xns.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/xns/v1/xns.pb.go -------------------------------------------------------------------------------- /gen/example/xns/v1/xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/xns/v1/xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/example/xns/v1/xnsv1xns/xns_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/example/xns/v1/xnsv1xns/xns_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/temporal/v1/temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/temporal/v1/temporal.pb.go -------------------------------------------------------------------------------- /gen/temporal/xns/v1/xns.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/temporal/xns/v1/xns.pb.go -------------------------------------------------------------------------------- /gen/test/acronym/v1/acronym.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/acronym/v1/acronym.pb.go -------------------------------------------------------------------------------- /gen/test/acronym/v1/acronym_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/acronym/v1/acronym_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/acronym/v1/acronymv1xns/acronym_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/acronym/v1/acronymv1xns/acronym_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/activity/v1/activity.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/activity/v1/activity.pb.go -------------------------------------------------------------------------------- /gen/test/activity/v1/activity_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/activity/v1/activity_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/cliv3/cliv3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/cliv3/cliv3.pb.go -------------------------------------------------------------------------------- /gen/test/cliv3/cliv3_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/cliv3/cliv3_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/editions/editionsxns/example_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/editions/editionsxns/example_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/editions/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/editions/example.pb.go -------------------------------------------------------------------------------- /gen/test/editions/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/editions/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/expression/v1/expression.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/expression/v1/expression.pb.go -------------------------------------------------------------------------------- /gen/test/issue-125/v1/issue-125.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-125/v1/issue-125.pb.go -------------------------------------------------------------------------------- /gen/test/issue-125/v1/issue-125_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-125/v1/issue-125_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/issue-125/v1/issue_125v1xns/issue-125_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-125/v1/issue_125v1xns/issue-125_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/issue-133/v1/issue-133.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-133/v1/issue-133.pb.go -------------------------------------------------------------------------------- /gen/test/issue-133/v1/issue-133_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-133/v1/issue-133_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/issue-135/v1/issue-135.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-135/v1/issue-135.pb.go -------------------------------------------------------------------------------- /gen/test/issue-135/v1/issue-135_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/issue-135/v1/issue-135_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/common.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/hybrid.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/hybrid.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/hybrid_protoopaque.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/hybrid_protoopaque.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/hybrid_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/hybrid_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaque.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaque.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaque_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaque_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaquexns/hybrid_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaquexns/hybrid_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaquexns/opaque_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaquexns/opaque_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaquexns/open_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaquexns/open_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/opaquexns/optional_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/opaquexns/optional_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/open.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/open.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/open_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/open_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/optional.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/optional.pb.go -------------------------------------------------------------------------------- /gen/test/opaque/optional_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/opaque/optional_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/option/v1/option.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/option/v1/option.pb.go -------------------------------------------------------------------------------- /gen/test/option/v1/option_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/option/v1/option_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/option/v1/optionv1xns/option_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/option/v1/optionv1xns/option_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/patch/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/patch/example.pb.go -------------------------------------------------------------------------------- /gen/test/patch/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/patch/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/patch/patchxns/example_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/patch/patchxns/example_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/proto3optional/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/proto3optional/example.pb.go -------------------------------------------------------------------------------- /gen/test/proto3optional/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/proto3optional/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/proto3optional/proto3optionalxns/example_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/proto3optional/proto3optionalxns/example_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/simple/common/v1/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/simple/common/v1/common.pb.go -------------------------------------------------------------------------------- /gen/test/simple/v1/simple.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/simple/v1/simple.pb.go -------------------------------------------------------------------------------- /gen/test/simple/v1/simple_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/simple/v1/simple_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/simple/v1/v1xns/simple_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/simple/v1/v1xns/simple_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/workerversioning/v1/example.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/workerversioning/v1/example.pb.go -------------------------------------------------------------------------------- /gen/test/workerversioning/v1/example_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/workerversioning/v1/example_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/workerversioning/v1/workerversioningv1xns/example_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/workerversioning/v1/workerversioningv1xns/example_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/xnserr/v1/xnserr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnserr/v1/xnserr.pb.go -------------------------------------------------------------------------------- /gen/test/xnserr/v1/xnserr_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnserr/v1/xnserr_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/xnserr/v1/xnserrv1xns/xnserr_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnserr/v1/xnserrv1xns/xnserr_xns_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/xnsheartbeat/v1/xnsheartbeat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnsheartbeat/v1/xnsheartbeat.pb.go -------------------------------------------------------------------------------- /gen/test/xnsheartbeat/v1/xnsheartbeat_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnsheartbeat/v1/xnsheartbeat_temporal.pb.go -------------------------------------------------------------------------------- /gen/test/xnsheartbeat/v1/xnsheartbeatv1xns/xnsheartbeat_xns_temporal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/gen/test/xnsheartbeat/v1/xnsheartbeatv1xns/xnsheartbeat_xns_temporal.pb.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/go.sum -------------------------------------------------------------------------------- /internal/plugin/activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/activities.go -------------------------------------------------------------------------------- /internal/plugin/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/cli.go -------------------------------------------------------------------------------- /internal/plugin/cli_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/cli_flag.go -------------------------------------------------------------------------------- /internal/plugin/cli_v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/cli_v3.go -------------------------------------------------------------------------------- /internal/plugin/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/client.go -------------------------------------------------------------------------------- /internal/plugin/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/codec.go -------------------------------------------------------------------------------- /internal/plugin/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/debug.go -------------------------------------------------------------------------------- /internal/plugin/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/docs.go -------------------------------------------------------------------------------- /internal/plugin/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/docs/docs.go -------------------------------------------------------------------------------- /internal/plugin/docs/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/docs/visitor.go -------------------------------------------------------------------------------- /internal/plugin/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/names.go -------------------------------------------------------------------------------- /internal/plugin/nexus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/nexus.go -------------------------------------------------------------------------------- /internal/plugin/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/parse.go -------------------------------------------------------------------------------- /internal/plugin/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/patch.go -------------------------------------------------------------------------------- /internal/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/plugin.go -------------------------------------------------------------------------------- /internal/plugin/strcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/strcase.go -------------------------------------------------------------------------------- /internal/plugin/testclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/testclient.go -------------------------------------------------------------------------------- /internal/plugin/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/worker.go -------------------------------------------------------------------------------- /internal/plugin/xns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/plugin/xns.go -------------------------------------------------------------------------------- /internal/templates/basic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/templates/basic.tpl -------------------------------------------------------------------------------- /internal/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/templates/templates.go -------------------------------------------------------------------------------- /internal/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/internal/testutil/testutil.go -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mise.toml -------------------------------------------------------------------------------- /mocks/example/v1/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mocks/example/v1/mocks.go -------------------------------------------------------------------------------- /mocks/go.temporal.io/sdk/client/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mocks/go.temporal.io/sdk/client/mocks.go -------------------------------------------------------------------------------- /mocks/go.temporal.io/sdk/worker/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mocks/go.temporal.io/sdk/worker/mocks.go -------------------------------------------------------------------------------- /mocks/test/simple/v1/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mocks/test/simple/v1/mocks.go -------------------------------------------------------------------------------- /mocks/test/xnserr/v1/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/mocks/test/xnserr/v1/mocks.go -------------------------------------------------------------------------------- /pkg/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/codec/codec.go -------------------------------------------------------------------------------- /pkg/convert/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/api.go -------------------------------------------------------------------------------- /pkg/convert/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/cast.go -------------------------------------------------------------------------------- /pkg/convert/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/map.go -------------------------------------------------------------------------------- /pkg/convert/must.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/must.go -------------------------------------------------------------------------------- /pkg/convert/searchattributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/searchattributes.go -------------------------------------------------------------------------------- /pkg/convert/searchattributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/searchattributes_test.go -------------------------------------------------------------------------------- /pkg/convert/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/convert/slice.go -------------------------------------------------------------------------------- /pkg/expression/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/expression/expression.go -------------------------------------------------------------------------------- /pkg/expression/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/expression/expression_test.go -------------------------------------------------------------------------------- /pkg/expression/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/expression/lexer.go -------------------------------------------------------------------------------- /pkg/expression/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/expression/lexer_test.go -------------------------------------------------------------------------------- /pkg/helpers/cli_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/helpers/cli_flag.go -------------------------------------------------------------------------------- /pkg/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/helpers/helpers.go -------------------------------------------------------------------------------- /pkg/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/patch/patch.go -------------------------------------------------------------------------------- /pkg/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/scheme/scheme.go -------------------------------------------------------------------------------- /pkg/strcase/strcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/strcase/strcase.go -------------------------------------------------------------------------------- /pkg/strcase/strcase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/strcase/strcase_test.go -------------------------------------------------------------------------------- /pkg/testutil/updatecallbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/testutil/updatecallbacks.go -------------------------------------------------------------------------------- /pkg/xns/xns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/xns/xns.go -------------------------------------------------------------------------------- /pkg/xns/xns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/pkg/xns/xns_test.go -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/proto/README.md -------------------------------------------------------------------------------- /proto/temporal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/proto/temporal/README.md -------------------------------------------------------------------------------- /proto/temporal/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/proto/temporal/buf.gen.yaml -------------------------------------------------------------------------------- /proto/temporal/v1/temporal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/proto/temporal/v1/temporal.proto -------------------------------------------------------------------------------- /proto/temporal/xns/v1/xns.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/proto/temporal/xns/v1/xns.proto -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /test/acronym/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/acronym/main.go -------------------------------------------------------------------------------- /test/acronym/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/acronym/main_test.go -------------------------------------------------------------------------------- /test/acronym/proto/test/acronym/v1/acronym.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/acronym/proto/test/acronym/v1/acronym.proto -------------------------------------------------------------------------------- /test/activity/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/activity/main.go -------------------------------------------------------------------------------- /test/activity/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/activity/main_test.go -------------------------------------------------------------------------------- /test/activity/proto/test/activity/v1/activity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/activity/proto/test/activity/v1/activity.proto -------------------------------------------------------------------------------- /test/cliv3/cmd/cliv3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/cliv3/cmd/cliv3/main.go -------------------------------------------------------------------------------- /test/cliv3/cmd/cliv3/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/cliv3/cmd/cliv3/main_test.go -------------------------------------------------------------------------------- /test/cliv3/proto/test/cliv3/cliv3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/cliv3/proto/test/cliv3/cliv3.proto -------------------------------------------------------------------------------- /test/cliv3/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/cliv3/workflows.go -------------------------------------------------------------------------------- /test/codec/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/codec/codec_test.go -------------------------------------------------------------------------------- /test/editions/proto/test/editions/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/editions/proto/test/editions/example.proto -------------------------------------------------------------------------------- /test/expression/proto/test/expression/v1/expression.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/expression/proto/test/expression/v1/expression.proto -------------------------------------------------------------------------------- /test/issue-125/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-125/main.go -------------------------------------------------------------------------------- /test/issue-125/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-125/main_test.go -------------------------------------------------------------------------------- /test/issue-125/proto/test/issue-125/v1/issue-125.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-125/proto/test/issue-125/v1/issue-125.proto -------------------------------------------------------------------------------- /test/issue-133/proto/test/issue-133/v1/issue-133.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-133/proto/test/issue-133/v1/issue-133.proto -------------------------------------------------------------------------------- /test/issue-135/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-135/main.go -------------------------------------------------------------------------------- /test/issue-135/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-135/main_test.go -------------------------------------------------------------------------------- /test/issue-135/proto/test/issue-135/v1/issue-135.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/issue-135/proto/test/issue-135/v1/issue-135.proto -------------------------------------------------------------------------------- /test/opaque/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/main_test.go -------------------------------------------------------------------------------- /test/opaque/proto/test/opaque/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/proto/test/opaque/common.proto -------------------------------------------------------------------------------- /test/opaque/proto/test/opaque/hybrid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/proto/test/opaque/hybrid.proto -------------------------------------------------------------------------------- /test/opaque/proto/test/opaque/opaque.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/proto/test/opaque/opaque.proto -------------------------------------------------------------------------------- /test/opaque/proto/test/opaque/open.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/proto/test/opaque/open.proto -------------------------------------------------------------------------------- /test/opaque/proto/test/opaque/optional.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/opaque/proto/test/opaque/optional.proto -------------------------------------------------------------------------------- /test/option/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/option/main.go -------------------------------------------------------------------------------- /test/option/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/option/main_test.go -------------------------------------------------------------------------------- /test/option/proto/test/option/v1/option.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/option/proto/test/option/v1/option.proto -------------------------------------------------------------------------------- /test/patch/proto/test/patch/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/patch/proto/test/patch/example.proto -------------------------------------------------------------------------------- /test/proto3optional/proto/test/proto3optional/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/proto3optional/proto/test/proto3optional/example.proto -------------------------------------------------------------------------------- /test/simple/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/deprecated.go -------------------------------------------------------------------------------- /test/simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/main.go -------------------------------------------------------------------------------- /test/simple/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/main_test.go -------------------------------------------------------------------------------- /test/simple/only_activities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/only_activities.go -------------------------------------------------------------------------------- /test/simple/only_activities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/only_activities_test.go -------------------------------------------------------------------------------- /test/simple/other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/other.go -------------------------------------------------------------------------------- /test/simple/other_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/other_test.go -------------------------------------------------------------------------------- /test/simple/proto/test/simple/common/v1/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/proto/test/simple/common/v1/common.proto -------------------------------------------------------------------------------- /test/simple/proto/test/simple/v1/simple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/proto/test/simple/v1/simple.proto -------------------------------------------------------------------------------- /test/simple/task_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/simple/task_queue_test.go -------------------------------------------------------------------------------- /test/workerversioning/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/workerversioning/main.go -------------------------------------------------------------------------------- /test/workerversioning/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/workerversioning/main_test.go -------------------------------------------------------------------------------- /test/workerversioning/proto/test/workerversioning/v1/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/workerversioning/proto/test/workerversioning/v1/example.proto -------------------------------------------------------------------------------- /test/xnserr/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnserr/client.go -------------------------------------------------------------------------------- /test/xnserr/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnserr/client_test.go -------------------------------------------------------------------------------- /test/xnserr/cmd/xnserr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnserr/cmd/xnserr/main.go -------------------------------------------------------------------------------- /test/xnserr/proto/test/xnserr/v1/xnserr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnserr/proto/test/xnserr/v1/xnserr.proto -------------------------------------------------------------------------------- /test/xnserr/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnserr/server.go -------------------------------------------------------------------------------- /test/xnsheartbeat/cmd/xnsheartbeat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnsheartbeat/cmd/xnsheartbeat/main.go -------------------------------------------------------------------------------- /test/xnsheartbeat/proto/test/xnsheartbeat/v1/xnsheartbeat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnsheartbeat/proto/test/xnsheartbeat/v1/xnsheartbeat.proto -------------------------------------------------------------------------------- /test/xnsheartbeat/xnsheartbeat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cludden/protoc-gen-go-temporal/HEAD/test/xnsheartbeat/xnsheartbeat.go --------------------------------------------------------------------------------