@temporalio/proto 1.8.6 → 1.9.0-rc.0

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.
@@ -388,6 +388,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
388
388
  continueAsNewSuggested: {
389
389
  type: "bool",
390
390
  id: 8
391
+ },
392
+ buildIdForCurrentTask: {
393
+ type: "string",
394
+ id: 9
391
395
  }
392
396
  }
393
397
  },
@@ -407,6 +411,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
407
411
  "resolveChildWorkflowExecution",
408
412
  "resolveSignalExternalWorkflow",
409
413
  "resolveRequestCancelExternalWorkflow",
414
+ "doUpdate",
410
415
  "removeFromCache"
411
416
  ]
412
417
  }
@@ -460,6 +465,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
460
465
  type: "ResolveRequestCancelExternalWorkflow",
461
466
  id: 13
462
467
  },
468
+ doUpdate: {
469
+ type: "DoUpdate",
470
+ id: 14
471
+ },
463
472
  removeFromCache: {
464
473
  type: "RemoveFromCache",
465
474
  id: 50
@@ -750,6 +759,40 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
750
759
  }
751
760
  }
752
761
  },
762
+ DoUpdate: {
763
+ fields: {
764
+ id: {
765
+ type: "string",
766
+ id: 1
767
+ },
768
+ protocolInstanceId: {
769
+ type: "string",
770
+ id: 2
771
+ },
772
+ name: {
773
+ type: "string",
774
+ id: 3
775
+ },
776
+ input: {
777
+ rule: "repeated",
778
+ type: "temporal.api.common.v1.Payload",
779
+ id: 4
780
+ },
781
+ headers: {
782
+ keyType: "string",
783
+ type: "temporal.api.common.v1.Payload",
784
+ id: 5
785
+ },
786
+ meta: {
787
+ type: "temporal.api.update.v1.Meta",
788
+ id: 6
789
+ },
790
+ runValidator: {
791
+ type: "bool",
792
+ id: 7
793
+ }
794
+ }
795
+ },
753
796
  RemoveFromCache: {
754
797
  fields: {
755
798
  message: {
@@ -885,7 +928,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
885
928
  "scheduleLocalActivity",
886
929
  "requestCancelLocalActivity",
887
930
  "upsertWorkflowSearchAttributes",
888
- "modifyWorkflowProperties"
931
+ "modifyWorkflowProperties",
932
+ "updateResponse"
889
933
  ]
890
934
  }
891
935
  },
@@ -965,6 +1009,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
965
1009
  modifyWorkflowProperties: {
966
1010
  type: "ModifyWorkflowProperties",
967
1011
  id: 19
1012
+ },
1013
+ updateResponse: {
1014
+ type: "UpdateResponse",
1015
+ id: 20
968
1016
  }
969
1017
  }
970
1018
  },
@@ -1416,6 +1464,35 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1416
1464
  id: 1
1417
1465
  }
1418
1466
  }
1467
+ },
1468
+ UpdateResponse: {
1469
+ oneofs: {
1470
+ response: {
1471
+ oneof: [
1472
+ "accepted",
1473
+ "rejected",
1474
+ "completed"
1475
+ ]
1476
+ }
1477
+ },
1478
+ fields: {
1479
+ protocolInstanceId: {
1480
+ type: "string",
1481
+ id: 1
1482
+ },
1483
+ accepted: {
1484
+ type: "google.protobuf.Empty",
1485
+ id: 2
1486
+ },
1487
+ rejected: {
1488
+ type: "temporal.api.failure.v1.Failure",
1489
+ id: 3
1490
+ },
1491
+ completed: {
1492
+ type: "temporal.api.common.v1.Payload",
1493
+ id: 4
1494
+ }
1495
+ }
1419
1496
  }
1420
1497
  }
1421
1498
  },
@@ -1587,10 +1664,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1587
1664
  fields: {
1588
1665
  initialInterval: {
1589
1666
  type: "google.protobuf.Duration",
1590
- id: 1,
1591
- options: {
1592
- "(gogoproto.stdduration)": true
1593
- }
1667
+ id: 1
1594
1668
  },
1595
1669
  backoffCoefficient: {
1596
1670
  type: "double",
@@ -1598,10 +1672,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1598
1672
  },
1599
1673
  maximumInterval: {
1600
1674
  type: "google.protobuf.Duration",
1601
- id: 3,
1602
- options: {
1603
- "(gogoproto.stdduration)": true
1604
- }
1675
+ id: 3
1605
1676
  },
1606
1677
  maximumAttempts: {
1607
1678
  type: "int32",
@@ -1773,6 +1844,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1773
1844
  TIMEOUT_TYPE_HEARTBEAT: 4
1774
1845
  }
1775
1846
  },
1847
+ UpdateWorkflowExecutionLifecycleStage: {
1848
+ values: {
1849
+ UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_UNSPECIFIED: 0,
1850
+ UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ADMITTED: 1,
1851
+ UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ACCEPTED: 2,
1852
+ UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_COMPLETED: 3
1853
+ }
1854
+ },
1776
1855
  WorkflowTaskFailedCause: {
1777
1856
  values: {
1778
1857
  WORKFLOW_TASK_FAILED_CAUSE_UNSPECIFIED: 0,
@@ -1838,7 +1917,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1838
1917
  RESOURCE_EXHAUSTED_CAUSE_CONCURRENT_LIMIT: 2,
1839
1918
  RESOURCE_EXHAUSTED_CAUSE_SYSTEM_OVERLOADED: 3,
1840
1919
  RESOURCE_EXHAUSTED_CAUSE_PERSISTENCE_LIMIT: 4,
1841
- RESOURCE_EXHAUSTED_CAUSE_BUSY_WORKFLOW: 5
1920
+ RESOURCE_EXHAUSTED_CAUSE_BUSY_WORKFLOW: 5,
1921
+ RESOURCE_EXHAUSTED_CAUSE_APS_LIMIT: 6
1842
1922
  }
1843
1923
  },
1844
1924
  BatchOperationType: {
@@ -1984,14 +2064,6 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
1984
2064
  EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED: 46
1985
2065
  }
1986
2066
  },
1987
- UpdateWorkflowExecutionLifecycleStage: {
1988
- values: {
1989
- UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_UNSPECIFIED: 0,
1990
- UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ADMITTED: 1,
1991
- UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ACCEPTED: 2,
1992
- UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_COMPLETED: 3
1993
- }
1994
- },
1995
2067
  CommandType: {
1996
2068
  values: {
1997
2069
  COMMAND_TYPE_UNSPECIFIED: 0,
@@ -2224,6 +2296,150 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2224
2296
  }
2225
2297
  }
2226
2298
  },
