@temporalio/proto 1.10.3 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/protos/json-module.js +175 -110
- package/protos/root.d.ts +500 -71
package/protos/json-module.js
CHANGED
|
@@ -2061,7 +2061,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2061
2061
|
RESOURCE_EXHAUSTED_CAUSE_SYSTEM_OVERLOADED: 3,
|
|
2062
2062
|
RESOURCE_EXHAUSTED_CAUSE_PERSISTENCE_LIMIT: 4,
|
|
2063
2063
|
RESOURCE_EXHAUSTED_CAUSE_BUSY_WORKFLOW: 5,
|
|
2064
|
-
RESOURCE_EXHAUSTED_CAUSE_APS_LIMIT: 6
|
|
2064
|
+
RESOURCE_EXHAUSTED_CAUSE_APS_LIMIT: 6,
|
|
2065
|
+
RESOURCE_EXHAUSTED_CAUSE_PERSISTENCE_STORAGE_LIMIT: 7
|
|
2065
2066
|
}
|
|
2066
2067
|
},
|
|
2067
2068
|
ResourceExhaustedScope: {
|
|
@@ -2655,13 +2656,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2655
2656
|
requestType: "RegisterNamespaceRequest",
|
|
2656
2657
|
responseType: "RegisterNamespaceResponse",
|
|
2657
2658
|
options: {
|
|
2658
|
-
"(google.api.http).post": "/
|
|
2659
|
+
"(google.api.http).post": "/namespaces",
|
|
2659
2660
|
"(google.api.http).body": "*"
|
|
2660
2661
|
},
|
|
2661
2662
|
parsedOptions: [
|
|
2662
2663
|
{
|
|
2663
2664
|
"(google.api.http)": {
|
|
2664
|
-
post: "/
|
|
2665
|
+
post: "/namespaces",
|
|
2665
2666
|
body: "*"
|
|
2666
2667
|
}
|
|
2667
2668
|
}
|
|
@@ -2671,12 +2672,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2671
2672
|
requestType: "DescribeNamespaceRequest",
|
|
2672
2673
|
responseType: "DescribeNamespaceResponse",
|
|
2673
2674
|
options: {
|
|
2674
|
-
"(google.api.http).get": "/
|
|
2675
|
+
"(google.api.http).get": "/namespaces/{namespace}"
|
|
2675
2676
|
},
|
|
2676
2677
|
parsedOptions: [
|
|
2677
2678
|
{
|
|
2678
2679
|
"(google.api.http)": {
|
|
2679
|
-
get: "/
|
|
2680
|
+
get: "/namespaces/{namespace}"
|
|
2680
2681
|
}
|
|
2681
2682
|
}
|
|
2682
2683
|
]
|
|
@@ -2685,12 +2686,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2685
2686
|
requestType: "ListNamespacesRequest",
|
|
2686
2687
|
responseType: "ListNamespacesResponse",
|
|
2687
2688
|
options: {
|
|
2688
|
-
"(google.api.http).get": "/
|
|
2689
|
+
"(google.api.http).get": "/namespaces"
|
|
2689
2690
|
},
|
|
2690
2691
|
parsedOptions: [
|
|
2691
2692
|
{
|
|
2692
2693
|
"(google.api.http)": {
|
|
2693
|
-
get: "/
|
|
2694
|
+
get: "/namespaces"
|
|
2694
2695
|
}
|
|
2695
2696
|
}
|
|
2696
2697
|
]
|
|
@@ -2699,13 +2700,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2699
2700
|
requestType: "UpdateNamespaceRequest",
|
|
2700
2701
|
responseType: "UpdateNamespaceResponse",
|
|
2701
2702
|
options: {
|
|
2702
|
-
"(google.api.http).post": "/
|
|
2703
|
+
"(google.api.http).post": "/namespaces/{namespace}/update",
|
|
2703
2704
|
"(google.api.http).body": "*"
|
|
2704
2705
|
},
|
|
2705
2706
|
parsedOptions: [
|
|
2706
2707
|
{
|
|
2707
2708
|
"(google.api.http)": {
|
|
2708
|
-
post: "/
|
|
2709
|
+
post: "/namespaces/{namespace}/update",
|
|
2709
2710
|
body: "*"
|
|
2710
2711
|
}
|
|
2711
2712
|
}
|
|
@@ -2719,13 +2720,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2719
2720
|
requestType: "StartWorkflowExecutionRequest",
|
|
2720
2721
|
responseType: "StartWorkflowExecutionResponse",
|
|
2721
2722
|
options: {
|
|
2722
|
-
"(google.api.http).post": "/
|
|
2723
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_id}",
|
|
2723
2724
|
"(google.api.http).body": "*"
|
|
2724
2725
|
},
|
|
2725
2726
|
parsedOptions: [
|
|
2726
2727
|
{
|
|
2727
2728
|
"(google.api.http)": {
|
|
2728
|
-
post: "/
|
|
2729
|
+
post: "/namespaces/{namespace}/workflows/{workflow_id}",
|
|
2729
2730
|
body: "*"
|
|
2730
2731
|
}
|
|
2731
2732
|
}
|
|
@@ -2735,13 +2736,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2735
2736
|
requestType: "ExecuteMultiOperationRequest",
|
|
2736
2737
|
responseType: "ExecuteMultiOperationResponse",
|
|
2737
2738
|
options: {
|
|
2738
|
-
"(google.api.http).post": "/
|
|
2739
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/execute-multi-operation",
|
|
2739
2740
|
"(google.api.http).body": "*"
|
|
2740
2741
|
},
|
|
2741
2742
|
parsedOptions: [
|
|
2742
2743
|
{
|
|
2743
2744
|
"(google.api.http)": {
|
|
2744
|
-
post: "/
|
|
2745
|
+
post: "/namespaces/{namespace}/workflows/execute-multi-operation",
|
|
2745
2746
|
body: "*"
|
|
2746
2747
|
}
|
|
2747
2748
|
}
|
|
@@ -2751,12 +2752,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2751
2752
|
requestType: "GetWorkflowExecutionHistoryRequest",
|
|
2752
2753
|
responseType: "GetWorkflowExecutionHistoryResponse",
|
|
2753
2754
|
options: {
|
|
2754
|
-
"(google.api.http).get": "/
|
|
2755
|
+
"(google.api.http).get": "/namespaces/{namespace}/workflows/{execution.workflow_id}/history"
|
|
2755
2756
|
},
|
|
2756
2757
|
parsedOptions: [
|
|
2757
2758
|
{
|
|
2758
2759
|
"(google.api.http)": {
|
|
2759
|
-
get: "/
|
|
2760
|
+
get: "/namespaces/{namespace}/workflows/{execution.workflow_id}/history"
|
|
2760
2761
|
}
|
|
2761
2762
|
}
|
|
2762
2763
|
]
|
|
@@ -2765,12 +2766,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2765
2766
|
requestType: "GetWorkflowExecutionHistoryReverseRequest",
|
|
2766
2767
|
responseType: "GetWorkflowExecutionHistoryReverseResponse",
|
|
2767
2768
|
options: {
|
|
2768
|
-
"(google.api.http).get": "/
|
|
2769
|
+
"(google.api.http).get": "/namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse"
|
|
2769
2770
|
},
|
|
2770
2771
|
parsedOptions: [
|
|
2771
2772
|
{
|
|
2772
2773
|
"(google.api.http)": {
|
|
2773
|
-
get: "/
|
|
2774
|
+
get: "/namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse"
|
|
2774
2775
|
}
|
|
2775
2776
|
}
|
|
2776
2777
|
]
|
|
@@ -2795,13 +2796,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2795
2796
|
requestType: "RecordActivityTaskHeartbeatRequest",
|
|
2796
2797
|
responseType: "RecordActivityTaskHeartbeatResponse",
|
|
2797
2798
|
options: {
|
|
2798
|
-
"(google.api.http).post": "/
|
|
2799
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/heartbeat",
|
|
2799
2800
|
"(google.api.http).body": "*"
|
|
2800
2801
|
},
|
|
2801
2802
|
parsedOptions: [
|
|
2802
2803
|
{
|
|
2803
2804
|
"(google.api.http)": {
|
|
2804
|
-
post: "/
|
|
2805
|
+
post: "/namespaces/{namespace}/activities/heartbeat",
|
|
2805
2806
|
body: "*"
|
|
2806
2807
|
}
|
|
2807
2808
|
}
|
|
@@ -2811,13 +2812,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2811
2812
|
requestType: "RecordActivityTaskHeartbeatByIdRequest",
|
|
2812
2813
|
responseType: "RecordActivityTaskHeartbeatByIdResponse",
|
|
2813
2814
|
options: {
|
|
2814
|
-
"(google.api.http).post": "/
|
|
2815
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/heartbeat-by-id",
|
|
2815
2816
|
"(google.api.http).body": "*"
|
|
2816
2817
|
},
|
|
2817
2818
|
parsedOptions: [
|
|
2818
2819
|
{
|
|
2819
2820
|
"(google.api.http)": {
|
|
2820
|
-
post: "/
|
|
2821
|
+
post: "/namespaces/{namespace}/activities/heartbeat-by-id",
|
|
2821
2822
|
body: "*"
|
|
2822
2823
|
}
|
|
2823
2824
|
}
|
|
@@ -2827,13 +2828,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2827
2828
|
requestType: "RespondActivityTaskCompletedRequest",
|
|
2828
2829
|
responseType: "RespondActivityTaskCompletedResponse",
|
|
2829
2830
|
options: {
|
|
2830
|
-
"(google.api.http).post": "/
|
|
2831
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/complete",
|
|
2831
2832
|
"(google.api.http).body": "*"
|
|
2832
2833
|
},
|
|
2833
2834
|
parsedOptions: [
|
|
2834
2835
|
{
|
|
2835
2836
|
"(google.api.http)": {
|
|
2836
|
-
post: "/
|
|
2837
|
+
post: "/namespaces/{namespace}/activities/complete",
|
|
2837
2838
|
body: "*"
|
|
2838
2839
|
}
|
|
2839
2840
|
}
|
|
@@ -2843,13 +2844,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2843
2844
|
requestType: "RespondActivityTaskCompletedByIdRequest",
|
|
2844
2845
|
responseType: "RespondActivityTaskCompletedByIdResponse",
|
|
2845
2846
|
options: {
|
|
2846
|
-
"(google.api.http).post": "/
|
|
2847
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/complete-by-id",
|
|
2847
2848
|
"(google.api.http).body": "*"
|
|
2848
2849
|
},
|
|
2849
2850
|
parsedOptions: [
|
|
2850
2851
|
{
|
|
2851
2852
|
"(google.api.http)": {
|
|
2852
|
-
post: "/
|
|
2853
|
+
post: "/namespaces/{namespace}/activities/complete-by-id",
|
|
2853
2854
|
body: "*"
|
|
2854
2855
|
}
|
|
2855
2856
|
}
|
|
@@ -2859,13 +2860,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2859
2860
|
requestType: "RespondActivityTaskFailedRequest",
|
|
2860
2861
|
responseType: "RespondActivityTaskFailedResponse",
|
|
2861
2862
|
options: {
|
|
2862
|
-
"(google.api.http).post": "/
|
|
2863
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/fail",
|
|
2863
2864
|
"(google.api.http).body": "*"
|
|
2864
2865
|
},
|
|
2865
2866
|
parsedOptions: [
|
|
2866
2867
|
{
|
|
2867
2868
|
"(google.api.http)": {
|
|
2868
|
-
post: "/
|
|
2869
|
+
post: "/namespaces/{namespace}/activities/fail",
|
|
2869
2870
|
body: "*"
|
|
2870
2871
|
}
|
|
2871
2872
|
}
|
|
@@ -2875,13 +2876,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2875
2876
|
requestType: "RespondActivityTaskFailedByIdRequest",
|
|
2876
2877
|
responseType: "RespondActivityTaskFailedByIdResponse",
|
|
2877
2878
|
options: {
|
|
2878
|
-
"(google.api.http).post": "/
|
|
2879
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/fail-by-id",
|
|
2879
2880
|
"(google.api.http).body": "*"
|
|
2880
2881
|
},
|
|
2881
2882
|
parsedOptions: [
|
|
2882
2883
|
{
|
|
2883
2884
|
"(google.api.http)": {
|
|
2884
|
-
post: "/
|
|
2885
|
+
post: "/namespaces/{namespace}/activities/fail-by-id",
|
|
2885
2886
|
body: "*"
|
|
2886
2887
|
}
|
|
2887
2888
|
}
|
|
@@ -2891,13 +2892,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2891
2892
|
requestType: "RespondActivityTaskCanceledRequest",
|
|
2892
2893
|
responseType: "RespondActivityTaskCanceledResponse",
|
|
2893
2894
|
options: {
|
|
2894
|
-
"(google.api.http).post": "/
|
|
2895
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/cancel",
|
|
2895
2896
|
"(google.api.http).body": "*"
|
|
2896
2897
|
},
|
|
2897
2898
|
parsedOptions: [
|
|
2898
2899
|
{
|
|
2899
2900
|
"(google.api.http)": {
|
|
2900
|
-
post: "/
|
|
2901
|
+
post: "/namespaces/{namespace}/activities/cancel",
|
|
2901
2902
|
body: "*"
|
|
2902
2903
|
}
|
|
2903
2904
|
}
|
|
@@ -2907,13 +2908,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2907
2908
|
requestType: "RespondActivityTaskCanceledByIdRequest",
|
|
2908
2909
|
responseType: "RespondActivityTaskCanceledByIdResponse",
|
|
2909
2910
|
options: {
|
|
2910
|
-
"(google.api.http).post": "/
|
|
2911
|
+
"(google.api.http).post": "/namespaces/{namespace}/activities/cancel-by-id",
|
|
2911
2912
|
"(google.api.http).body": "*"
|
|
2912
2913
|
},
|
|
2913
2914
|
parsedOptions: [
|
|
2914
2915
|
{
|
|
2915
2916
|
"(google.api.http)": {
|
|
2916
|
-
post: "/
|
|
2917
|
+
post: "/namespaces/{namespace}/activities/cancel-by-id",
|
|
2917
2918
|
body: "*"
|
|
2918
2919
|
}
|
|
2919
2920
|
}
|
|
@@ -2923,13 +2924,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2923
2924
|
requestType: "RequestCancelWorkflowExecutionRequest",
|
|
2924
2925
|
responseType: "RequestCancelWorkflowExecutionResponse",
|
|
2925
2926
|
options: {
|
|
2926
|
-
"(google.api.http).post": "/
|
|
2927
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel",
|
|
2927
2928
|
"(google.api.http).body": "*"
|
|
2928
2929
|
},
|
|
2929
2930
|
parsedOptions: [
|
|
2930
2931
|
{
|
|
2931
2932
|
"(google.api.http)": {
|
|
2932
|
-
post: "/
|
|
2933
|
+
post: "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel",
|
|
2933
2934
|
body: "*"
|
|
2934
2935
|
}
|
|
2935
2936
|
}
|
|
@@ -2939,13 +2940,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2939
2940
|
requestType: "SignalWorkflowExecutionRequest",
|
|
2940
2941
|
responseType: "SignalWorkflowExecutionResponse",
|
|
2941
2942
|
options: {
|
|
2942
|
-
"(google.api.http).post": "/
|
|
2943
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signal_name}",
|
|
2943
2944
|
"(google.api.http).body": "*"
|
|
2944
2945
|
},
|
|
2945
2946
|
parsedOptions: [
|
|
2946
2947
|
{
|
|
2947
2948
|
"(google.api.http)": {
|
|
2948
|
-
post: "/
|
|
2949
|
+
post: "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signal_name}",
|
|
2949
2950
|
body: "*"
|
|
2950
2951
|
}
|
|
2951
2952
|
}
|
|
@@ -2955,13 +2956,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2955
2956
|
requestType: "SignalWithStartWorkflowExecutionRequest",
|
|
2956
2957
|
responseType: "SignalWithStartWorkflowExecutionResponse",
|
|
2957
2958
|
options: {
|
|
2958
|
-
"(google.api.http).post": "/
|
|
2959
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_id}/signal-with-start/{signal_name}",
|
|
2959
2960
|
"(google.api.http).body": "*"
|
|
2960
2961
|
},
|
|
2961
2962
|
parsedOptions: [
|
|
2962
2963
|
{
|
|
2963
2964
|
"(google.api.http)": {
|
|
2964
|
-
post: "/
|
|
2965
|
+
post: "/namespaces/{namespace}/workflows/{workflow_id}/signal-with-start/{signal_name}",
|
|
2965
2966
|
body: "*"
|
|
2966
2967
|
}
|
|
2967
2968
|
}
|
|
@@ -2971,13 +2972,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2971
2972
|
requestType: "ResetWorkflowExecutionRequest",
|
|
2972
2973
|
responseType: "ResetWorkflowExecutionResponse",
|
|
2973
2974
|
options: {
|
|
2974
|
-
"(google.api.http).post": "/
|
|
2975
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset",
|
|
2975
2976
|
"(google.api.http).body": "*"
|
|
2976
2977
|
},
|
|
2977
2978
|
parsedOptions: [
|
|
2978
2979
|
{
|
|
2979
2980
|
"(google.api.http)": {
|
|
2980
|
-
post: "/
|
|
2981
|
+
post: "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset",
|
|
2981
2982
|
body: "*"
|
|
2982
2983
|
}
|
|
2983
2984
|
}
|
|
@@ -2987,13 +2988,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2987
2988
|
requestType: "TerminateWorkflowExecutionRequest",
|
|
2988
2989
|
responseType: "TerminateWorkflowExecutionResponse",
|
|
2989
2990
|
options: {
|
|
2990
|
-
"(google.api.http).post": "/
|
|
2991
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate",
|
|
2991
2992
|
"(google.api.http).body": "*"
|
|
2992
2993
|
},
|
|
2993
2994
|
parsedOptions: [
|
|
2994
2995
|
{
|
|
2995
2996
|
"(google.api.http)": {
|
|
2996
|
-
post: "/
|
|
2997
|
+
post: "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate",
|
|
2997
2998
|
body: "*"
|
|
2998
2999
|
}
|
|
2999
3000
|
}
|
|
@@ -3015,12 +3016,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3015
3016
|
requestType: "ListWorkflowExecutionsRequest",
|
|
3016
3017
|
responseType: "ListWorkflowExecutionsResponse",
|
|
3017
3018
|
options: {
|
|
3018
|
-
"(google.api.http).get": "/
|
|
3019
|
+
"(google.api.http).get": "/namespaces/{namespace}/workflows"
|
|
3019
3020
|
},
|
|
3020
3021
|
parsedOptions: [
|
|
3021
3022
|
{
|
|
3022
3023
|
"(google.api.http)": {
|
|
3023
|
-
get: "/
|
|
3024
|
+
get: "/namespaces/{namespace}/workflows"
|
|
3024
3025
|
}
|
|
3025
3026
|
}
|
|
3026
3027
|
]
|
|
@@ -3029,12 +3030,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3029
3030
|
requestType: "ListArchivedWorkflowExecutionsRequest",
|
|
3030
3031
|
responseType: "ListArchivedWorkflowExecutionsResponse",
|
|
3031
3032
|
options: {
|
|
3032
|
-
"(google.api.http).get": "/
|
|
3033
|
+
"(google.api.http).get": "/namespaces/{namespace}/archived-workflows"
|
|
3033
3034
|
},
|
|
3034
3035
|
parsedOptions: [
|
|
3035
3036
|
{
|
|
3036
3037
|
"(google.api.http)": {
|
|
3037
|
-
get: "/
|
|
3038
|
+
get: "/namespaces/{namespace}/archived-workflows"
|
|
3038
3039
|
}
|
|
3039
3040
|
}
|
|
3040
3041
|
]
|
|
@@ -3047,12 +3048,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3047
3048
|
requestType: "CountWorkflowExecutionsRequest",
|
|
3048
3049
|
responseType: "CountWorkflowExecutionsResponse",
|
|
3049
3050
|
options: {
|
|
3050
|
-
"(google.api.http).get": "/
|
|
3051
|
+
"(google.api.http).get": "/namespaces/{namespace}/workflow-count"
|
|
3051
3052
|
},
|
|
3052
3053
|
parsedOptions: [
|
|
3053
3054
|
{
|
|
3054
3055
|
"(google.api.http)": {
|
|
3055
|
-
get: "/
|
|
3056
|
+
get: "/namespaces/{namespace}/workflow-count"
|
|
3056
3057
|
}
|
|
3057
3058
|
}
|
|
3058
3059
|
]
|
|
@@ -3073,13 +3074,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3073
3074
|
requestType: "QueryWorkflowRequest",
|
|
3074
3075
|
responseType: "QueryWorkflowResponse",
|
|
3075
3076
|
options: {
|
|
3076
|
-
"(google.api.http).post": "/
|
|
3077
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type}",
|
|
3077
3078
|
"(google.api.http).body": "*"
|
|
3078
3079
|
},
|
|
3079
3080
|
parsedOptions: [
|
|
3080
3081
|
{
|
|
3081
3082
|
"(google.api.http)": {
|
|
3082
|
-
post: "/
|
|
3083
|
+
post: "/namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type}",
|
|
3083
3084
|
body: "*"
|
|
3084
3085
|
}
|
|
3085
3086
|
}
|
|
@@ -3089,12 +3090,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3089
3090
|
requestType: "DescribeWorkflowExecutionRequest",
|
|
3090
3091
|
responseType: "DescribeWorkflowExecutionResponse",
|
|
3091
3092
|
options: {
|
|
3092
|
-
"(google.api.http).get": "/
|
|
3093
|
+
"(google.api.http).get": "/namespaces/{namespace}/workflows/{execution.workflow_id}"
|
|
3093
3094
|
},
|
|
3094
3095
|
parsedOptions: [
|
|
3095
3096
|
{
|
|
3096
3097
|
"(google.api.http)": {
|
|
3097
|
-
get: "/
|
|
3098
|
+
get: "/namespaces/{namespace}/workflows/{execution.workflow_id}"
|
|
3098
3099
|
}
|
|
3099
3100
|
}
|
|
3100
3101
|
]
|
|
@@ -3103,12 +3104,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3103
3104
|
requestType: "DescribeTaskQueueRequest",
|
|
3104
3105
|
responseType: "DescribeTaskQueueResponse",
|
|
3105
3106
|
options: {
|
|
3106
|
-
"(google.api.http).get": "/
|
|
3107
|
+
"(google.api.http).get": "/namespaces/{namespace}/task-queues/{task_queue.name}"
|
|
3107
3108
|
},
|
|
3108
3109
|
parsedOptions: [
|
|
3109
3110
|
{
|
|
3110
3111
|
"(google.api.http)": {
|
|
3111
|
-
get: "/
|
|
3112
|
+
get: "/namespaces/{namespace}/task-queues/{task_queue.name}"
|
|
3112
3113
|
}
|
|
3113
3114
|
}
|
|
3114
3115
|
]
|
|
@@ -3117,12 +3118,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3117
3118
|
requestType: "GetClusterInfoRequest",
|
|
3118
3119
|
responseType: "GetClusterInfoResponse",
|
|
3119
3120
|
options: {
|
|
3120
|
-
"(google.api.http).get": "/
|
|
3121
|
+
"(google.api.http).get": "/cluster-info"
|
|
3121
3122
|
},
|
|
3122
3123
|
parsedOptions: [
|
|
3123
3124
|
{
|
|
3124
3125
|
"(google.api.http)": {
|
|
3125
|
-
get: "/
|
|
3126
|
+
get: "/cluster-info"
|
|
3126
3127
|
}
|
|
3127
3128
|
}
|
|
3128
3129
|
]
|
|
@@ -3131,12 +3132,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3131
3132
|
requestType: "GetSystemInfoRequest",
|
|
3132
3133
|
responseType: "GetSystemInfoResponse",
|
|
3133
3134
|
options: {
|
|
3134
|
-
"(google.api.http).get": "/
|
|
3135
|
+
"(google.api.http).get": "/system-info"
|
|
3135
3136
|
},
|
|
3136
3137
|
parsedOptions: [
|
|
3137
3138
|
{
|
|
3138
3139
|
"(google.api.http)": {
|
|
3139
|
-
get: "/
|
|
3140
|
+
get: "/system-info"
|
|
3140
3141
|
}
|
|
3141
3142
|
}
|
|
3142
3143
|
]
|
|
@@ -3149,13 +3150,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3149
3150
|
requestType: "CreateScheduleRequest",
|
|
3150
3151
|
responseType: "CreateScheduleResponse",
|
|
3151
3152
|
options: {
|
|
3152
|
-
"(google.api.http).post": "/
|
|
3153
|
+
"(google.api.http).post": "/namespaces/{namespace}/schedules/{schedule_id}",
|
|
3153
3154
|
"(google.api.http).body": "*"
|
|
3154
3155
|
},
|
|
3155
3156
|
parsedOptions: [
|
|
3156
3157
|
{
|
|
3157
3158
|
"(google.api.http)": {
|
|
3158
|
-
post: "/
|
|
3159
|
+
post: "/namespaces/{namespace}/schedules/{schedule_id}",
|
|
3159
3160
|
body: "*"
|
|
3160
3161
|
}
|
|
3161
3162
|
}
|
|
@@ -3165,12 +3166,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3165
3166
|
requestType: "DescribeScheduleRequest",
|
|
3166
3167
|
responseType: "DescribeScheduleResponse",
|
|
3167
3168
|
options: {
|
|
3168
|
-
"(google.api.http).get": "/
|
|
3169
|
+
"(google.api.http).get": "/namespaces/{namespace}/schedules/{schedule_id}"
|
|
3169
3170
|
},
|
|
3170
3171
|
parsedOptions: [
|
|
3171
3172
|
{
|
|
3172
3173
|
"(google.api.http)": {
|
|
3173
|
-
get: "/
|
|
3174
|
+
get: "/namespaces/{namespace}/schedules/{schedule_id}"
|
|
3174
3175
|
}
|
|
3175
3176
|
}
|
|
3176
3177
|
]
|
|
@@ -3179,13 +3180,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3179
3180
|
requestType: "UpdateScheduleRequest",
|
|
3180
3181
|
responseType: "UpdateScheduleResponse",
|
|
3181
3182
|
options: {
|
|
3182
|
-
"(google.api.http).post": "/
|
|
3183
|
+
"(google.api.http).post": "/namespaces/{namespace}/schedules/{schedule_id}/update",
|
|
3183
3184
|
"(google.api.http).body": "*"
|
|
3184
3185
|
},
|
|
3185
3186
|
parsedOptions: [
|
|
3186
3187
|
{
|
|
3187
3188
|
"(google.api.http)": {
|
|
3188
|
-
post: "/
|
|
3189
|
+
post: "/namespaces/{namespace}/schedules/{schedule_id}/update",
|
|
3189
3190
|
body: "*"
|
|
3190
3191
|
}
|
|
3191
3192
|
}
|
|
@@ -3195,13 +3196,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3195
3196
|
requestType: "PatchScheduleRequest",
|
|
3196
3197
|
responseType: "PatchScheduleResponse",
|
|
3197
3198
|
options: {
|
|
3198
|
-
"(google.api.http).post": "/
|
|
3199
|
+
"(google.api.http).post": "/namespaces/{namespace}/schedules/{schedule_id}/patch",
|
|
3199
3200
|
"(google.api.http).body": "*"
|
|
3200
3201
|
},
|
|
3201
3202
|
parsedOptions: [
|
|
3202
3203
|
{
|
|
3203
3204
|
"(google.api.http)": {
|
|
3204
|
-
post: "/
|
|
3205
|
+
post: "/namespaces/{namespace}/schedules/{schedule_id}/patch",
|
|
3205
3206
|
body: "*"
|
|
3206
3207
|
}
|
|
3207
3208
|
}
|
|
@@ -3211,12 +3212,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3211
3212
|
requestType: "ListScheduleMatchingTimesRequest",
|
|
3212
3213
|
responseType: "ListScheduleMatchingTimesResponse",
|
|
3213
3214
|
options: {
|
|
3214
|
-
"(google.api.http).get": "/
|
|
3215
|
+
"(google.api.http).get": "/namespaces/{namespace}/schedules/{schedule_id}/matching-times"
|
|
3215
3216
|
},
|
|
3216
3217
|
parsedOptions: [
|
|
3217
3218
|
{
|
|
3218
3219
|
"(google.api.http)": {
|
|
3219
|
-
get: "/
|
|
3220
|
+
get: "/namespaces/{namespace}/schedules/{schedule_id}/matching-times"
|
|
3220
3221
|
}
|
|
3221
3222
|
}
|
|
3222
3223
|
]
|
|
@@ -3225,12 +3226,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3225
3226
|
requestType: "DeleteScheduleRequest",
|
|
3226
3227
|
responseType: "DeleteScheduleResponse",
|
|
3227
3228
|
options: {
|
|
3228
|
-
"(google.api.http).delete": "/
|
|
3229
|
+
"(google.api.http).delete": "/namespaces/{namespace}/schedules/{schedule_id}"
|
|
3229
3230
|
},
|
|
3230
3231
|
parsedOptions: [
|
|
3231
3232
|
{
|
|
3232
3233
|
"(google.api.http)": {
|
|
3233
|
-
"delete": "/
|
|
3234
|
+
"delete": "/namespaces/{namespace}/schedules/{schedule_id}"
|
|
3234
3235
|
}
|
|
3235
3236
|
}
|
|
3236
3237
|
]
|
|
@@ -3239,12 +3240,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3239
3240
|
requestType: "ListSchedulesRequest",
|
|
3240
3241
|
responseType: "ListSchedulesResponse",
|
|
3241
3242
|
options: {
|
|
3242
|
-
"(google.api.http).get": "/
|
|
3243
|
+
"(google.api.http).get": "/namespaces/{namespace}/schedules"
|
|
3243
3244
|
},
|
|
3244
3245
|
parsedOptions: [
|
|
3245
3246
|
{
|
|
3246
3247
|
"(google.api.http)": {
|
|
3247
|
-
get: "/
|
|
3248
|
+
get: "/namespaces/{namespace}/schedules"
|
|
3248
3249
|
}
|
|
3249
3250
|
}
|
|
3250
3251
|
]
|
|
@@ -3257,12 +3258,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3257
3258
|
requestType: "GetWorkerBuildIdCompatibilityRequest",
|
|
3258
3259
|
responseType: "GetWorkerBuildIdCompatibilityResponse",
|
|
3259
3260
|
options: {
|
|
3260
|
-
"(google.api.http).get": "/
|
|
3261
|
+
"(google.api.http).get": "/namespaces/{namespace}/task-queues/{task_queue}/worker-build-id-compatibility"
|
|
3261
3262
|
},
|
|
3262
3263
|
parsedOptions: [
|
|
3263
3264
|
{
|
|
3264
3265
|
"(google.api.http)": {
|
|
3265
|
-
get: "/
|
|
3266
|
+
get: "/namespaces/{namespace}/task-queues/{task_queue}/worker-build-id-compatibility"
|
|
3266
3267
|
}
|
|
3267
3268
|
}
|
|
3268
3269
|
]
|
|
@@ -3275,12 +3276,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3275
3276
|
requestType: "GetWorkerVersioningRulesRequest",
|
|
3276
3277
|
responseType: "GetWorkerVersioningRulesResponse",
|
|
3277
3278
|
options: {
|
|
3278
|
-
"(google.api.http).get": "/
|
|
3279
|
+
"(google.api.http).get": "/namespaces/{namespace}/task-queues/{task_queue}/worker-versioning-rules"
|
|
3279
3280
|
},
|
|
3280
3281
|
parsedOptions: [
|
|
3281
3282
|
{
|
|
3282
3283
|
"(google.api.http)": {
|
|
3283
|
-
get: "/
|
|
3284
|
+
get: "/namespaces/{namespace}/task-queues/{task_queue}/worker-versioning-rules"
|
|
3284
3285
|
}
|
|
3285
3286
|
}
|
|
3286
3287
|
]
|
|
@@ -3289,12 +3290,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3289
3290
|
requestType: "GetWorkerTaskReachabilityRequest",
|
|
3290
3291
|
responseType: "GetWorkerTaskReachabilityResponse",
|
|
3291
3292
|
options: {
|
|
3292
|
-
"(google.api.http).get": "/
|
|
3293
|
+
"(google.api.http).get": "/namespaces/{namespace}/worker-task-reachability"
|
|
3293
3294
|
},
|
|
3294
3295
|
parsedOptions: [
|
|
3295
3296
|
{
|
|
3296
3297
|
"(google.api.http)": {
|
|
3297
|
-
get: "/
|
|
3298
|
+
get: "/namespaces/{namespace}/worker-task-reachability"
|
|
3298
3299
|
}
|
|
3299
3300
|
}
|
|
3300
3301
|
]
|
|
@@ -3303,13 +3304,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3303
3304
|
requestType: "UpdateWorkflowExecutionRequest",
|
|
3304
3305
|
responseType: "UpdateWorkflowExecutionResponse",
|
|
3305
3306
|
options: {
|
|
3306
|
-
"(google.api.http).post": "/
|
|
3307
|
+
"(google.api.http).post": "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name}",
|
|
3307
3308
|
"(google.api.http).body": "*"
|
|
3308
3309
|
},
|
|
3309
3310
|
parsedOptions: [
|
|
3310
3311
|
{
|
|
3311
3312
|
"(google.api.http)": {
|
|
3312
|
-
post: "/
|
|
3313
|
+
post: "/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name}",
|
|
3313
3314
|
body: "*"
|
|
3314
3315
|
}
|
|
3315
3316
|
}
|
|
@@ -3323,13 +3324,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3323
3324
|
requestType: "StartBatchOperationRequest",
|
|
3324
3325
|
responseType: "StartBatchOperationResponse",
|
|
3325
3326
|
options: {
|
|
3326
|
-
"(google.api.http).post": "/
|
|
3327
|
+
"(google.api.http).post": "/namespaces/{namespace}/batch-operations/{job_id}",
|
|
3327
3328
|
"(google.api.http).body": "*"
|
|
3328
3329
|
},
|
|
3329
3330
|
parsedOptions: [
|
|
3330
3331
|
{
|
|
3331
3332
|
"(google.api.http)": {
|
|
3332
|
-
post: "/
|
|
3333
|
+
post: "/namespaces/{namespace}/batch-operations/{job_id}",
|
|
3333
3334
|
body: "*"
|
|
3334
3335
|
}
|
|
3335
3336
|
}
|
|
@@ -3339,13 +3340,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3339
3340
|
requestType: "StopBatchOperationRequest",
|
|
3340
3341
|
responseType: "StopBatchOperationResponse",
|
|
3341
3342
|
options: {
|
|
3342
|
-
"(google.api.http).post": "/
|
|
3343
|
+
"(google.api.http).post": "/namespaces/{namespace}/batch-operations/{job_id}/stop",
|
|
3343
3344
|
"(google.api.http).body": "*"
|
|
3344
3345
|
},
|
|
3345
3346
|
parsedOptions: [
|
|
3346
3347
|
{
|
|
3347
3348
|
"(google.api.http)": {
|
|
3348
|
-
post: "/
|
|
3349
|
+
post: "/namespaces/{namespace}/batch-operations/{job_id}/stop",
|
|
3349
3350
|
body: "*"
|
|
3350
3351
|
}
|
|
3351
3352
|
}
|
|
@@ -3355,12 +3356,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3355
3356
|
requestType: "DescribeBatchOperationRequest",
|
|
3356
3357
|
responseType: "DescribeBatchOperationResponse",
|
|
3357
3358
|
options: {
|
|
3358
|
-
"(google.api.http).get": "/
|
|
3359
|
+
"(google.api.http).get": "/namespaces/{namespace}/batch-operations/{job_id}"
|
|
3359
3360
|
},
|
|
3360
3361
|
parsedOptions: [
|
|
3361
3362
|
{
|
|
3362
3363
|
"(google.api.http)": {
|
|
3363
|
-
get: "/
|
|
3364
|
+
get: "/namespaces/{namespace}/batch-operations/{job_id}"
|
|
3364
3365
|
}
|
|
3365
3366
|
}
|
|
3366
3367
|
]
|
|
@@ -3369,12 +3370,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3369
3370
|
requestType: "ListBatchOperationsRequest",
|
|
3370
3371
|
responseType: "ListBatchOperationsResponse",
|
|
3371
3372
|
options: {
|
|
3372
|
-
"(google.api.http).get": "/
|
|
3373
|
+
"(google.api.http).get": "/namespaces/{namespace}/batch-operations"
|
|
3373
3374
|
},
|
|
3374
3375
|
parsedOptions: [
|
|
3375
3376
|
{
|
|
3376
3377
|
"(google.api.http)": {
|
|
3377
|
-
get: "/
|
|
3378
|
+
get: "/namespaces/{namespace}/batch-operations"
|
|
3378
3379
|
}
|
|
3379
3380
|
}
|
|
3380
3381
|
]
|
|
@@ -3685,6 +3686,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3685
3686
|
rule: "repeated",
|
|
3686
3687
|
type: "temporal.api.common.v1.Callback",
|
|
3687
3688
|
id: 21
|
|
3689
|
+
},
|
|
3690
|
+
userMetadata: {
|
|
3691
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
3692
|
+
id: 23
|
|
3688
3693
|
}
|
|
3689
3694
|
}
|
|
3690
3695
|
},
|
|
@@ -4512,6 +4517,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4512
4517
|
skipGenerateWorkflowTask: {
|
|
4513
4518
|
type: "bool",
|
|
4514
4519
|
id: 21
|
|
4520
|
+
},
|
|
4521
|
+
userMetadata: {
|
|
4522
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
4523
|
+
id: 23
|
|
4515
4524
|
}
|
|
4516
4525
|
}
|
|
4517
4526
|
},
|
|
@@ -5027,6 +5036,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
5027
5036
|
type: "temporal.api.enums.v1.TaskQueueType",
|
|
5028
5037
|
id: 7
|
|
5029
5038
|
},
|
|
5039
|
+
reportStats: {
|
|
5040
|
+
type: "bool",
|
|
5041
|
+
id: 8
|
|
5042
|
+
},
|
|
5030
5043
|
reportPollers: {
|
|
5031
5044
|
type: "bool",
|
|
5032
5045
|
id: 9
|
|
@@ -7681,6 +7694,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7681
7694
|
type: "bool",
|
|
7682
7695
|
id: 300
|
|
7683
7696
|
},
|
|
7697
|
+
userMetadata: {
|
|
7698
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
7699
|
+
id: 301
|
|
7700
|
+
},
|
|
7684
7701
|
workflowExecutionStartedEventAttributes: {
|
|
7685
7702
|
type: "WorkflowExecutionStartedEventAttributes",
|
|
7686
7703
|
id: 6
|
|
@@ -7984,6 +8001,30 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7984
8001
|
rule: "repeated",
|
|
7985
8002
|
type: "PollerInfo",
|
|
7986
8003
|
id: 1
|
|
8004
|
+
},
|
|
8005
|
+
stats: {
|
|
8006
|
+
type: "TaskQueueStats",
|
|
8007
|
+
id: 2
|
|
8008
|
+
}
|
|
8009
|
+
}
|
|
8010
|
+
},
|
|
8011
|
+
TaskQueueStats: {
|
|
8012
|
+
fields: {
|
|
8013
|
+
approximateBacklogCount: {
|
|
8014
|
+
type: "int64",
|
|
8015
|
+
id: 1
|
|
8016
|
+
},
|
|
8017
|
+
approximateBacklogAge: {
|
|
8018
|
+
type: "google.protobuf.Duration",
|
|
8019
|
+
id: 2
|
|
8020
|
+
},
|
|
8021
|
+
tasksAddRate: {
|
|
8022
|
+
type: "float",
|
|
8023
|
+
id: 3
|
|
8024
|
+
},
|
|
8025
|
+
tasksDispatchRate: {
|
|
8026
|
+
type: "float",
|
|
8027
|
+
id: 4
|
|
7987
8028
|
}
|
|
7988
8029
|
}
|
|
7989
8030
|
},
|
|
@@ -8282,6 +8323,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8282
8323
|
defaultWorkflowTaskTimeout: {
|
|
8283
8324
|
type: "google.protobuf.Duration",
|
|
8284
8325
|
id: 4
|
|
8326
|
+
},
|
|
8327
|
+
userMetadata: {
|
|
8328
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
8329
|
+
id: 5
|
|
8285
8330
|
}
|
|
8286
8331
|
}
|
|
8287
8332
|
},
|
|
@@ -8499,6 +8544,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8499
8544
|
header: {
|
|
8500
8545
|
type: "temporal.api.common.v1.Header",
|
|
8501
8546
|
id: 13
|
|
8547
|
+
},
|
|
8548
|
+
userMetadata: {
|
|
8549
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
8550
|
+
id: 14
|
|
8502
8551
|
}
|
|
8503
8552
|
}
|
|
8504
8553
|
},
|
|
@@ -8654,6 +8703,18 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8654
8703
|
csharp_namespace: "Temporalio.Api.Sdk.V1"
|
|
8655
8704
|
},
|
|
8656
8705
|
nested: {
|
|
8706
|
+
UserMetadata: {
|
|
8707
|
+
fields: {
|
|
8708
|
+
summary: {
|
|
8709
|
+
type: "temporal.api.common.v1.Payload",
|
|
8710
|
+
id: 1
|
|
8711
|
+
},
|
|
8712
|
+
details: {
|
|
8713
|
+
type: "temporal.api.common.v1.Payload",
|
|
8714
|
+
id: 2
|
|
8715
|
+
}
|
|
8716
|
+
}
|
|
8717
|
+
},
|
|
8657
8718
|
WorkflowTaskCompletedMetadata: {
|
|
8658
8719
|
fields: {
|
|
8659
8720
|
coreUsedFlags: {
|
|
@@ -8681,6 +8742,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8681
8742
|
definition: {
|
|
8682
8743
|
type: "WorkflowDefinition",
|
|
8683
8744
|
id: 1
|
|
8745
|
+
},
|
|
8746
|
+
currentDetails: {
|
|
8747
|
+
type: "string",
|
|
8748
|
+
id: 2
|
|
8684
8749
|
}
|
|
8685
8750
|
}
|
|
8686
8751
|
},
|
|
@@ -8690,24 +8755,20 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8690
8755
|
type: "string",
|
|
8691
8756
|
id: 1
|
|
8692
8757
|
},
|
|
8693
|
-
description: {
|
|
8694
|
-
type: "string",
|
|
8695
|
-
id: 2
|
|
8696
|
-
},
|
|
8697
8758
|
queryDefinitions: {
|
|
8698
8759
|
rule: "repeated",
|
|
8699
8760
|
type: "WorkflowInteractionDefinition",
|
|
8700
|
-
id:
|
|
8761
|
+
id: 2
|
|
8701
8762
|
},
|
|
8702
8763
|
signalDefinitions: {
|
|
8703
8764
|
rule: "repeated",
|
|
8704
8765
|
type: "WorkflowInteractionDefinition",
|
|
8705
|
-
id:
|
|
8766
|
+
id: 3
|
|
8706
8767
|
},
|
|
8707
8768
|
updateDefinitions: {
|
|
8708
8769
|
rule: "repeated",
|
|
8709
8770
|
type: "WorkflowInteractionDefinition",
|
|
8710
|
-
id:
|
|
8771
|
+
id: 4
|
|
8711
8772
|
}
|
|
8712
8773
|
}
|
|
8713
8774
|
},
|
|
@@ -9156,6 +9217,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
9156
9217
|
type: "temporal.api.enums.v1.CommandType",
|
|
9157
9218
|
id: 1
|
|
9158
9219
|
},
|
|
9220
|
+
userMetadata: {
|
|
9221
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
9222
|
+
id: 301
|
|
9223
|
+
},
|
|
9159
9224
|
scheduleActivityTaskCommandAttributes: {
|
|
9160
9225
|
type: "ScheduleActivityTaskCommandAttributes",
|
|
9161
9226
|
id: 2
|
|
@@ -10421,8 +10486,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10421
10486
|
type: "string",
|
|
10422
10487
|
id: 1
|
|
10423
10488
|
},
|
|
10424
|
-
|
|
10425
|
-
type: "temporal.api.
|
|
10489
|
+
metadata: {
|
|
10490
|
+
type: "temporal.api.sdk.v1.UserMetadata",
|
|
10426
10491
|
id: 2
|
|
10427
10492
|
},
|
|
10428
10493
|
target: {
|
|
@@ -10503,12 +10568,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10503
10568
|
requestType: "ListSearchAttributesRequest",
|
|
10504
10569
|
responseType: "ListSearchAttributesResponse",
|
|
10505
10570
|
options: {
|
|
10506
|
-
"(google.api.http).get": "/
|
|
10571
|
+
"(google.api.http).get": "/namespaces/{namespace}/search-attributes"
|
|
10507
10572
|
},
|
|
10508
10573
|
parsedOptions: [
|
|
10509
10574
|
{
|
|
10510
10575
|
"(google.api.http)": {
|
|
10511
|
-
get: "/
|
|
10576
|
+
get: "/namespaces/{namespace}/search-attributes"
|
|
10512
10577
|
}
|
|
10513
10578
|
}
|
|
10514
10579
|
]
|
|
@@ -10533,12 +10598,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10533
10598
|
requestType: "GetNexusEndpointRequest",
|
|
10534
10599
|
responseType: "GetNexusEndpointResponse",
|
|
10535
10600
|
options: {
|
|
10536
|
-
"(google.api.http).get": "/
|
|
10601
|
+
"(google.api.http).get": "/nexus/endpoints/{id}"
|
|
10537
10602
|
},
|
|
10538
10603
|
parsedOptions: [
|
|
10539
10604
|
{
|
|
10540
10605
|
"(google.api.http)": {
|
|
10541
|
-
get: "/
|
|
10606
|
+
get: "/nexus/endpoints/{id}"
|
|
10542
10607
|
}
|
|
10543
10608
|
}
|
|
10544
10609
|
]
|
|
@@ -10547,13 +10612,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10547
10612
|
requestType: "CreateNexusEndpointRequest",
|
|
10548
10613
|
responseType: "CreateNexusEndpointResponse",
|
|
10549
10614
|
options: {
|
|
10550
|
-
"(google.api.http).post": "/
|
|
10615
|
+
"(google.api.http).post": "/nexus/endpoints",
|
|
10551
10616
|
"(google.api.http).body": "*"
|
|
10552
10617
|
},
|
|
10553
10618
|
parsedOptions: [
|
|
10554
10619
|
{
|
|
10555
10620
|
"(google.api.http)": {
|
|
10556
|
-
post: "/
|
|
10621
|
+
post: "/nexus/endpoints",
|
|
10557
10622
|
body: "*"
|
|
10558
10623
|
}
|
|
10559
10624
|
}
|
|
@@ -10563,13 +10628,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10563
10628
|
requestType: "UpdateNexusEndpointRequest",
|
|
10564
10629
|
responseType: "UpdateNexusEndpointResponse",
|
|
10565
10630
|
options: {
|
|
10566
|
-
"(google.api.http).post": "/
|
|
10631
|
+
"(google.api.http).post": "/nexus/endpoints/{id}/update",
|
|
10567
10632
|
"(google.api.http).body": "*"
|
|
10568
10633
|
},
|
|
10569
10634
|
parsedOptions: [
|
|
10570
10635
|
{
|
|
10571
10636
|
"(google.api.http)": {
|
|
10572
|
-
post: "/
|
|
10637
|
+
post: "/nexus/endpoints/{id}/update",
|
|
10573
10638
|
body: "*"
|
|
10574
10639
|
}
|
|
10575
10640
|
}
|
|
@@ -10579,12 +10644,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10579
10644
|
requestType: "DeleteNexusEndpointRequest",
|
|
10580
10645
|
responseType: "DeleteNexusEndpointResponse",
|
|
10581
10646
|
options: {
|
|
10582
|
-
"(google.api.http).delete": "/
|
|
10647
|
+
"(google.api.http).delete": "/nexus/endpoints/{id}"
|
|
10583
10648
|
},
|
|
10584
10649
|
parsedOptions: [
|
|
10585
10650
|
{
|
|
10586
10651
|
"(google.api.http)": {
|
|
10587
|
-
"delete": "/
|
|
10652
|
+
"delete": "/nexus/endpoints/{id}"
|
|
10588
10653
|
}
|
|
10589
10654
|
}
|
|
10590
10655
|
]
|
|
@@ -10593,12 +10658,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
10593
10658
|
requestType: "ListNexusEndpointsRequest",
|
|
10594
10659
|
responseType: "ListNexusEndpointsResponse",
|
|
10595
10660
|
options: {
|
|
10596
|
-
"(google.api.http).get": "/
|
|
10661
|
+
"(google.api.http).get": "/nexus/endpoints"
|
|
10597
10662
|
},
|
|
10598
10663
|
parsedOptions: [
|
|
10599
10664
|
{
|
|
10600
10665
|
"(google.api.http)": {
|
|
10601
|
-
get: "/
|
|
10666
|
+
get: "/nexus/endpoints"
|
|
10602
10667
|
}
|
|
10603
10668
|
}
|
|
10604
10669
|
]
|