From 79177e6974b4a1e7eb89051add915c3136e99d8f Mon Sep 17 00:00:00 2001 From: pyricau Date: Fri, 6 Dec 2024 02:24:54 +0000 Subject: [PATCH] Apply changes from apiDump Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- workflow-core/api/workflow-core.api | 1 + workflow-runtime/api/workflow-runtime.api | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/workflow-core/api/workflow-core.api b/workflow-core/api/workflow-core.api index 80307d96a..a419493fc 100644 --- a/workflow-core/api/workflow-core.api +++ b/workflow-core/api/workflow-core.api @@ -254,6 +254,7 @@ public final class com/squareup/workflow1/WorkflowIdentifier { public static final field Companion Lcom/squareup/workflow1/WorkflowIdentifier$Companion; public fun equals (Ljava/lang/Object;)Z public final fun getRealIdentifierType ()Lcom/squareup/workflow1/WorkflowIdentifierType; + public final fun getRealType ()Lcom/squareup/workflow1/WorkflowIdentifierType; public fun hashCode ()I public final fun toByteStringOrNull ()Lokio/ByteString; public fun toString ()Ljava/lang/String; diff --git a/workflow-runtime/api/workflow-runtime.api b/workflow-runtime/api/workflow-runtime.api index f177256f2..42f8d1f00 100644 --- a/workflow-runtime/api/workflow-runtime.api +++ b/workflow-runtime/api/workflow-runtime.api @@ -104,5 +104,10 @@ public abstract interface class com/squareup/workflow1/WorkflowInterceptor$Workf public abstract fun getRenderKey ()Ljava/lang/String; public abstract fun getRuntimeConfig ()Ljava/util/Set; public abstract fun getSessionId ()J + public abstract fun isRootWorkflow ()Z +} + +public final class com/squareup/workflow1/WorkflowInterceptor$WorkflowSession$DefaultImpls { + public static fun isRootWorkflow (Lcom/squareup/workflow1/WorkflowInterceptor$WorkflowSession;)Z }