2299
+ update: {
2300
+ nested: {
2301
+ v1: {
2302
+ options: {
2303
+ go_package: "go.temporal.io/api/update/v1;update",
2304
+ java_package: "io.temporal.api.update.v1",
2305
+ java_multiple_files: true,
2306
+ java_outer_classname: "MessageProto",
2307
+ ruby_package: "Temporalio::Api::Update::V1",
2308
+ csharp_namespace: "Temporalio.Api.Update.V1"
2309
+ },
2310
+ nested: {
2311
+ WaitPolicy: {
2312
+ fields: {
2313
+ lifecycleStage: {
2314
+ type: "temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage",
2315
+ id: 1
2316
+ }
2317
+ }
2318
+ },
2319
+ UpdateRef: {
2320
+ fields: {
2321
+ workflowExecution: {
2322
+ type: "temporal.api.common.v1.WorkflowExecution",
2323
+ id: 1
2324
+ },
2325
+ updateId: {
2326
+ type: "string",
2327
+ id: 2
2328
+ }
2329
+ }
2330
+ },
2331
+ Outcome: {
2332
+ oneofs: {
2333
+ value: {
2334
+ oneof: [
2335
+ "success",
2336
+ "failure"
2337
+ ]
2338
+ }
2339
+ },
2340
+ fields: {
2341
+ success: {
2342
+ type: "temporal.api.common.v1.Payloads",
2343
+ id: 1
2344
+ },
2345
+ failure: {
2346
+ type: "temporal.api.failure.v1.Failure",
2347
+ id: 2
2348
+ }
2349
+ }
2350
+ },
2351
+ Meta: {
2352
+ fields: {
2353
+ updateId: {
2354
+ type: "string",
2355
+ id: 1
2356
+ },
2357
+ identity: {
2358
+ type: "string",
2359
+ id: 2
2360
+ }
2361
+ }
2362
+ },
2363
+ Input: {
2364
+ fields: {
2365
+ header: {
2366
+ type: "temporal.api.common.v1.Header",
2367
+ id: 1
2368
+ },
2369
+ name: {
2370
+ type: "string",
2371
+ id: 2
2372
+ },
2373
+ args: {
2374
+ type: "temporal.api.common.v1.Payloads",
2375
+ id: 3
2376
+ }
2377
+ }
2378
+ },
2379
+ Request: {
2380
+ fields: {
2381
+ meta: {
2382
+ type: "Meta",
2383
+ id: 1
2384
+ },
2385
+ input: {
2386
+ type: "Input",
2387
+ id: 2
2388
+ }
2389
+ }
2390
+ },
2391
+ Rejection: {
2392
+ fields: {
2393
+ rejectedRequestMessageId: {
2394
+ type: "string",
2395
+ id: 1
2396
+ },
2397
+ rejectedRequestSequencingEventId: {
2398
+ type: "int64",
2399
+ id: 2
2400
+ },
2401
+ rejectedRequest: {
2402
+ type: "Request",
2403
+ id: 3
2404
+ },
2405
+ failure: {
2406
+ type: "temporal.api.failure.v1.Failure",
2407
+ id: 4
2408
+ }
2409
+ }
2410
+ },
2411
+ Acceptance: {
2412
+ fields: {
2413
+ acceptedRequestMessageId: {
2414
+ type: "string",
2415
+ id: 1
2416
+ },
2417
+ acceptedRequestSequencingEventId: {
2418
+ type: "int64",
2419
+ id: 2
2420
+ },
2421
+ acceptedRequest: {
2422
+ type: "Request",
2423
+ id: 3
2424
+ }
2425
+ }
2426
+ },
2427
+ Response: {
2428
+ fields: {
2429
+ meta: {
2430
+ type: "Meta",
2431
+ id: 1
2432
+ },
2433
+ outcome: {
2434
+ type: "Outcome",
2435
+ id: 2
2436
+ }
2437
+ }
2438
+ }
2439
+ }
2440
+ }
2441
+ }
2442
+ },
2227
2443
  workflowservice: {
2228
2444
  nested: {
2229
2445
  v1: {
@@ -2240,19 +2456,63 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2240
2456
  methods: {
2241
2457
  RegisterNamespace: {
2242
2458
  requestType: "RegisterNamespaceRequest",
2243
- responseType: "RegisterNamespaceResponse"
2459
+ responseType: "RegisterNamespaceResponse",
2460
+ options: {
2461
+ "(google.api.http).post": "/api/v1/namespaces",
2462
+ "(google.api.http).body": "*"
2463
+ },
2464
+ parsedOptions: [
2465
+ {
2466
+ "(google.api.http)": {
2467
+ post: "/api/v1/namespaces",
2468
+ body: "*"
2469
+ }
2470
+ }
2471
+ ]
2244
2472
  },
2245
2473
  DescribeNamespace: {
2246
2474
  requestType: "DescribeNamespaceRequest",
2247
- responseType: "DescribeNamespaceResponse"
2475
+ responseType: "DescribeNamespaceResponse",
2476
+ options: {
2477
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}"
2478
+ },
2479
+ parsedOptions: [
2480
+ {
2481
+ "(google.api.http)": {
2482
+ get: "/api/v1/namespaces/{namespace}"
2483
+ }
2484
+ }
2485
+ ]
2248
2486
  },
2249
2487
  ListNamespaces: {
2250
2488
  requestType: "ListNamespacesRequest",
2251
- responseType: "ListNamespacesResponse"
2489
+ responseType: "ListNamespacesResponse",
2490
+ options: {
2491
+ "(google.api.http).get": "/api/v1/namespaces"
2492
+ },
2493
+ parsedOptions: [
2494
+ {
2495
+ "(google.api.http)": {
2496
+ get: "/api/v1/namespaces"
2497
+ }
2498
+ }
2499
+ ]
2252
2500
  },
2253
2501
  UpdateNamespace: {
2254
2502
  requestType: "UpdateNamespaceRequest",
2255
- responseType: "UpdateNamespaceResponse"
2503
+ responseType: "UpdateNamespaceResponse",
2504
+ options: {
2505
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/update",
2506
+ "(google.api.http).body": "*"
2507
+ },
2508
+ parsedOptions: [
2509
+ {
2510
+ "(google.api.http)": {
2511
+ post: "/api/v1/namespaces/{namespace}/update",
2512
+ body: "*"
2513
+ }
2514
+ }
2515
+ ]
2256
2516
  },
2257
2517
  DeprecateNamespace: {
2258
2518
  requestType: "DeprecateNamespaceRequest",
@@ -2260,15 +2520,47 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2260
2520
  },
2261
2521
  StartWorkflowExecution: {
2262
2522
  requestType: "StartWorkflowExecutionRequest",
2263
- responseType: "StartWorkflowExecutionResponse"
2523
+ responseType: "StartWorkflowExecutionResponse",
2524
+ options: {
2525
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_id}",
2526
+ "(google.api.http).body": "*"
2527
+ },
2528
+ parsedOptions: [
2529
+ {
2530
+ "(google.api.http)": {
2531
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_id}",
2532
+ body: "*"
2533
+ }
2534
+ }
2535
+ ]
2264
2536
  },
2265
2537
  GetWorkflowExecutionHistory: {
2266
2538
  requestType: "GetWorkflowExecutionHistoryRequest",
2267
- responseType: "GetWorkflowExecutionHistoryResponse"
2539
+ responseType: "GetWorkflowExecutionHistoryResponse",
2540
+ options: {
2541
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history"
2542
+ },
2543
+ parsedOptions: [
2544
+ {
2545
+ "(google.api.http)": {
2546
+ get: "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history"
2547
+ }
2548
+ }
2549
+ ]
2268
2550
  },
2269
2551
  GetWorkflowExecutionHistoryReverse: {
2270
2552
  requestType: "GetWorkflowExecutionHistoryReverseRequest",
2271
- responseType: "GetWorkflowExecutionHistoryReverseResponse"
2553
+ responseType: "GetWorkflowExecutionHistoryReverseResponse",
2554
+ options: {
2555
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse"
2556
+ },
2557
+ parsedOptions: [
2558
+ {
2559
+ "(google.api.http)": {
2560
+ get: "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/history-reverse"
2561
+ }
2562
+ }
2563
+ ]
2272
2564
  },
2273
2565
  PollWorkflowTaskQueue: {
2274
2566
  requestType: "PollWorkflowTaskQueueRequest",
@@ -2288,55 +2580,211 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2288
2580
  },
2289
2581
  RecordActivityTaskHeartbeat: {
2290
2582
  requestType: "RecordActivityTaskHeartbeatRequest",
2291
- responseType: "RecordActivityTaskHeartbeatResponse"
2583
+ responseType: "RecordActivityTaskHeartbeatResponse",
2584
+ options: {
2585
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/heartbeat",
2586
+ "(google.api.http).body": "*"
2587
+ },
2588
+ parsedOptions: [
2589
+ {
2590
+ "(google.api.http)": {
2591
+ post: "/api/v1/namespaces/{namespace}/activities/heartbeat",
2592
+ body: "*"
2593
+ }
2594
+ }
2595
+ ]
2292
2596
  },
2293
2597
  RecordActivityTaskHeartbeatById: {
2294
2598
  requestType: "RecordActivityTaskHeartbeatByIdRequest",
2295
- responseType: "RecordActivityTaskHeartbeatByIdResponse"
2599
+ responseType: "RecordActivityTaskHeartbeatByIdResponse",
2600
+ options: {
2601
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/heartbeat-by-id",
2602
+ "(google.api.http).body": "*"
2603
+ },
2604
+ parsedOptions: [
2605
+ {
2606
+ "(google.api.http)": {
2607
+ post: "/api/v1/namespaces/{namespace}/activities/heartbeat-by-id",
2608
+ body: "*"
2609
+ }
2610
+ }
2611
+ ]
2296
2612
  },
2297
2613
  RespondActivityTaskCompleted: {
2298
2614
  requestType: "RespondActivityTaskCompletedRequest",
2299
- responseType: "RespondActivityTaskCompletedResponse"
2300
- },
2301
- RespondActivityTaskCompletedById: {
2615
+ responseType: "RespondActivityTaskCompletedResponse",
2616
+ options: {
2617
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/complete",
2618
+ "(google.api.http).body": "*"
2619
+ },
2620
+ parsedOptions: [
2621
+ {
2622
+ "(google.api.http)": {
2623
+ post: "/api/v1/namespaces/{namespace}/activities/complete",
2624
+ body: "*"
2625
+ }
2626
+ }
2627
+ ]
2628
+ },
2629
+ RespondActivityTaskCompletedById: {
2302
2630
  requestType: "RespondActivityTaskCompletedByIdRequest",
2303
- responseType: "RespondActivityTaskCompletedByIdResponse"
2631
+ responseType: "RespondActivityTaskCompletedByIdResponse",
2632
+ options: {
2633
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/complete-by-id",
2634
+ "(google.api.http).body": "*"
2635
+ },
2636
+ parsedOptions: [
2637
+ {
2638
+ "(google.api.http)": {
2639
+ post: "/api/v1/namespaces/{namespace}/activities/complete-by-id",
2640
+ body: "*"
2641
+ }
2642
+ }
2643
+ ]
2304
2644
  },
2305
2645
  RespondActivityTaskFailed: {
2306
2646
  requestType: "RespondActivityTaskFailedRequest",
2307
- responseType: "RespondActivityTaskFailedResponse"
2647
+ responseType: "RespondActivityTaskFailedResponse",
2648
+ options: {
2649
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/fail",
2650
+ "(google.api.http).body": "*"
2651
+ },
2652
+ parsedOptions: [
2653
+ {
2654
+ "(google.api.http)": {
2655
+ post: "/api/v1/namespaces/{namespace}/activities/fail",
2656
+ body: "*"
2657
+ }
2658
+ }
2659
+ ]
2308
2660
  },
2309
2661
  RespondActivityTaskFailedById: {
2310
2662
  requestType: "RespondActivityTaskFailedByIdRequest",
2311
- responseType: "RespondActivityTaskFailedByIdResponse"
2663
+ responseType: "RespondActivityTaskFailedByIdResponse",
2664
+ options: {
2665
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/fail-by-id",
2666
+ "(google.api.http).body": "*"
2667
+ },
2668
+ parsedOptions: [
2669
+ {
2670
+ "(google.api.http)": {
2671
+ post: "/api/v1/namespaces/{namespace}/activities/fail-by-id",
2672
+ body: "*"
2673
+ }
2674
+ }
2675
+ ]
2312
2676
  },
2313
2677
  RespondActivityTaskCanceled: {
2314
2678
  requestType: "RespondActivityTaskCanceledRequest",
2315
- responseType: "RespondActivityTaskCanceledResponse"
2679
+ responseType: "RespondActivityTaskCanceledResponse",
2680
+ options: {
2681
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/cancel",
2682
+ "(google.api.http).body": "*"
2683
+ },
2684
+ parsedOptions: [
2685
+ {
2686
+ "(google.api.http)": {
2687
+ post: "/api/v1/namespaces/{namespace}/activities/cancel",
2688
+ body: "*"
2689
+ }
2690
+ }
2691
+ ]
2316
2692
  },
2317
2693
  RespondActivityTaskCanceledById: {
2318
2694
  requestType: "RespondActivityTaskCanceledByIdRequest",
2319
- responseType: "RespondActivityTaskCanceledByIdResponse"
2695
+ responseType: "RespondActivityTaskCanceledByIdResponse",
2696
+ options: {
2697
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/activities/cancel-by-id",
2698
+ "(google.api.http).body": "*"
2699
+ },
2700
+ parsedOptions: [
2701
+ {
2702
+ "(google.api.http)": {
2703
+ post: "/api/v1/namespaces/{namespace}/activities/cancel-by-id",
2704
+ body: "*"
2705
+ }
2706
+ }
2707
+ ]
2320
2708
  },
2321
2709
  RequestCancelWorkflowExecution: {
2322
2710
  requestType: "RequestCancelWorkflowExecutionRequest",
2323
- responseType: "RequestCancelWorkflowExecutionResponse"
2711
+ responseType: "RequestCancelWorkflowExecutionResponse",
2712
+ options: {
2713
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel",
2714
+ "(google.api.http).body": "*"
2715
+ },
2716
+ parsedOptions: [
2717
+ {
2718
+ "(google.api.http)": {
2719
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/cancel",
2720
+ body: "*"
2721
+ }
2722
+ }
2723
+ ]
2324
2724
  },
2325
2725
  SignalWorkflowExecution: {
2326
2726
  requestType: "SignalWorkflowExecutionRequest",
2327
- responseType: "SignalWorkflowExecutionResponse"
2727
+ responseType: "SignalWorkflowExecutionResponse",
2728
+ options: {
2729
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signal_name}",
2730
+ "(google.api.http).body": "*"
2731
+ },
2732
+ parsedOptions: [
2733
+ {
2734
+ "(google.api.http)": {
2735
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/signal/{signal_name}",
2736
+ body: "*"
2737
+ }
2738
+ }
2739
+ ]
2328
2740
  },
2329
2741
  SignalWithStartWorkflowExecution: {
2330
2742
  requestType: "SignalWithStartWorkflowExecutionRequest",
2331
- responseType: "SignalWithStartWorkflowExecutionResponse"
2743
+ responseType: "SignalWithStartWorkflowExecutionResponse",
2744
+ options: {
2745
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_id}/signal-with-start/{signal_name}",
2746
+ "(google.api.http).body": "*"
2747
+ },
2748
+ parsedOptions: [
2749
+ {
2750
+ "(google.api.http)": {
2751
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_id}/signal-with-start/{signal_name}",
2752
+ body: "*"
2753
+ }
2754
+ }
2755
+ ]
2332
2756
  },
2333
2757
  ResetWorkflowExecution: {
2334
2758
  requestType: "ResetWorkflowExecutionRequest",
2335
- responseType: "ResetWorkflowExecutionResponse"
2759
+ responseType: "ResetWorkflowExecutionResponse",
2760
+ options: {
2761
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset",
2762
+ "(google.api.http).body": "*"
2763
+ },
2764
+ parsedOptions: [
2765
+ {
2766
+ "(google.api.http)": {
2767
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/reset",
2768
+ body: "*"
2769
+ }
2770
+ }
2771
+ ]
2336
2772
  },
2337
2773
  TerminateWorkflowExecution: {
2338
2774
  requestType: "TerminateWorkflowExecutionRequest",
2339
- responseType: "TerminateWorkflowExecutionResponse"
2775
+ responseType: "TerminateWorkflowExecutionResponse",
2776
+ options: {
2777
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate",
2778
+ "(google.api.http).body": "*"
2779
+ },
2780
+ parsedOptions: [
2781
+ {
2782
+ "(google.api.http)": {
2783
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/terminate",
2784
+ body: "*"
2785
+ }
2786
+ }
2787
+ ]
2340
2788
  },
