@temporalio/proto 1.5.2 → 1.7.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.
- package/package.json +7 -2
- package/protos/json-module.js +548 -238
- package/protos/root.d.ts +2182 -809
package/protos/json-module.js
CHANGED
|
@@ -6,6 +6,9 @@ var $protobuf = require("protobufjs/light");
|
|
|
6
6
|
var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $protobuf.Root()))
|
|
7
7
|
.addJSON({
|
|
8
8
|
coresdk: {
|
|
9
|
+
options: {
|
|
10
|
+
ruby_package: "Temporalio::Bridge::Api::CoreInterface"
|
|
11
|
+
},
|
|
9
12
|
nested: {
|
|
10
13
|
ActivityHeartbeat: {
|
|
11
14
|
fields: {
|
|
@@ -33,6 +36,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
33
36
|
}
|
|
34
37
|
},
|
|
35
38
|
activity_result: {
|
|
39
|
+
options: {
|
|
40
|
+
ruby_package: "Temporalio::Bridge::Api::ActivityResult"
|
|
41
|
+
},
|
|
36
42
|
nested: {
|
|
37
43
|
ActivityExecutionResult: {
|
|
38
44
|
oneofs: {
|
|
@@ -140,6 +146,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
140
146
|
}
|
|
141
147
|
},
|
|
142
148
|
activity_task: {
|
|
149
|
+
options: {
|
|
150
|
+
ruby_package: "Temporalio::Bridge::Api::ActivityTask"
|
|
151
|
+
},
|
|
143
152
|
nested: {
|
|
144
153
|
ActivityTask: {
|
|
145
154
|
oneofs: {
|
|
@@ -252,12 +261,16 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
252
261
|
values: {
|
|
253
262
|
NOT_FOUND: 0,
|
|
254
263
|
CANCELLED: 1,
|
|
255
|
-
TIMED_OUT: 2
|
|
264
|
+
TIMED_OUT: 2,
|
|
265
|
+
WORKER_SHUTDOWN: 3
|
|
256
266
|
}
|
|
257
267
|
}
|
|
258
268
|
}
|
|
259
269
|
},
|
|
260
270
|
common: {
|
|
271
|
+
options: {
|
|
272
|
+
ruby_package: "Temporalio::Bridge::Api::Common"
|
|
273
|
+
},
|
|
261
274
|
nested: {
|
|
262
275
|
NamespacedWorkflowExecution: {
|
|
263
276
|
fields: {
|
|
@@ -278,6 +291,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
278
291
|
}
|
|
279
292
|
},
|
|
280
293
|
external_data: {
|
|
294
|
+
options: {
|
|
295
|
+
ruby_package: "Temporalio::Bridge::Api::ExternalData"
|
|
296
|
+
},
|
|
281
297
|
nested: {
|
|
282
298
|
LocalActivityMarkerData: {
|
|
283
299
|
fields: {
|
|
@@ -310,10 +326,25 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
310
326
|
id: 7
|
|
311
327
|
}
|
|
312
328
|
}
|
|
329
|
+
},
|
|
330
|
+
PatchedMarkerData: {
|
|
331
|
+
fields: {
|
|
332
|
+
id: {
|
|
333
|
+
type: "string",
|
|
334
|
+
id: 1
|
|
335
|
+
},
|
|
336
|
+
deprecated: {
|
|
337
|
+
type: "bool",
|
|
338
|
+
id: 2
|
|
339
|
+
}
|
|
340
|
+
}
|
|
313
341
|
}
|
|
314
342
|
}
|
|
315
343
|
},
|
|
316
344
|
workflow_activation: {
|
|
345
|
+
options: {
|
|
346
|
+
ruby_package: "Temporalio::Bridge::Api::WorkflowActivation"
|
|
347
|
+
},
|
|
317
348
|
nested: {
|
|
318
349
|
WorkflowActivation: {
|
|
319
350
|
fields: {
|
|
@@ -337,6 +368,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
337
368
|
rule: "repeated",
|
|
338
369
|
type: "WorkflowActivationJob",
|
|
339
370
|
id: 5
|
|
371
|
+
},
|
|
372
|
+
availableInternalFlags: {
|
|
373
|
+
rule: "repeated",
|
|
374
|
+
type: "uint32",
|
|
375
|
+
id: 6
|
|
340
376
|
}
|
|
341
377
|
}
|
|
342
378
|
},
|
|
@@ -721,7 +757,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
721
757
|
LANG_REQUESTED: 5,
|
|
722
758
|
TASK_NOT_FOUND: 6,
|
|
723
759
|
UNHANDLED_COMMAND: 7,
|
|
724
|
-
FATAL: 8
|
|
760
|
+
FATAL: 8,
|
|
761
|
+
PAGINATION_OR_HISTORY_FETCH: 9
|
|
725
762
|
}
|
|
726
763
|
}
|
|
727
764
|
}
|
|
@@ -729,6 +766,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
729
766
|
}
|
|
730
767
|
},
|
|
731
768
|
child_workflow: {
|
|
769
|
+
options: {
|
|
770
|
+
ruby_package: "Temporalio::Bridge::Api::ChildWorkflow"
|
|
771
|
+
},
|
|
732
772
|
nested: {
|
|
733
773
|
ChildWorkflowResult: {
|
|
734
774
|
oneofs: {
|
|
@@ -804,6 +844,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
804
844
|
}
|
|
805
845
|
},
|
|
806
846
|
workflow_commands: {
|
|
847
|
+
options: {
|
|
848
|
+
ruby_package: "Temporalio::Bridge::Api::WorkflowCommands"
|
|
849
|
+
},
|
|
807
850
|
nested: {
|
|
808
851
|
WorkflowCommand: {
|
|
809
852
|
oneofs: {
|
|
@@ -1350,6 +1393,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1350
1393
|
}
|
|
1351
1394
|
},
|
|
1352
1395
|
workflow_completion: {
|
|
1396
|
+
options: {
|
|
1397
|
+
ruby_package: "Temporalio::Bridge::Api::WorkflowCompletion"
|
|
1398
|
+
},
|
|
1353
1399
|
nested: {
|
|
1354
1400
|
WorkflowActivationCompletion: {
|
|
1355
1401
|
oneofs: {
|
|
@@ -1381,6 +1427,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1381
1427
|
rule: "repeated",
|
|
1382
1428
|
type: "workflow_commands.WorkflowCommand",
|
|
1383
1429
|
id: 1
|
|
1430
|
+
},
|
|
1431
|
+
usedInternalFlags: {
|
|
1432
|
+
rule: "repeated",
|
|
1433
|
+
type: "uint32",
|
|
1434
|
+
id: 6
|
|
1384
1435
|
}
|
|
1385
1436
|
}
|
|
1386
1437
|
},
|
|
@@ -1389,6 +1440,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1389
1440
|
failure: {
|
|
1390
1441
|
type: "temporal.api.failure.v1.Failure",
|
|
1391
1442
|
id: 1
|
|
1443
|
+
},
|
|
1444
|
+
forceCause: {
|
|
1445
|
+
type: "temporal.api.enums.v1.WorkflowTaskFailedCause",
|
|
1446
|
+
id: 2
|
|
1392
1447
|
}
|
|
1393
1448
|
}
|
|
1394
1449
|
}
|
|
@@ -1408,8 +1463,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1408
1463
|
java_package: "io.temporal.api.common.v1",
|
|
1409
1464
|
java_multiple_files: true,
|
|
1410
1465
|
java_outer_classname: "MessageProto",
|
|
1411
|
-
ruby_package: "
|
|
1412
|
-
csharp_namespace: "
|
|
1466
|
+
ruby_package: "Temporalio::Api::Common::V1",
|
|
1467
|
+
csharp_namespace: "Temporalio.Api.Common.V1"
|
|
1413
1468
|
},
|
|
1414
1469
|
nested: {
|
|
1415
1470
|
DataBlob: {
|
|
@@ -1531,6 +1586,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1531
1586
|
id: 5
|
|
1532
1587
|
}
|
|
1533
1588
|
}
|
|
1589
|
+
},
|
|
1590
|
+
MeteringMetadata: {
|
|
1591
|
+
fields: {
|
|
1592
|
+
nonfirstLocalActivityExecutionAttempts: {
|
|
1593
|
+
type: "uint32",
|
|
1594
|
+
id: 13
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1534
1597
|
}
|
|
1535
1598
|
}
|
|
1536
1599
|
}
|
|
@@ -1544,8 +1607,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1544
1607
|
java_package: "io.temporal.api.enums.v1",
|
|
1545
1608
|
java_multiple_files: true,
|
|
1546
1609
|
java_outer_classname: "ScheduleProto",
|
|
1547
|
-
ruby_package: "
|
|
1548
|
-
csharp_namespace: "
|
|
1610
|
+
ruby_package: "Temporalio::Api::Enums::V1",
|
|
1611
|
+
csharp_namespace: "Temporalio.Api.Enums.V1"
|
|
1549
1612
|
},
|
|
1550
1613
|
nested: {
|
|
1551
1614
|
EncodingType: {
|
|
@@ -1563,7 +1626,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1563
1626
|
INDEXED_VALUE_TYPE_INT: 3,
|
|
1564
1627
|
INDEXED_VALUE_TYPE_DOUBLE: 4,
|
|
1565
1628
|
INDEXED_VALUE_TYPE_BOOL: 5,
|
|
1566
|
-
INDEXED_VALUE_TYPE_DATETIME: 6
|
|
1629
|
+
INDEXED_VALUE_TYPE_DATETIME: 6,
|
|
1630
|
+
INDEXED_VALUE_TYPE_KEYWORD_LIST: 7
|
|
1567
1631
|
}
|
|
1568
1632
|
},
|
|
1569
1633
|
Severity: {
|
|
@@ -1654,44 +1718,6 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1654
1718
|
TIMEOUT_TYPE_HEARTBEAT: 4
|
|
1655
1719
|
}
|
|
1656
1720
|
},
|
|
1657
|
-
BatchOperationType: {
|
|
1658
|
-
values: {
|
|
1659
|
-
BATCH_OPERATION_TYPE_UNSPECIFIED: 0,
|
|
1660
|
-
BATCH_OPERATION_TYPE_TERMINATE: 1,
|
|
1661
|
-
BATCH_OPERATION_TYPE_CANCEL: 2,
|
|
1662
|
-
BATCH_OPERATION_TYPE_SIGNAL: 3
|
|
1663
|
-
}
|
|
1664
|
-
},
|
|
1665
|
-
BatchOperationState: {
|
|
1666
|
-
values: {
|
|
1667
|
-
BATCH_OPERATION_STATE_UNSPECIFIED: 0,
|
|
1668
|
-
BATCH_OPERATION_STATE_RUNNING: 1,
|
|
1669
|
-
BATCH_OPERATION_STATE_COMPLETED: 2,
|
|
1670
|
-
BATCH_OPERATION_STATE_FAILED: 3
|
|
1671
|
-
}
|
|
1672
|
-
},
|
|
1673
|
-
NamespaceState: {
|
|
1674
|
-
values: {
|
|
1675
|
-
NAMESPACE_STATE_UNSPECIFIED: 0,
|
|
1676
|
-
NAMESPACE_STATE_REGISTERED: 1,
|
|
1677
|
-
NAMESPACE_STATE_DEPRECATED: 2,
|
|
1678
|
-
NAMESPACE_STATE_DELETED: 3
|
|
1679
|
-
}
|
|
1680
|
-
},
|
|
1681
|
-
ArchivalState: {
|
|
1682
|
-
values: {
|
|
1683
|
-
ARCHIVAL_STATE_UNSPECIFIED: 0,
|
|
1684
|
-
ARCHIVAL_STATE_DISABLED: 1,
|
|
1685
|
-
ARCHIVAL_STATE_ENABLED: 2
|
|
1686
|
-
}
|
|
1687
|
-
},
|
|
1688
|
-
ReplicationState: {
|
|
1689
|
-
values: {
|
|
1690
|
-
REPLICATION_STATE_UNSPECIFIED: 0,
|
|
1691
|
-
REPLICATION_STATE_NORMAL: 1,
|
|
1692
|
-
REPLICATION_STATE_HANDOVER: 2
|
|
1693
|
-
}
|
|
1694
|
-
},
|
|
1695
1721
|
WorkflowTaskFailedCause: {
|
|
1696
1722
|
values: {
|
|
1697
1723
|
WORKFLOW_TASK_FAILED_CAUSE_UNSPECIFIED: 0,
|
|
@@ -1719,7 +1745,13 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1719
1745
|
WORKFLOW_TASK_FAILED_CAUSE_SCHEDULE_ACTIVITY_DUPLICATE_ID: 22,
|
|
1720
1746
|
WORKFLOW_TASK_FAILED_CAUSE_BAD_SEARCH_ATTRIBUTES: 23,
|
|
1721
1747
|
WORKFLOW_TASK_FAILED_CAUSE_NON_DETERMINISTIC_ERROR: 24,
|
|
1722
|
-
WORKFLOW_TASK_FAILED_CAUSE_BAD_MODIFY_WORKFLOW_PROPERTIES_ATTRIBUTES: 25
|
|
1748
|
+
WORKFLOW_TASK_FAILED_CAUSE_BAD_MODIFY_WORKFLOW_PROPERTIES_ATTRIBUTES: 25,
|
|
1749
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_CHILD_WORKFLOWS_LIMIT_EXCEEDED: 26,
|
|
1750
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_ACTIVITIES_LIMIT_EXCEEDED: 27,
|
|
1751
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_SIGNALS_LIMIT_EXCEEDED: 28,
|
|
1752
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_REQUEST_CANCEL_LIMIT_EXCEEDED: 29,
|
|
1753
|
+
WORKFLOW_TASK_FAILED_CAUSE_BAD_UPDATE_WORKFLOW_EXECUTION_MESSAGE: 30,
|
|
1754
|
+
WORKFLOW_TASK_FAILED_CAUSE_UNHANDLED_UPDATE: 31
|
|
1723
1755
|
}
|
|
1724
1756
|
},
|
|
1725
1757
|
StartChildWorkflowExecutionFailedCause: {
|
|
@@ -1752,6 +1784,45 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1752
1784
|
RESOURCE_EXHAUSTED_CAUSE_PERSISTENCE_LIMIT: 4
|
|
1753
1785
|
}
|
|
1754
1786
|
},
|
|
1787
|
+
BatchOperationType: {
|
|
1788
|
+
values: {
|
|
1789
|
+
BATCH_OPERATION_TYPE_UNSPECIFIED: 0,
|
|
1790
|
+
BATCH_OPERATION_TYPE_TERMINATE: 1,
|
|
1791
|
+
BATCH_OPERATION_TYPE_CANCEL: 2,
|
|
1792
|
+
BATCH_OPERATION_TYPE_SIGNAL: 3,
|
|
1793
|
+
BATCH_OPERATION_TYPE_DELETE: 4
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
BatchOperationState: {
|
|
1797
|
+
values: {
|
|
1798
|
+
BATCH_OPERATION_STATE_UNSPECIFIED: 0,
|
|
1799
|
+
BATCH_OPERATION_STATE_RUNNING: 1,
|
|
1800
|
+
BATCH_OPERATION_STATE_COMPLETED: 2,
|
|
1801
|
+
BATCH_OPERATION_STATE_FAILED: 3
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
NamespaceState: {
|
|
1805
|
+
values: {
|
|
1806
|
+
NAMESPACE_STATE_UNSPECIFIED: 0,
|
|
1807
|
+
NAMESPACE_STATE_REGISTERED: 1,
|
|
1808
|
+
NAMESPACE_STATE_DEPRECATED: 2,
|
|
1809
|
+
NAMESPACE_STATE_DELETED: 3
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
ArchivalState: {
|
|
1813
|
+
values: {
|
|
1814
|
+
ARCHIVAL_STATE_UNSPECIFIED: 0,
|
|
1815
|
+
ARCHIVAL_STATE_DISABLED: 1,
|
|
1816
|
+
ARCHIVAL_STATE_ENABLED: 2
|
|
1817
|
+
}
|
|
1818
|
+
},
|
|
1819
|
+
ReplicationState: {
|
|
1820
|
+
values: {
|
|
1821
|
+
REPLICATION_STATE_UNSPECIFIED: 0,
|
|
1822
|
+
REPLICATION_STATE_NORMAL: 1,
|
|
1823
|
+
REPLICATION_STATE_HANDOVER: 2
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1755
1826
|
QueryResultType: {
|
|
1756
1827
|
values: {
|
|
1757
1828
|
QUERY_RESULT_TYPE_UNSPECIFIED: 0,
|
|
@@ -1788,18 +1859,6 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1788
1859
|
TASK_QUEUE_TYPE_ACTIVITY: 2
|
|
1789
1860
|
}
|
|
1790
1861
|
},
|
|
1791
|
-
WorkflowUpdateResultAccessStyle: {
|
|
1792
|
-
values: {
|
|
1793
|
-
WORKFLOW_UPDATE_RESULT_ACCESS_STYLE_UNSPECIFIED: 0,
|
|
1794
|
-
WORKFLOW_UPDATE_RESULT_ACCESS_STYLE_REQUIRE_INLINE: 1
|
|
1795
|
-
}
|
|
1796
|
-
},
|
|
1797
|
-
WorkflowUpdateDurabilityPreference: {
|
|
1798
|
-
values: {
|
|
1799
|
-
WORKFLOW_UPDATE_DURABILITY_PREFERENCE_UNSPECIFIED: 0,
|
|
1800
|
-
WORKFLOW_UPDATE_DURABILITY_PREFERENCE_BYPASS: 1
|
|
1801
|
-
}
|
|
1802
|
-
},
|
|
1803
1862
|
EventType: {
|
|
1804
1863
|
values: {
|
|
1805
1864
|
EVENT_TYPE_UNSPECIFIED: 0,
|
|
@@ -1843,14 +1902,22 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1843
1902
|
EVENT_TYPE_SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED: 38,
|
|
1844
1903
|
EVENT_TYPE_EXTERNAL_WORKFLOW_EXECUTION_SIGNALED: 39,
|
|
1845
1904
|
EVENT_TYPE_UPSERT_WORKFLOW_SEARCH_ATTRIBUTES: 40,
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1905
|
+
EVENT_TYPE_WORKFLOW_EXECUTION_UPDATE_ACCEPTED: 41,
|
|
1906
|
+
EVENT_TYPE_WORKFLOW_EXECUTION_UPDATE_REJECTED: 42,
|
|
1907
|
+
EVENT_TYPE_WORKFLOW_EXECUTION_UPDATE_COMPLETED: 43,
|
|
1849
1908
|
EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED_EXTERNALLY: 44,
|
|
1850
1909
|
EVENT_TYPE_ACTIVITY_PROPERTIES_MODIFIED_EXTERNALLY: 45,
|
|
1851
1910
|
EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED: 46
|
|
1852
1911
|
}
|
|
1853
1912
|
},
|
|
1913
|
+
UpdateWorkflowExecutionLifecycleStage: {
|
|
1914
|
+
values: {
|
|
1915
|
+
UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_UNSPECIFIED: 0,
|
|
1916
|
+
UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ADMITTED: 1,
|
|
1917
|
+
UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_ACCEPTED: 2,
|
|
1918
|
+
UPDATE_WORKFLOW_EXECUTION_LIFECYCLE_STAGE_COMPLETED: 3
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1854
1921
|
CommandType: {
|
|
1855
1922
|
values: {
|
|
1856
1923
|
COMMAND_TYPE_UNSPECIFIED: 0,
|
|
@@ -1867,8 +1934,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1867
1934
|
COMMAND_TYPE_START_CHILD_WORKFLOW_EXECUTION: 11,
|
|
1868
1935
|
COMMAND_TYPE_SIGNAL_EXTERNAL_WORKFLOW_EXECUTION: 12,
|
|
1869
1936
|
COMMAND_TYPE_UPSERT_WORKFLOW_SEARCH_ATTRIBUTES: 13,
|
|
1870
|
-
|
|
1871
|
-
COMMAND_TYPE_COMPLETE_WORKFLOW_UPDATE: 15,
|
|
1937
|
+
COMMAND_TYPE_PROTOCOL_MESSAGE: 14,
|
|
1872
1938
|
COMMAND_TYPE_MODIFY_WORKFLOW_PROPERTIES: 16
|
|
1873
1939
|
}
|
|
1874
1940
|
},
|
|
@@ -1895,8 +1961,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
1895
1961
|
java_package: "io.temporal.api.failure.v1",
|
|
1896
1962
|
java_multiple_files: true,
|
|
1897
1963
|
java_outer_classname: "MessageProto",
|
|
1898
|
-
ruby_package: "
|
|
1899
|
-
csharp_namespace: "
|
|
1964
|
+
ruby_package: "Temporalio::Api::Failure::V1",
|
|
1965
|
+
csharp_namespace: "Temporalio.Api.Failure.V1"
|
|
1900
1966
|
},
|
|
1901
1967
|
nested: {
|
|
1902
1968
|
ApplicationFailureInfo: {
|
|
@@ -2092,8 +2158,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2092
2158
|
java_package: "io.temporal.api.workflowservice.v1",
|
|
2093
2159
|
java_multiple_files: true,
|
|
2094
2160
|
java_outer_classname: "RequestResponseProto",
|
|
2095
|
-
ruby_package: "
|
|
2096
|
-
csharp_namespace: "
|
|
2161
|
+
ruby_package: "Temporalio::Api::WorkflowService::V1",
|
|
2162
|
+
csharp_namespace: "Temporalio.Api.WorkflowService.V1"
|
|
2097
2163
|
},
|
|
2098
2164
|
nested: {
|
|
2099
2165
|
WorkflowService: {
|
|
@@ -2298,9 +2364,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2298
2364
|
requestType: "GetWorkerBuildIdOrderingRequest",
|
|
2299
2365
|
responseType: "GetWorkerBuildIdOrderingResponse"
|
|
2300
2366
|
},
|
|
2301
|
-
|
|
2302
|
-
requestType: "
|
|
2303
|
-
responseType: "
|
|
2367
|
+
UpdateWorkflowExecution: {
|
|
2368
|
+
requestType: "UpdateWorkflowExecutionRequest",
|
|
2369
|
+
responseType: "UpdateWorkflowExecutionResponse"
|
|
2304
2370
|
},
|
|
2305
2371
|
StartBatchOperation: {
|
|
2306
2372
|
requestType: "StartBatchOperationRequest",
|
|
@@ -2599,6 +2665,18 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2599
2665
|
header: {
|
|
2600
2666
|
type: "temporal.api.common.v1.Header",
|
|
2601
2667
|
id: 16
|
|
2668
|
+
},
|
|
2669
|
+
requestEagerExecution: {
|
|
2670
|
+
type: "bool",
|
|
2671
|
+
id: 17
|
|
2672
|
+
},
|
|
2673
|
+
continuedFailure: {
|
|
2674
|
+
type: "temporal.api.failure.v1.Failure",
|
|
2675
|
+
id: 18
|
|
2676
|
+
},
|
|
2677
|
+
lastCompletionResult: {
|
|
2678
|
+
type: "temporal.api.common.v1.Payloads",
|
|
2679
|
+
id: 19
|
|
2602
2680
|
}
|
|
2603
2681
|
}
|
|
2604
2682
|
},
|
|
@@ -2607,6 +2685,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2607
2685
|
runId: {
|
|
2608
2686
|
type: "string",
|
|
2609
2687
|
id: 1
|
|
2688
|
+
},
|
|
2689
|
+
eagerWorkflowTask: {
|
|
2690
|
+
type: "PollWorkflowTaskQueueResponse",
|
|
2691
|
+
id: 2
|
|
2610
2692
|
}
|
|
2611
2693
|
}
|
|
2612
2694
|
},
|
|
@@ -2783,6 +2865,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2783
2865
|
keyType: "string",
|
|
2784
2866
|
type: "temporal.api.query.v1.WorkflowQuery",
|
|
2785
2867
|
id: 14
|
|
2868
|
+
},
|
|
2869
|
+
messages: {
|
|
2870
|
+
rule: "repeated",
|
|
2871
|
+
type: "temporal.api.protocol.v1.Message",
|
|
2872
|
+
id: 15
|
|
2786
2873
|
}
|
|
2787
2874
|
}
|
|
2788
2875
|
},
|
|
@@ -2829,6 +2916,19 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2829
2916
|
workerVersioningId: {
|
|
2830
2917
|
type: "temporal.api.taskqueue.v1.VersionId",
|
|
2831
2918
|
id: 10
|
|
2919
|
+
},
|
|
2920
|
+
messages: {
|
|
2921
|
+
rule: "repeated",
|
|
2922
|
+
type: "temporal.api.protocol.v1.Message",
|
|
2923
|
+
id: 11
|
|
2924
|
+
},
|
|
2925
|
+
sdkMetadata: {
|
|
2926
|
+
type: "temporal.api.sdk.v1.WorkflowTaskCompletedMetadata",
|
|
2927
|
+
id: 12
|
|
2928
|
+
},
|
|
2929
|
+
meteringMetadata: {
|
|
2930
|
+
type: "temporal.api.common.v1.MeteringMetadata",
|
|
2931
|
+
id: 13
|
|
2832
2932
|
}
|
|
2833
2933
|
}
|
|
2834
2934
|
},
|
|
@@ -2842,6 +2942,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2842
2942
|
rule: "repeated",
|
|
2843
2943
|
type: "PollActivityTaskQueueResponse",
|
|
2844
2944
|
id: 2
|
|
2945
|
+
},
|
|
2946
|
+
resetHistoryEventId: {
|
|
2947
|
+
type: "int64",
|
|
2948
|
+
id: 3
|
|
2845
2949
|
}
|
|
2846
2950
|
}
|
|
2847
2951
|
},
|
|
@@ -2870,6 +2974,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
2870
2974
|
namespace: {
|
|
2871
2975
|
type: "string",
|
|
2872
2976
|
id: 6
|
|
2977
|
+
},
|
|
2978
|
+
messages: {
|
|
2979
|
+
rule: "repeated",
|
|
2980
|
+
type: "temporal.api.protocol.v1.Message",
|
|
2981
|
+
id: 7
|
|
2873
2982
|
}
|
|
2874
2983
|
}
|
|
2875
2984
|
},
|
|
@@ -3954,6 +4063,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
3954
4063
|
upsertMemo: {
|
|
3955
4064
|
type: "bool",
|
|
3956
4065
|
id: 7
|
|
4066
|
+
},
|
|
4067
|
+
eagerWorkflowStart: {
|
|
4068
|
+
type: "bool",
|
|
4069
|
+
id: 8
|
|
4070
|
+
},
|
|
4071
|
+
sdkMetadata: {
|
|
4072
|
+
type: "bool",
|
|
4073
|
+
id: 9
|
|
3957
4074
|
}
|
|
3958
4075
|
}
|
|
3959
4076
|
}
|
|
@@ -4265,55 +4382,39 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4265
4382
|
}
|
|
4266
4383
|
}
|
|
4267
4384
|
},
|
|
4268
|
-
|
|
4385
|
+
UpdateWorkflowExecutionRequest: {
|
|
4269
4386
|
fields: {
|
|
4270
|
-
|
|
4387
|
+
namespace: {
|
|
4271
4388
|
type: "string",
|
|
4272
4389
|
id: 1
|
|
4273
4390
|
},
|
|
4274
|
-
|
|
4275
|
-
type: "temporal.api.
|
|
4391
|
+
workflowExecution: {
|
|
4392
|
+
type: "temporal.api.common.v1.WorkflowExecution",
|
|
4276
4393
|
id: 2
|
|
4277
4394
|
},
|
|
4278
|
-
|
|
4395
|
+
firstExecutionRunId: {
|
|
4279
4396
|
type: "string",
|
|
4280
4397
|
id: 3
|
|
4281
4398
|
},
|
|
4282
|
-
|
|
4283
|
-
type: "temporal.api.
|
|
4399
|
+
waitPolicy: {
|
|
4400
|
+
type: "temporal.api.update.v1.WaitPolicy",
|
|
4284
4401
|
id: 4
|
|
4285
4402
|
},
|
|
4286
|
-
|
|
4287
|
-
type: "
|
|
4403
|
+
request: {
|
|
4404
|
+
type: "temporal.api.update.v1.Request",
|
|
4288
4405
|
id: 5
|
|
4289
|
-
},
|
|
4290
|
-
update: {
|
|
4291
|
-
type: "temporal.api.update.v1.WorkflowUpdate",
|
|
4292
|
-
id: 6
|
|
4293
4406
|
}
|
|
4294
4407
|
}
|
|
4295
4408
|
},
|
|
4296
|
-
|
|
4297
|
-
oneofs: {
|
|
4298
|
-
result: {
|
|
4299
|
-
oneof: [
|
|
4300
|
-
"success",
|
|
4301
|
-
"failure"
|
|
4302
|
-
]
|
|
4303
|
-
}
|
|
4304
|
-
},
|
|
4409
|
+
UpdateWorkflowExecutionResponse: {
|
|
4305
4410
|
fields: {
|
|
4306
|
-
|
|
4307
|
-
type: "
|
|
4411
|
+
updateRef: {
|
|
4412
|
+
type: "temporal.api.update.v1.UpdateRef",
|
|
4308
4413
|
id: 1
|
|
4309
4414
|
},
|
|
4310
|
-
|
|
4311
|
-
type: "temporal.api.
|
|
4415
|
+
outcome: {
|
|
4416
|
+
type: "temporal.api.update.v1.Outcome",
|
|
4312
4417
|
id: 2
|
|
4313
|
-
},
|
|
4314
|
-
failure: {
|
|
4315
|
-
type: "temporal.api.failure.v1.Failure",
|
|
4316
|
-
id: 3
|
|
4317
4418
|
}
|
|
4318
4419
|
}
|
|
4319
4420
|
},
|
|
@@ -4323,7 +4424,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4323
4424
|
oneof: [
|
|
4324
4425
|
"terminationOperation",
|
|
4325
4426
|
"signalOperation",
|
|
4326
|
-
"cancellationOperation"
|
|
4427
|
+
"cancellationOperation",
|
|
4428
|
+
"deletionOperation"
|
|
4327
4429
|
]
|
|
4328
4430
|
}
|
|
4329
4431
|
},
|
|
@@ -4344,6 +4446,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4344
4446
|
type: "string",
|
|
4345
4447
|
id: 4
|
|
4346
4448
|
},
|
|
4449
|
+
executions: {
|
|
4450
|
+
rule: "repeated",
|
|
4451
|
+
type: "temporal.api.common.v1.WorkflowExecution",
|
|
4452
|
+
id: 5
|
|
4453
|
+
},
|
|
4347
4454
|
terminationOperation: {
|
|
4348
4455
|
type: "temporal.api.batch.v1.BatchOperationTermination",
|
|
4349
4456
|
id: 10
|
|
@@ -4355,6 +4462,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4355
4462
|
cancellationOperation: {
|
|
4356
4463
|
type: "temporal.api.batch.v1.BatchOperationCancellation",
|
|
4357
4464
|
id: 12
|
|
4465
|
+
},
|
|
4466
|
+
deletionOperation: {
|
|
4467
|
+
type: "temporal.api.batch.v1.BatchOperationDeletion",
|
|
4468
|
+
id: 13
|
|
4358
4469
|
}
|
|
4359
4470
|
}
|
|
4360
4471
|
},
|
|
@@ -4487,8 +4598,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4487
4598
|
java_package: "io.temporal.api.history.v1",
|
|
4488
4599
|
java_multiple_files: true,
|
|
4489
4600
|
java_outer_classname: "MessageProto",
|
|
4490
|
-
ruby_package: "
|
|
4491
|
-
csharp_namespace: "
|
|
4601
|
+
ruby_package: "Temporalio::Api::History::V1",
|
|
4602
|
+
csharp_namespace: "Temporalio.Api.History.V1"
|
|
4492
4603
|
},
|
|
4493
4604
|
nested: {
|
|
4494
4605
|
WorkflowExecutionStartedEventAttributes: {
|
|
@@ -4799,6 +4910,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
4799
4910
|
workerVersioningId: {
|
|
4800
4911
|
type: "temporal.api.taskqueue.v1.VersionId",
|
|
4801
4912
|
id: 5
|
|
4913
|
+
},
|
|
4914
|
+
sdkMetadata: {
|
|
4915
|
+
type: "temporal.api.sdk.v1.WorkflowTaskCompletedMetadata",
|
|
4916
|
+
id: 6
|
|
4917
|
+
},
|
|
4918
|
+
meteringMetadata: {
|
|
4919
|
+
type: "temporal.api.common.v1.MeteringMetadata",
|
|
4920
|
+
id: 13
|
|
4802
4921
|
}
|
|
4803
4922
|
}
|
|
4804
4923
|
},
|
|
@@ -5705,66 +5824,6 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
5705
5824
|
}
|
|
5706
5825
|
}
|
|
5707
5826
|
},
|
|
5708
|
-
WorkflowUpdateRequestedEventAttributes: {
|
|
5709
|
-
fields: {
|
|
5710
|
-
header: {
|
|
5711
|
-
type: "temporal.api.common.v1.Header",
|
|
5712
|
-
id: 1
|
|
5713
|
-
},
|
|
5714
|
-
requestId: {
|
|
5715
|
-
type: "string",
|
|
5716
|
-
id: 2
|
|
5717
|
-
},
|
|
5718
|
-
updateId: {
|
|
5719
|
-
type: "string",
|
|
5720
|
-
id: 3
|
|
5721
|
-
},
|
|
5722
|
-
update: {
|
|
5723
|
-
type: "temporal.api.update.v1.WorkflowUpdate",
|
|
5724
|
-
id: 4
|
|
5725
|
-
}
|
|
5726
|
-
}
|
|
5727
|
-
},
|
|
5728
|
-
WorkflowUpdateAcceptedEventAttributes: {
|
|
5729
|
-
fields: {
|
|
5730
|
-
header: {
|
|
5731
|
-
type: "temporal.api.common.v1.Header",
|
|
5732
|
-
id: 1
|
|
5733
|
-
},
|
|
5734
|
-
updateId: {
|
|
5735
|
-
type: "string",
|
|
5736
|
-
id: 2
|
|
5737
|
-
}
|
|
5738
|
-
}
|
|
5739
|
-
},
|
|
5740
|
-
WorkflowUpdateCompletedEventAttributes: {
|
|
5741
|
-
oneofs: {
|
|
5742
|
-
result: {
|
|
5743
|
-
oneof: [
|
|
5744
|
-
"success",
|
|
5745
|
-
"failure"
|
|
5746
|
-
]
|
|
5747
|
-
}
|
|
5748
|
-
},
|
|
5749
|
-
fields: {
|
|
5750
|
-
systemHeader: {
|
|
5751
|
-
type: "temporal.api.common.v1.Header",
|
|
5752
|
-
id: 1
|
|
5753
|
-
},
|
|
5754
|
-
updateId: {
|
|
5755
|
-
type: "string",
|
|
5756
|
-
id: 3
|
|
5757
|
-
},
|
|
5758
|
-
success: {
|
|
5759
|
-
type: "temporal.api.common.v1.Payloads",
|
|
5760
|
-
id: 4
|
|
5761
|
-
},
|
|
5762
|
-
failure: {
|
|
5763
|
-
type: "temporal.api.failure.v1.Failure",
|
|
5764
|
-
id: 5
|
|
5765
|
-
}
|
|
5766
|
-
}
|
|
5767
|
-
},
|
|
5768
5827
|
WorkflowPropertiesModifiedExternallyEventAttributes: {
|
|
5769
5828
|
fields: {
|
|
5770
5829
|
newTaskQueue: {
|
|
@@ -5810,6 +5869,62 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
5810
5869
|
}
|
|
5811
5870
|
}
|
|
5812
5871
|
},
|
|
5872
|
+
WorkflowExecutionUpdateAcceptedEventAttributes: {
|
|
5873
|
+
fields: {
|
|
5874
|
+
protocolInstanceId: {
|
|
5875
|
+
type: "string",
|
|
5876
|
+
id: 1
|
|
5877
|
+
},
|
|
5878
|
+
acceptedRequestMessageId: {
|
|
5879
|
+
type: "string",
|
|
5880
|
+
id: 2
|
|
5881
|
+
},
|
|
5882
|
+
acceptedRequestSequencingEventId: {
|
|
5883
|
+
type: "int64",
|
|
5884
|
+
id: 3
|
|
5885
|
+
},
|
|
5886
|
+
acceptedRequest: {
|
|
5887
|
+
type: "temporal.api.update.v1.Request",
|
|
5888
|
+
id: 4
|
|
5889
|
+
}
|
|
5890
|
+
}
|
|
5891
|
+
},
|
|
5892
|
+
WorkflowExecutionUpdateCompletedEventAttributes: {
|
|
5893
|
+
fields: {
|
|
5894
|
+
meta: {
|
|
5895
|
+
type: "temporal.api.update.v1.Meta",
|
|
5896
|
+
id: 1
|
|
5897
|
+
},
|
|
5898
|
+
outcome: {
|
|
5899
|
+
type: "temporal.api.update.v1.Outcome",
|
|
5900
|
+
id: 2
|
|
5901
|
+
}
|
|
5902
|
+
}
|
|
5903
|
+
},
|
|
5904
|
+
WorkflowExecutionUpdateRejectedEventAttributes: {
|
|
5905
|
+
fields: {
|
|
5906
|
+
protocolInstanceId: {
|
|
5907
|
+
type: "string",
|
|
5908
|
+
id: 1
|
|
5909
|
+
},
|
|
5910
|
+
rejectedRequestMessageId: {
|
|
5911
|
+
type: "string",
|
|
5912
|
+
id: 2
|
|
5913
|
+
},
|
|
5914
|
+
rejectedRequestSequencingEventId: {
|
|
5915
|
+
type: "int64",
|
|
5916
|
+
id: 3
|
|
5917
|
+
},
|
|
5918
|
+
rejectedRequest: {
|
|
5919
|
+
type: "temporal.api.update.v1.Request",
|
|
5920
|
+
id: 4
|
|
5921
|
+
},
|
|
5922
|
+
failure: {
|
|
5923
|
+
type: "temporal.api.failure.v1.Failure",
|
|
5924
|
+
id: 5
|
|
5925
|
+
}
|
|
5926
|
+
}
|
|
5927
|
+
},
|
|
5813
5928
|
HistoryEvent: {
|
|
5814
5929
|
oneofs: {
|
|
5815
5930
|
attributes: {
|
|
@@ -5854,9 +5969,9 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
5854
5969
|
"signalExternalWorkflowExecutionFailedEventAttributes",
|
|
5855
5970
|
"externalWorkflowExecutionSignaledEventAttributes",
|
|
5856
5971
|
"upsertWorkflowSearchAttributesEventAttributes",
|
|
5857
|
-
"
|
|
5858
|
-
"
|
|
5859
|
-
"
|
|
5972
|
+
"workflowExecutionUpdateAcceptedEventAttributes",
|
|
5973
|
+
"workflowExecutionUpdateRejectedEventAttributes",
|
|
5974
|
+
"workflowExecutionUpdateCompletedEventAttributes",
|
|
5860
5975
|
"workflowPropertiesModifiedExternallyEventAttributes",
|
|
5861
5976
|
"activityPropertiesModifiedExternallyEventAttributes",
|
|
5862
5977
|
"workflowPropertiesModifiedEventAttributes"
|
|
@@ -6051,16 +6166,16 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6051
6166
|
type: "UpsertWorkflowSearchAttributesEventAttributes",
|
|
6052
6167
|
id: 45
|
|
6053
6168
|
},
|
|
6054
|
-
|
|
6055
|
-
type: "
|
|
6169
|
+
workflowExecutionUpdateAcceptedEventAttributes: {
|
|
6170
|
+
type: "WorkflowExecutionUpdateAcceptedEventAttributes",
|
|
6056
6171
|
id: 46
|
|
6057
6172
|
},
|
|
6058
|
-
|
|
6059
|
-
type: "
|
|
6173
|
+
workflowExecutionUpdateRejectedEventAttributes: {
|
|
6174
|
+
type: "WorkflowExecutionUpdateRejectedEventAttributes",
|
|
6060
6175
|
id: 47
|
|
6061
6176
|
},
|
|
6062
|
-
|
|
6063
|
-
type: "
|
|
6177
|
+
workflowExecutionUpdateCompletedEventAttributes: {
|
|
6178
|
+
type: "WorkflowExecutionUpdateCompletedEventAttributes",
|
|
6064
6179
|
id: 48
|
|
6065
6180
|
},
|
|
6066
6181
|
workflowPropertiesModifiedExternallyEventAttributes: {
|
|
@@ -6098,8 +6213,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6098
6213
|
java_package: "io.temporal.api.taskqueue.v1",
|
|
6099
6214
|
java_multiple_files: true,
|
|
6100
6215
|
java_outer_classname: "MessageProto",
|
|
6101
|
-
ruby_package: "
|
|
6102
|
-
csharp_namespace: "
|
|
6216
|
+
ruby_package: "Temporalio::Api::TaskQueue::V1",
|
|
6217
|
+
csharp_namespace: "Temporalio.Api.TaskQueue.V1"
|
|
6103
6218
|
},
|
|
6104
6219
|
nested: {
|
|
6105
6220
|
TaskQueue: {
|
|
@@ -6244,11 +6359,63 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6244
6359
|
java_package: "io.temporal.api.update.v1",
|
|
6245
6360
|
java_multiple_files: true,
|
|
6246
6361
|
java_outer_classname: "MessageProto",
|
|
6247
|
-
ruby_package: "
|
|
6248
|
-
csharp_namespace: "
|
|
6362
|
+
ruby_package: "Temporalio::Api::Update::V1",
|
|
6363
|
+
csharp_namespace: "Temporalio.Api.Update.V1"
|
|
6249
6364
|
},
|
|
6250
6365
|
nested: {
|
|
6251
|
-
|
|
6366
|
+
WaitPolicy: {
|
|
6367
|
+
fields: {
|
|
6368
|
+
lifecycleStage: {
|
|
6369
|
+
type: "temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage",
|
|
6370
|
+
id: 1
|
|
6371
|
+
}
|
|
6372
|
+
}
|
|
6373
|
+
},
|
|
6374
|
+
UpdateRef: {
|
|
6375
|
+
fields: {
|
|
6376
|
+
workflowExecution: {
|
|
6377
|
+
type: "temporal.api.common.v1.WorkflowExecution",
|
|
6378
|
+
id: 1
|
|
6379
|
+
},
|
|
6380
|
+
updateId: {
|
|
6381
|
+
type: "string",
|
|
6382
|
+
id: 2
|
|
6383
|
+
}
|
|
6384
|
+
}
|
|
6385
|
+
},
|
|
6386
|
+
Outcome: {
|
|
6387
|
+
oneofs: {
|
|
6388
|
+
value: {
|
|
6389
|
+
oneof: [
|
|
6390
|
+
"success",
|
|
6391
|
+
"failure"
|
|
6392
|
+
]
|
|
6393
|
+
}
|
|
6394
|
+
},
|
|
6395
|
+
fields: {
|
|
6396
|
+
success: {
|
|
6397
|
+
type: "temporal.api.common.v1.Payloads",
|
|
6398
|
+
id: 1
|
|
6399
|
+
},
|
|
6400
|
+
failure: {
|
|
6401
|
+
type: "temporal.api.failure.v1.Failure",
|
|
6402
|
+
id: 2
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6405
|
+
},
|
|
6406
|
+
Meta: {
|
|
6407
|
+
fields: {
|
|
6408
|
+
updateId: {
|
|
6409
|
+
type: "string",
|
|
6410
|
+
id: 1
|
|
6411
|
+
},
|
|
6412
|
+
identity: {
|
|
6413
|
+
type: "string",
|
|
6414
|
+
id: 2
|
|
6415
|
+
}
|
|
6416
|
+
}
|
|
6417
|
+
},
|
|
6418
|
+
Input: {
|
|
6252
6419
|
fields: {
|
|
6253
6420
|
header: {
|
|
6254
6421
|
type: "temporal.api.common.v1.Header",
|
|
@@ -6263,6 +6430,66 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6263
6430
|
id: 3
|
|
6264
6431
|
}
|
|
6265
6432
|
}
|
|
6433
|
+
},
|
|
6434
|
+
Request: {
|
|
6435
|
+
fields: {
|
|
6436
|
+
meta: {
|
|
6437
|
+
type: "Meta",
|
|
6438
|
+
id: 1
|
|
6439
|
+
},
|
|
6440
|
+
input: {
|
|
6441
|
+
type: "Input",
|
|
6442
|
+
id: 2
|
|
6443
|
+
}
|
|
6444
|
+
}
|
|
6445
|
+
},
|
|
6446
|
+
Rejection: {
|
|
6447
|
+
fields: {
|
|
6448
|
+
rejectedRequestMessageId: {
|
|
6449
|
+
type: "string",
|
|
6450
|
+
id: 1
|
|
6451
|
+
},
|
|
6452
|
+
rejectedRequestSequencingEventId: {
|
|
6453
|
+
type: "int64",
|
|
6454
|
+
id: 2
|
|
6455
|
+
},
|
|
6456
|
+
rejectedRequest: {
|
|
6457
|
+
type: "Request",
|
|
6458
|
+
id: 3
|
|
6459
|
+
},
|
|
6460
|
+
failure: {
|
|
6461
|
+
type: "temporal.api.failure.v1.Failure",
|
|
6462
|
+
id: 4
|
|
6463
|
+
}
|
|
6464
|
+
}
|
|
6465
|
+
},
|
|
6466
|
+
Acceptance: {
|
|
6467
|
+
fields: {
|
|
6468
|
+
acceptedRequestMessageId: {
|
|
6469
|
+
type: "string",
|
|
6470
|
+
id: 1
|
|
6471
|
+
},
|
|
6472
|
+
acceptedRequestSequencingEventId: {
|
|
6473
|
+
type: "int64",
|
|
6474
|
+
id: 2
|
|
6475
|
+
},
|
|
6476
|
+
acceptedRequest: {
|
|
6477
|
+
type: "Request",
|
|
6478
|
+
id: 3
|
|
6479
|
+
}
|
|
6480
|
+
}
|
|
6481
|
+
},
|
|
6482
|
+
Response: {
|
|
6483
|
+
fields: {
|
|
6484
|
+
meta: {
|
|
6485
|
+
type: "Meta",
|
|
6486
|
+
id: 1
|
|
6487
|
+
},
|
|
6488
|
+
outcome: {
|
|
6489
|
+
type: "Outcome",
|
|
6490
|
+
id: 2
|
|
6491
|
+
}
|
|
6492
|
+
}
|
|
6266
6493
|
}
|
|
6267
6494
|
}
|
|
6268
6495
|
}
|
|
@@ -6276,8 +6503,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6276
6503
|
java_package: "io.temporal.api.workflow.v1",
|
|
6277
6504
|
java_multiple_files: true,
|
|
6278
6505
|
java_outer_classname: "MessageProto",
|
|
6279
|
-
ruby_package: "
|
|
6280
|
-
csharp_namespace: "
|
|
6506
|
+
ruby_package: "Temporalio::Api::Workflow::V1",
|
|
6507
|
+
csharp_namespace: "Temporalio.Api.Workflow.V1"
|
|
6281
6508
|
},
|
|
6282
6509
|
nested: {
|
|
6283
6510
|
WorkflowExecutionInfo: {
|
|
@@ -6615,6 +6842,36 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6615
6842
|
}
|
|
6616
6843
|
}
|
|
6617
6844
|
},
|
|
6845
|
+
sdk: {
|
|
6846
|
+
nested: {
|
|
6847
|
+
v1: {
|
|
6848
|
+
options: {
|
|
6849
|
+
go_package: "go.temporal.io/api/sdk/v1;sdk",
|
|
6850
|
+
java_package: "io.temporal.api.sdk.v1",
|
|
6851
|
+
java_multiple_files: true,
|
|
6852
|
+
java_outer_classname: "TaskCompleteMetadataProto",
|
|
6853
|
+
ruby_package: "Temporalio::Api::Sdk::V1",
|
|
6854
|
+
csharp_namespace: "Temporalio.Api.Sdk.V1"
|
|
6855
|
+
},
|
|
6856
|
+
nested: {
|
|
6857
|
+
WorkflowTaskCompletedMetadata: {
|
|
6858
|
+
fields: {
|
|
6859
|
+
coreUsedFlags: {
|
|
6860
|
+
rule: "repeated",
|
|
6861
|
+
type: "uint32",
|
|
6862
|
+
id: 1
|
|
6863
|
+
},
|
|
6864
|
+
langUsedFlags: {
|
|
6865
|
+
rule: "repeated",
|
|
6866
|
+
type: "uint32",
|
|
6867
|
+
id: 2
|
|
6868
|
+
}
|
|
6869
|
+
}
|
|
6870
|
+
}
|
|
6871
|
+
}
|
|
6872
|
+
}
|
|
6873
|
+
}
|
|
6874
|
+
},
|
|
6618
6875
|
command: {
|
|
6619
6876
|
nested: {
|
|
6620
6877
|
v1: {
|
|
@@ -6623,8 +6880,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6623
6880
|
java_package: "io.temporal.api.command.v1",
|
|
6624
6881
|
java_multiple_files: true,
|
|
6625
6882
|
java_outer_classname: "MessageProto",
|
|
6626
|
-
ruby_package: "
|
|
6627
|
-
csharp_namespace: "
|
|
6883
|
+
ruby_package: "Temporalio::Api::Command::V1",
|
|
6884
|
+
csharp_namespace: "Temporalio.Api.Command.V1"
|
|
6628
6885
|
},
|
|
6629
6886
|
nested: {
|
|
6630
6887
|
ScheduleActivityTaskCommandAttributes: {
|
|
@@ -6991,39 +7248,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
6991
7248
|
}
|
|
6992
7249
|
}
|
|
6993
7250
|
},
|
|
6994
|
-
|
|
6995
|
-
fields: {
|
|
6996
|
-
updateId: {
|
|
6997
|
-
type: "string",
|
|
6998
|
-
id: 1
|
|
6999
|
-
}
|
|
7000
|
-
}
|
|
7001
|
-
},
|
|
7002
|
-
CompleteWorkflowUpdateCommandAttributes: {
|
|
7003
|
-
oneofs: {
|
|
7004
|
-
result: {
|
|
7005
|
-
oneof: [
|
|
7006
|
-
"success",
|
|
7007
|
-
"failure"
|
|
7008
|
-
]
|
|
7009
|
-
}
|
|
7010
|
-
},
|
|
7251
|
+
ProtocolMessageCommandAttributes: {
|
|
7011
7252
|
fields: {
|
|
7012
|
-
|
|
7253
|
+
messageId: {
|
|
7013
7254
|
type: "string",
|
|
7014
7255
|
id: 1
|
|
7015
|
-
},
|
|
7016
|
-
durabilityPreference: {
|
|
7017
|
-
type: "temporal.api.enums.v1.WorkflowUpdateDurabilityPreference",
|
|
7018
|
-
id: 2
|
|
7019
|
-
},
|
|
7020
|
-
success: {
|
|
7021
|
-
type: "temporal.api.common.v1.Payloads",
|
|
7022
|
-
id: 3
|
|
7023
|
-
},
|
|
7024
|
-
failure: {
|
|
7025
|
-
type: "temporal.api.failure.v1.Failure",
|
|
7026
|
-
id: 4
|
|
7027
7256
|
}
|
|
7028
7257
|
}
|
|
7029
7258
|
},
|
|
@@ -7044,8 +7273,7 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7044
7273
|
"startChildWorkflowExecutionCommandAttributes",
|
|
7045
7274
|
"signalExternalWorkflowExecutionCommandAttributes",
|
|
7046
7275
|
"upsertWorkflowSearchAttributesCommandAttributes",
|
|
7047
|
-
"
|
|
7048
|
-
"completeWorkflowUpdateCommandAttributes",
|
|
7276
|
+
"protocolMessageCommandAttributes",
|
|
7049
7277
|
"modifyWorkflowPropertiesCommandAttributes"
|
|
7050
7278
|
]
|
|
7051
7279
|
}
|
|
@@ -7107,14 +7335,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7107
7335
|
type: "UpsertWorkflowSearchAttributesCommandAttributes",
|
|
7108
7336
|
id: 14
|
|
7109
7337
|
},
|
|
7110
|
-
|
|
7111
|
-
type: "
|
|
7338
|
+
protocolMessageCommandAttributes: {
|
|
7339
|
+
type: "ProtocolMessageCommandAttributes",
|
|
7112
7340
|
id: 15
|
|
7113
7341
|
},
|
|
7114
|
-
completeWorkflowUpdateCommandAttributes: {
|
|
7115
|
-
type: "CompleteWorkflowUpdateCommandAttributes",
|
|
7116
|
-
id: 16
|
|
7117
|
-
},
|
|
7118
7342
|
modifyWorkflowPropertiesCommandAttributes: {
|
|
7119
7343
|
type: "ModifyWorkflowPropertiesCommandAttributes",
|
|
7120
7344
|
id: 17
|
|
@@ -7133,8 +7357,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7133
7357
|
java_package: "io.temporal.api.filter.v1",
|
|
7134
7358
|
java_multiple_files: true,
|
|
7135
7359
|
java_outer_classname: "MessageProto",
|
|
7136
|
-
ruby_package: "
|
|
7137
|
-
csharp_namespace: "
|
|
7360
|
+
ruby_package: "Temporalio::Api::Filter::V1",
|
|
7361
|
+
csharp_namespace: "Temporalio.Api.Filter.V1"
|
|
7138
7362
|
},
|
|
7139
7363
|
nested: {
|
|
7140
7364
|
WorkflowExecutionFilter: {
|
|
@@ -7187,6 +7411,54 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7187
7411
|
}
|
|
7188
7412
|
}
|
|
7189
7413
|
},
|
|
7414
|
+
protocol: {
|
|
7415
|
+
nested: {
|
|
7416
|
+
v1: {
|
|
7417
|
+
options: {
|
|
7418
|
+
go_package: "go.temporal.io/api/protocol/v1;protocol",
|
|
7419
|
+
java_package: "io.temporal.api.protocol.v1",
|
|
7420
|
+
java_multiple_files: true,
|
|
7421
|
+
java_outer_classname: "MessageProto",
|
|
7422
|
+
ruby_package: "Temporalio::Api::Protocol::V1",
|
|
7423
|
+
csharp_namespace: "Temporalt.Api.Protocol.V1"
|
|
7424
|
+
},
|
|
7425
|
+
nested: {
|
|
7426
|
+
Message: {
|
|
7427
|
+
oneofs: {
|
|
7428
|
+
sequencingId: {
|
|
7429
|
+
oneof: [
|
|
7430
|
+
"eventId",
|
|
7431
|
+
"commandIndex"
|
|
7432
|
+
]
|
|
7433
|
+
}
|
|
7434
|
+
},
|
|
7435
|
+
fields: {
|
|
7436
|
+
id: {
|
|
7437
|
+
type: "string",
|
|
7438
|
+
id: 1
|
|
7439
|
+
},
|
|
7440
|
+
protocolInstanceId: {
|
|
7441
|
+
type: "string",
|
|
7442
|
+
id: 2
|
|
7443
|
+
},
|
|
7444
|
+
eventId: {
|
|
7445
|
+
type: "int64",
|
|
7446
|
+
id: 3
|
|
7447
|
+
},
|
|
7448
|
+
commandIndex: {
|
|
7449
|
+
type: "int64",
|
|
7450
|
+
id: 4
|
|
7451
|
+
},
|
|
7452
|
+
body: {
|
|
7453
|
+
type: "google.protobuf.Any",
|
|
7454
|
+
id: 5
|
|
7455
|
+
}
|
|
7456
|
+
}
|
|
7457
|
+
}
|
|
7458
|
+
}
|
|
7459
|
+
}
|
|
7460
|
+
}
|
|
7461
|
+
},
|
|
7190
7462
|
namespace: {
|
|
7191
7463
|
nested: {
|
|
7192
7464
|
v1: {
|
|
@@ -7195,8 +7467,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7195
7467
|
java_package: "io.temporal.api.namespace.v1",
|
|
7196
7468
|
java_multiple_files: true,
|
|
7197
7469
|
java_outer_classname: "MessageProto",
|
|
7198
|
-
ruby_package: "
|
|
7199
|
-
csharp_namespace: "
|
|
7470
|
+
ruby_package: "Temporalio::Api::Namespace::V1",
|
|
7471
|
+
csharp_namespace: "Temporalio.Api.Namespace.V1"
|
|
7200
7472
|
},
|
|
7201
7473
|
nested: {
|
|
7202
7474
|
NamespaceInfo: {
|
|
@@ -7260,6 +7532,11 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7260
7532
|
visibilityArchivalUri: {
|
|
7261
7533
|
type: "string",
|
|
7262
7534
|
id: 6
|
|
7535
|
+
},
|
|
7536
|
+
customSearchAttributeAliases: {
|
|
7537
|
+
keyType: "string",
|
|
7538
|
+
type: "string",
|
|
7539
|
+
id: 7
|
|
7263
7540
|
}
|
|
7264
7541
|
}
|
|
7265
7542
|
},
|
|
@@ -7332,8 +7609,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7332
7609
|
java_package: "io.temporal.api.query.v1",
|
|
7333
7610
|
java_multiple_files: true,
|
|
7334
7611
|
java_outer_classname: "MessageProto",
|
|
7335
|
-
ruby_package: "
|
|
7336
|
-
csharp_namespace: "
|
|
7612
|
+
ruby_package: "Temporalio::Api::Query::V1",
|
|
7613
|
+
csharp_namespace: "Temporalio.Api.Query.V1"
|
|
7337
7614
|
},
|
|
7338
7615
|
nested: {
|
|
7339
7616
|
WorkflowQuery: {
|
|
@@ -7388,8 +7665,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7388
7665
|
java_package: "io.temporal.api.replication.v1",
|
|
7389
7666
|
java_multiple_files: true,
|
|
7390
7667
|
java_outer_classname: "MessageProto",
|
|
7391
|
-
ruby_package: "
|
|
7392
|
-
csharp_namespace: "
|
|
7668
|
+
ruby_package: "Temporalio::Api::Replication::V1",
|
|
7669
|
+
csharp_namespace: "Temporalio.Api.Replication.V1"
|
|
7393
7670
|
},
|
|
7394
7671
|
nested: {
|
|
7395
7672
|
ClusterReplicationConfig: {
|
|
@@ -7444,8 +7721,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7444
7721
|
java_package: "io.temporal.api.schedule.v1",
|
|
7445
7722
|
java_multiple_files: true,
|
|
7446
7723
|
java_outer_classname: "MessageProto",
|
|
7447
|
-
ruby_package: "
|
|
7448
|
-
csharp_namespace: "
|
|
7724
|
+
ruby_package: "Temporalio::Api::Schedule::V1",
|
|
7725
|
+
csharp_namespace: "Temporalio.Api.Schedule.V1"
|
|
7449
7726
|
},
|
|
7450
7727
|
nested: {
|
|
7451
7728
|
CalendarSpec: {
|
|
@@ -7894,8 +8171,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7894
8171
|
java_package: "io.temporal.api.version.v1",
|
|
7895
8172
|
java_multiple_files: true,
|
|
7896
8173
|
java_outer_classname: "MessageProto",
|
|
7897
|
-
ruby_package: "
|
|
7898
|
-
csharp_namespace: "
|
|
8174
|
+
ruby_package: "Temporalio::Api::Version::V1",
|
|
8175
|
+
csharp_namespace: "Temporalio.Api.Version.V1"
|
|
7899
8176
|
},
|
|
7900
8177
|
nested: {
|
|
7901
8178
|
ReleaseInfo: {
|
|
@@ -7969,8 +8246,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
7969
8246
|
java_package: "io.temporal.api.batch.v1",
|
|
7970
8247
|
java_multiple_files: true,
|
|
7971
8248
|
java_outer_classname: "MessageProto",
|
|
7972
|
-
ruby_package: "
|
|
7973
|
-
csharp_namespace: "
|
|
8249
|
+
ruby_package: "Temporalio::Api::Batch::V1",
|
|
8250
|
+
csharp_namespace: "Temporalio.Api.Batch.V1"
|
|
7974
8251
|
},
|
|
7975
8252
|
nested: {
|
|
7976
8253
|
BatchOperationInfo: {
|
|
@@ -8038,6 +8315,14 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8038
8315
|
id: 1
|
|
8039
8316
|
}
|
|
8040
8317
|
}
|
|
8318
|
+
},
|
|
8319
|
+
BatchOperationDeletion: {
|
|
8320
|
+
fields: {
|
|
8321
|
+
identity: {
|
|
8322
|
+
type: "string",
|
|
8323
|
+
id: 1
|
|
8324
|
+
}
|
|
8325
|
+
}
|
|
8041
8326
|
}
|
|
8042
8327
|
}
|
|
8043
8328
|
}
|
|
@@ -8051,8 +8336,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8051
8336
|
java_package: "io.temporal.api.operatorservice.v1",
|
|
8052
8337
|
java_multiple_files: true,
|
|
8053
8338
|
java_outer_classname: "RequestResponseProto",
|
|
8054
|
-
ruby_package: "
|
|
8055
|
-
csharp_namespace: "
|
|
8339
|
+
ruby_package: "Temporalio::Api::OperatorService::V1",
|
|
8340
|
+
csharp_namespace: "Temporalio.Api.OperatorService.V1"
|
|
8056
8341
|
},
|
|
8057
8342
|
nested: {
|
|
8058
8343
|
OperatorService: {
|
|
@@ -8093,6 +8378,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8093
8378
|
keyType: "string",
|
|
8094
8379
|
type: "temporal.api.enums.v1.IndexedValueType",
|
|
8095
8380
|
id: 1
|
|
8381
|
+
},
|
|
8382
|
+
namespace: {
|
|
8383
|
+
type: "string",
|
|
8384
|
+
id: 2
|
|
8096
8385
|
}
|
|
8097
8386
|
}
|
|
8098
8387
|
},
|
|
@@ -8105,6 +8394,10 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8105
8394
|
rule: "repeated",
|
|
8106
8395
|
type: "string",
|
|
8107
8396
|
id: 1
|
|
8397
|
+
},
|
|
8398
|
+
namespace: {
|
|
8399
|
+
type: "string",
|
|
8400
|
+
id: 2
|
|
8108
8401
|
}
|
|
8109
8402
|
}
|
|
8110
8403
|
},
|
|
@@ -8112,7 +8405,12 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8112
8405
|
fields: {}
|
|
8113
8406
|
},
|
|
8114
8407
|
ListSearchAttributesRequest: {
|
|
8115
|
-
fields: {
|
|
8408
|
+
fields: {
|
|
8409
|
+
namespace: {
|
|
8410
|
+
type: "string",
|
|
8411
|
+
id: 1
|
|
8412
|
+
}
|
|
8413
|
+
}
|
|
8116
8414
|
},
|
|
8117
8415
|
ListSearchAttributesResponse: {
|
|
8118
8416
|
fields: {
|
|
@@ -8240,8 +8538,8 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
8240
8538
|
java_package: "io.temporal.api.testservice.v1",
|
|
8241
8539
|
java_multiple_files: true,
|
|
8242
8540
|
java_outer_classname: "ServiceProto",
|
|
8243
|
-
ruby_package: "
|
|
8244
|
-
csharp_namespace: "
|
|
8541
|
+
ruby_package: "Temporalio::Api::TestService::V1",
|
|
8542
|
+
csharp_namespace: "Temporalio.Api.TestService.V1"
|
|
8245
8543
|
},
|
|
8246
8544
|
nested: {
|
|
8247
8545
|
LockTimeSkippingRequest: {
|
|
@@ -9544,6 +9842,18 @@ var $root = ($protobuf.roots.__temporal || ($protobuf.roots.__temporal = new $pr
|
|
|
9544
9842
|
id: 1
|
|
9545
9843
|
}
|
|
9546
9844
|
}
|
|
9845
|
+
},
|
|
9846
|
+
Any: {
|
|
9847
|
+
fields: {
|
|
9848
|
+
type_url: {
|
|
9849
|
+
type: "string",
|
|
9850
|
+
id: 1
|
|
9851
|
+
},
|
|
9852
|
+
value: {
|
|
9853
|
+
type: "bytes",
|
|
9854
|
+
id: 2
|
|
9855
|
+
}
|
|
9856
|
+
}
|
|
9547
9857
|
}
|
|
9548
9858
|
}
|
|
9549
9859
|
}
|