From 502c9bc544404456cdd2877059badcdbe7c18ab6 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 24 Jun 2024 01:40:56 -0700 Subject: [PATCH] Simplify category naming since method is searchable when adding Apex Action element to Flow. --- src/System/Blob/size/System_Blob_size.cls | 2 +- src/System/Blob/toPdf/System_Blob_toPdf.cls | 2 +- src/System/Blob/toString/System_Blob_toString.cls | 2 +- src/System/Blob/valueOf/System_Blob_valueOf.cls | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/System/Blob/size/System_Blob_size.cls b/src/System/Blob/size/System_Blob_size.cls index cf6aa6f..e124c3f 100644 --- a/src/System/Blob/size/System_Blob_size.cls +++ b/src/System/Blob/size/System_Blob_size.cls @@ -5,7 +5,7 @@ global class System_Blob_size { - @InvocableMethod(label='System.Blob.size()' category='Flowpex System' iconName='slds:custom:custom79' description='Returns the number of characters in the Blob.') + @InvocableMethod(label='System.Blob.size()' category='Flowpex' iconName='slds:custom:custom79' description='Returns the number of characters in the Blob.') global static List System_Blob_size (List requests) { List responses = new List(); diff --git a/src/System/Blob/toPdf/System_Blob_toPdf.cls b/src/System/Blob/toPdf/System_Blob_toPdf.cls index b7e11d9..41ddf39 100644 --- a/src/System/Blob/toPdf/System_Blob_toPdf.cls +++ b/src/System/Blob/toPdf/System_Blob_toPdf.cls @@ -5,7 +5,7 @@ global class System_Blob_toPdf { - @InvocableMethod(label='System.Blob.toPdf()' category='Flowpex System' iconName='slds:standard:form' description='Creates a binary object out of the given string, encoding it as a PDF file.') + @InvocableMethod(label='System.Blob.toPdf()' category='Flowpex' iconName='slds:standard:form' description='Creates a binary object out of the given string, encoding it as a PDF file.') global static List System_Blob_toPdf (List requests) { List responses = new List(); diff --git a/src/System/Blob/toString/System_Blob_toString.cls b/src/System/Blob/toString/System_Blob_toString.cls index 8edb00f..b76ddb8 100644 --- a/src/System/Blob/toString/System_Blob_toString.cls +++ b/src/System/Blob/toString/System_Blob_toString.cls @@ -5,7 +5,7 @@ global class System_Blob_toString { - @InvocableMethod(label='System.Blob.toString()' category='Flowpex System' iconName='slds:standard:text' description='Casts the Blob into a String.') + @InvocableMethod(label='System.Blob.toString()' category='Flowpex' iconName='slds:standard:text' description='Casts the Blob into a String.') global static List System_Blob_toString (List requests) { List responses = new List(); diff --git a/src/System/Blob/valueOf/System_Blob_valueOf.cls b/src/System/Blob/valueOf/System_Blob_valueOf.cls index 5092897..5f46c97 100644 --- a/src/System/Blob/valueOf/System_Blob_valueOf.cls +++ b/src/System/Blob/valueOf/System_Blob_valueOf.cls @@ -5,7 +5,7 @@ global class System_Blob_valueOf { - @InvocableMethod(label='System.Blob.valueOf()' category='Flowpex System' iconName='slds:standard:default' description='Casts the specified String to a Blob.') + @InvocableMethod(label='System.Blob.valueOf()' category='Flowpex' iconName='slds:standard:default' description='Casts the specified String to a Blob.') global static List System_Blob_valueOf (List requests) { List responses = new List(); -- 2.52.0