2341
2789
  DeleteWorkflowExecution: {
2342
2790
  requestType: "DeleteWorkflowExecutionRequest",
@@ -2352,11 +2800,31 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2352
2800
  },
2353
2801
  ListWorkflowExecutions: {
2354
2802
  requestType: "ListWorkflowExecutionsRequest",
2355
- responseType: "ListWorkflowExecutionsResponse"
2803
+ responseType: "ListWorkflowExecutionsResponse",
2804
+ options: {
2805
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/workflows"
2806
+ },
2807
+ parsedOptions: [
2808
+ {
2809
+ "(google.api.http)": {
2810
+ get: "/api/v1/namespaces/{namespace}/workflows"
2811
+ }
2812
+ }
2813
+ ]
2356
2814
  },
2357
2815
  ListArchivedWorkflowExecutions: {
2358
2816
  requestType: "ListArchivedWorkflowExecutionsRequest",
2359
- responseType: "ListArchivedWorkflowExecutionsResponse"
2817
+ responseType: "ListArchivedWorkflowExecutionsResponse",
2818
+ options: {
2819
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/archived-workflows"
2820
+ },
2821
+ parsedOptions: [
2822
+ {
2823
+ "(google.api.http)": {
2824
+ get: "/api/v1/namespaces/{namespace}/archived-workflows"
2825
+ }
2826
+ }
2827
+ ]
2360
2828
  },
2361
2829
  ScanWorkflowExecutions: {
2362
2830
  requestType: "ScanWorkflowExecutionsRequest",
@@ -2364,7 +2832,17 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2364
2832
  },
2365
2833
  CountWorkflowExecutions: {
2366
2834
  requestType: "CountWorkflowExecutionsRequest",
2367
- responseType: "CountWorkflowExecutionsResponse"
2835
+ responseType: "CountWorkflowExecutionsResponse",
2836
+ options: {
2837
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/workflow-count"
2838
+ },
2839
+ parsedOptions: [
2840
+ {
2841
+ "(google.api.http)": {
2842
+ get: "/api/v1/namespaces/{namespace}/workflow-count"
2843
+ }
2844
+ }
2845
+ ]
2368
2846
  },
2369
2847
  GetSearchAttributes: {
2370
2848
  requestType: "GetSearchAttributesRequest",
@@ -2380,23 +2858,75 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2380
2858
  },
2381
2859
  QueryWorkflow: {
2382
2860
  requestType: "QueryWorkflowRequest",
2383
- responseType: "QueryWorkflowResponse"
2861
+ responseType: "QueryWorkflowResponse",
2862
+ options: {
2863
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type}",
2864
+ "(google.api.http).body": "*"
2865
+ },
2866
+ parsedOptions: [
2867
+ {
2868
+ "(google.api.http)": {
2869
+ post: "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}/query/{query.query_type}",
2870
+ body: "*"
2871
+ }
2872
+ }
2873
+ ]
2384
2874
  },
2385
2875
  DescribeWorkflowExecution: {
2386
2876
  requestType: "DescribeWorkflowExecutionRequest",
2387
- responseType: "DescribeWorkflowExecutionResponse"
2877
+ responseType: "DescribeWorkflowExecutionResponse",
2878
+ options: {
2879
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}"
2880
+ },
2881
+ parsedOptions: [
2882
+ {
2883
+ "(google.api.http)": {
2884
+ get: "/api/v1/namespaces/{namespace}/workflows/{execution.workflow_id}"
2885
+ }
2886
+ }
2887
+ ]
2388
2888
  },
2389
2889
  DescribeTaskQueue: {
2390
2890
  requestType: "DescribeTaskQueueRequest",
2391
- responseType: "DescribeTaskQueueResponse"
2891
+ responseType: "DescribeTaskQueueResponse",
2892
+ options: {
2893
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/task-queues/{task_queue.name}"
2894
+ },
2895
+ parsedOptions: [
2896
+ {
2897
+ "(google.api.http)": {
2898
+ get: "/api/v1/namespaces/{namespace}/task-queues/{task_queue.name}"
2899
+ }
2900
+ }
2901
+ ]
2392
2902
  },
2393
2903
  GetClusterInfo: {
2394
2904
  requestType: "GetClusterInfoRequest",
2395
- responseType: "GetClusterInfoResponse"
2905
+ responseType: "GetClusterInfoResponse",
2906
+ options: {
2907
+ "(google.api.http).get": "/api/v1/cluster-info"
2908
+ },
2909
+ parsedOptions: [
2910
+ {
2911
+ "(google.api.http)": {
2912
+ get: "/api/v1/cluster-info"
2913
+ }
2914
+ }
2915
+ ]
2396
2916
  },
2397
2917
  GetSystemInfo: {
2398
2918
  requestType: "GetSystemInfoRequest",
2399
- responseType: "GetSystemInfoResponse"
2919
+ responseType: "GetSystemInfoResponse",
2920
+ options: {
2921
+ "(google.api.http).get": "/api/v1/system-info"
2922
+ },
2923
+ parsedOptions: [
2924
+ {
2925
+ "(google.api.http)": {
2926
+ get: "/api/v1/system-info"
2927
+ }
2928
+ }
2929
+ ]
2400
2930
  },
2401
2931
  ListTaskQueuePartitions: {
2402
2932
  requestType: "ListTaskQueuePartitionsRequest",
@@ -2404,31 +2934,107 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2404
2934
  },
2405
2935
  CreateSchedule: {
2406
2936
  requestType: "CreateScheduleRequest",
2407
- responseType: "CreateScheduleResponse"
2937
+ responseType: "CreateScheduleResponse",
2938
+ options: {
2939
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}",
2940
+ "(google.api.http).body": "*"
2941
+ },
2942
+ parsedOptions: [
2943
+ {
2944
+ "(google.api.http)": {
2945
+ post: "/api/v1/namespaces/{namespace}/schedules/{schedule_id}",
2946
+ body: "*"
2947
+ }
2948
+ }
2949
+ ]
2408
2950
  },
2409
2951
  DescribeSchedule: {
2410
2952
  requestType: "DescribeScheduleRequest",
2411
- responseType: "DescribeScheduleResponse"
2953
+ responseType: "DescribeScheduleResponse",
2954
+ options: {
2955
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}"
2956
+ },
2957
+ parsedOptions: [
2958
+ {
2959
+ "(google.api.http)": {
2960
+ get: "/api/v1/namespaces/{namespace}/schedules/{schedule_id}"
2961
+ }
2962
+ }
2963
+ ]
2412
2964
  },
2413
2965
  UpdateSchedule: {
2414
2966
  requestType: "UpdateScheduleRequest",
2415
- responseType: "UpdateScheduleResponse"
2967
+ responseType: "UpdateScheduleResponse",
2968
+ options: {
2969
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/update",
2970
+ "(google.api.http).body": "*"
2971
+ },
2972
+ parsedOptions: [
2973
+ {
2974
+ "(google.api.http)": {
2975
+ post: "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/update",
2976
+ body: "*"
2977
+ }
2978
+ }
2979
+ ]
2416
2980
  },
2417
2981
  PatchSchedule: {
2418
2982
  requestType: "PatchScheduleRequest",
2419
- responseType: "PatchScheduleResponse"
2983
+ responseType: "PatchScheduleResponse",
2984
+ options: {
2985
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/patch",
2986
+ "(google.api.http).body": "*"
2987
+ },
2988
+ parsedOptions: [
2989
+ {
2990
+ "(google.api.http)": {
2991
+ post: "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/patch",
2992
+ body: "*"
2993
+ }
2994
+ }
2995
+ ]
2420
2996
  },
2421
2997
  ListScheduleMatchingTimes: {
2422
2998
  requestType: "ListScheduleMatchingTimesRequest",
2423
- responseType: "ListScheduleMatchingTimesResponse"
2999
+ responseType: "ListScheduleMatchingTimesResponse",
3000
+ options: {
3001
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/matching-times"
3002
+ },
3003
+ parsedOptions: [
3004
+ {
3005
+ "(google.api.http)": {
3006
+ get: "/api/v1/namespaces/{namespace}/schedules/{schedule_id}/matching-times"
3007
+ }
3008
+ }
3009
+ ]
2424
3010
  },
2425
3011
  DeleteSchedule: {
2426
3012
  requestType: "DeleteScheduleRequest",
2427
- responseType: "DeleteScheduleResponse"
3013
+ responseType: "DeleteScheduleResponse",
3014
+ options: {
3015
+ "(google.api.http).delete": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}"
3016
+ },
3017
+ parsedOptions: [
3018
+ {
3019
+ "(google.api.http)": {
3020
+ "delete": "/api/v1/namespaces/{namespace}/schedules/{schedule_id}"
3021
+ }
3022
+ }
3023
+ ]
2428
3024
  },
2429
3025
  ListSchedules: {
2430
3026
  requestType: "ListSchedulesRequest",
2431
- responseType: "ListSchedulesResponse"
3027
+ responseType: "ListSchedulesResponse",
3028
+ options: {
3029
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/schedules"
3030
+ },
3031
+ parsedOptions: [
3032
+ {
3033
+ "(google.api.http)": {
3034
+ get: "/api/v1/namespaces/{namespace}/schedules"
3035
+ }
3036
+ }
3037
+ ]
2432
3038
  },
2433
3039
  UpdateWorkerBuildIdCompatibility: {
2434
3040
  requestType: "UpdateWorkerBuildIdCompatibilityRequest",
@@ -2436,15 +3042,47 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2436
3042
  },
2437
3043
  GetWorkerBuildIdCompatibility: {
2438
3044
  requestType: "GetWorkerBuildIdCompatibilityRequest",
2439
- responseType: "GetWorkerBuildIdCompatibilityResponse"
3045
+ responseType: "GetWorkerBuildIdCompatibilityResponse",
3046
+ options: {
3047
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/task-queues/{task_queue}/worker-build-id-compatibility"
3048
+ },
3049
+ parsedOptions: [
3050
+ {
3051
+ "(google.api.http)": {
3052
+ get: "/api/v1/namespaces/{namespace}/task-queues/{task_queue}/worker-build-id-compatibility"
3053
+ }
3054
+ }
3055
+ ]
2440
3056
  },
2441
3057
  GetWorkerTaskReachability: {
2442
3058
  requestType: "GetWorkerTaskReachabilityRequest",
2443
- responseType: "GetWorkerTaskReachabilityResponse"
3059
+ responseType: "GetWorkerTaskReachabilityResponse",
3060
+ options: {
3061
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/worker-task-reachability"
3062
+ },
3063
+ parsedOptions: [
3064
+ {
3065
+ "(google.api.http)": {
3066
+ get: "/api/v1/namespaces/{namespace}/worker-task-reachability"
3067
+ }
3068
+ }
3069
+ ]
2444
3070
  },
2445
3071
  UpdateWorkflowExecution: {
2446
3072
  requestType: "UpdateWorkflowExecutionRequest",
2447
- responseType: "UpdateWorkflowExecutionResponse"
3073
+ responseType: "UpdateWorkflowExecutionResponse",
3074
+ options: {
3075
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name}",
3076
+ "(google.api.http).body": "*"
3077
+ },
3078
+ parsedOptions: [
3079
+ {
3080
+ "(google.api.http)": {
3081
+ post: "/api/v1/namespaces/{namespace}/workflows/{workflow_execution.workflow_id}/update/{request.input.name}",
3082
+ body: "*"
3083
+ }
3084
+ }
3085
+ ]
2448
3086
  },
2449
3087
  PollWorkflowExecutionUpdate: {
2450
3088
  requestType: "PollWorkflowExecutionUpdateRequest",
@@ -2452,19 +3090,63 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2452
3090
  },
