@temporalio/proto 1.5.2 → 1.6.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 +2 -2
- package/protos/json-module.js +221 -156
- package/protos/root.d.ts +881 -385
package/protos/root.d.ts
CHANGED
|
@@ -3486,7 +3486,8 @@ export namespace coresdk {
|
|
|
3486
3486
|
LANG_REQUESTED = 5,
|
|
3487
3487
|
TASK_NOT_FOUND = 6,
|
|
3488
3488
|
UNHANDLED_COMMAND = 7,
|
|
3489
|
-
FATAL = 8
|
|
3489
|
+
FATAL = 8,
|
|
3490
|
+
PAGINATION_OR_HISTORY_FETCH = 9
|
|
3490
3491
|
}
|
|
3491
3492
|
}
|
|
3492
3493
|
}
|
|
@@ -7537,7 +7538,8 @@ export namespace temporal {
|
|
|
7537
7538
|
INDEXED_VALUE_TYPE_INT = 3,
|
|
7538
7539
|
INDEXED_VALUE_TYPE_DOUBLE = 4,
|
|
7539
7540
|
INDEXED_VALUE_TYPE_BOOL = 5,
|
|
7540
|
-
INDEXED_VALUE_TYPE_DATETIME = 6
|
|
7541
|
+
INDEXED_VALUE_TYPE_DATETIME = 6,
|
|
7542
|
+
INDEXED_VALUE_TYPE_KEYWORD_LIST = 7
|
|
7541
7543
|
}
|
|
7542
7544
|
|
|
7543
7545
|
/** Severity enum. */
|
|
@@ -7633,7 +7635,8 @@ export namespace temporal {
|
|
|
7633
7635
|
BATCH_OPERATION_TYPE_UNSPECIFIED = 0,
|
|
7634
7636
|
BATCH_OPERATION_TYPE_TERMINATE = 1,
|
|
7635
7637
|
BATCH_OPERATION_TYPE_CANCEL = 2,
|
|
7636
|
-
BATCH_OPERATION_TYPE_SIGNAL = 3
|
|
7638
|
+
BATCH_OPERATION_TYPE_SIGNAL = 3,
|
|
7639
|
+
BATCH_OPERATION_TYPE_DELETE = 4
|
|
7637
7640
|
}
|
|
7638
7641
|
|
|
7639
7642
|
/** BatchOperationState enum. */
|
|
@@ -7693,7 +7696,11 @@ export namespace temporal {
|
|
|
7693
7696
|
WORKFLOW_TASK_FAILED_CAUSE_SCHEDULE_ACTIVITY_DUPLICATE_ID = 22,
|
|
7694
7697
|
WORKFLOW_TASK_FAILED_CAUSE_BAD_SEARCH_ATTRIBUTES = 23,
|
|
7695
7698
|
WORKFLOW_TASK_FAILED_CAUSE_NON_DETERMINISTIC_ERROR = 24,
|
|
7696
|
-
WORKFLOW_TASK_FAILED_CAUSE_BAD_MODIFY_WORKFLOW_PROPERTIES_ATTRIBUTES = 25
|
|
7699
|
+
WORKFLOW_TASK_FAILED_CAUSE_BAD_MODIFY_WORKFLOW_PROPERTIES_ATTRIBUTES = 25,
|
|
7700
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_CHILD_WORKFLOWS_LIMIT_EXCEEDED = 26,
|
|
7701
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_ACTIVITIES_LIMIT_EXCEEDED = 27,
|
|
7702
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_SIGNALS_LIMIT_EXCEEDED = 28,
|
|
7703
|
+
WORKFLOW_TASK_FAILED_CAUSE_PENDING_REQUEST_CANCEL_LIMIT_EXCEEDED = 29
|
|
7697
7704
|
}
|
|
7698
7705
|
|
|
7699
7706
|
/** StartChildWorkflowExecutionFailedCause enum. */
|
|
@@ -7768,12 +7775,6 @@ export namespace temporal {
|
|
|
7768
7775
|
WORKFLOW_UPDATE_RESULT_ACCESS_STYLE_REQUIRE_INLINE = 1
|
|
7769
7776
|
}
|
|
7770
7777
|
|
|
7771
|
-
/** WorkflowUpdateDurabilityPreference enum. */
|
|
7772
|
-
enum WorkflowUpdateDurabilityPreference {
|
|
7773
|
-
WORKFLOW_UPDATE_DURABILITY_PREFERENCE_UNSPECIFIED = 0,
|
|
7774
|
-
WORKFLOW_UPDATE_DURABILITY_PREFERENCE_BYPASS = 1
|
|
7775
|
-
}
|
|
7776
|
-
|
|
7777
7778
|
/** EventType enum. */
|
|
7778
7779
|
enum EventType {
|
|
7779
7780
|
EVENT_TYPE_UNSPECIFIED = 0,
|
|
@@ -7817,7 +7818,7 @@ export namespace temporal {
|
|
|
7817
7818
|
EVENT_TYPE_SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED = 38,
|
|
7818
7819
|
EVENT_TYPE_EXTERNAL_WORKFLOW_EXECUTION_SIGNALED = 39,
|
|
7819
7820
|
EVENT_TYPE_UPSERT_WORKFLOW_SEARCH_ATTRIBUTES = 40,
|
|
7820
|
-
|
|
7821
|
+
EVENT_TYPE_WORKFLOW_UPDATE_REJECTED = 41,
|
|
7821
7822
|
EVENT_TYPE_WORKFLOW_UPDATE_ACCEPTED = 42,
|
|
7822
7823
|
EVENT_TYPE_WORKFLOW_UPDATE_COMPLETED = 43,
|
|
7823
7824
|
EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED_EXTERNALLY = 44,
|
|
@@ -7825,6 +7826,14 @@ export namespace temporal {
|
|
|
7825
7826
|
EVENT_TYPE_WORKFLOW_PROPERTIES_MODIFIED = 46
|
|
7826
7827
|
}
|
|
7827
7828
|
|
|
7829
|
+
/** InteractionType enum. */
|
|
7830
|
+
enum InteractionType {
|
|
7831
|
+
INTERACTION_TYPE_UNSPECIFIED = 0,
|
|
7832
|
+
INTERACTION_TYPE_WORKFLOW_QUERY = 1,
|
|
7833
|
+
INTERACTION_TYPE_WORKFLOW_UPDATE = 2,
|
|
7834
|
+
INTERACTION_TYPE_WORKFLOW_SIGNAL = 3
|
|
7835
|
+
}
|
|
7836
|
+
|
|
7828
7837
|
/** CommandType enum. */
|
|
7829
7838
|
enum CommandType {
|
|
7830
7839
|
COMMAND_TYPE_UNSPECIFIED = 0,
|
|
@@ -7843,7 +7852,8 @@ export namespace temporal {
|
|
|
7843
7852
|
COMMAND_TYPE_UPSERT_WORKFLOW_SEARCH_ATTRIBUTES = 13,
|
|
7844
7853
|
COMMAND_TYPE_ACCEPT_WORKFLOW_UPDATE = 14,
|
|
7845
7854
|
COMMAND_TYPE_COMPLETE_WORKFLOW_UPDATE = 15,
|
|
7846
|
-
COMMAND_TYPE_MODIFY_WORKFLOW_PROPERTIES = 16
|
|
7855
|
+
COMMAND_TYPE_MODIFY_WORKFLOW_PROPERTIES = 16,
|
|
7856
|
+
COMMAND_TYPE_REJECT_WORKFLOW_UPDATE = 17
|
|
7847
7857
|
}
|
|
7848
7858
|
|
|
7849
7859
|
/** ScheduleOverlapPolicy enum. */
|
|
@@ -11955,6 +11965,9 @@ export namespace temporal {
|
|
|
11955
11965
|
|
|
11956
11966
|
/** PollWorkflowTaskQueueResponse queries */
|
|
11957
11967
|
queries?: ({ [k: string]: temporal.api.query.v1.IWorkflowQuery }|null);
|
|
11968
|
+
|
|
11969
|
+
/** PollWorkflowTaskQueueResponse interactions */
|
|
11970
|
+
interactions?: (temporal.api.interaction.v1.IInvocation[]|null);
|
|
11958
11971
|
}
|
|
11959
11972
|
|
|
11960
11973
|
/** Represents a PollWorkflowTaskQueueResponse. */
|
|
@@ -12008,6 +12021,9 @@ export namespace temporal {
|
|
|
12008
12021
|
/** PollWorkflowTaskQueueResponse queries. */
|
|
12009
12022
|
public queries: { [k: string]: temporal.api.query.v1.IWorkflowQuery };
|
|
12010
12023
|
|
|
12024
|
+
/** PollWorkflowTaskQueueResponse interactions. */
|
|
12025
|
+
public interactions: temporal.api.interaction.v1.IInvocation[];
|
|
12026
|
+
|
|
12011
12027
|
/**
|
|
12012
12028
|
* Creates a new PollWorkflowTaskQueueResponse instance using the specified properties.
|
|
12013
12029
|
* @param [properties] Properties to set
|
|
@@ -12231,6 +12247,9 @@ export namespace temporal {
|
|
|
12231
12247
|
|
|
12232
12248
|
/** RespondWorkflowTaskCompletedResponse activityTasks */
|
|
12233
12249
|
activityTasks?: (temporal.api.workflowservice.v1.IPollActivityTaskQueueResponse[]|null);
|
|
12250
|
+
|
|
12251
|
+
/** RespondWorkflowTaskCompletedResponse resetHistoryEventId */
|
|
12252
|
+
resetHistoryEventId?: (Long|null);
|
|
12234
12253
|
}
|
|
12235
12254
|
|
|
12236
12255
|
/** Represents a RespondWorkflowTaskCompletedResponse. */
|
|
@@ -12248,6 +12267,9 @@ export namespace temporal {
|
|
|
12248
12267
|
/** RespondWorkflowTaskCompletedResponse activityTasks. */
|
|
12249
12268
|
public activityTasks: temporal.api.workflowservice.v1.IPollActivityTaskQueueResponse[];
|
|
12250
12269
|
|
|
12270
|
+
/** RespondWorkflowTaskCompletedResponse resetHistoryEventId. */
|
|
12271
|
+
public resetHistoryEventId: Long;
|
|
12272
|
+
|
|
12251
12273
|
/**
|
|
12252
12274
|
* Creates a new RespondWorkflowTaskCompletedResponse instance using the specified properties.
|
|
12253
12275
|
* @param [properties] Properties to set
|
|
@@ -20704,8 +20726,11 @@ export namespace temporal {
|
|
|
20704
20726
|
/** UpdateWorkflowRequest firstExecutionRunId */
|
|
20705
20727
|
firstExecutionRunId?: (string|null);
|
|
20706
20728
|
|
|
20707
|
-
/** UpdateWorkflowRequest
|
|
20708
|
-
|
|
20729
|
+
/** UpdateWorkflowRequest identity */
|
|
20730
|
+
identity?: (string|null);
|
|
20731
|
+
|
|
20732
|
+
/** UpdateWorkflowRequest input */
|
|
20733
|
+
input?: (temporal.api.interaction.v1.IInput|null);
|
|
20709
20734
|
}
|
|
20710
20735
|
|
|
20711
20736
|
/** Represents an UpdateWorkflowRequest. */
|
|
@@ -20732,8 +20757,11 @@ export namespace temporal {
|
|
|
20732
20757
|
/** UpdateWorkflowRequest firstExecutionRunId. */
|
|
20733
20758
|
public firstExecutionRunId: string;
|
|
20734
20759
|
|
|
20735
|
-
/** UpdateWorkflowRequest
|
|
20736
|
-
public
|
|
20760
|
+
/** UpdateWorkflowRequest identity. */
|
|
20761
|
+
public identity: string;
|
|
20762
|
+
|
|
20763
|
+
/** UpdateWorkflowRequest input. */
|
|
20764
|
+
public input?: (temporal.api.interaction.v1.IInput|null);
|
|
20737
20765
|
|
|
20738
20766
|
/**
|
|
20739
20767
|
* Creates a new UpdateWorkflowRequest instance using the specified properties.
|
|
@@ -20812,11 +20840,8 @@ export namespace temporal {
|
|
|
20812
20840
|
/** UpdateWorkflowResponse updateToken */
|
|
20813
20841
|
updateToken?: (Uint8Array|null);
|
|
20814
20842
|
|
|
20815
|
-
/** UpdateWorkflowResponse
|
|
20816
|
-
|
|
20817
|
-
|
|
20818
|
-
/** UpdateWorkflowResponse failure */
|
|
20819
|
-
failure?: (temporal.api.failure.v1.IFailure|null);
|
|
20843
|
+
/** UpdateWorkflowResponse output */
|
|
20844
|
+
output?: (temporal.api.interaction.v1.IOutput|null);
|
|
20820
20845
|
}
|
|
20821
20846
|
|
|
20822
20847
|
/** Represents an UpdateWorkflowResponse. */
|
|
@@ -20831,14 +20856,8 @@ export namespace temporal {
|
|
|
20831
20856
|
/** UpdateWorkflowResponse updateToken. */
|
|
20832
20857
|
public updateToken: Uint8Array;
|
|
20833
20858
|
|
|
20834
|
-
/** UpdateWorkflowResponse
|
|
20835
|
-
public
|
|
20836
|
-
|
|
20837
|
-
/** UpdateWorkflowResponse failure. */
|
|
20838
|
-
public failure?: (temporal.api.failure.v1.IFailure|null);
|
|
20839
|
-
|
|
20840
|
-
/** UpdateWorkflowResponse result. */
|
|
20841
|
-
public result?: ("success"|"failure");
|
|
20859
|
+
/** UpdateWorkflowResponse output. */
|
|
20860
|
+
public output?: (temporal.api.interaction.v1.IOutput|null);
|
|
20842
20861
|
|
|
20843
20862
|
/**
|
|
20844
20863
|
* Creates a new UpdateWorkflowResponse instance using the specified properties.
|
|
@@ -20934,6 +20953,9 @@ export namespace temporal {
|
|
|
20934
20953
|
|
|
20935
20954
|
/** StartBatchOperationRequest cancellationOperation */
|
|
20936
20955
|
cancellationOperation?: (temporal.api.batch.v1.IBatchOperationCancellation|null);
|
|
20956
|
+
|
|
20957
|
+
/** StartBatchOperationRequest deletionOperation */
|
|
20958
|
+
deletionOperation?: (temporal.api.batch.v1.IBatchOperationDeletion|null);
|
|
20937
20959
|
}
|
|
20938
20960
|
|
|
20939
20961
|
/** Represents a StartBatchOperationRequest. */
|
|
@@ -20966,8 +20988,11 @@ export namespace temporal {
|
|
|
20966
20988
|
/** StartBatchOperationRequest cancellationOperation. */
|
|
20967
20989
|
public cancellationOperation?: (temporal.api.batch.v1.IBatchOperationCancellation|null);
|
|
20968
20990
|
|
|
20991
|
+
/** StartBatchOperationRequest deletionOperation. */
|
|
20992
|
+
public deletionOperation?: (temporal.api.batch.v1.IBatchOperationDeletion|null);
|
|
20993
|
+
|
|
20969
20994
|
/** StartBatchOperationRequest operation. */
|
|
20970
|
-
public operation?: ("terminationOperation"|"signalOperation"|"cancellationOperation");
|
|
20995
|
+
public operation?: ("terminationOperation"|"signalOperation"|"cancellationOperation"|"deletionOperation");
|
|
20971
20996
|
|
|
20972
20997
|
/**
|
|
20973
20998
|
* Creates a new StartBatchOperationRequest instance using the specified properties.
|
|
@@ -26694,315 +26719,288 @@ export namespace temporal {
|
|
|
26694
26719
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26695
26720
|
}
|
|
26696
26721
|
|
|
26697
|
-
/** Properties of a
|
|
26698
|
-
interface
|
|
26699
|
-
|
|
26700
|
-
/** WorkflowUpdateRequestedEventAttributes header */
|
|
26701
|
-
header?: (temporal.api.common.v1.IHeader|null);
|
|
26702
|
-
|
|
26703
|
-
/** WorkflowUpdateRequestedEventAttributes requestId */
|
|
26704
|
-
requestId?: (string|null);
|
|
26722
|
+
/** Properties of a WorkflowUpdateAcceptedEventAttributes. */
|
|
26723
|
+
interface IWorkflowUpdateAcceptedEventAttributes {
|
|
26705
26724
|
|
|
26706
|
-
/**
|
|
26707
|
-
|
|
26725
|
+
/** WorkflowUpdateAcceptedEventAttributes meta */
|
|
26726
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26708
26727
|
|
|
26709
|
-
/**
|
|
26710
|
-
|
|
26728
|
+
/** WorkflowUpdateAcceptedEventAttributes input */
|
|
26729
|
+
input?: (temporal.api.interaction.v1.IInput|null);
|
|
26711
26730
|
}
|
|
26712
26731
|
|
|
26713
|
-
/** Represents a
|
|
26714
|
-
class
|
|
26732
|
+
/** Represents a WorkflowUpdateAcceptedEventAttributes. */
|
|
26733
|
+
class WorkflowUpdateAcceptedEventAttributes implements IWorkflowUpdateAcceptedEventAttributes {
|
|
26715
26734
|
|
|
26716
26735
|
/**
|
|
26717
|
-
* Constructs a new
|
|
26736
|
+
* Constructs a new WorkflowUpdateAcceptedEventAttributes.
|
|
26718
26737
|
* @param [properties] Properties to set
|
|
26719
26738
|
*/
|
|
26720
|
-
constructor(properties?: temporal.api.history.v1.
|
|
26721
|
-
|
|
26722
|
-
/** WorkflowUpdateRequestedEventAttributes header. */
|
|
26723
|
-
public header?: (temporal.api.common.v1.IHeader|null);
|
|
26724
|
-
|
|
26725
|
-
/** WorkflowUpdateRequestedEventAttributes requestId. */
|
|
26726
|
-
public requestId: string;
|
|
26739
|
+
constructor(properties?: temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes);
|
|
26727
26740
|
|
|
26728
|
-
/**
|
|
26729
|
-
public
|
|
26741
|
+
/** WorkflowUpdateAcceptedEventAttributes meta. */
|
|
26742
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26730
26743
|
|
|
26731
|
-
/**
|
|
26732
|
-
public
|
|
26744
|
+
/** WorkflowUpdateAcceptedEventAttributes input. */
|
|
26745
|
+
public input?: (temporal.api.interaction.v1.IInput|null);
|
|
26733
26746
|
|
|
26734
26747
|
/**
|
|
26735
|
-
* Creates a new
|
|
26748
|
+
* Creates a new WorkflowUpdateAcceptedEventAttributes instance using the specified properties.
|
|
26736
26749
|
* @param [properties] Properties to set
|
|
26737
|
-
* @returns
|
|
26750
|
+
* @returns WorkflowUpdateAcceptedEventAttributes instance
|
|
26738
26751
|
*/
|
|
26739
|
-
public static create(properties?: temporal.api.history.v1.
|
|
26752
|
+
public static create(properties?: temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes): temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes;
|
|
26740
26753
|
|
|
26741
26754
|
/**
|
|
26742
|
-
* Encodes the specified
|
|
26743
|
-
* @param message
|
|
26755
|
+
* Encodes the specified WorkflowUpdateAcceptedEventAttributes message. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes.verify|verify} messages.
|
|
26756
|
+
* @param message WorkflowUpdateAcceptedEventAttributes message or plain object to encode
|
|
26744
26757
|
* @param [writer] Writer to encode to
|
|
26745
26758
|
* @returns Writer
|
|
26746
26759
|
*/
|
|
26747
|
-
public static encode(message: temporal.api.history.v1.
|
|
26760
|
+
public static encode(message: temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26748
26761
|
|
|
26749
26762
|
/**
|
|
26750
|
-
* Encodes the specified
|
|
26751
|
-
* @param message
|
|
26763
|
+
* Encodes the specified WorkflowUpdateAcceptedEventAttributes message, length delimited. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes.verify|verify} messages.
|
|
26764
|
+
* @param message WorkflowUpdateAcceptedEventAttributes message or plain object to encode
|
|
26752
26765
|
* @param [writer] Writer to encode to
|
|
26753
26766
|
* @returns Writer
|
|
26754
26767
|
*/
|
|
26755
|
-
public static encodeDelimited(message: temporal.api.history.v1.
|
|
26768
|
+
public static encodeDelimited(message: temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26756
26769
|
|
|
26757
26770
|
/**
|
|
26758
|
-
* Decodes a
|
|
26771
|
+
* Decodes a WorkflowUpdateAcceptedEventAttributes message from the specified reader or buffer.
|
|
26759
26772
|
* @param reader Reader or buffer to decode from
|
|
26760
26773
|
* @param [length] Message length if known beforehand
|
|
26761
|
-
* @returns
|
|
26774
|
+
* @returns WorkflowUpdateAcceptedEventAttributes
|
|
26762
26775
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26763
26776
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26764
26777
|
*/
|
|
26765
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.
|
|
26778
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes;
|
|
26766
26779
|
|
|
26767
26780
|
/**
|
|
26768
|
-
* Decodes a
|
|
26781
|
+
* Decodes a WorkflowUpdateAcceptedEventAttributes message from the specified reader or buffer, length delimited.
|
|
26769
26782
|
* @param reader Reader or buffer to decode from
|
|
26770
|
-
* @returns
|
|
26783
|
+
* @returns WorkflowUpdateAcceptedEventAttributes
|
|
26771
26784
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26772
26785
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26773
26786
|
*/
|
|
26774
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.
|
|
26787
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes;
|
|
26775
26788
|
|
|
26776
26789
|
/**
|
|
26777
|
-
* Creates a
|
|
26790
|
+
* Creates a WorkflowUpdateAcceptedEventAttributes message from a plain object. Also converts values to their respective internal types.
|
|
26778
26791
|
* @param object Plain object
|
|
26779
|
-
* @returns
|
|
26792
|
+
* @returns WorkflowUpdateAcceptedEventAttributes
|
|
26780
26793
|
*/
|
|
26781
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.
|
|
26794
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes;
|
|
26782
26795
|
|
|
26783
26796
|
/**
|
|
26784
|
-
* Creates a plain object from a
|
|
26785
|
-
* @param message
|
|
26797
|
+
* Creates a plain object from a WorkflowUpdateAcceptedEventAttributes message. Also converts values to other types if specified.
|
|
26798
|
+
* @param message WorkflowUpdateAcceptedEventAttributes
|
|
26786
26799
|
* @param [options] Conversion options
|
|
26787
26800
|
* @returns Plain object
|
|
26788
26801
|
*/
|
|
26789
|
-
public static toObject(message: temporal.api.history.v1.
|
|
26802
|
+
public static toObject(message: temporal.api.history.v1.WorkflowUpdateAcceptedEventAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26790
26803
|
|
|
26791
26804
|
/**
|
|
26792
|
-
* Converts this
|
|
26805
|
+
* Converts this WorkflowUpdateAcceptedEventAttributes to JSON.
|
|
26793
26806
|
* @returns JSON object
|
|
26794
26807
|
*/
|
|
26795
26808
|
public toJSON(): { [k: string]: any };
|
|
26796
26809
|
|
|
26797
26810
|
/**
|
|
26798
|
-
* Gets the default type url for
|
|
26811
|
+
* Gets the default type url for WorkflowUpdateAcceptedEventAttributes
|
|
26799
26812
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26800
26813
|
* @returns The default type url
|
|
26801
26814
|
*/
|
|
26802
26815
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26803
26816
|
}
|
|
26804
26817
|
|
|
26805
|
-
/** Properties of a
|
|
26806
|
-
interface
|
|
26818
|
+
/** Properties of a WorkflowUpdateCompletedEventAttributes. */
|
|
26819
|
+
interface IWorkflowUpdateCompletedEventAttributes {
|
|
26807
26820
|
|
|
26808
|
-
/**
|
|
26809
|
-
|
|
26821
|
+
/** WorkflowUpdateCompletedEventAttributes meta */
|
|
26822
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26810
26823
|
|
|
26811
|
-
/**
|
|
26812
|
-
|
|
26824
|
+
/** WorkflowUpdateCompletedEventAttributes output */
|
|
26825
|
+
output?: (temporal.api.interaction.v1.IOutput|null);
|
|
26813
26826
|
}
|
|
26814
26827
|
|
|
26815
|
-
/** Represents a
|
|
26816
|
-
class
|
|
26828
|
+
/** Represents a WorkflowUpdateCompletedEventAttributes. */
|
|
26829
|
+
class WorkflowUpdateCompletedEventAttributes implements IWorkflowUpdateCompletedEventAttributes {
|
|
26817
26830
|
|
|
26818
26831
|
/**
|
|
26819
|
-
* Constructs a new
|
|
26832
|
+
* Constructs a new WorkflowUpdateCompletedEventAttributes.
|
|
26820
26833
|
* @param [properties] Properties to set
|
|
26821
26834
|
*/
|
|
26822
|
-
constructor(properties?: temporal.api.history.v1.
|
|
26835
|
+
constructor(properties?: temporal.api.history.v1.IWorkflowUpdateCompletedEventAttributes);
|
|
26823
26836
|
|
|
26824
|
-
/**
|
|
26825
|
-
public
|
|
26837
|
+
/** WorkflowUpdateCompletedEventAttributes meta. */
|
|
26838
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26826
26839
|
|
|
26827
|
-
/**
|
|
26828
|
-
public
|
|
26840
|
+
/** WorkflowUpdateCompletedEventAttributes output. */
|
|
26841
|
+
public output?: (temporal.api.interaction.v1.IOutput|null);
|
|
26829
26842
|
|
|
26830
26843
|
/**
|
|
26831
|
-
* Creates a new
|
|
26844
|
+
* Creates a new WorkflowUpdateCompletedEventAttributes instance using the specified properties.
|
|
26832
26845
|
* @param [properties] Properties to set
|
|
26833
|
-
* @returns
|
|
26846
|
+
* @returns WorkflowUpdateCompletedEventAttributes instance
|
|
26834
26847
|
*/
|
|
26835
|
-
public static create(properties?: temporal.api.history.v1.
|
|
26848
|
+
public static create(properties?: temporal.api.history.v1.IWorkflowUpdateCompletedEventAttributes): temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes;
|
|
26836
26849
|
|
|
26837
26850
|
/**
|
|
26838
|
-
* Encodes the specified
|
|
26839
|
-
* @param message
|
|
26851
|
+
* Encodes the specified WorkflowUpdateCompletedEventAttributes message. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes.verify|verify} messages.
|
|
26852
|
+
* @param message WorkflowUpdateCompletedEventAttributes message or plain object to encode
|
|
26840
26853
|
* @param [writer] Writer to encode to
|
|
26841
26854
|
* @returns Writer
|
|
26842
26855
|
*/
|
|
26843
|
-
public static encode(message: temporal.api.history.v1.
|
|
26856
|
+
public static encode(message: temporal.api.history.v1.IWorkflowUpdateCompletedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26844
26857
|
|
|
26845
26858
|
/**
|
|
26846
|
-
* Encodes the specified
|
|
26847
|
-
* @param message
|
|
26859
|
+
* Encodes the specified WorkflowUpdateCompletedEventAttributes message, length delimited. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes.verify|verify} messages.
|
|
26860
|
+
* @param message WorkflowUpdateCompletedEventAttributes message or plain object to encode
|
|
26848
26861
|
* @param [writer] Writer to encode to
|
|
26849
26862
|
* @returns Writer
|
|
26850
26863
|
*/
|
|
26851
|
-
public static encodeDelimited(message: temporal.api.history.v1.
|
|
26864
|
+
public static encodeDelimited(message: temporal.api.history.v1.IWorkflowUpdateCompletedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26852
26865
|
|
|
26853
26866
|
/**
|
|
26854
|
-
* Decodes a
|
|
26867
|
+
* Decodes a WorkflowUpdateCompletedEventAttributes message from the specified reader or buffer.
|
|
26855
26868
|
* @param reader Reader or buffer to decode from
|
|
26856
26869
|
* @param [length] Message length if known beforehand
|
|
26857
|
-
* @returns
|
|
26870
|
+
* @returns WorkflowUpdateCompletedEventAttributes
|
|
26858
26871
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26859
26872
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26860
26873
|
*/
|
|
26861
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.
|
|
26874
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes;
|
|
26862
26875
|
|
|
26863
26876
|
/**
|
|
26864
|
-
* Decodes a
|
|
26877
|
+
* Decodes a WorkflowUpdateCompletedEventAttributes message from the specified reader or buffer, length delimited.
|
|
26865
26878
|
* @param reader Reader or buffer to decode from
|
|
26866
|
-
* @returns
|
|
26879
|
+
* @returns WorkflowUpdateCompletedEventAttributes
|
|
26867
26880
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26868
26881
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26869
26882
|
*/
|
|
26870
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.
|
|
26883
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes;
|
|
26871
26884
|
|
|
26872
26885
|
/**
|
|
26873
|
-
* Creates a
|
|
26886
|
+
* Creates a WorkflowUpdateCompletedEventAttributes message from a plain object. Also converts values to their respective internal types.
|
|
26874
26887
|
* @param object Plain object
|
|
26875
|
-
* @returns
|
|
26888
|
+
* @returns WorkflowUpdateCompletedEventAttributes
|
|
26876
26889
|
*/
|
|
26877
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.
|
|
26890
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes;
|
|
26878
26891
|
|
|
26879
26892
|
/**
|
|
26880
|
-
* Creates a plain object from a
|
|
26881
|
-
* @param message
|
|
26893
|
+
* Creates a plain object from a WorkflowUpdateCompletedEventAttributes message. Also converts values to other types if specified.
|
|
26894
|
+
* @param message WorkflowUpdateCompletedEventAttributes
|
|
26882
26895
|
* @param [options] Conversion options
|
|
26883
26896
|
* @returns Plain object
|
|
26884
26897
|
*/
|
|
26885
|
-
public static toObject(message: temporal.api.history.v1.
|
|
26898
|
+
public static toObject(message: temporal.api.history.v1.WorkflowUpdateCompletedEventAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26886
26899
|
|
|
26887
26900
|
/**
|
|
26888
|
-
* Converts this
|
|
26901
|
+
* Converts this WorkflowUpdateCompletedEventAttributes to JSON.
|
|
26889
26902
|
* @returns JSON object
|
|
26890
26903
|
*/
|
|
26891
26904
|
public toJSON(): { [k: string]: any };
|
|
26892
26905
|
|
|
26893
26906
|
/**
|
|
26894
|
-
* Gets the default type url for
|
|
26907
|
+
* Gets the default type url for WorkflowUpdateCompletedEventAttributes
|
|
26895
26908
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26896
26909
|
* @returns The default type url
|
|
26897
26910
|
*/
|
|
26898
26911
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26899
26912
|
}
|
|
26900
26913
|
|
|
26901
|
-
/** Properties of a
|
|
26902
|
-
interface
|
|
26903
|
-
|
|
26904
|
-
/** WorkflowUpdateCompletedEventAttributes systemHeader */
|
|
26905
|
-
systemHeader?: (temporal.api.common.v1.IHeader|null);
|
|
26914
|
+
/** Properties of a WorkflowUpdateRejectedEventAttributes. */
|
|
26915
|
+
interface IWorkflowUpdateRejectedEventAttributes {
|
|
26906
26916
|
|
|
26907
|
-
/**
|
|
26908
|
-
|
|
26909
|
-
|
|
26910
|
-
/** WorkflowUpdateCompletedEventAttributes success */
|
|
26911
|
-
success?: (temporal.api.common.v1.IPayloads|null);
|
|
26917
|
+
/** WorkflowUpdateRejectedEventAttributes meta */
|
|
26918
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26912
26919
|
|
|
26913
|
-
/**
|
|
26920
|
+
/** WorkflowUpdateRejectedEventAttributes failure */
|
|
26914
26921
|
failure?: (temporal.api.failure.v1.IFailure|null);
|
|
26915
26922
|
}
|
|
26916
26923
|
|
|
26917
|
-
/** Represents a
|
|
26918
|
-
class
|
|
26924
|
+
/** Represents a WorkflowUpdateRejectedEventAttributes. */
|
|
26925
|
+
class WorkflowUpdateRejectedEventAttributes implements IWorkflowUpdateRejectedEventAttributes {
|
|
26919
26926
|
|
|
26920
26927
|
/**
|
|
26921
|
-
* Constructs a new
|
|
26928
|
+
* Constructs a new WorkflowUpdateRejectedEventAttributes.
|
|
26922
26929
|
* @param [properties] Properties to set
|
|
26923
26930
|
*/
|
|
26924
|
-
constructor(properties?: temporal.api.history.v1.
|
|
26931
|
+
constructor(properties?: temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes);
|
|
26925
26932
|
|
|
26926
|
-
/**
|
|
26927
|
-
public
|
|
26933
|
+
/** WorkflowUpdateRejectedEventAttributes meta. */
|
|
26934
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
26928
26935
|
|
|
26929
|
-
/**
|
|
26930
|
-
public updateId: string;
|
|
26931
|
-
|
|
26932
|
-
/** WorkflowUpdateCompletedEventAttributes success. */
|
|
26933
|
-
public success?: (temporal.api.common.v1.IPayloads|null);
|
|
26934
|
-
|
|
26935
|
-
/** WorkflowUpdateCompletedEventAttributes failure. */
|
|
26936
|
+
/** WorkflowUpdateRejectedEventAttributes failure. */
|
|
26936
26937
|
public failure?: (temporal.api.failure.v1.IFailure|null);
|
|
26937
26938
|
|
|
26938
|
-
/** WorkflowUpdateCompletedEventAttributes result. */
|
|
26939
|
-
public result?: ("success"|"failure");
|
|
26940
|
-
|
|
26941
26939
|
/**
|
|
26942
|
-
* Creates a new
|
|
26940
|
+
* Creates a new WorkflowUpdateRejectedEventAttributes instance using the specified properties.
|
|
26943
26941
|
* @param [properties] Properties to set
|
|
26944
|
-
* @returns
|
|
26942
|
+
* @returns WorkflowUpdateRejectedEventAttributes instance
|
|
26945
26943
|
*/
|
|
26946
|
-
public static create(properties?: temporal.api.history.v1.
|
|
26944
|
+
public static create(properties?: temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes): temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes;
|
|
26947
26945
|
|
|
26948
26946
|
/**
|
|
26949
|
-
* Encodes the specified
|
|
26950
|
-
* @param message
|
|
26947
|
+
* Encodes the specified WorkflowUpdateRejectedEventAttributes message. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes.verify|verify} messages.
|
|
26948
|
+
* @param message WorkflowUpdateRejectedEventAttributes message or plain object to encode
|
|
26951
26949
|
* @param [writer] Writer to encode to
|
|
26952
26950
|
* @returns Writer
|
|
26953
26951
|
*/
|
|
26954
|
-
public static encode(message: temporal.api.history.v1.
|
|
26952
|
+
public static encode(message: temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26955
26953
|
|
|
26956
26954
|
/**
|
|
26957
|
-
* Encodes the specified
|
|
26958
|
-
* @param message
|
|
26955
|
+
* Encodes the specified WorkflowUpdateRejectedEventAttributes message, length delimited. Does not implicitly {@link temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes.verify|verify} messages.
|
|
26956
|
+
* @param message WorkflowUpdateRejectedEventAttributes message or plain object to encode
|
|
26959
26957
|
* @param [writer] Writer to encode to
|
|
26960
26958
|
* @returns Writer
|
|
26961
26959
|
*/
|
|
26962
|
-
public static encodeDelimited(message: temporal.api.history.v1.
|
|
26960
|
+
public static encodeDelimited(message: temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26963
26961
|
|
|
26964
26962
|
/**
|
|
26965
|
-
* Decodes a
|
|
26963
|
+
* Decodes a WorkflowUpdateRejectedEventAttributes message from the specified reader or buffer.
|
|
26966
26964
|
* @param reader Reader or buffer to decode from
|
|
26967
26965
|
* @param [length] Message length if known beforehand
|
|
26968
|
-
* @returns
|
|
26966
|
+
* @returns WorkflowUpdateRejectedEventAttributes
|
|
26969
26967
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26970
26968
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26971
26969
|
*/
|
|
26972
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.
|
|
26970
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes;
|
|
26973
26971
|
|
|
26974
26972
|
/**
|
|
26975
|
-
* Decodes a
|
|
26973
|
+
* Decodes a WorkflowUpdateRejectedEventAttributes message from the specified reader or buffer, length delimited.
|
|
26976
26974
|
* @param reader Reader or buffer to decode from
|
|
26977
|
-
* @returns
|
|
26975
|
+
* @returns WorkflowUpdateRejectedEventAttributes
|
|
26978
26976
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26979
26977
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26980
26978
|
*/
|
|
26981
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.
|
|
26979
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes;
|
|
26982
26980
|
|
|
26983
26981
|
/**
|
|
26984
|
-
* Creates a
|
|
26982
|
+
* Creates a WorkflowUpdateRejectedEventAttributes message from a plain object. Also converts values to their respective internal types.
|
|
26985
26983
|
* @param object Plain object
|
|
26986
|
-
* @returns
|
|
26984
|
+
* @returns WorkflowUpdateRejectedEventAttributes
|
|
26987
26985
|
*/
|
|
26988
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.
|
|
26986
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes;
|
|
26989
26987
|
|
|
26990
26988
|
/**
|
|
26991
|
-
* Creates a plain object from a
|
|
26992
|
-
* @param message
|
|
26989
|
+
* Creates a plain object from a WorkflowUpdateRejectedEventAttributes message. Also converts values to other types if specified.
|
|
26990
|
+
* @param message WorkflowUpdateRejectedEventAttributes
|
|
26993
26991
|
* @param [options] Conversion options
|
|
26994
26992
|
* @returns Plain object
|
|
26995
26993
|
*/
|
|
26996
|
-
public static toObject(message: temporal.api.history.v1.
|
|
26994
|
+
public static toObject(message: temporal.api.history.v1.WorkflowUpdateRejectedEventAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26997
26995
|
|
|
26998
26996
|
/**
|
|
26999
|
-
* Converts this
|
|
26997
|
+
* Converts this WorkflowUpdateRejectedEventAttributes to JSON.
|
|
27000
26998
|
* @returns JSON object
|
|
27001
26999
|
*/
|
|
27002
27000
|
public toJSON(): { [k: string]: any };
|
|
27003
27001
|
|
|
27004
27002
|
/**
|
|
27005
|
-
* Gets the default type url for
|
|
27003
|
+
* Gets the default type url for WorkflowUpdateRejectedEventAttributes
|
|
27006
27004
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27007
27005
|
* @returns The default type url
|
|
27008
27006
|
*/
|
|
@@ -27360,8 +27358,8 @@ export namespace temporal {
|
|
|
27360
27358
|
/** HistoryEvent upsertWorkflowSearchAttributesEventAttributes */
|
|
27361
27359
|
upsertWorkflowSearchAttributesEventAttributes?: (temporal.api.history.v1.IUpsertWorkflowSearchAttributesEventAttributes|null);
|
|
27362
27360
|
|
|
27363
|
-
/** HistoryEvent
|
|
27364
|
-
|
|
27361
|
+
/** HistoryEvent workflowUpdateRejectedEventAttributes */
|
|
27362
|
+
workflowUpdateRejectedEventAttributes?: (temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes|null);
|
|
27365
27363
|
|
|
27366
27364
|
/** HistoryEvent workflowUpdateAcceptedEventAttributes */
|
|
27367
27365
|
workflowUpdateAcceptedEventAttributes?: (temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes|null);
|
|
@@ -27526,8 +27524,8 @@ export namespace temporal {
|
|
|
27526
27524
|
/** HistoryEvent upsertWorkflowSearchAttributesEventAttributes. */
|
|
27527
27525
|
public upsertWorkflowSearchAttributesEventAttributes?: (temporal.api.history.v1.IUpsertWorkflowSearchAttributesEventAttributes|null);
|
|
27528
27526
|
|
|
27529
|
-
/** HistoryEvent
|
|
27530
|
-
public
|
|
27527
|
+
/** HistoryEvent workflowUpdateRejectedEventAttributes. */
|
|
27528
|
+
public workflowUpdateRejectedEventAttributes?: (temporal.api.history.v1.IWorkflowUpdateRejectedEventAttributes|null);
|
|
27531
27529
|
|
|
27532
27530
|
/** HistoryEvent workflowUpdateAcceptedEventAttributes. */
|
|
27533
27531
|
public workflowUpdateAcceptedEventAttributes?: (temporal.api.history.v1.IWorkflowUpdateAcceptedEventAttributes|null);
|
|
@@ -27545,7 +27543,7 @@ export namespace temporal {
|
|
|
27545
27543
|
public workflowPropertiesModifiedEventAttributes?: (temporal.api.history.v1.IWorkflowPropertiesModifiedEventAttributes|null);
|
|
27546
27544
|
|
|
27547
27545
|
/** HistoryEvent attributes. */
|
|
27548
|
-
public attributes?: ("workflowExecutionStartedEventAttributes"|"workflowExecutionCompletedEventAttributes"|"workflowExecutionFailedEventAttributes"|"workflowExecutionTimedOutEventAttributes"|"workflowTaskScheduledEventAttributes"|"workflowTaskStartedEventAttributes"|"workflowTaskCompletedEventAttributes"|"workflowTaskTimedOutEventAttributes"|"workflowTaskFailedEventAttributes"|"activityTaskScheduledEventAttributes"|"activityTaskStartedEventAttributes"|"activityTaskCompletedEventAttributes"|"activityTaskFailedEventAttributes"|"activityTaskTimedOutEventAttributes"|"timerStartedEventAttributes"|"timerFiredEventAttributes"|"activityTaskCancelRequestedEventAttributes"|"activityTaskCanceledEventAttributes"|"timerCanceledEventAttributes"|"markerRecordedEventAttributes"|"workflowExecutionSignaledEventAttributes"|"workflowExecutionTerminatedEventAttributes"|"workflowExecutionCancelRequestedEventAttributes"|"workflowExecutionCanceledEventAttributes"|"requestCancelExternalWorkflowExecutionInitiatedEventAttributes"|"requestCancelExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionCancelRequestedEventAttributes"|"workflowExecutionContinuedAsNewEventAttributes"|"startChildWorkflowExecutionInitiatedEventAttributes"|"startChildWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionStartedEventAttributes"|"childWorkflowExecutionCompletedEventAttributes"|"childWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionCanceledEventAttributes"|"childWorkflowExecutionTimedOutEventAttributes"|"childWorkflowExecutionTerminatedEventAttributes"|"signalExternalWorkflowExecutionInitiatedEventAttributes"|"signalExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionSignaledEventAttributes"|"upsertWorkflowSearchAttributesEventAttributes"|"
|
|
27546
|
+
public attributes?: ("workflowExecutionStartedEventAttributes"|"workflowExecutionCompletedEventAttributes"|"workflowExecutionFailedEventAttributes"|"workflowExecutionTimedOutEventAttributes"|"workflowTaskScheduledEventAttributes"|"workflowTaskStartedEventAttributes"|"workflowTaskCompletedEventAttributes"|"workflowTaskTimedOutEventAttributes"|"workflowTaskFailedEventAttributes"|"activityTaskScheduledEventAttributes"|"activityTaskStartedEventAttributes"|"activityTaskCompletedEventAttributes"|"activityTaskFailedEventAttributes"|"activityTaskTimedOutEventAttributes"|"timerStartedEventAttributes"|"timerFiredEventAttributes"|"activityTaskCancelRequestedEventAttributes"|"activityTaskCanceledEventAttributes"|"timerCanceledEventAttributes"|"markerRecordedEventAttributes"|"workflowExecutionSignaledEventAttributes"|"workflowExecutionTerminatedEventAttributes"|"workflowExecutionCancelRequestedEventAttributes"|"workflowExecutionCanceledEventAttributes"|"requestCancelExternalWorkflowExecutionInitiatedEventAttributes"|"requestCancelExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionCancelRequestedEventAttributes"|"workflowExecutionContinuedAsNewEventAttributes"|"startChildWorkflowExecutionInitiatedEventAttributes"|"startChildWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionStartedEventAttributes"|"childWorkflowExecutionCompletedEventAttributes"|"childWorkflowExecutionFailedEventAttributes"|"childWorkflowExecutionCanceledEventAttributes"|"childWorkflowExecutionTimedOutEventAttributes"|"childWorkflowExecutionTerminatedEventAttributes"|"signalExternalWorkflowExecutionInitiatedEventAttributes"|"signalExternalWorkflowExecutionFailedEventAttributes"|"externalWorkflowExecutionSignaledEventAttributes"|"upsertWorkflowSearchAttributesEventAttributes"|"workflowUpdateRejectedEventAttributes"|"workflowUpdateAcceptedEventAttributes"|"workflowUpdateCompletedEventAttributes"|"workflowPropertiesModifiedExternallyEventAttributes"|"activityPropertiesModifiedExternallyEventAttributes"|"workflowPropertiesModifiedEventAttributes");
|
|
27549
27547
|
|
|
27550
27548
|
/**
|
|
27551
27549
|
* Creates a new HistoryEvent instance using the specified properties.
|
|
@@ -27710,203 +27708,628 @@ export namespace temporal {
|
|
|
27710
27708
|
}
|
|
27711
27709
|
}
|
|
27712
27710
|
|
|
27713
|
-
/** Namespace
|
|
27714
|
-
namespace
|
|
27711
|
+
/** Namespace interaction. */
|
|
27712
|
+
namespace interaction {
|
|
27715
27713
|
|
|
27716
27714
|
/** Namespace v1. */
|
|
27717
27715
|
namespace v1 {
|
|
27718
27716
|
|
|
27719
|
-
/** Properties of a
|
|
27720
|
-
interface
|
|
27717
|
+
/** Properties of a Meta. */
|
|
27718
|
+
interface IMeta {
|
|
27721
27719
|
|
|
27722
|
-
/**
|
|
27723
|
-
|
|
27720
|
+
/** Meta id */
|
|
27721
|
+
id?: (string|null);
|
|
27724
27722
|
|
|
27725
|
-
/**
|
|
27726
|
-
|
|
27723
|
+
/** Meta eventId */
|
|
27724
|
+
eventId?: (Long|null);
|
|
27725
|
+
|
|
27726
|
+
/** Meta interactionType */
|
|
27727
|
+
interactionType?: (temporal.api.enums.v1.InteractionType|null);
|
|
27728
|
+
|
|
27729
|
+
/** Meta identity */
|
|
27730
|
+
identity?: (string|null);
|
|
27731
|
+
|
|
27732
|
+
/** Meta requestId */
|
|
27733
|
+
requestId?: (string|null);
|
|
27727
27734
|
}
|
|
27728
27735
|
|
|
27729
|
-
/** Represents a
|
|
27730
|
-
class
|
|
27736
|
+
/** Represents a Meta. */
|
|
27737
|
+
class Meta implements IMeta {
|
|
27731
27738
|
|
|
27732
27739
|
/**
|
|
27733
|
-
* Constructs a new
|
|
27740
|
+
* Constructs a new Meta.
|
|
27734
27741
|
* @param [properties] Properties to set
|
|
27735
27742
|
*/
|
|
27736
|
-
constructor(properties?: temporal.api.
|
|
27743
|
+
constructor(properties?: temporal.api.interaction.v1.IMeta);
|
|
27737
27744
|
|
|
27738
|
-
/**
|
|
27739
|
-
public
|
|
27745
|
+
/** Meta id. */
|
|
27746
|
+
public id: string;
|
|
27740
27747
|
|
|
27741
|
-
/**
|
|
27742
|
-
public
|
|
27748
|
+
/** Meta eventId. */
|
|
27749
|
+
public eventId: Long;
|
|
27750
|
+
|
|
27751
|
+
/** Meta interactionType. */
|
|
27752
|
+
public interactionType: temporal.api.enums.v1.InteractionType;
|
|
27753
|
+
|
|
27754
|
+
/** Meta identity. */
|
|
27755
|
+
public identity: string;
|
|
27756
|
+
|
|
27757
|
+
/** Meta requestId. */
|
|
27758
|
+
public requestId: string;
|
|
27743
27759
|
|
|
27744
27760
|
/**
|
|
27745
|
-
* Creates a new
|
|
27761
|
+
* Creates a new Meta instance using the specified properties.
|
|
27746
27762
|
* @param [properties] Properties to set
|
|
27747
|
-
* @returns
|
|
27763
|
+
* @returns Meta instance
|
|
27748
27764
|
*/
|
|
27749
|
-
public static create(properties?: temporal.api.
|
|
27765
|
+
public static create(properties?: temporal.api.interaction.v1.IMeta): temporal.api.interaction.v1.Meta;
|
|
27750
27766
|
|
|
27751
27767
|
/**
|
|
27752
|
-
* Encodes the specified
|
|
27753
|
-
* @param message
|
|
27768
|
+
* Encodes the specified Meta message. Does not implicitly {@link temporal.api.interaction.v1.Meta.verify|verify} messages.
|
|
27769
|
+
* @param message Meta message or plain object to encode
|
|
27754
27770
|
* @param [writer] Writer to encode to
|
|
27755
27771
|
* @returns Writer
|
|
27756
27772
|
*/
|
|
27757
|
-
public static encode(message: temporal.api.
|
|
27773
|
+
public static encode(message: temporal.api.interaction.v1.IMeta, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27758
27774
|
|
|
27759
27775
|
/**
|
|
27760
|
-
* Encodes the specified
|
|
27761
|
-
* @param message
|
|
27776
|
+
* Encodes the specified Meta message, length delimited. Does not implicitly {@link temporal.api.interaction.v1.Meta.verify|verify} messages.
|
|
27777
|
+
* @param message Meta message or plain object to encode
|
|
27762
27778
|
* @param [writer] Writer to encode to
|
|
27763
27779
|
* @returns Writer
|
|
27764
27780
|
*/
|
|
27765
|
-
public static encodeDelimited(message: temporal.api.
|
|
27781
|
+
public static encodeDelimited(message: temporal.api.interaction.v1.IMeta, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27766
27782
|
|
|
27767
27783
|
/**
|
|
27768
|
-
* Decodes a
|
|
27784
|
+
* Decodes a Meta message from the specified reader or buffer.
|
|
27769
27785
|
* @param reader Reader or buffer to decode from
|
|
27770
27786
|
* @param [length] Message length if known beforehand
|
|
27771
|
-
* @returns
|
|
27787
|
+
* @returns Meta
|
|
27772
27788
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27773
27789
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27774
27790
|
*/
|
|
27775
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.
|
|
27791
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.interaction.v1.Meta;
|
|
27776
27792
|
|
|
27777
27793
|
/**
|
|
27778
|
-
* Decodes a
|
|
27794
|
+
* Decodes a Meta message from the specified reader or buffer, length delimited.
|
|
27779
27795
|
* @param reader Reader or buffer to decode from
|
|
27780
|
-
* @returns
|
|
27796
|
+
* @returns Meta
|
|
27781
27797
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27782
27798
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27783
27799
|
*/
|
|
27784
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.
|
|
27800
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.interaction.v1.Meta;
|
|
27785
27801
|
|
|
27786
27802
|
/**
|
|
27787
|
-
* Creates a
|
|
27803
|
+
* Creates a Meta message from a plain object. Also converts values to their respective internal types.
|
|
27788
27804
|
* @param object Plain object
|
|
27789
|
-
* @returns
|
|
27805
|
+
* @returns Meta
|
|
27790
27806
|
*/
|
|
27791
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.
|
|
27807
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.interaction.v1.Meta;
|
|
27792
27808
|
|
|
27793
27809
|
/**
|
|
27794
|
-
* Creates a plain object from a
|
|
27795
|
-
* @param message
|
|
27810
|
+
* Creates a plain object from a Meta message. Also converts values to other types if specified.
|
|
27811
|
+
* @param message Meta
|
|
27796
27812
|
* @param [options] Conversion options
|
|
27797
27813
|
* @returns Plain object
|
|
27798
27814
|
*/
|
|
27799
|
-
public static toObject(message: temporal.api.
|
|
27815
|
+
public static toObject(message: temporal.api.interaction.v1.Meta, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
27800
27816
|
|
|
27801
27817
|
/**
|
|
27802
|
-
* Converts this
|
|
27818
|
+
* Converts this Meta to JSON.
|
|
27803
27819
|
* @returns JSON object
|
|
27804
27820
|
*/
|
|
27805
27821
|
public toJSON(): { [k: string]: any };
|
|
27806
27822
|
|
|
27807
27823
|
/**
|
|
27808
|
-
* Gets the default type url for
|
|
27824
|
+
* Gets the default type url for Meta
|
|
27809
27825
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27810
27826
|
* @returns The default type url
|
|
27811
27827
|
*/
|
|
27812
27828
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27813
27829
|
}
|
|
27814
27830
|
|
|
27815
|
-
/** Properties of
|
|
27816
|
-
interface
|
|
27831
|
+
/** Properties of an Input. */
|
|
27832
|
+
interface IInput {
|
|
27817
27833
|
|
|
27818
|
-
/**
|
|
27819
|
-
|
|
27834
|
+
/** Input header */
|
|
27835
|
+
header?: (temporal.api.common.v1.IHeader|null);
|
|
27836
|
+
|
|
27837
|
+
/** Input name */
|
|
27838
|
+
name?: (string|null);
|
|
27839
|
+
|
|
27840
|
+
/** Input args */
|
|
27841
|
+
args?: (temporal.api.common.v1.IPayloads|null);
|
|
27820
27842
|
}
|
|
27821
27843
|
|
|
27822
|
-
/** Represents
|
|
27823
|
-
class
|
|
27844
|
+
/** Represents an Input. */
|
|
27845
|
+
class Input implements IInput {
|
|
27824
27846
|
|
|
27825
27847
|
/**
|
|
27826
|
-
* Constructs a new
|
|
27848
|
+
* Constructs a new Input.
|
|
27827
27849
|
* @param [properties] Properties to set
|
|
27828
27850
|
*/
|
|
27829
|
-
constructor(properties?: temporal.api.
|
|
27851
|
+
constructor(properties?: temporal.api.interaction.v1.IInput);
|
|
27830
27852
|
|
|
27831
|
-
/**
|
|
27832
|
-
public
|
|
27853
|
+
/** Input header. */
|
|
27854
|
+
public header?: (temporal.api.common.v1.IHeader|null);
|
|
27855
|
+
|
|
27856
|
+
/** Input name. */
|
|
27857
|
+
public name: string;
|
|
27858
|
+
|
|
27859
|
+
/** Input args. */
|
|
27860
|
+
public args?: (temporal.api.common.v1.IPayloads|null);
|
|
27833
27861
|
|
|
27834
27862
|
/**
|
|
27835
|
-
* Creates a new
|
|
27863
|
+
* Creates a new Input instance using the specified properties.
|
|
27836
27864
|
* @param [properties] Properties to set
|
|
27837
|
-
* @returns
|
|
27865
|
+
* @returns Input instance
|
|
27838
27866
|
*/
|
|
27839
|
-
public static create(properties?: temporal.api.
|
|
27867
|
+
public static create(properties?: temporal.api.interaction.v1.IInput): temporal.api.interaction.v1.Input;
|
|
27840
27868
|
|
|
27841
27869
|
/**
|
|
27842
|
-
* Encodes the specified
|
|
27843
|
-
* @param message
|
|
27870
|
+
* Encodes the specified Input message. Does not implicitly {@link temporal.api.interaction.v1.Input.verify|verify} messages.
|
|
27871
|
+
* @param message Input message or plain object to encode
|
|
27844
27872
|
* @param [writer] Writer to encode to
|
|
27845
27873
|
* @returns Writer
|
|
27846
27874
|
*/
|
|
27847
|
-
public static encode(message: temporal.api.
|
|
27875
|
+
public static encode(message: temporal.api.interaction.v1.IInput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27848
27876
|
|
|
27849
27877
|
/**
|
|
27850
|
-
* Encodes the specified
|
|
27851
|
-
* @param message
|
|
27878
|
+
* Encodes the specified Input message, length delimited. Does not implicitly {@link temporal.api.interaction.v1.Input.verify|verify} messages.
|
|
27879
|
+
* @param message Input message or plain object to encode
|
|
27852
27880
|
* @param [writer] Writer to encode to
|
|
27853
27881
|
* @returns Writer
|
|
27854
27882
|
*/
|
|
27855
|
-
public static encodeDelimited(message: temporal.api.
|
|
27883
|
+
public static encodeDelimited(message: temporal.api.interaction.v1.IInput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27856
27884
|
|
|
27857
27885
|
/**
|
|
27858
|
-
* Decodes
|
|
27886
|
+
* Decodes an Input message from the specified reader or buffer.
|
|
27859
27887
|
* @param reader Reader or buffer to decode from
|
|
27860
27888
|
* @param [length] Message length if known beforehand
|
|
27861
|
-
* @returns
|
|
27889
|
+
* @returns Input
|
|
27862
27890
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27863
27891
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27864
27892
|
*/
|
|
27865
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.
|
|
27893
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.interaction.v1.Input;
|
|
27866
27894
|
|
|
27867
27895
|
/**
|
|
27868
|
-
* Decodes
|
|
27896
|
+
* Decodes an Input message from the specified reader or buffer, length delimited.
|
|
27869
27897
|
* @param reader Reader or buffer to decode from
|
|
27870
|
-
* @returns
|
|
27898
|
+
* @returns Input
|
|
27871
27899
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27872
27900
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27873
27901
|
*/
|
|
27874
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.
|
|
27902
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.interaction.v1.Input;
|
|
27875
27903
|
|
|
27876
27904
|
/**
|
|
27877
|
-
* Creates
|
|
27905
|
+
* Creates an Input message from a plain object. Also converts values to their respective internal types.
|
|
27878
27906
|
* @param object Plain object
|
|
27879
|
-
* @returns
|
|
27907
|
+
* @returns Input
|
|
27880
27908
|
*/
|
|
27881
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.
|
|
27909
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.interaction.v1.Input;
|
|
27882
27910
|
|
|
27883
27911
|
/**
|
|
27884
|
-
* Creates a plain object from
|
|
27885
|
-
* @param message
|
|
27912
|
+
* Creates a plain object from an Input message. Also converts values to other types if specified.
|
|
27913
|
+
* @param message Input
|
|
27886
27914
|
* @param [options] Conversion options
|
|
27887
27915
|
* @returns Plain object
|
|
27888
27916
|
*/
|
|
27889
|
-
public static toObject(message: temporal.api.
|
|
27917
|
+
public static toObject(message: temporal.api.interaction.v1.Input, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
27890
27918
|
|
|
27891
27919
|
/**
|
|
27892
|
-
* Converts this
|
|
27920
|
+
* Converts this Input to JSON.
|
|
27893
27921
|
* @returns JSON object
|
|
27894
27922
|
*/
|
|
27895
27923
|
public toJSON(): { [k: string]: any };
|
|
27896
27924
|
|
|
27897
27925
|
/**
|
|
27898
|
-
* Gets the default type url for
|
|
27926
|
+
* Gets the default type url for Input
|
|
27899
27927
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27900
27928
|
* @returns The default type url
|
|
27901
27929
|
*/
|
|
27902
27930
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27903
27931
|
}
|
|
27904
27932
|
|
|
27905
|
-
/** Properties of
|
|
27906
|
-
interface
|
|
27933
|
+
/** Properties of an Output. */
|
|
27934
|
+
interface IOutput {
|
|
27907
27935
|
|
|
27908
|
-
/**
|
|
27909
|
-
|
|
27936
|
+
/** Output header */
|
|
27937
|
+
header?: (temporal.api.common.v1.IHeader|null);
|
|
27938
|
+
|
|
27939
|
+
/** Output success */
|
|
27940
|
+
success?: (temporal.api.common.v1.IPayloads|null);
|
|
27941
|
+
|
|
27942
|
+
/** Output failure */
|
|
27943
|
+
failure?: (temporal.api.failure.v1.IFailure|null);
|
|
27944
|
+
}
|
|
27945
|
+
|
|
27946
|
+
/** Represents an Output. */
|
|
27947
|
+
class Output implements IOutput {
|
|
27948
|
+
|
|
27949
|
+
/**
|
|
27950
|
+
* Constructs a new Output.
|
|
27951
|
+
* @param [properties] Properties to set
|
|
27952
|
+
*/
|
|
27953
|
+
constructor(properties?: temporal.api.interaction.v1.IOutput);
|
|
27954
|
+
|
|
27955
|
+
/** Output header. */
|
|
27956
|
+
public header?: (temporal.api.common.v1.IHeader|null);
|
|
27957
|
+
|
|
27958
|
+
/** Output success. */
|
|
27959
|
+
public success?: (temporal.api.common.v1.IPayloads|null);
|
|
27960
|
+
|
|
27961
|
+
/** Output failure. */
|
|
27962
|
+
public failure?: (temporal.api.failure.v1.IFailure|null);
|
|
27963
|
+
|
|
27964
|
+
/** Output result. */
|
|
27965
|
+
public result?: ("success"|"failure");
|
|
27966
|
+
|
|
27967
|
+
/**
|
|
27968
|
+
* Creates a new Output instance using the specified properties.
|
|
27969
|
+
* @param [properties] Properties to set
|
|
27970
|
+
* @returns Output instance
|
|
27971
|
+
*/
|
|
27972
|
+
public static create(properties?: temporal.api.interaction.v1.IOutput): temporal.api.interaction.v1.Output;
|
|
27973
|
+
|
|
27974
|
+
/**
|
|
27975
|
+
* Encodes the specified Output message. Does not implicitly {@link temporal.api.interaction.v1.Output.verify|verify} messages.
|
|
27976
|
+
* @param message Output message or plain object to encode
|
|
27977
|
+
* @param [writer] Writer to encode to
|
|
27978
|
+
* @returns Writer
|
|
27979
|
+
*/
|
|
27980
|
+
public static encode(message: temporal.api.interaction.v1.IOutput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27981
|
+
|
|
27982
|
+
/**
|
|
27983
|
+
* Encodes the specified Output message, length delimited. Does not implicitly {@link temporal.api.interaction.v1.Output.verify|verify} messages.
|
|
27984
|
+
* @param message Output message or plain object to encode
|
|
27985
|
+
* @param [writer] Writer to encode to
|
|
27986
|
+
* @returns Writer
|
|
27987
|
+
*/
|
|
27988
|
+
public static encodeDelimited(message: temporal.api.interaction.v1.IOutput, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27989
|
+
|
|
27990
|
+
/**
|
|
27991
|
+
* Decodes an Output message from the specified reader or buffer.
|
|
27992
|
+
* @param reader Reader or buffer to decode from
|
|
27993
|
+
* @param [length] Message length if known beforehand
|
|
27994
|
+
* @returns Output
|
|
27995
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27996
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27997
|
+
*/
|
|
27998
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.interaction.v1.Output;
|
|
27999
|
+
|
|
28000
|
+
/**
|
|
28001
|
+
* Decodes an Output message from the specified reader or buffer, length delimited.
|
|
28002
|
+
* @param reader Reader or buffer to decode from
|
|
28003
|
+
* @returns Output
|
|
28004
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28005
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28006
|
+
*/
|
|
28007
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.interaction.v1.Output;
|
|
28008
|
+
|
|
28009
|
+
/**
|
|
28010
|
+
* Creates an Output message from a plain object. Also converts values to their respective internal types.
|
|
28011
|
+
* @param object Plain object
|
|
28012
|
+
* @returns Output
|
|
28013
|
+
*/
|
|
28014
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.interaction.v1.Output;
|
|
28015
|
+
|
|
28016
|
+
/**
|
|
28017
|
+
* Creates a plain object from an Output message. Also converts values to other types if specified.
|
|
28018
|
+
* @param message Output
|
|
28019
|
+
* @param [options] Conversion options
|
|
28020
|
+
* @returns Plain object
|
|
28021
|
+
*/
|
|
28022
|
+
public static toObject(message: temporal.api.interaction.v1.Output, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28023
|
+
|
|
28024
|
+
/**
|
|
28025
|
+
* Converts this Output to JSON.
|
|
28026
|
+
* @returns JSON object
|
|
28027
|
+
*/
|
|
28028
|
+
public toJSON(): { [k: string]: any };
|
|
28029
|
+
|
|
28030
|
+
/**
|
|
28031
|
+
* Gets the default type url for Output
|
|
28032
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28033
|
+
* @returns The default type url
|
|
28034
|
+
*/
|
|
28035
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28036
|
+
}
|
|
28037
|
+
|
|
28038
|
+
/** Properties of an Invocation. */
|
|
28039
|
+
interface IInvocation {
|
|
28040
|
+
|
|
28041
|
+
/** Invocation meta */
|
|
28042
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
28043
|
+
|
|
28044
|
+
/** Invocation input */
|
|
28045
|
+
input?: (temporal.api.interaction.v1.IInput|null);
|
|
28046
|
+
}
|
|
28047
|
+
|
|
28048
|
+
/** Represents an Invocation. */
|
|
28049
|
+
class Invocation implements IInvocation {
|
|
28050
|
+
|
|
28051
|
+
/**
|
|
28052
|
+
* Constructs a new Invocation.
|
|
28053
|
+
* @param [properties] Properties to set
|
|
28054
|
+
*/
|
|
28055
|
+
constructor(properties?: temporal.api.interaction.v1.IInvocation);
|
|
28056
|
+
|
|
28057
|
+
/** Invocation meta. */
|
|
28058
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
28059
|
+
|
|
28060
|
+
/** Invocation input. */
|
|
28061
|
+
public input?: (temporal.api.interaction.v1.IInput|null);
|
|
28062
|
+
|
|
28063
|
+
/**
|
|
28064
|
+
* Creates a new Invocation instance using the specified properties.
|
|
28065
|
+
* @param [properties] Properties to set
|
|
28066
|
+
* @returns Invocation instance
|
|
28067
|
+
*/
|
|
28068
|
+
public static create(properties?: temporal.api.interaction.v1.IInvocation): temporal.api.interaction.v1.Invocation;
|
|
28069
|
+
|
|
28070
|
+
/**
|
|
28071
|
+
* Encodes the specified Invocation message. Does not implicitly {@link temporal.api.interaction.v1.Invocation.verify|verify} messages.
|
|
28072
|
+
* @param message Invocation message or plain object to encode
|
|
28073
|
+
* @param [writer] Writer to encode to
|
|
28074
|
+
* @returns Writer
|
|
28075
|
+
*/
|
|
28076
|
+
public static encode(message: temporal.api.interaction.v1.IInvocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28077
|
+
|
|
28078
|
+
/**
|
|
28079
|
+
* Encodes the specified Invocation message, length delimited. Does not implicitly {@link temporal.api.interaction.v1.Invocation.verify|verify} messages.
|
|
28080
|
+
* @param message Invocation message or plain object to encode
|
|
28081
|
+
* @param [writer] Writer to encode to
|
|
28082
|
+
* @returns Writer
|
|
28083
|
+
*/
|
|
28084
|
+
public static encodeDelimited(message: temporal.api.interaction.v1.IInvocation, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28085
|
+
|
|
28086
|
+
/**
|
|
28087
|
+
* Decodes an Invocation message from the specified reader or buffer.
|
|
28088
|
+
* @param reader Reader or buffer to decode from
|
|
28089
|
+
* @param [length] Message length if known beforehand
|
|
28090
|
+
* @returns Invocation
|
|
28091
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28092
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28093
|
+
*/
|
|
28094
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.interaction.v1.Invocation;
|
|
28095
|
+
|
|
28096
|
+
/**
|
|
28097
|
+
* Decodes an Invocation message from the specified reader or buffer, length delimited.
|
|
28098
|
+
* @param reader Reader or buffer to decode from
|
|
28099
|
+
* @returns Invocation
|
|
28100
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28101
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28102
|
+
*/
|
|
28103
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.interaction.v1.Invocation;
|
|
28104
|
+
|
|
28105
|
+
/**
|
|
28106
|
+
* Creates an Invocation message from a plain object. Also converts values to their respective internal types.
|
|
28107
|
+
* @param object Plain object
|
|
28108
|
+
* @returns Invocation
|
|
28109
|
+
*/
|
|
28110
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.interaction.v1.Invocation;
|
|
28111
|
+
|
|
28112
|
+
/**
|
|
28113
|
+
* Creates a plain object from an Invocation message. Also converts values to other types if specified.
|
|
28114
|
+
* @param message Invocation
|
|
28115
|
+
* @param [options] Conversion options
|
|
28116
|
+
* @returns Plain object
|
|
28117
|
+
*/
|
|
28118
|
+
public static toObject(message: temporal.api.interaction.v1.Invocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28119
|
+
|
|
28120
|
+
/**
|
|
28121
|
+
* Converts this Invocation to JSON.
|
|
28122
|
+
* @returns JSON object
|
|
28123
|
+
*/
|
|
28124
|
+
public toJSON(): { [k: string]: any };
|
|
28125
|
+
|
|
28126
|
+
/**
|
|
28127
|
+
* Gets the default type url for Invocation
|
|
28128
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28129
|
+
* @returns The default type url
|
|
28130
|
+
*/
|
|
28131
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28132
|
+
}
|
|
28133
|
+
}
|
|
28134
|
+
}
|
|
28135
|
+
|
|
28136
|
+
/** Namespace taskqueue. */
|
|
28137
|
+
namespace taskqueue {
|
|
28138
|
+
|
|
28139
|
+
/** Namespace v1. */
|
|
28140
|
+
namespace v1 {
|
|
28141
|
+
|
|
28142
|
+
/** Properties of a TaskQueue. */
|
|
28143
|
+
interface ITaskQueue {
|
|
28144
|
+
|
|
28145
|
+
/** TaskQueue name */
|
|
28146
|
+
name?: (string|null);
|
|
28147
|
+
|
|
28148
|
+
/** TaskQueue kind */
|
|
28149
|
+
kind?: (temporal.api.enums.v1.TaskQueueKind|null);
|
|
28150
|
+
}
|
|
28151
|
+
|
|
28152
|
+
/** Represents a TaskQueue. */
|
|
28153
|
+
class TaskQueue implements ITaskQueue {
|
|
28154
|
+
|
|
28155
|
+
/**
|
|
28156
|
+
* Constructs a new TaskQueue.
|
|
28157
|
+
* @param [properties] Properties to set
|
|
28158
|
+
*/
|
|
28159
|
+
constructor(properties?: temporal.api.taskqueue.v1.ITaskQueue);
|
|
28160
|
+
|
|
28161
|
+
/** TaskQueue name. */
|
|
28162
|
+
public name: string;
|
|
28163
|
+
|
|
28164
|
+
/** TaskQueue kind. */
|
|
28165
|
+
public kind: temporal.api.enums.v1.TaskQueueKind;
|
|
28166
|
+
|
|
28167
|
+
/**
|
|
28168
|
+
* Creates a new TaskQueue instance using the specified properties.
|
|
28169
|
+
* @param [properties] Properties to set
|
|
28170
|
+
* @returns TaskQueue instance
|
|
28171
|
+
*/
|
|
28172
|
+
public static create(properties?: temporal.api.taskqueue.v1.ITaskQueue): temporal.api.taskqueue.v1.TaskQueue;
|
|
28173
|
+
|
|
28174
|
+
/**
|
|
28175
|
+
* Encodes the specified TaskQueue message. Does not implicitly {@link temporal.api.taskqueue.v1.TaskQueue.verify|verify} messages.
|
|
28176
|
+
* @param message TaskQueue message or plain object to encode
|
|
28177
|
+
* @param [writer] Writer to encode to
|
|
28178
|
+
* @returns Writer
|
|
28179
|
+
*/
|
|
28180
|
+
public static encode(message: temporal.api.taskqueue.v1.ITaskQueue, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28181
|
+
|
|
28182
|
+
/**
|
|
28183
|
+
* Encodes the specified TaskQueue message, length delimited. Does not implicitly {@link temporal.api.taskqueue.v1.TaskQueue.verify|verify} messages.
|
|
28184
|
+
* @param message TaskQueue message or plain object to encode
|
|
28185
|
+
* @param [writer] Writer to encode to
|
|
28186
|
+
* @returns Writer
|
|
28187
|
+
*/
|
|
28188
|
+
public static encodeDelimited(message: temporal.api.taskqueue.v1.ITaskQueue, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28189
|
+
|
|
28190
|
+
/**
|
|
28191
|
+
* Decodes a TaskQueue message from the specified reader or buffer.
|
|
28192
|
+
* @param reader Reader or buffer to decode from
|
|
28193
|
+
* @param [length] Message length if known beforehand
|
|
28194
|
+
* @returns TaskQueue
|
|
28195
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28196
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28197
|
+
*/
|
|
28198
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.taskqueue.v1.TaskQueue;
|
|
28199
|
+
|
|
28200
|
+
/**
|
|
28201
|
+
* Decodes a TaskQueue message from the specified reader or buffer, length delimited.
|
|
28202
|
+
* @param reader Reader or buffer to decode from
|
|
28203
|
+
* @returns TaskQueue
|
|
28204
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28205
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28206
|
+
*/
|
|
28207
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.taskqueue.v1.TaskQueue;
|
|
28208
|
+
|
|
28209
|
+
/**
|
|
28210
|
+
* Creates a TaskQueue message from a plain object. Also converts values to their respective internal types.
|
|
28211
|
+
* @param object Plain object
|
|
28212
|
+
* @returns TaskQueue
|
|
28213
|
+
*/
|
|
28214
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.taskqueue.v1.TaskQueue;
|
|
28215
|
+
|
|
28216
|
+
/**
|
|
28217
|
+
* Creates a plain object from a TaskQueue message. Also converts values to other types if specified.
|
|
28218
|
+
* @param message TaskQueue
|
|
28219
|
+
* @param [options] Conversion options
|
|
28220
|
+
* @returns Plain object
|
|
28221
|
+
*/
|
|
28222
|
+
public static toObject(message: temporal.api.taskqueue.v1.TaskQueue, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28223
|
+
|
|
28224
|
+
/**
|
|
28225
|
+
* Converts this TaskQueue to JSON.
|
|
28226
|
+
* @returns JSON object
|
|
28227
|
+
*/
|
|
28228
|
+
public toJSON(): { [k: string]: any };
|
|
28229
|
+
|
|
28230
|
+
/**
|
|
28231
|
+
* Gets the default type url for TaskQueue
|
|
28232
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28233
|
+
* @returns The default type url
|
|
28234
|
+
*/
|
|
28235
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28236
|
+
}
|
|
28237
|
+
|
|
28238
|
+
/** Properties of a TaskQueueMetadata. */
|
|
28239
|
+
interface ITaskQueueMetadata {
|
|
28240
|
+
|
|
28241
|
+
/** TaskQueueMetadata maxTasksPerSecond */
|
|
28242
|
+
maxTasksPerSecond?: (google.protobuf.IDoubleValue|null);
|
|
28243
|
+
}
|
|
28244
|
+
|
|
28245
|
+
/** Represents a TaskQueueMetadata. */
|
|
28246
|
+
class TaskQueueMetadata implements ITaskQueueMetadata {
|
|
28247
|
+
|
|
28248
|
+
/**
|
|
28249
|
+
* Constructs a new TaskQueueMetadata.
|
|
28250
|
+
* @param [properties] Properties to set
|
|
28251
|
+
*/
|
|
28252
|
+
constructor(properties?: temporal.api.taskqueue.v1.ITaskQueueMetadata);
|
|
28253
|
+
|
|
28254
|
+
/** TaskQueueMetadata maxTasksPerSecond. */
|
|
28255
|
+
public maxTasksPerSecond?: (google.protobuf.IDoubleValue|null);
|
|
28256
|
+
|
|
28257
|
+
/**
|
|
28258
|
+
* Creates a new TaskQueueMetadata instance using the specified properties.
|
|
28259
|
+
* @param [properties] Properties to set
|
|
28260
|
+
* @returns TaskQueueMetadata instance
|
|
28261
|
+
*/
|
|
28262
|
+
public static create(properties?: temporal.api.taskqueue.v1.ITaskQueueMetadata): temporal.api.taskqueue.v1.TaskQueueMetadata;
|
|
28263
|
+
|
|
28264
|
+
/**
|
|
28265
|
+
* Encodes the specified TaskQueueMetadata message. Does not implicitly {@link temporal.api.taskqueue.v1.TaskQueueMetadata.verify|verify} messages.
|
|
28266
|
+
* @param message TaskQueueMetadata message or plain object to encode
|
|
28267
|
+
* @param [writer] Writer to encode to
|
|
28268
|
+
* @returns Writer
|
|
28269
|
+
*/
|
|
28270
|
+
public static encode(message: temporal.api.taskqueue.v1.ITaskQueueMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28271
|
+
|
|
28272
|
+
/**
|
|
28273
|
+
* Encodes the specified TaskQueueMetadata message, length delimited. Does not implicitly {@link temporal.api.taskqueue.v1.TaskQueueMetadata.verify|verify} messages.
|
|
28274
|
+
* @param message TaskQueueMetadata message or plain object to encode
|
|
28275
|
+
* @param [writer] Writer to encode to
|
|
28276
|
+
* @returns Writer
|
|
28277
|
+
*/
|
|
28278
|
+
public static encodeDelimited(message: temporal.api.taskqueue.v1.ITaskQueueMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28279
|
+
|
|
28280
|
+
/**
|
|
28281
|
+
* Decodes a TaskQueueMetadata message from the specified reader or buffer.
|
|
28282
|
+
* @param reader Reader or buffer to decode from
|
|
28283
|
+
* @param [length] Message length if known beforehand
|
|
28284
|
+
* @returns TaskQueueMetadata
|
|
28285
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28286
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28287
|
+
*/
|
|
28288
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.taskqueue.v1.TaskQueueMetadata;
|
|
28289
|
+
|
|
28290
|
+
/**
|
|
28291
|
+
* Decodes a TaskQueueMetadata message from the specified reader or buffer, length delimited.
|
|
28292
|
+
* @param reader Reader or buffer to decode from
|
|
28293
|
+
* @returns TaskQueueMetadata
|
|
28294
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28295
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28296
|
+
*/
|
|
28297
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.taskqueue.v1.TaskQueueMetadata;
|
|
28298
|
+
|
|
28299
|
+
/**
|
|
28300
|
+
* Creates a TaskQueueMetadata message from a plain object. Also converts values to their respective internal types.
|
|
28301
|
+
* @param object Plain object
|
|
28302
|
+
* @returns TaskQueueMetadata
|
|
28303
|
+
*/
|
|
28304
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.taskqueue.v1.TaskQueueMetadata;
|
|
28305
|
+
|
|
28306
|
+
/**
|
|
28307
|
+
* Creates a plain object from a TaskQueueMetadata message. Also converts values to other types if specified.
|
|
28308
|
+
* @param message TaskQueueMetadata
|
|
28309
|
+
* @param [options] Conversion options
|
|
28310
|
+
* @returns Plain object
|
|
28311
|
+
*/
|
|
28312
|
+
public static toObject(message: temporal.api.taskqueue.v1.TaskQueueMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28313
|
+
|
|
28314
|
+
/**
|
|
28315
|
+
* Converts this TaskQueueMetadata to JSON.
|
|
28316
|
+
* @returns JSON object
|
|
28317
|
+
*/
|
|
28318
|
+
public toJSON(): { [k: string]: any };
|
|
28319
|
+
|
|
28320
|
+
/**
|
|
28321
|
+
* Gets the default type url for TaskQueueMetadata
|
|
28322
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28323
|
+
* @returns The default type url
|
|
28324
|
+
*/
|
|
28325
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28326
|
+
}
|
|
28327
|
+
|
|
28328
|
+
/** Properties of a TaskQueueStatus. */
|
|
28329
|
+
interface ITaskQueueStatus {
|
|
28330
|
+
|
|
28331
|
+
/** TaskQueueStatus backlogCountHint */
|
|
28332
|
+
backlogCountHint?: (Long|null);
|
|
27910
28333
|
|
|
27911
28334
|
/** TaskQueueStatus readLevel */
|
|
27912
28335
|
readLevel?: (Long|null);
|
|
@@ -28606,116 +29029,6 @@ export namespace temporal {
|
|
|
28606
29029
|
}
|
|
28607
29030
|
}
|
|
28608
29031
|
|
|
28609
|
-
/** Namespace update. */
|
|
28610
|
-
namespace update {
|
|
28611
|
-
|
|
28612
|
-
/** Namespace v1. */
|
|
28613
|
-
namespace v1 {
|
|
28614
|
-
|
|
28615
|
-
/** Properties of a WorkflowUpdate. */
|
|
28616
|
-
interface IWorkflowUpdate {
|
|
28617
|
-
|
|
28618
|
-
/** WorkflowUpdate header */
|
|
28619
|
-
header?: (temporal.api.common.v1.IHeader|null);
|
|
28620
|
-
|
|
28621
|
-
/** WorkflowUpdate name */
|
|
28622
|
-
name?: (string|null);
|
|
28623
|
-
|
|
28624
|
-
/** WorkflowUpdate args */
|
|
28625
|
-
args?: (temporal.api.common.v1.IPayloads|null);
|
|
28626
|
-
}
|
|
28627
|
-
|
|
28628
|
-
/** Represents a WorkflowUpdate. */
|
|
28629
|
-
class WorkflowUpdate implements IWorkflowUpdate {
|
|
28630
|
-
|
|
28631
|
-
/**
|
|
28632
|
-
* Constructs a new WorkflowUpdate.
|
|
28633
|
-
* @param [properties] Properties to set
|
|
28634
|
-
*/
|
|
28635
|
-
constructor(properties?: temporal.api.update.v1.IWorkflowUpdate);
|
|
28636
|
-
|
|
28637
|
-
/** WorkflowUpdate header. */
|
|
28638
|
-
public header?: (temporal.api.common.v1.IHeader|null);
|
|
28639
|
-
|
|
28640
|
-
/** WorkflowUpdate name. */
|
|
28641
|
-
public name: string;
|
|
28642
|
-
|
|
28643
|
-
/** WorkflowUpdate args. */
|
|
28644
|
-
public args?: (temporal.api.common.v1.IPayloads|null);
|
|
28645
|
-
|
|
28646
|
-
/**
|
|
28647
|
-
* Creates a new WorkflowUpdate instance using the specified properties.
|
|
28648
|
-
* @param [properties] Properties to set
|
|
28649
|
-
* @returns WorkflowUpdate instance
|
|
28650
|
-
*/
|
|
28651
|
-
public static create(properties?: temporal.api.update.v1.IWorkflowUpdate): temporal.api.update.v1.WorkflowUpdate;
|
|
28652
|
-
|
|
28653
|
-
/**
|
|
28654
|
-
* Encodes the specified WorkflowUpdate message. Does not implicitly {@link temporal.api.update.v1.WorkflowUpdate.verify|verify} messages.
|
|
28655
|
-
* @param message WorkflowUpdate message or plain object to encode
|
|
28656
|
-
* @param [writer] Writer to encode to
|
|
28657
|
-
* @returns Writer
|
|
28658
|
-
*/
|
|
28659
|
-
public static encode(message: temporal.api.update.v1.IWorkflowUpdate, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28660
|
-
|
|
28661
|
-
/**
|
|
28662
|
-
* Encodes the specified WorkflowUpdate message, length delimited. Does not implicitly {@link temporal.api.update.v1.WorkflowUpdate.verify|verify} messages.
|
|
28663
|
-
* @param message WorkflowUpdate message or plain object to encode
|
|
28664
|
-
* @param [writer] Writer to encode to
|
|
28665
|
-
* @returns Writer
|
|
28666
|
-
*/
|
|
28667
|
-
public static encodeDelimited(message: temporal.api.update.v1.IWorkflowUpdate, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28668
|
-
|
|
28669
|
-
/**
|
|
28670
|
-
* Decodes a WorkflowUpdate message from the specified reader or buffer.
|
|
28671
|
-
* @param reader Reader or buffer to decode from
|
|
28672
|
-
* @param [length] Message length if known beforehand
|
|
28673
|
-
* @returns WorkflowUpdate
|
|
28674
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28675
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28676
|
-
*/
|
|
28677
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.update.v1.WorkflowUpdate;
|
|
28678
|
-
|
|
28679
|
-
/**
|
|
28680
|
-
* Decodes a WorkflowUpdate message from the specified reader or buffer, length delimited.
|
|
28681
|
-
* @param reader Reader or buffer to decode from
|
|
28682
|
-
* @returns WorkflowUpdate
|
|
28683
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28684
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28685
|
-
*/
|
|
28686
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.update.v1.WorkflowUpdate;
|
|
28687
|
-
|
|
28688
|
-
/**
|
|
28689
|
-
* Creates a WorkflowUpdate message from a plain object. Also converts values to their respective internal types.
|
|
28690
|
-
* @param object Plain object
|
|
28691
|
-
* @returns WorkflowUpdate
|
|
28692
|
-
*/
|
|
28693
|
-
public static fromObject(object: { [k: string]: any }): temporal.api.update.v1.WorkflowUpdate;
|
|
28694
|
-
|
|
28695
|
-
/**
|
|
28696
|
-
* Creates a plain object from a WorkflowUpdate message. Also converts values to other types if specified.
|
|
28697
|
-
* @param message WorkflowUpdate
|
|
28698
|
-
* @param [options] Conversion options
|
|
28699
|
-
* @returns Plain object
|
|
28700
|
-
*/
|
|
28701
|
-
public static toObject(message: temporal.api.update.v1.WorkflowUpdate, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28702
|
-
|
|
28703
|
-
/**
|
|
28704
|
-
* Converts this WorkflowUpdate to JSON.
|
|
28705
|
-
* @returns JSON object
|
|
28706
|
-
*/
|
|
28707
|
-
public toJSON(): { [k: string]: any };
|
|
28708
|
-
|
|
28709
|
-
/**
|
|
28710
|
-
* Gets the default type url for WorkflowUpdate
|
|
28711
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28712
|
-
* @returns The default type url
|
|
28713
|
-
*/
|
|
28714
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28715
|
-
}
|
|
28716
|
-
}
|
|
28717
|
-
}
|
|
28718
|
-
|
|
28719
29032
|
/** Namespace workflow. */
|
|
28720
29033
|
namespace workflow {
|
|
28721
29034
|
|
|
@@ -31349,8 +31662,11 @@ export namespace temporal {
|
|
|
31349
31662
|
/** Properties of an AcceptWorkflowUpdateCommandAttributes. */
|
|
31350
31663
|
interface IAcceptWorkflowUpdateCommandAttributes {
|
|
31351
31664
|
|
|
31352
|
-
/** AcceptWorkflowUpdateCommandAttributes
|
|
31353
|
-
|
|
31665
|
+
/** AcceptWorkflowUpdateCommandAttributes meta */
|
|
31666
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31667
|
+
|
|
31668
|
+
/** AcceptWorkflowUpdateCommandAttributes input */
|
|
31669
|
+
input?: (temporal.api.interaction.v1.IInput|null);
|
|
31354
31670
|
}
|
|
31355
31671
|
|
|
31356
31672
|
/** Represents an AcceptWorkflowUpdateCommandAttributes. */
|
|
@@ -31362,8 +31678,11 @@ export namespace temporal {
|
|
|
31362
31678
|
*/
|
|
31363
31679
|
constructor(properties?: temporal.api.command.v1.IAcceptWorkflowUpdateCommandAttributes);
|
|
31364
31680
|
|
|
31365
|
-
/** AcceptWorkflowUpdateCommandAttributes
|
|
31366
|
-
public
|
|
31681
|
+
/** AcceptWorkflowUpdateCommandAttributes meta. */
|
|
31682
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31683
|
+
|
|
31684
|
+
/** AcceptWorkflowUpdateCommandAttributes input. */
|
|
31685
|
+
public input?: (temporal.api.interaction.v1.IInput|null);
|
|
31367
31686
|
|
|
31368
31687
|
/**
|
|
31369
31688
|
* Creates a new AcceptWorkflowUpdateCommandAttributes instance using the specified properties.
|
|
@@ -31439,17 +31758,11 @@ export namespace temporal {
|
|
|
31439
31758
|
/** Properties of a CompleteWorkflowUpdateCommandAttributes. */
|
|
31440
31759
|
interface ICompleteWorkflowUpdateCommandAttributes {
|
|
31441
31760
|
|
|
31442
|
-
/** CompleteWorkflowUpdateCommandAttributes
|
|
31443
|
-
|
|
31761
|
+
/** CompleteWorkflowUpdateCommandAttributes meta */
|
|
31762
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31444
31763
|
|
|
31445
|
-
/** CompleteWorkflowUpdateCommandAttributes
|
|
31446
|
-
|
|
31447
|
-
|
|
31448
|
-
/** CompleteWorkflowUpdateCommandAttributes success */
|
|
31449
|
-
success?: (temporal.api.common.v1.IPayloads|null);
|
|
31450
|
-
|
|
31451
|
-
/** CompleteWorkflowUpdateCommandAttributes failure */
|
|
31452
|
-
failure?: (temporal.api.failure.v1.IFailure|null);
|
|
31764
|
+
/** CompleteWorkflowUpdateCommandAttributes output */
|
|
31765
|
+
output?: (temporal.api.interaction.v1.IOutput|null);
|
|
31453
31766
|
}
|
|
31454
31767
|
|
|
31455
31768
|
/** Represents a CompleteWorkflowUpdateCommandAttributes. */
|
|
@@ -31461,20 +31774,11 @@ export namespace temporal {
|
|
|
31461
31774
|
*/
|
|
31462
31775
|
constructor(properties?: temporal.api.command.v1.ICompleteWorkflowUpdateCommandAttributes);
|
|
31463
31776
|
|
|
31464
|
-
/** CompleteWorkflowUpdateCommandAttributes
|
|
31465
|
-
public
|
|
31777
|
+
/** CompleteWorkflowUpdateCommandAttributes meta. */
|
|
31778
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31466
31779
|
|
|
31467
|
-
/** CompleteWorkflowUpdateCommandAttributes
|
|
31468
|
-
public
|
|
31469
|
-
|
|
31470
|
-
/** CompleteWorkflowUpdateCommandAttributes success. */
|
|
31471
|
-
public success?: (temporal.api.common.v1.IPayloads|null);
|
|
31472
|
-
|
|
31473
|
-
/** CompleteWorkflowUpdateCommandAttributes failure. */
|
|
31474
|
-
public failure?: (temporal.api.failure.v1.IFailure|null);
|
|
31475
|
-
|
|
31476
|
-
/** CompleteWorkflowUpdateCommandAttributes result. */
|
|
31477
|
-
public result?: ("success"|"failure");
|
|
31780
|
+
/** CompleteWorkflowUpdateCommandAttributes output. */
|
|
31781
|
+
public output?: (temporal.api.interaction.v1.IOutput|null);
|
|
31478
31782
|
|
|
31479
31783
|
/**
|
|
31480
31784
|
* Creates a new CompleteWorkflowUpdateCommandAttributes instance using the specified properties.
|
|
@@ -31547,6 +31851,102 @@ export namespace temporal {
|
|
|
31547
31851
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31548
31852
|
}
|
|
31549
31853
|
|
|
31854
|
+
/** Properties of a RejectWorkflowUpdateCommandAttributes. */
|
|
31855
|
+
interface IRejectWorkflowUpdateCommandAttributes {
|
|
31856
|
+
|
|
31857
|
+
/** RejectWorkflowUpdateCommandAttributes meta */
|
|
31858
|
+
meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31859
|
+
|
|
31860
|
+
/** RejectWorkflowUpdateCommandAttributes failure */
|
|
31861
|
+
failure?: (temporal.api.failure.v1.IFailure|null);
|
|
31862
|
+
}
|
|
31863
|
+
|
|
31864
|
+
/** Represents a RejectWorkflowUpdateCommandAttributes. */
|
|
31865
|
+
class RejectWorkflowUpdateCommandAttributes implements IRejectWorkflowUpdateCommandAttributes {
|
|
31866
|
+
|
|
31867
|
+
/**
|
|
31868
|
+
* Constructs a new RejectWorkflowUpdateCommandAttributes.
|
|
31869
|
+
* @param [properties] Properties to set
|
|
31870
|
+
*/
|
|
31871
|
+
constructor(properties?: temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes);
|
|
31872
|
+
|
|
31873
|
+
/** RejectWorkflowUpdateCommandAttributes meta. */
|
|
31874
|
+
public meta?: (temporal.api.interaction.v1.IMeta|null);
|
|
31875
|
+
|
|
31876
|
+
/** RejectWorkflowUpdateCommandAttributes failure. */
|
|
31877
|
+
public failure?: (temporal.api.failure.v1.IFailure|null);
|
|
31878
|
+
|
|
31879
|
+
/**
|
|
31880
|
+
* Creates a new RejectWorkflowUpdateCommandAttributes instance using the specified properties.
|
|
31881
|
+
* @param [properties] Properties to set
|
|
31882
|
+
* @returns RejectWorkflowUpdateCommandAttributes instance
|
|
31883
|
+
*/
|
|
31884
|
+
public static create(properties?: temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes): temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes;
|
|
31885
|
+
|
|
31886
|
+
/**
|
|
31887
|
+
* Encodes the specified RejectWorkflowUpdateCommandAttributes message. Does not implicitly {@link temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes.verify|verify} messages.
|
|
31888
|
+
* @param message RejectWorkflowUpdateCommandAttributes message or plain object to encode
|
|
31889
|
+
* @param [writer] Writer to encode to
|
|
31890
|
+
* @returns Writer
|
|
31891
|
+
*/
|
|
31892
|
+
public static encode(message: temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31893
|
+
|
|
31894
|
+
/**
|
|
31895
|
+
* Encodes the specified RejectWorkflowUpdateCommandAttributes message, length delimited. Does not implicitly {@link temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes.verify|verify} messages.
|
|
31896
|
+
* @param message RejectWorkflowUpdateCommandAttributes message or plain object to encode
|
|
31897
|
+
* @param [writer] Writer to encode to
|
|
31898
|
+
* @returns Writer
|
|
31899
|
+
*/
|
|
31900
|
+
public static encodeDelimited(message: temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31901
|
+
|
|
31902
|
+
/**
|
|
31903
|
+
* Decodes a RejectWorkflowUpdateCommandAttributes message from the specified reader or buffer.
|
|
31904
|
+
* @param reader Reader or buffer to decode from
|
|
31905
|
+
* @param [length] Message length if known beforehand
|
|
31906
|
+
* @returns RejectWorkflowUpdateCommandAttributes
|
|
31907
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31908
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31909
|
+
*/
|
|
31910
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes;
|
|
31911
|
+
|
|
31912
|
+
/**
|
|
31913
|
+
* Decodes a RejectWorkflowUpdateCommandAttributes message from the specified reader or buffer, length delimited.
|
|
31914
|
+
* @param reader Reader or buffer to decode from
|
|
31915
|
+
* @returns RejectWorkflowUpdateCommandAttributes
|
|
31916
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31917
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31918
|
+
*/
|
|
31919
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes;
|
|
31920
|
+
|
|
31921
|
+
/**
|
|
31922
|
+
* Creates a RejectWorkflowUpdateCommandAttributes message from a plain object. Also converts values to their respective internal types.
|
|
31923
|
+
* @param object Plain object
|
|
31924
|
+
* @returns RejectWorkflowUpdateCommandAttributes
|
|
31925
|
+
*/
|
|
31926
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes;
|
|
31927
|
+
|
|
31928
|
+
/**
|
|
31929
|
+
* Creates a plain object from a RejectWorkflowUpdateCommandAttributes message. Also converts values to other types if specified.
|
|
31930
|
+
* @param message RejectWorkflowUpdateCommandAttributes
|
|
31931
|
+
* @param [options] Conversion options
|
|
31932
|
+
* @returns Plain object
|
|
31933
|
+
*/
|
|
31934
|
+
public static toObject(message: temporal.api.command.v1.RejectWorkflowUpdateCommandAttributes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
31935
|
+
|
|
31936
|
+
/**
|
|
31937
|
+
* Converts this RejectWorkflowUpdateCommandAttributes to JSON.
|
|
31938
|
+
* @returns JSON object
|
|
31939
|
+
*/
|
|
31940
|
+
public toJSON(): { [k: string]: any };
|
|
31941
|
+
|
|
31942
|
+
/**
|
|
31943
|
+
* Gets the default type url for RejectWorkflowUpdateCommandAttributes
|
|
31944
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
31945
|
+
* @returns The default type url
|
|
31946
|
+
*/
|
|
31947
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31948
|
+
}
|
|
31949
|
+
|
|
31550
31950
|
/** Properties of a Command. */
|
|
31551
31951
|
interface ICommand {
|
|
31552
31952
|
|
|
@@ -31600,6 +32000,9 @@ export namespace temporal {
|
|
|
31600
32000
|
|
|
31601
32001
|
/** Command modifyWorkflowPropertiesCommandAttributes */
|
|
31602
32002
|
modifyWorkflowPropertiesCommandAttributes?: (temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes|null);
|
|
32003
|
+
|
|
32004
|
+
/** Command rejectWorkflowUpdateCommandAttributes */
|
|
32005
|
+
rejectWorkflowUpdateCommandAttributes?: (temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes|null);
|
|
31603
32006
|
}
|
|
31604
32007
|
|
|
31605
32008
|
/** Represents a Command. */
|
|
@@ -31662,8 +32065,11 @@ export namespace temporal {
|
|
|
31662
32065
|
/** Command modifyWorkflowPropertiesCommandAttributes. */
|
|
31663
32066
|
public modifyWorkflowPropertiesCommandAttributes?: (temporal.api.command.v1.IModifyWorkflowPropertiesCommandAttributes|null);
|
|
31664
32067
|
|
|
32068
|
+
/** Command rejectWorkflowUpdateCommandAttributes. */
|
|
32069
|
+
public rejectWorkflowUpdateCommandAttributes?: (temporal.api.command.v1.IRejectWorkflowUpdateCommandAttributes|null);
|
|
32070
|
+
|
|
31665
32071
|
/** Command attributes. */
|
|
31666
|
-
public attributes?: ("scheduleActivityTaskCommandAttributes"|"startTimerCommandAttributes"|"completeWorkflowExecutionCommandAttributes"|"failWorkflowExecutionCommandAttributes"|"requestCancelActivityTaskCommandAttributes"|"cancelTimerCommandAttributes"|"cancelWorkflowExecutionCommandAttributes"|"requestCancelExternalWorkflowExecutionCommandAttributes"|"recordMarkerCommandAttributes"|"continueAsNewWorkflowExecutionCommandAttributes"|"startChildWorkflowExecutionCommandAttributes"|"signalExternalWorkflowExecutionCommandAttributes"|"upsertWorkflowSearchAttributesCommandAttributes"|"acceptWorkflowUpdateCommandAttributes"|"completeWorkflowUpdateCommandAttributes"|"modifyWorkflowPropertiesCommandAttributes");
|
|
32072
|
+
public attributes?: ("scheduleActivityTaskCommandAttributes"|"startTimerCommandAttributes"|"completeWorkflowExecutionCommandAttributes"|"failWorkflowExecutionCommandAttributes"|"requestCancelActivityTaskCommandAttributes"|"cancelTimerCommandAttributes"|"cancelWorkflowExecutionCommandAttributes"|"requestCancelExternalWorkflowExecutionCommandAttributes"|"recordMarkerCommandAttributes"|"continueAsNewWorkflowExecutionCommandAttributes"|"startChildWorkflowExecutionCommandAttributes"|"signalExternalWorkflowExecutionCommandAttributes"|"upsertWorkflowSearchAttributesCommandAttributes"|"acceptWorkflowUpdateCommandAttributes"|"completeWorkflowUpdateCommandAttributes"|"modifyWorkflowPropertiesCommandAttributes"|"rejectWorkflowUpdateCommandAttributes");
|
|
31667
32073
|
|
|
31668
32074
|
/**
|
|
31669
32075
|
* Creates a new Command instance using the specified properties.
|
|
@@ -35886,6 +36292,96 @@ export namespace temporal {
|
|
|
35886
36292
|
*/
|
|
35887
36293
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
35888
36294
|
}
|
|
36295
|
+
|
|
36296
|
+
/** Properties of a BatchOperationDeletion. */
|
|
36297
|
+
interface IBatchOperationDeletion {
|
|
36298
|
+
|
|
36299
|
+
/** BatchOperationDeletion identity */
|
|
36300
|
+
identity?: (string|null);
|
|
36301
|
+
}
|
|
36302
|
+
|
|
36303
|
+
/** Represents a BatchOperationDeletion. */
|
|
36304
|
+
class BatchOperationDeletion implements IBatchOperationDeletion {
|
|
36305
|
+
|
|
36306
|
+
/**
|
|
36307
|
+
* Constructs a new BatchOperationDeletion.
|
|
36308
|
+
* @param [properties] Properties to set
|
|
36309
|
+
*/
|
|
36310
|
+
constructor(properties?: temporal.api.batch.v1.IBatchOperationDeletion);
|
|
36311
|
+
|
|
36312
|
+
/** BatchOperationDeletion identity. */
|
|
36313
|
+
public identity: string;
|
|
36314
|
+
|
|
36315
|
+
/**
|
|
36316
|
+
* Creates a new BatchOperationDeletion instance using the specified properties.
|
|
36317
|
+
* @param [properties] Properties to set
|
|
36318
|
+
* @returns BatchOperationDeletion instance
|
|
36319
|
+
*/
|
|
36320
|
+
public static create(properties?: temporal.api.batch.v1.IBatchOperationDeletion): temporal.api.batch.v1.BatchOperationDeletion;
|
|
36321
|
+
|
|
36322
|
+
/**
|
|
36323
|
+
* Encodes the specified BatchOperationDeletion message. Does not implicitly {@link temporal.api.batch.v1.BatchOperationDeletion.verify|verify} messages.
|
|
36324
|
+
* @param message BatchOperationDeletion message or plain object to encode
|
|
36325
|
+
* @param [writer] Writer to encode to
|
|
36326
|
+
* @returns Writer
|
|
36327
|
+
*/
|
|
36328
|
+
public static encode(message: temporal.api.batch.v1.IBatchOperationDeletion, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36329
|
+
|
|
36330
|
+
/**
|
|
36331
|
+
* Encodes the specified BatchOperationDeletion message, length delimited. Does not implicitly {@link temporal.api.batch.v1.BatchOperationDeletion.verify|verify} messages.
|
|
36332
|
+
* @param message BatchOperationDeletion message or plain object to encode
|
|
36333
|
+
* @param [writer] Writer to encode to
|
|
36334
|
+
* @returns Writer
|
|
36335
|
+
*/
|
|
36336
|
+
public static encodeDelimited(message: temporal.api.batch.v1.IBatchOperationDeletion, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36337
|
+
|
|
36338
|
+
/**
|
|
36339
|
+
* Decodes a BatchOperationDeletion message from the specified reader or buffer.
|
|
36340
|
+
* @param reader Reader or buffer to decode from
|
|
36341
|
+
* @param [length] Message length if known beforehand
|
|
36342
|
+
* @returns BatchOperationDeletion
|
|
36343
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36344
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36345
|
+
*/
|
|
36346
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.batch.v1.BatchOperationDeletion;
|
|
36347
|
+
|
|
36348
|
+
/**
|
|
36349
|
+
* Decodes a BatchOperationDeletion message from the specified reader or buffer, length delimited.
|
|
36350
|
+
* @param reader Reader or buffer to decode from
|
|
36351
|
+
* @returns BatchOperationDeletion
|
|
36352
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36353
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36354
|
+
*/
|
|
36355
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.batch.v1.BatchOperationDeletion;
|
|
36356
|
+
|
|
36357
|
+
/**
|
|
36358
|
+
* Creates a BatchOperationDeletion message from a plain object. Also converts values to their respective internal types.
|
|
36359
|
+
* @param object Plain object
|
|
36360
|
+
* @returns BatchOperationDeletion
|
|
36361
|
+
*/
|
|
36362
|
+
public static fromObject(object: { [k: string]: any }): temporal.api.batch.v1.BatchOperationDeletion;
|
|
36363
|
+
|
|
36364
|
+
/**
|
|
36365
|
+
* Creates a plain object from a BatchOperationDeletion message. Also converts values to other types if specified.
|
|
36366
|
+
* @param message BatchOperationDeletion
|
|
36367
|
+
* @param [options] Conversion options
|
|
36368
|
+
* @returns Plain object
|
|
36369
|
+
*/
|
|
36370
|
+
public static toObject(message: temporal.api.batch.v1.BatchOperationDeletion, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
36371
|
+
|
|
36372
|
+
/**
|
|
36373
|
+
* Converts this BatchOperationDeletion to JSON.
|
|
36374
|
+
* @returns JSON object
|
|
36375
|
+
*/
|
|
36376
|
+
public toJSON(): { [k: string]: any };
|
|
36377
|
+
|
|
36378
|
+
/**
|
|
36379
|
+
* Gets the default type url for BatchOperationDeletion
|
|
36380
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
36381
|
+
* @returns The default type url
|
|
36382
|
+
*/
|
|
36383
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
36384
|
+
}
|
|
35889
36385
|
}
|
|
35890
36386
|
}
|
|
35891
36387
|
|