You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/cloudinary/actions/get-resources/get-resources.mjs
+35-23Lines changed: 35 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ export default {
4
4
key: "cloudinary-get-resources",
5
5
name: "Get Resources",
6
6
description: "Lists resources (assets) uploaded to your product environment. [See the documentation](https://cloudinary.com/documentation/admin_api#get_resources)",
7
-
version: "0.0.1",
7
+
version: "0.1.{{ts}}",
8
8
type: "action",
9
9
props: {
10
10
cloudinary,
@@ -22,28 +22,35 @@ export default {
22
22
},
23
23
prefix: {
24
24
type: "string",
25
-
label: "Prefix",
26
-
description: "Find all assets with a public ID that starts with the specified prefix",
25
+
label: "Filter by Prefix",
26
+
description: "Find all assets with a public ID that starts with the specified prefix.",
27
27
optional: true,
28
28
},
29
29
tags: {
30
30
type: "boolean",
31
-
label: "Tags",
32
-
description: "Whether to include the list of tag names assigned to each asset",
31
+
label: "Include Tags",
32
+
description: "Whether to include the list of tag names assigned to each asset.",
33
33
default: false,
34
34
optional: true,
35
35
},
36
36
context: {
37
37
type: "boolean",
38
-
label: "Context",
39
-
description: "Whether to include key-value pairs of contextual metadata associated with each asset",
38
+
label: "Include Context",
39
+
description: "Whether to include key-value pairs of contextual metadata associated with each asset.",
40
+
default: false,
41
+
optional: true,
42
+
},
43
+
metadata: {
44
+
type: "boolean",
45
+
label: "Include Metadata",
46
+
description: "Whether to include the structured metadata fields and values assigned to each asset.",
40
47
default: false,
41
48
optional: true,
42
49
},
43
50
moderation: {
44
51
type: "boolean",
45
-
label: "Moderation",
46
-
description: "Whether to include the image moderation status of each asset",
52
+
label: "Include Moderation",
53
+
description: "Whether to include the image moderation status of each asset.",
0 commit comments