2453
3091
  StartBatchOperation: {
2454
3092
  requestType: "StartBatchOperationRequest",
2455
- responseType: "StartBatchOperationResponse"
3093
+ responseType: "StartBatchOperationResponse",
3094
+ options: {
3095
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/batch-operations/{job_id}",
3096
+ "(google.api.http).body": "*"
3097
+ },
3098
+ parsedOptions: [
3099
+ {
3100
+ "(google.api.http)": {
3101
+ post: "/api/v1/namespaces/{namespace}/batch-operations/{job_id}",
3102
+ body: "*"
3103
+ }
3104
+ }
3105
+ ]
2456
3106
  },
2457
3107
  StopBatchOperation: {
2458
3108
  requestType: "StopBatchOperationRequest",
2459
- responseType: "StopBatchOperationResponse"
3109
+ responseType: "StopBatchOperationResponse",
3110
+ options: {
3111
+ "(google.api.http).post": "/api/v1/namespaces/{namespace}/batch-operations/{job_id}/stop",
3112
+ "(google.api.http).body": "*"
3113
+ },
3114
+ parsedOptions: [
3115
+ {
3116
+ "(google.api.http)": {
3117
+ post: "/api/v1/namespaces/{namespace}/batch-operations/{job_id}/stop",
3118
+ body: "*"
3119
+ }
3120
+ }
3121
+ ]
2460
3122
  },
2461
3123
  DescribeBatchOperation: {
2462
3124
  requestType: "DescribeBatchOperationRequest",
2463
- responseType: "DescribeBatchOperationResponse"
3125
+ responseType: "DescribeBatchOperationResponse",
3126
+ options: {
3127
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/batch-operations/{job_id}"
3128
+ },
3129
+ parsedOptions: [
3130
+ {
3131
+ "(google.api.http)": {
3132
+ get: "/api/v1/namespaces/{namespace}/batch-operations/{job_id}"
3133
+ }
3134
+ }
3135
+ ]
2464
3136
  },
2465
3137
  ListBatchOperations: {
2466
3138
  requestType: "ListBatchOperationsRequest",
2467
- responseType: "ListBatchOperationsResponse"
3139
+ responseType: "ListBatchOperationsResponse",
3140
+ options: {
3141
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/batch-operations"
3142
+ },
3143
+ parsedOptions: [
3144
+ {
3145
+ "(google.api.http)": {
3146
+ get: "/api/v1/namespaces/{namespace}/batch-operations"
3147
+ }
3148
+ }
3149
+ ]
2468
3150
  }
2469
3151
  }
2470
3152
  },
@@ -2484,10 +3166,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2484
3166
  },
2485
3167
  workflowExecutionRetentionPeriod: {
2486
3168
  type: "google.protobuf.Duration",
2487
- id: 4,
2488
- options: {
2489
- "(gogoproto.stdduration)": true
2490
- }
3169
+ id: 4
2491
3170
  },
2492
3171
  clusters: {
2493
3172
  rule: "repeated",
@@ -2697,24 +3376,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2697
3376
  },
2698
3377
  workflowExecutionTimeout: {
2699
3378
  type: "google.protobuf.Duration",
2700
- id: 6,
2701
- options: {
2702
- "(gogoproto.stdduration)": true
2703
- }
3379
+ id: 6
2704
3380
  },
2705
3381
  workflowRunTimeout: {
2706
3382
  type: "google.protobuf.Duration",
2707
- id: 7,
2708
- options: {
2709
- "(gogoproto.stdduration)": true
2710
- }
3383
+ id: 7
2711
3384
  },
2712
3385
  workflowTaskTimeout: {
2713
3386
  type: "google.protobuf.Duration",
2714
- id: 8,
2715
- options: {
2716
- "(gogoproto.stdduration)": true
2717
- }
3387
+ id: 8
2718
3388
  },
2719
3389
  identity: {
2720
3390
  type: "string",
@@ -2762,10 +3432,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2762
3432
  },
2763
3433
  workflowStartDelay: {
2764
3434
  type: "google.protobuf.Duration",
2765
- id: 20,
2766
- options: {
2767
- "(gogoproto.stdduration)": true
2768
- }
3435
+ id: 20
2769
3436
  }
2770
3437
  }
2771
3438
  },
@@ -2938,17 +3605,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
2938
3605
  },
2939
3606
  scheduledTime: {
2940
3607
  type: "google.protobuf.Timestamp",
2941
- id: 12,
2942
- options: {
2943
- "(gogoproto.stdtime)": true
2944
- }
3608
+ id: 12
2945
3609
  },
2946
3610
  startedTime: {
2947
3611
  type: "google.protobuf.Timestamp",
2948
- id: 13,
2949
- options: {
2950
- "(gogoproto.stdtime)": true
2951
- }
3612
+ id: 13
2952
3613
  },
2953
3614
  queries: {
2954
3615
  keyType: "string",
@@ -3142,24 +3803,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3142
3803
  },
3143
3804
  scheduledTime: {
3144
3805
  type: "google.protobuf.Timestamp",
3145
- id: 10,
3146
- options: {
3147
- "(gogoproto.stdtime)": true
3148
- }
3806
+ id: 10
3149
3807
  },
3150
3808
  currentAttemptScheduledTime: {
3151
3809
  type: "google.protobuf.Timestamp",
3152
- id: 11,
3153
- options: {
3154
- "(gogoproto.stdtime)": true
3155
- }
3810
+ id: 11
3156
3811
  },
3157
3812
  startedTime: {
3158
3813
  type: "google.protobuf.Timestamp",
3159
- id: 12,
3160
- options: {
3161
- "(gogoproto.stdtime)": true
3162
- }
3814
+ id: 12
3163
3815
  },
3164
3816
  attempt: {
3165
3817
  type: "int32",
@@ -3167,24 +3819,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3167
3819
  },
3168
3820
  scheduleToCloseTimeout: {
3169
3821
  type: "google.protobuf.Duration",
3170
- id: 14,
3171
- options: {
3172
- "(gogoproto.stdduration)": true
3173
- }
3822
+ id: 14
3174
3823
  },
3175
3824
  startToCloseTimeout: {
3176
3825
  type: "google.protobuf.Duration",
3177
- id: 15,
3178
- options: {
3179
- "(gogoproto.stdduration)": true
3180
- }
3826
+ id: 15
3181
3827
  },
3182
3828
  heartbeatTimeout: {
3183
3829
  type: "google.protobuf.Duration",
3184
- id: 16,
3185
- options: {
3186
- "(gogoproto.stdduration)": true
3187
- }
3830
+ id: 16
3188
3831
  },
3189
3832
  retryPolicy: {
3190
3833
  type: "temporal.api.common.v1.RetryPolicy",
@@ -3548,24 +4191,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3548
4191
  },
3549
4192
  workflowExecutionTimeout: {
3550
4193
  type: "google.protobuf.Duration",
3551
- id: 6,
3552
- options: {
3553
- "(gogoproto.stdduration)": true
3554
- }
4194
+ id: 6
3555
4195
  },
3556
4196
  workflowRunTimeout: {
3557
4197
  type: "google.protobuf.Duration",
3558
- id: 7,
3559
- options: {
3560
- "(gogoproto.stdduration)": true
3561
- }
4198
+ id: 7
3562
4199
  },
3563
4200
  workflowTaskTimeout: {
3564
4201
  type: "google.protobuf.Duration",
3565
- id: 8,
3566
- options: {
3567
- "(gogoproto.stdduration)": true
3568
- }
4202
+ id: 8
3569
4203
  },
3570
4204
  identity: {
3571
4205
  type: "string",
@@ -3613,10 +4247,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3613
4247
  },
3614
4248
  workflowStartDelay: {
3615
4249
  type: "google.protobuf.Duration",
3616
- id: 20,
3617
- options: {
3618
- "(gogoproto.stdduration)": true
3619
- }
4250
+ id: 20
3620
4251
  },
3621
4252
  skipGenerateWorkflowTask: {
3622
4253
  type: "bool",
@@ -3933,6 +4564,26 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
3933
4564
  count: {
3934
4565
  type: "int64",
3935
4566
  id: 1
4567
+ },
4568
+ groups: {
4569
+ rule: "repeated",
4570
+ type: "AggregationGroup",
4571
+ id: 2
4572
+ }
4573
+ },
4574
+ nested: {
4575
+ AggregationGroup: {
4576
+ fields: {
4577
+ groupValues: {
4578
+ rule: "repeated",
4579
+ type: "temporal.api.common.v1.Payload",
4580
+ id: 1
4581
+ },
4582
+ count: {
4583
+ type: "int64",
4584
+ id: 2
4585
+ }
4586
+ }
3936
4587
  }
3937
4588
  }
3938
4589
  },
@@ -4191,6 +4842,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4191
4842
  sdkMetadata: {
4192
4843
  type: "bool",
4193
4844
  id: 9
4845
+ },
4846
+ countGroupByExecutionStatus: {
4847
+ type: "bool",
4848
+ id: 10
4194
4849
  }
4195
4850
  }
4196
4851
  }
@@ -4372,17 +5027,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4372
5027
  },
4373
5028
  startTime: {
4374
5029
  type: "google.protobuf.Timestamp",
4375
- id: 3,
4376
- options: {
4377
- "(gogoproto.stdtime)": true
4378
- }
5030
+ id: 3
4379
5031
  },
4380
5032
  endTime: {
4381
5033
  type: "google.protobuf.Timestamp",
4382
- id: 4,
4383
- options: {
4384
- "(gogoproto.stdtime)": true
4385
- }
5034
+ id: 4
4386
5035
  }
4387
5036
  }
4388
5037
  },
@@ -4391,10 +5040,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4391
5040
  startTime: {
4392
5041
  rule: "repeated",
4393
5042
  type: "google.protobuf.Timestamp",
4394
- id: 1,
4395
- options: {
4396
- "(gogoproto.stdtime)": true
4397
- }
5043
+ id: 1
4398
5044
  }
4399
5045
  }
4400
5046
  },
@@ -4520,12 +5166,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4520
5166
  }
4521
5167
  },
4522
5168
  UpdateWorkerBuildIdCompatibilityResponse: {
4523
- fields: {
4524
- versionSetId: {
4525
- type: "string",
4526
- id: 1
4527
- }
4528
- }
5169
+ fields: {},
5170
+ reserved: [
5171
+ [
5172
+ 1,
5173
+ 1
5174
+ ],
5175
+ "version_set_id"
5176
+ ]
4529
5177
  },
4530
5178
  GetWorkerBuildIdCompatibilityRequest: {
4531
5179
  fields: {
@@ -4616,6 +5264,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4616
5264
  outcome: {
4617
5265
  type: "temporal.api.update.v1.Outcome",
4618
5266
  id: 2
5267
+ },
5268
+ stage: {
5269
+ type: "temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage",
5270
+ id: 3
4619
5271
  }
4620
5272
  }
4621
5273
  },
@@ -4653,6 +5305,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4653
5305
  type: "temporal.api.common.v1.WorkflowExecution",
4654
5306
  id: 5
4655
5307
  },
5308
+ maxOperationsPerSecond: {
5309
+ type: "float",
5310
+ id: 6
5311
+ },
4656
5312
  terminationOperation: {
4657
5313
  type: "temporal.api.batch.v1.BatchOperationTermination",
4658
5314
  id: 10
@@ -4729,17 +5385,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4729
5385
  },
4730
5386
  startTime: {
4731
5387
  type: "google.protobuf.Timestamp",
4732
- id: 4,
4733
- options: {
4734
- "(gogoproto.stdtime)": true
4735
- }
5388
+ id: 4
4736
5389
  },
4737
5390
  closeTime: {
4738
5391
  type: "google.protobuf.Timestamp",
4739
- id: 5,
4740
- options: {
4741
- "(gogoproto.stdtime)": true
4742
- }
5392
+ id: 5
4743
5393
  },
4744
5394
  totalOperationCount: {
4745
5395
  type: "int64",
@@ -4817,6 +5467,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4817
5467
  outcome: {
4818
5468
  type: "temporal.api.update.v1.Outcome",
4819
5469
  id: 1
5470
+ },
5471
+ stage: {
5472
+ type: "temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage",
5473
+ id: 2
5474
+ },
5475
+ updateRef: {
5476
+ type: "temporal.api.update.v1.UpdateRef",
5477
+ id: 3
4820
5478
  }
4821
5479
  }
4822
5480
  }
@@ -4868,24 +5526,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4868
5526
  },
4869
5527
  workflowExecutionTimeout: {
4870
5528
  type: "google.protobuf.Duration",
4871
- id: 7,
4872
- options: {
4873
- "(gogoproto.stdduration)": true
4874
- }
5529
+ id: 7
4875
5530
  },
4876
5531
  workflowRunTimeout: {
4877
5532
  type: "google.protobuf.Duration",
4878
- id: 8,
4879
- options: {
4880
- "(gogoproto.stdduration)": true
4881
- }
5533
+ id: 8
4882
5534
  },
4883
5535
  workflowTaskTimeout: {
4884
5536
  type: "google.protobuf.Duration",
4885
- id: 9,
4886
- options: {
4887
- "(gogoproto.stdduration)": true
4888
- }
5537
+ id: 9
4889
5538
  },
4890
5539
  continuedExecutionRunId: {
4891
5540
  type: "string",
@@ -4925,10 +5574,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4925
5574
  },
4926
5575
  workflowExecutionExpirationTime: {
4927
5576
  type: "google.protobuf.Timestamp",
4928
- id: 19,
4929
- options: {
4930
- "(gogoproto.stdtime)": true
4931
- }
5577
+ id: 19
4932
5578
  },
4933
5579
  cronSchedule: {
4934
5580
  type: "string",
@@ -4936,10 +5582,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
4936
5582
  },
4937
5583
  firstWorkflowTaskBackoff: {
4938
5584
  type: "google.protobuf.Duration",
4939
- id: 21,
4940
- options: {
4941
- "(gogoproto.stdduration)": true
4942
- }
5585
+ id: 21
4943
5586
  },
4944
5587
  memo: {
4945
5588
  type: "temporal.api.common.v1.Memo",
@@ -5039,17 +5682,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5039
5682
  },
5040
5683
  workflowRunTimeout: {
5041
5684
  type: "google.protobuf.Duration",
5042
- id: 5,
5043
- options: {
5044
- "(gogoproto.stdduration)": true
5045
- }
5685
+ id: 5
5046
5686
  },
5047
5687
  workflowTaskTimeout: {
5048
5688
  type: "google.protobuf.Duration",
5049
- id: 6,
5050
- options: {
5051
- "(gogoproto.stdduration)": true
5052
- }
5689
+ id: 6
5053
5690
  },
5054
5691
  workflowTaskCompletedEventId: {
5055
5692
  type: "int64",
@@ -5057,10 +5694,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5057
5694
  },
5058
5695
  backoffStartInterval: {
5059
5696
  type: "google.protobuf.Duration",
5060
- id: 8,
5061
- options: {
5062
- "(gogoproto.stdduration)": true
5063
- }
5697
+ id: 8
5064
5698
  },
5065
5699
  initiator: {
5066
5700
  type: "temporal.api.enums.v1.ContinueAsNewInitiator",
@@ -5100,10 +5734,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5100
5734
  },
5101
5735
  startToCloseTimeout: {
5102
5736
  type: "google.protobuf.Duration",
5103
- id: 2,
5104
- options: {
5105
- "(gogoproto.stdduration)": true
5106
- }
5737
+ id: 2
5107
5738
  },
5108
5739
  attempt: {
5109
5740
  type: "int32",
@@ -5251,31 +5882,19 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5251
5882
  },
5252
5883
  scheduleToCloseTimeout: {
5253
5884
  type: "google.protobuf.Duration",
5254
- id: 7,
5255
- options: {
5256
- "(gogoproto.stdduration)": true
5257
- }
5885
+ id: 7
5258
5886
  },
5259
5887
  scheduleToStartTimeout: {
5260
5888
  type: "google.protobuf.Duration",
5261
- id: 8,
5262
- options: {
5263
- "(gogoproto.stdduration)": true
5264
- }
5889
+ id: 8
5265
5890
  },
5266
5891
  startToCloseTimeout: {
5267
5892
  type: "google.protobuf.Duration",
5268
- id: 9,
5269
- options: {
5270
- "(gogoproto.stdduration)": true
5271
- }
5893
+ id: 9
5272
5894
  },
5273
5895
  heartbeatTimeout: {
5274
5896
  type: "google.protobuf.Duration",
5275
- id: 10,
5276
- options: {
5277
- "(gogoproto.stdduration)": true
5278
- }
5897
+ id: 10
5279
5898
  },
5280
5899
  workflowTaskCompletedEventId: {
5281
5900
  type: "int64",
@@ -5441,10 +6060,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5441
6060
  },
5442
6061
  startToFireTimeout: {
5443
6062
  type: "google.protobuf.Duration",
5444
- id: 2,
5445
- options: {
5446
- "(gogoproto.stdduration)": true
5447
- }
6063
+ id: 2
5448
6064
  },
5449
6065
  workflowTaskCompletedEventId: {
5450
6066
  type: "int64",
@@ -5813,24 +6429,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
5813
6429
  },
5814
6430
  workflowExecutionTimeout: {
5815
6431
  type: "google.protobuf.Duration",
5816
- id: 6,
5817
- options: {
5818
- "(gogoproto.stdduration)": true
5819
- }
6432
+ id: 6
5820
6433
  },
5821
6434
  workflowRunTimeout: {
5822
6435
  type: "google.protobuf.Duration",
5823
- id: 7,
5824
- options: {
5825
- "(gogoproto.stdduration)": true
5826
- }
6436
+ id: 7
5827
6437
  },
5828
6438
  workflowTaskTimeout: {
5829
6439
  type: "google.protobuf.Duration",
5830
- id: 8,
5831
- options: {
5832
- "(gogoproto.stdduration)": true
5833
- }
6440
+ id: 8
5834
6441
  },
5835
6442
  parentClosePolicy: {
5836
6443
  type: "temporal.api.enums.v1.ParentClosePolicy",
@@ -6106,24 +6713,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6106
6713
  },
6107
6714
  newWorkflowTaskTimeout: {
6108
6715
  type: "google.protobuf.Duration",
6109
- id: 2,
6110
- options: {
6111
- "(gogoproto.stdduration)": true
6112
- }
6716
+ id: 2
6113
6717
  },
6114
6718
  newWorkflowRunTimeout: {
6115
6719
  type: "google.protobuf.Duration",
6116
- id: 3,
6117
- options: {
6118
- "(gogoproto.stdduration)": true
6119
- }
6720
+ id: 3
6120
6721
  },
6121
6722
  newWorkflowExecutionTimeout: {
6122
6723
  type: "google.protobuf.Duration",
6123
- id: 4,
6124
- options: {
6125
- "(gogoproto.stdduration)": true
6126
- }
6724
+ id: 4
6127
6725
  },
6128
6726
  upsertedMemo: {
6129
6727
  type: "temporal.api.common.v1.Memo",
@@ -6263,10 +6861,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6263
6861
  },
6264
6862
  eventTime: {
6265
6863
  type: "google.protobuf.Timestamp",
6266
- id: 2,
6267
- options: {
6268
- "(gogoproto.stdtime)": true
6269
- }
6864
+ id: 2
6270
6865
  },
6271
6866
  eventType: {
6272
6867
  type: "temporal.api.enums.v1.EventType",
@@ -6571,10 +7166,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6571
7166
  fields: {
6572
7167
  lastAccessTime: {
6573
7168
  type: "google.protobuf.Timestamp",
6574
- id: 1,
6575
- options: {
6576
- "(gogoproto.stdtime)": true
6577
- }
7169
+ id: 1
6578
7170
  },
6579
7171
  identity: {
6580
7172
  type: "string",
@@ -6598,10 +7190,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6598
7190
  },
6599
7191
  scheduleToStartTimeout: {
6600
7192
  type: "google.protobuf.Duration",
6601
- id: 2,
6602
- options: {
6603
- "(gogoproto.stdduration)": true
6604
- }
7193
+ id: 2
6605
7194
  }
6606
7195
  }
6607
7196
  },
@@ -6644,150 +7233,6 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6644
7233
  }
6645
7234
  }
6646
7235
  },
6647
- update: {
6648
- nested: {
6649
- v1: {
6650
- options: {
6651
- go_package: "go.temporal.io/api/update/v1;update",
6652
- java_package: "io.temporal.api.update.v1",
6653
- java_multiple_files: true,
6654
- java_outer_classname: "MessageProto",
6655
- ruby_package: "Temporalio::Api::Update::V1",
6656
- csharp_namespace: "Temporalio.Api.Update.V1"
6657
- },
6658
- nested: {
6659
- WaitPolicy: {
6660
- fields: {
6661
- lifecycleStage: {
6662
- type: "temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage",
6663
- id: 1
6664
- }
6665
- }
6666
- },
6667
- UpdateRef: {
6668
- fields: {
6669
- workflowExecution: {
6670
- type: "temporal.api.common.v1.WorkflowExecution",
6671
- id: 1
6672
- },
6673
- updateId: {
6674
- type: "string",
6675
- id: 2
6676
- }
6677
- }
6678
- },
6679
- Outcome: {
6680
- oneofs: {
6681
- value: {
6682
- oneof: [
6683
- "success",
6684
- "failure"
6685
- ]
6686
- }
6687
- },
6688
- fields: {
6689
- success: {
6690
- type: "temporal.api.common.v1.Payloads",
6691
- id: 1
6692
- },
6693
- failure: {
6694
- type: "temporal.api.failure.v1.Failure",
6695
- id: 2
6696
- }
6697
- }
6698
- },
6699
- Meta: {
6700
- fields: {
6701
- updateId: {
6702
- type: "string",
6703
- id: 1
6704
- },
6705
- identity: {
6706
- type: "string",
6707
- id: 2
6708
- }
6709
- }
6710
- },
6711
- Input: {
6712
- fields: {
6713
- header: {
6714
- type: "temporal.api.common.v1.Header",
6715
- id: 1
6716
- },
6717
- name: {
6718
- type: "string",
6719
- id: 2
6720
- },
6721
- args: {
6722
- type: "temporal.api.common.v1.Payloads",
6723
- id: 3
6724
- }
6725
- }
6726
- },
6727
- Request: {
6728
- fields: {
6729
- meta: {
6730
- type: "Meta",
6731
- id: 1
6732
- },
6733
- input: {
6734
- type: "Input",
6735
- id: 2
6736
- }
6737
- }
6738
- },
6739
- Rejection: {
6740
- fields: {
6741
- rejectedRequestMessageId: {
6742
- type: "string",
6743
- id: 1
6744
- },
6745
- rejectedRequestSequencingEventId: {
6746
- type: "int64",
6747
- id: 2
6748
- },
6749
- rejectedRequest: {
6750
- type: "Request",
6751
- id: 3
6752
- },
6753
- failure: {
6754
- type: "temporal.api.failure.v1.Failure",
6755
- id: 4
6756
- }
6757
- }
6758
- },
6759
- Acceptance: {
6760
- fields: {
6761
- acceptedRequestMessageId: {
6762
- type: "string",
6763
- id: 1
6764
- },
6765
- acceptedRequestSequencingEventId: {
6766
- type: "int64",
6767
- id: 2
6768
- },
6769
- acceptedRequest: {
6770
- type: "Request",
6771
- id: 3
6772
- }
6773
- }
6774
- },
6775
- Response: {
6776
- fields: {
6777
- meta: {
6778
- type: "Meta",
6779
- id: 1
6780
- },
6781
- outcome: {
6782
- type: "Outcome",
6783
- id: 2
6784
- }
6785
- }
6786
- }
6787
- }
6788
- }
6789
- }
6790
- },
6791
7236
  workflow: {
6792
7237
  nested: {
6793
7238
  v1: {
@@ -6812,17 +7257,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6812
7257
  },
6813
7258
  startTime: {
6814
7259
  type: "google.protobuf.Timestamp",
6815
- id: 3,
6816
- options: {
6817
- "(gogoproto.stdtime)": true
6818
- }
7260
+ id: 3
6819
7261
  },
6820
7262
  closeTime: {
6821
7263
  type: "google.protobuf.Timestamp",
6822
- id: 4,
6823
- options: {
6824
- "(gogoproto.stdtime)": true
6825
- }
7264
+ id: 4
6826
7265
  },
6827
7266
  status: {
6828
7267
  type: "temporal.api.enums.v1.WorkflowExecutionStatus",
@@ -6842,10 +7281,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6842
7281
  },
6843
7282
  executionTime: {
6844
7283
  type: "google.protobuf.Timestamp",
6845
- id: 9,
6846
- options: {
6847
- "(gogoproto.stdtime)": true
6848
- }
7284
+ id: 9
6849
7285
  },
6850
7286
  memo: {
6851
7287
  type: "temporal.api.common.v1.Memo",
@@ -6885,24 +7321,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6885
7321
  },
6886
7322
  workflowExecutionTimeout: {
6887
7323
  type: "google.protobuf.Duration",
6888
- id: 2,
6889
- options: {
6890
- "(gogoproto.stdduration)": true
6891
- }
7324
+ id: 2
6892
7325
  },
6893
7326
  workflowRunTimeout: {
6894
7327
  type: "google.protobuf.Duration",
6895
- id: 3,
6896
- options: {
6897
- "(gogoproto.stdduration)": true
6898
- }
7328
+ id: 3
6899
7329
  },
6900
7330
  defaultWorkflowTaskTimeout: {
6901
7331
  type: "google.protobuf.Duration",
6902
- id: 4,
6903
- options: {
6904
- "(gogoproto.stdduration)": true
6905
- }
7332
+ id: 4
6906
7333
  }
6907
7334
  }
6908
7335
  },
@@ -6926,17 +7353,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6926
7353
  },
6927
7354
  lastHeartbeatTime: {
6928
7355
  type: "google.protobuf.Timestamp",
6929
- id: 5,
6930
- options: {
6931
- "(gogoproto.stdtime)": true
6932
- }
7356
+ id: 5
6933
7357
  },
6934
7358
  lastStartedTime: {
6935
7359
  type: "google.protobuf.Timestamp",
6936
- id: 6,
6937
- options: {
6938
- "(gogoproto.stdtime)": true
6939
- }
7360
+ id: 6
6940
7361
  },
6941
7362
  attempt: {
6942
7363
  type: "int32",
@@ -6948,17 +7369,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
6948
7369
  },
6949
7370
  scheduledTime: {
6950
7371
  type: "google.protobuf.Timestamp",
6951
- id: 9,
6952
- options: {
6953
- "(gogoproto.stdtime)": true
6954
- }
7372
+ id: 9
6955
7373
  },
6956
7374
  expirationTime: {
6957
7375
  type: "google.protobuf.Timestamp",
6958
- id: 10,
6959
- options: {
6960
- "(gogoproto.stdtime)": true
6961
- }
7376
+ id: 10
6962
7377
  },
6963
7378
  lastFailure: {
6964
7379
  type: "temporal.api.failure.v1.Failure",
@@ -7002,24 +7417,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7002
7417
  },
7003
7418
  scheduledTime: {
7004
7419
  type: "google.protobuf.Timestamp",
7005
- id: 2,
7006
- options: {
7007
- "(gogoproto.stdtime)": true
7008
- }
7420
+ id: 2
7009
7421
  },
7010
7422
  originalScheduledTime: {
7011
7423
  type: "google.protobuf.Timestamp",
7012
- id: 3,
7013
- options: {
7014
- "(gogoproto.stdtime)": true
7015
- }
7424
+ id: 3
7016
7425
  },
7017
7426
  startedTime: {
7018
7427
  type: "google.protobuf.Timestamp",
7019
- id: 4,
7020
- options: {
7021
- "(gogoproto.stdtime)": true
7022
- }
7428
+ id: 4
7023
7429
  },
7024
7430
  attempt: {
7025
7431
  type: "int32",
@@ -7052,17 +7458,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7052
7458
  },
7053
7459
  createTime: {
7054
7460
  type: "google.protobuf.Timestamp",
7055
- id: 4,
7056
- options: {
7057
- "(gogoproto.stdtime)": true
7058
- }
7461
+ id: 4
7059
7462
  },
7060
7463
  expireTime: {
7061
7464
  type: "google.protobuf.Timestamp",
7062
- id: 5,
7063
- options: {
7064
- "(gogoproto.stdtime)": true
7065
- }
7465
+ id: 5
7066
7466
  },
7067
7467
  resettable: {
7068
7468
  type: "bool",
@@ -7090,24 +7490,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7090
7490
  },
7091
7491
  workflowExecutionTimeout: {
7092
7492
  type: "google.protobuf.Duration",
7093
- id: 5,
7094
- options: {
7095
- "(gogoproto.stdduration)": true
7096
- }
7493
+ id: 5
7097
7494
  },
7098
7495
  workflowRunTimeout: {
7099
7496
  type: "google.protobuf.Duration",
7100
- id: 6,
7101
- options: {
7102
- "(gogoproto.stdduration)": true
7103
- }
7497
+ id: 6
7104
7498
  },
7105
7499
  workflowTaskTimeout: {
7106
7500
  type: "google.protobuf.Duration",
7107
- id: 7,
7108
- options: {
7109
- "(gogoproto.stdduration)": true
7110
- }
7501
+ id: 7
7111
7502
  },
7112
7503
  workflowIdReusePolicy: {
7113
7504
  type: "temporal.api.enums.v1.WorkflowIdReusePolicy",
@@ -7162,6 +7553,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7162
7553
  rule: "repeated",
7163
7554
  type: "uint32",
7164
7555
  id: 2
7556
+ },
7557
+ sdkName: {
7558
+ type: "string",
7559
+ id: 3
7560
+ },
7561
+ sdkVersion: {
7562
+ type: "string",
7563
+ id: 4
7165
7564
  }
7166
7565
  }
7167
7566
  }
@@ -7205,31 +7604,19 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7205
7604
  },
7206
7605
  scheduleToCloseTimeout: {
7207
7606
  type: "google.protobuf.Duration",
7208
- id: 7,
7209
- options: {
7210
- "(gogoproto.stdduration)": true
7211
- }
7607
+ id: 7
7212
7608
  },
7213
7609
  scheduleToStartTimeout: {
7214
7610
  type: "google.protobuf.Duration",
7215
- id: 8,
7216
- options: {
7217
- "(gogoproto.stdduration)": true
7218
- }
7611
+ id: 8
7219
7612
  },
7220
7613
  startToCloseTimeout: {
7221
7614
  type: "google.protobuf.Duration",
7222
- id: 9,
7223
- options: {
7224
- "(gogoproto.stdduration)": true
7225
- }
7615
+ id: 9
7226
7616
  },
7227
7617
  heartbeatTimeout: {
7228
7618
  type: "google.protobuf.Duration",
7229
- id: 10,
7230
- options: {
7231
- "(gogoproto.stdduration)": true
7232
- }
7619
+ id: 10
7233
7620
  },
7234
7621
  retryPolicy: {
7235
7622
  type: "temporal.api.common.v1.RetryPolicy",
@@ -7267,10 +7654,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7267
7654
  },
7268
7655
  startToFireTimeout: {
7269
7656
  type: "google.protobuf.Duration",
7270
- id: 2,
7271
- options: {
7272
- "(gogoproto.stdduration)": true
7273
- }
7657
+ id: 2
7274
7658
  }
7275
7659
  }
7276
7660
  },
@@ -7419,24 +7803,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7419
7803
  },
7420
7804
  workflowRunTimeout: {
7421
7805
  type: "google.protobuf.Duration",
7422
- id: 4,
7423
- options: {
7424
- "(gogoproto.stdduration)": true
7425
- }
7806
+ id: 4
7426
7807
  },
7427
7808
  workflowTaskTimeout: {
7428
7809
  type: "google.protobuf.Duration",
7429
- id: 5,
7430
- options: {
7431
- "(gogoproto.stdduration)": true
7432
- }
7810
+ id: 5
7433
7811
  },
7434
7812
  backoffStartInterval: {
7435
7813
  type: "google.protobuf.Duration",
7436
- id: 6,
7437
- options: {
7438
- "(gogoproto.stdduration)": true
7439
- }
7814
+ id: 6
7440
7815
  },
7441
7816
  retryPolicy: {
7442
7817
  type: "temporal.api.common.v1.RetryPolicy",
@@ -7500,24 +7875,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7500
7875
  },
7501
7876
  workflowExecutionTimeout: {
7502
7877
  type: "google.protobuf.Duration",
7503
- id: 6,
7504
- options: {
7505
- "(gogoproto.stdduration)": true
7506
- }
7878
+ id: 6
7507
7879
  },
7508
7880
  workflowRunTimeout: {
7509
7881
  type: "google.protobuf.Duration",
7510
- id: 7,
7511
- options: {
7512
- "(gogoproto.stdduration)": true
7513
- }
7882
+ id: 7
7514
7883
  },
7515
7884
  workflowTaskTimeout: {
7516
7885
  type: "google.protobuf.Duration",
7517
- id: 8,
7518
- options: {
7519
- "(gogoproto.stdduration)": true
7520
- }
7886
+ id: 8
7521
7887
  },
7522
7888
  parentClosePolicy: {
7523
7889
  type: "temporal.api.enums.v1.ParentClosePolicy",
@@ -7694,17 +8060,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7694
8060
  fields: {
7695
8061
  earliestTime: {
7696
8062
  type: "google.protobuf.Timestamp",
7697
- id: 1,
7698
- options: {
7699
- "(gogoproto.stdtime)": true
7700
- }
8063
+ id: 1
7701
8064
  },
7702
8065
  latestTime: {
7703
8066
  type: "google.protobuf.Timestamp",
7704
- id: 2,
7705
- options: {
7706
- "(gogoproto.stdtime)": true
7707
- }
8067
+ id: 2
7708
8068
  }
7709
8069
  }
7710
8070
  },
@@ -7817,10 +8177,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7817
8177
  fields: {
7818
8178
  workflowExecutionRetentionTtl: {
7819
8179
  type: "google.protobuf.Duration",
7820
- id: 1,
7821
- options: {
7822
- "(gogoproto.stdduration)": true
7823
- }
8180
+ id: 1
7824
8181
  },
7825
8182
  badBinaries: {
7826
8183
  type: "BadBinaries",
@@ -7870,10 +8227,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
7870
8227
  },
7871
8228
  createTime: {
7872
8229
  type: "google.protobuf.Timestamp",
7873
- id: 3,
7874
- options: {
7875
- "(gogoproto.stdtime)": true
7876
- }
8230
+ id: 3
7877
8231
  }
7878
8232
  }
7879
8233
  },
@@ -8007,10 +8361,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8007
8361
  fields: {
8008
8362
  failoverTime: {
8009
8363
  type: "google.protobuf.Timestamp",
8010
- id: 1,
8011
- options: {
8012
- "(gogoproto.stdtime)": true
8013
- }
8364
+ id: 1
8014
8365
  },
8015
8366
  failoverVersion: {
8016
8367
  type: "int64",
@@ -8133,17 +8484,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8133
8484
  fields: {
8134
8485
  interval: {
8135
8486
  type: "google.protobuf.Duration",
8136
- id: 1,
8137
- options: {
8138
- "(gogoproto.stdduration)": true
8139
- }
8487
+ id: 1
8140
8488
  },
8141
8489
  phase: {
8142
8490
  type: "google.protobuf.Duration",
8143
- id: 2,
8144
- options: {
8145
- "(gogoproto.stdduration)": true
8146
- }
8491
+ id: 2
8147
8492
  }
8148
8493
  }
8149
8494
  },
@@ -8184,24 +8529,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8184
8529
  },
8185
8530
  startTime: {
8186
8531
  type: "google.protobuf.Timestamp",
8187
- id: 4,
8188
- options: {
8189
- "(gogoproto.stdtime)": true
8190
- }
8532
+ id: 4
8191
8533
  },
8192
8534
  endTime: {
8193
8535
  type: "google.protobuf.Timestamp",
8194
- id: 5,
8195
- options: {
8196
- "(gogoproto.stdtime)": true
8197
- }
8536
+ id: 5
8198
8537
  },
8199
8538
  jitter: {
8200
8539
  type: "google.protobuf.Duration",
8201
- id: 6,
8202
- options: {
8203
- "(gogoproto.stdduration)": true
8204
- }
8540
+ id: 6
8205
8541
  },
8206
8542
  timezoneName: {
8207
8543
  type: "string",
@@ -8221,10 +8557,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8221
8557
  },
8222
8558
  catchupWindow: {
8223
8559
  type: "google.protobuf.Duration",
8224
- id: 2,
8225
- options: {
8226
- "(gogoproto.stdduration)": true
8227
- }
8560
+ id: 2
8228
8561
  },
8229
8562
  pauseOnFailure: {
8230
8563
  type: "bool",
@@ -8251,17 +8584,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8251
8584
  fields: {
8252
8585
  scheduleTime: {
8253
8586
  type: "google.protobuf.Timestamp",
8254
- id: 1,
8255
- options: {
8256
- "(gogoproto.stdtime)": true
8257
- }
8587
+ id: 1
8258
8588
  },
8259
8589
  actualTime: {
8260
8590
  type: "google.protobuf.Timestamp",
8261
- id: 2,
8262
- options: {
8263
- "(gogoproto.stdtime)": true
8264
- }
8591
+ id: 2
8265
8592
  },
8266
8593
  startWorkflowResult: {
8267
8594
  type: "temporal.api.common.v1.WorkflowExecution",
@@ -8301,17 +8628,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8301
8628
  fields: {
8302
8629
  startTime: {
8303
8630
  type: "google.protobuf.Timestamp",
8304
- id: 1,
8305
- options: {
8306
- "(gogoproto.stdtime)": true
8307
- }
8631
+ id: 1
8308
8632
  },
8309
8633
  endTime: {
8310
8634
  type: "google.protobuf.Timestamp",
8311
- id: 2,
8312
- options: {
8313
- "(gogoproto.stdtime)": true
8314
- }
8635
+ id: 2
8315
8636
  },
8316
8637
  overlapPolicy: {
8317
8638
  type: "temporal.api.enums.v1.ScheduleOverlapPolicy",
@@ -8354,6 +8675,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8354
8675
  type: "int64",
8355
8676
  id: 3
8356
8677
  },
8678
+ bufferDropped: {
8679
+ type: "int64",
8680
+ id: 10
8681
+ },
8682
+ bufferSize: {
8683
+ type: "int64",
8684
+ id: 11
8685
+ },
8357
8686
  runningWorkflows: {
8358
8687
  rule: "repeated",
8359
8688
  type: "temporal.api.common.v1.WorkflowExecution",
@@ -8367,24 +8696,15 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8367
8696
  futureActionTimes: {
8368
8697
  rule: "repeated",
8369
8698
  type: "google.protobuf.Timestamp",
8370
- id: 5,
8371
- options: {
8372
- "(gogoproto.stdtime)": true
8373
- }
8699
+ id: 5
8374
8700
  },
8375
8701
  createTime: {
8376
8702
  type: "google.protobuf.Timestamp",
8377
- id: 6,
8378
- options: {
8379
- "(gogoproto.stdtime)": true
8380
- }
8703
+ id: 6
8381
8704
  },
8382
8705
  updateTime: {
8383
8706
  type: "google.protobuf.Timestamp",
8384
- id: 7,
8385
- options: {
8386
- "(gogoproto.stdtime)": true
8387
- }
8707
+ id: 7
8388
8708
  },
8389
8709
  invalidScheduleError: {
8390
8710
  type: "string",
@@ -8441,10 +8761,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8441
8761
  futureActionTimes: {
8442
8762
  rule: "repeated",
8443
8763
  type: "google.protobuf.Timestamp",
8444
- id: 6,
8445
- options: {
8446
- "(gogoproto.stdtime)": true
8447
- }
8764
+ id: 6
8448
8765
  }
8449
8766
  }
8450
8767
  },
@@ -8492,10 +8809,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8492
8809
  },
8493
8810
  releaseTime: {
8494
8811
  type: "google.protobuf.Timestamp",
8495
- id: 2,
8496
- options: {
8497
- "(gogoproto.stdtime)": true
8498
- }
8812
+ id: 2
8499
8813
  },
8500
8814
  notes: {
8501
8815
  type: "string",
@@ -8536,10 +8850,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8536
8850
  },
8537
8851
  lastUpdateTime: {
8538
8852
  type: "google.protobuf.Timestamp",
8539
- id: 5,
8540
- options: {
8541
- "(gogoproto.stdtime)": true
8542
- }
8853
+ id: 5
8543
8854
  }
8544
8855
  }
8545
8856
  }
@@ -8571,17 +8882,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8571
8882
  },
8572
8883
  startTime: {
8573
8884
  type: "google.protobuf.Timestamp",
8574
- id: 3,
8575
- options: {
8576
- "(gogoproto.stdtime)": true
8577
- }
8885
+ id: 3
8578
8886
  },
8579
8887
  closeTime: {
8580
8888
  type: "google.protobuf.Timestamp",
8581
- id: 4,
8582
- options: {
8583
- "(gogoproto.stdtime)": true
8584
- }
8889
+ id: 4
8585
8890
  }
8586
8891
  }
8587
8892
  },
@@ -8677,7 +8982,17 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8677
8982
  },
8678
8983
  ListSearchAttributes: {
8679
8984
  requestType: "ListSearchAttributesRequest",
8680
- responseType: "ListSearchAttributesResponse"
8985
+ responseType: "ListSearchAttributesResponse",
8986
+ options: {
8987
+ "(google.api.http).get": "/api/v1/namespaces/{namespace}/search-attributes"
8988
+ },
8989
+ parsedOptions: [
8990
+ {
8991
+ "(google.api.http)": {
8992
+ get: "/api/v1/namespaces/{namespace}/search-attributes"
8993
+ }
8994
+ }
8995
+ ]
8681
8996
  },
8682
8997
  DeleteNamespace: {
8683
8998
  requestType: "DeleteNamespaceRequest",
@@ -8761,6 +9076,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
8761
9076
  namespace: {
8762
9077
  type: "string",
8763
9078
  id: 1
9079
+ },
9080
+ namespaceId: {
9081
+ type: "string",
9082
+ id: 2
8764
9083
  }
8765
9084
  }
8766
9085
  },
@@ -9108,396 +9427,18 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
9108
9427
  }
9109
9428
  }
9110
9429
  },
9111
- gogoproto: {
9112
- options: {
9113
- go_package: "github.com/gogo/protobuf/gogoproto"
9114
- },
9115
- nested: {
9116
- goprotoEnumPrefix: {
9117
- type: "bool",
9118
- id: 62001,
9119
- extend: "google.protobuf.EnumOptions"
9120
- },
9121
- goprotoEnumStringer: {
9122
- type: "bool",
9123
- id: 62021,
9124
- extend: "google.protobuf.EnumOptions"
9125
- },
9126
- enumStringer: {
9127
- type: "bool",
9128
- id: 62022,
9129
- extend: "google.protobuf.EnumOptions"
9130
- },
9131
- enumCustomname: {
9132
- type: "string",
9133
- id: 62023,
9134
- extend: "google.protobuf.EnumOptions"
9135
- },
9136
- enumdecl: {
9137
- type: "bool",
9138
- id: 62024,
9139
- extend: "google.protobuf.EnumOptions"
9140
- },
9141
- enumvalueCustomname: {
9142
- type: "string",
9143
- id: 66001,
9144
- extend: "google.protobuf.EnumValueOptions"
9145
- },
9146
- goprotoGettersAll: {
9147
- type: "bool",
9148
- id: 63001,
9149
- extend: "google.protobuf.FileOptions"
9150
- },
9151
- goprotoEnumPrefixAll: {
9152
- type: "bool",
9153
- id: 63002,
9154
- extend: "google.protobuf.FileOptions"
9155
- },
9156
- goprotoStringerAll: {
9157
- type: "bool",
9158
- id: 63003,
9159
- extend: "google.protobuf.FileOptions"
9160
- },
9161
- verboseEqualAll: {
9162
- type: "bool",
9163
- id: 63004,
9164
- extend: "google.protobuf.FileOptions"
9165
- },
9166
- faceAll: {
9167
- type: "bool",
9168
- id: 63005,
9169
- extend: "google.protobuf.FileOptions"
9170
- },
9171
- gostringAll: {
9172
- type: "bool",
9173
- id: 63006,
9174
- extend: "google.protobuf.FileOptions"
9175
- },
9176
- populateAll: {
9177
- type: "bool",
9178
- id: 63007,
9179
- extend: "google.protobuf.FileOptions"
9180
- },
9181
- stringerAll: {
9182
- type: "bool",
9183
- id: 63008,
9184
- extend: "google.protobuf.FileOptions"
9185
- },
9186
- onlyoneAll: {
9187
- type: "bool",
9188
- id: 63009,
9189
- extend: "google.protobuf.FileOptions"
9190
- },
9191
- equalAll: {
9192
- type: "bool",
9193
- id: 63013,
9194
- extend: "google.protobuf.FileOptions"
9195
- },
9196
- descriptionAll: {
9197
- type: "bool",
9198
- id: 63014,
9199
- extend: "google.protobuf.FileOptions"
9200
- },
9201
- testgenAll: {
9202
- type: "bool",
9203
- id: 63015,
9204
- extend: "google.protobuf.FileOptions"
9205
- },
9206
- benchgenAll: {
9207
- type: "bool",
9208
- id: 63016,
9209
- extend: "google.protobuf.FileOptions"
9210
- },
9211
- marshalerAll: {
9212
- type: "bool",
9213
- id: 63017,
9214
- extend: "google.protobuf.FileOptions"
9215
- },
9216
- unmarshalerAll: {
9217
- type: "bool",
9218
- id: 63018,
9219
- extend: "google.protobuf.FileOptions"
9220
- },
9221
- stableMarshalerAll: {
9222
- type: "bool",
9223
- id: 63019,
9224
- extend: "google.protobuf.FileOptions"
9225
- },
9226
- sizerAll: {
9227
- type: "bool",
9228
- id: 63020,
9229
- extend: "google.protobuf.FileOptions"
9230
- },
9231
- goprotoEnumStringerAll: {
9232
- type: "bool",
9233
- id: 63021,
9234
- extend: "google.protobuf.FileOptions"
9235
- },
9236
- enumStringerAll: {
9237
- type: "bool",
9238
- id: 63022,
9239
- extend: "google.protobuf.FileOptions"
9240
- },
9241
- unsafeMarshalerAll: {
9242
- type: "bool",
9243
- id: 63023,
9244
- extend: "google.protobuf.FileOptions"
9245
- },
9246
- unsafeUnmarshalerAll: {
9247
- type: "bool",
9248
- id: 63024,
9249
- extend: "google.protobuf.FileOptions"
9250
- },
9251
- goprotoExtensionsMapAll: {
9252
- type: "bool",
9253
- id: 63025,
9254
- extend: "google.protobuf.FileOptions"
9255
- },
9256
- goprotoUnrecognizedAll: {
9257
- type: "bool",
9258
- id: 63026,
9259
- extend: "google.protobuf.FileOptions"
9260
- },
9261
- gogoprotoImport: {
9262
- type: "bool",
9263
- id: 63027,
9264
- extend: "google.protobuf.FileOptions"
9265
- },
9266
- protosizerAll: {
9267
- type: "bool",
9268
- id: 63028,
9269
- extend: "google.protobuf.FileOptions"
9270
- },
9271
- compareAll: {
9272
- type: "bool",
9273
- id: 63029,
9274
- extend: "google.protobuf.FileOptions"
9275
- },
9276
- typedeclAll: {
9277
- type: "bool",
9278
- id: 63030,
9279
- extend: "google.protobuf.FileOptions"
9280
- },
9281
- enumdeclAll: {
9282
- type: "bool",
9283
- id: 63031,
9284
- extend: "google.protobuf.FileOptions"
9285
- },
9286
- goprotoRegistration: {
9287
- type: "bool",
9288
- id: 63032,
9289
- extend: "google.protobuf.FileOptions"
9290
- },
9291
- messagenameAll: {
9292
- type: "bool",
9293
- id: 63033,
9294
- extend: "google.protobuf.FileOptions"
9295
- },
9296
- goprotoSizecacheAll: {
9297
- type: "bool",
9298
- id: 63034,
9299
- extend: "google.protobuf.FileOptions"
9300
- },
9301
- goprotoUnkeyedAll: {
9302
- type: "bool",
9303
- id: 63035,
9304
- extend: "google.protobuf.FileOptions"
9305
- },
9306
- goprotoGetters: {
9307
- type: "bool",
9308
- id: 64001,
9309
- extend: "google.protobuf.MessageOptions"
9310
- },
9311
- goprotoStringer: {
9312
- type: "bool",
9313
- id: 64003,
9314
- extend: "google.protobuf.MessageOptions"
9315
- },
9316
- verboseEqual: {
9317
- type: "bool",
9318
- id: 64004,
9319
- extend: "google.protobuf.MessageOptions"
9320
- },
9321
- face: {
9322
- type: "bool",
9323
- id: 64005,
9324
- extend: "google.protobuf.MessageOptions"
9325
- },
9326
- gostring: {
9327
- type: "bool",
9328
- id: 64006,
9329
- extend: "google.protobuf.MessageOptions"
9330
- },
9331
- populate: {
9332
- type: "bool",
9333
- id: 64007,
9334
- extend: "google.protobuf.MessageOptions"
9335
- },
9336
- stringer: {
9337
- type: "bool",
9338
- id: 67008,
9339
- extend: "google.protobuf.MessageOptions"
9340
- },
9341
- onlyone: {
9342
- type: "bool",
9343
- id: 64009,
9344
- extend: "google.protobuf.MessageOptions"
9345
- },
9346
- equal: {
9347
- type: "bool",
9348
- id: 64013,
9349
- extend: "google.protobuf.MessageOptions"
9350
- },
9351
- description: {
9352
- type: "bool",
9353
- id: 64014,
9354
- extend: "google.protobuf.MessageOptions"
9355
- },
9356
- testgen: {
9357
- type: "bool",
9358
- id: 64015,
9359
- extend: "google.protobuf.MessageOptions"
9360
- },
9361
- benchgen: {
9362
- type: "bool",
9363
- id: 64016,
9364
- extend: "google.protobuf.MessageOptions"
9365
- },
9366
- marshaler: {
9367
- type: "bool",
9368
- id: 64017,
9369
- extend: "google.protobuf.MessageOptions"
9370
- },
9371
- unmarshaler: {
9372
- type: "bool",
9373
- id: 64018,
9374
- extend: "google.protobuf.MessageOptions"
9375
- },
9376
- stableMarshaler: {
9377
- type: "bool",
9378
- id: 64019,
9379
- extend: "google.protobuf.MessageOptions"
9380
- },
9381
- sizer: {
9382
- type: "bool",
9383
- id: 64020,
9384
- extend: "google.protobuf.MessageOptions"
9385
- },
9386
- unsafeMarshaler: {
9387
- type: "bool",
9388
- id: 64023,
9389
- extend: "google.protobuf.MessageOptions"
9390
- },
9391
- unsafeUnmarshaler: {
9392
- type: "bool",
9393
- id: 64024,
9394
- extend: "google.protobuf.MessageOptions"
9395
- },
9396
- goprotoExtensionsMap: {
9397
- type: "bool",
9398
- id: 64025,
9399
- extend: "google.protobuf.MessageOptions"
9400
- },
9401
- goprotoUnrecognized: {
9402
- type: "bool",
9403
- id: 64026,
9404
- extend: "google.protobuf.MessageOptions"
9405
- },
9406
- protosizer: {
9407
- type: "bool",
9408
- id: 64028,
9409
- extend: "google.protobuf.MessageOptions"
9410
- },
9411
- compare: {
9412
- type: "bool",
9413
- id: 64029,
9414
- extend: "google.protobuf.MessageOptions"
9415
- },
9416
- typedecl: {
9417
- type: "bool",
9418
- id: 64030,
9419
- extend: "google.protobuf.MessageOptions"
9420
- },
9421
- messagename: {
9422
- type: "bool",
9423
- id: 64033,
9424
- extend: "google.protobuf.MessageOptions"
9425
- },
9426
- goprotoSizecache: {
9427
- type: "bool",
9428
- id: 64034,
9429
- extend: "google.protobuf.MessageOptions"
9430
- },
9431
- goprotoUnkeyed: {
9432
- type: "bool",
9433
- id: 64035,
9434
- extend: "google.protobuf.MessageOptions"
9435
- },
9436
- nullable: {
9437
- type: "bool",
9438
- id: 65001,
9439
- extend: "google.protobuf.FieldOptions"
9440
- },
9441
- embed: {
9442
- type: "bool",
9443
- id: 65002,
9444
- extend: "google.protobuf.FieldOptions"
9445
- },
9446
- customtype: {
9447
- type: "string",
9448
- id: 65003,
9449
- extend: "google.protobuf.FieldOptions"
9450
- },
9451
- customname: {
9452
- type: "string",
9453
- id: 65004,
9454
- extend: "google.protobuf.FieldOptions"
9455
- },
9456
- jsontag: {
9457
- type: "string",
9458
- id: 65005,
9459
- extend: "google.protobuf.FieldOptions"
9460
- },
9461
- moretags: {
9462
- type: "string",
9463
- id: 65006,
9464
- extend: "google.protobuf.FieldOptions"
9465
- },
9466
- casttype: {
9467
- type: "string",
9468
- id: 65007,
9469
- extend: "google.protobuf.FieldOptions"
9470
- },
9471
- castkey: {
9472
- type: "string",
9473
- id: 65008,
9474
- extend: "google.protobuf.FieldOptions"
9475
- },
9476
- castvalue: {
9477
- type: "string",
9478
- id: 65009,
9479
- extend: "google.protobuf.FieldOptions"
9480
- },
9481
- stdtime: {
9482
- type: "bool",
9483
- id: 65010,
9484
- extend: "google.protobuf.FieldOptions"
9485
- },
9486
- stdduration: {
9487
- type: "bool",
9488
- id: 65011,
9489
- extend: "google.protobuf.FieldOptions"
9490
- },
9491
- wktpointer: {
9492
- type: "bool",
9493
- id: 65012,
9494
- extend: "google.protobuf.FieldOptions"
9495
- }
9496
- }
9497
- },
9498
9430
  google: {
9499
9431
  nested: {
9500
9432
  protobuf: {
9433
+ options: {
9434
+ go_package: "google.golang.org/protobuf/types/descriptorpb",
9435
+ java_package: "com.google.protobuf",
9436
+ java_outer_classname: "DescriptorProtos",
9437
+ csharp_namespace: "Google.Protobuf.Reflection",
9438
+ objc_class_prefix: "GPB",
9439
+ cc_enable_arenas: true,
9440
+ optimize_for: "SPEED"
9441
+ },
9501
9442
  nested: {
9502
9443
  FileDescriptorSet: {
9503
9444
  fields: {
@@ -10339,6 +10280,105 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
10339
10280
  }
10340
10281
  }
10341
10282
  },
10283
+ api: {
10284
+ options: {
10285
+ go_package: "google.golang.org/genproto/googleapis/api/annotations;annotations",
10286
+ java_multiple_files: true,
10287
+ java_outer_classname: "HttpProto",
10288
+ java_package: "com.google.api",
10289
+ objc_class_prefix: "GAPI",
10290
+ cc_enable_arenas: true
10291
+ },
10292
+ nested: {
10293
+ http: {
10294
+ type: "HttpRule",
10295
+ id: 72295728,
10296
+ extend: "google.protobuf.MethodOptions"
10297
+ },
10298
+ Http: {
10299
+ fields: {
10300
+ rules: {
10301
+ rule: "repeated",
10302
+ type: "HttpRule",
10303
+ id: 1
10304
+ },
10305
+ fullyDecodeReservedExpansion: {
10306
+ type: "bool",
10307
+ id: 2
10308
+ }
10309
+ }
10310
+ },
10311
+ HttpRule: {
10312
+ oneofs: {
10313
+ pattern: {
10314
+ oneof: [
10315
+ "get",
10316
+ "put",
10317
+ "post",
10318
+ "delete",
10319
+ "patch",
10320
+ "custom"
10321
+ ]
10322
+ }
10323
+ },
10324
+ fields: {
10325
+ selector: {
10326
+ type: "string",
10327
+ id: 1
10328
+ },
10329
+ get: {
10330
+ type: "string",
10331
+ id: 2
10332
+ },
10333
+ put: {
10334
+ type: "string",
10335
+ id: 3
10336
+ },
10337
+ post: {
10338
+ type: "string",
10339
+ id: 4
10340
+ },
10341
+ "delete": {
10342
+ type: "string",
10343
+ id: 5
10344
+ },
10345
+ patch: {
10346
+ type: "string",
10347
+ id: 6
10348
+ },
10349
+ custom: {
10350
+ type: "CustomHttpPattern",
10351
+ id: 8
10352
+ },
10353
+ body: {
10354
+ type: "string",
10355
+ id: 7
10356
+ },
10357
+ responseBody: {
10358
+ type: "string",
10359
+ id: 12
10360
+ },
10361
+ additionalBindings: {
10362
+ rule: "repeated",
10363
+ type: "HttpRule",
10364
+ id: 11
10365
+ }
10366
+ }
10367
+ },
10368
+ CustomHttpPattern: {
10369
+ fields: {
10370
+ kind: {
10371
+ type: "string",
10372
+ id: 1
10373
+ },
10374
+ path: {
10375
+ type: "string",
10376
+ id: 2
10377
+ }
10378
+ }
10379
+ }
10380
+ }
10381
+ },
10342
10382
  rpc: {
10343
10383
  options: {
10344
10384
  cc_enable_arenas: true,