Skip to content

Commit 50ced99

Browse files
committed
fix: eslint and update version
1 parent 01cd667 commit 50ced99

File tree

3 files changed

+30
-9
lines changed

3 files changed

+30
-9
lines changed

components/zoom_admin/actions/list-users/list-users.mjs

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,18 @@ export default {
1616
optional: true,
1717
default: "active",
1818
options: [
19-
{ label: "Active", value: "active" },
20-
{ label: "Inactive", value: "inactive" },
21-
{ label: "Pending", value: "pending" },
19+
{
20+
label: "Active",
21+
value: "active",
22+
},
23+
{
24+
label: "Inactive",
25+
value: "inactive",
26+
},
27+
{
28+
label: "Pending",
29+
value: "pending",
30+
},
2231
],
2332
},
2433
pageSize: {
@@ -48,8 +57,14 @@ export default {
4857
description: "Additional fields to include in the response",
4958
optional: true,
5059
options: [
51-
{ label: "Custom Attributes", value: "custom_attributes" },
52-
{ label: "Host Key", value: "host_key" },
60+
{
61+
label: "Custom Attributes",
62+
value: "custom_attributes",
63+
},
64+
{
65+
label: "Host Key",
66+
value: "host_key",
67+
},
5368
],
5469
},
5570
nextPageToken: {
@@ -64,8 +79,14 @@ export default {
6479
description: "Filter users by specific license",
6580
optional: true,
6681
options: [
67-
{ label: "Zoom Workforce Management", value: "zoom_workforce_management" },
68-
{ label: "Zoom Compliance Management", value: "zoom_compliance_management" },
82+
{
83+
label: "Zoom Workforce Management",
84+
value: "zoom_workforce_management",
85+
},
86+
{
87+
label: "Zoom Compliance Management",
88+
value: "zoom_compliance_management",
89+
},
6990
],
7091
},
7192
},

components/zoom_admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/zoom_admin",
3-
"version": "0.8.0",
3+
"version": "0.10.0",
44
"description": "Pipedream Zoom_admin Components",
55
"main": "zoom_admin.app.mjs",
66
"keywords": [

components/zoom_admin/zoom_admin.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ export default {
403403
},
404404
async listUsers(params, nextPageToken) {
405405
const { data } = await this._makeRequest({
406-
path: `/users`,
406+
path: "/users",
407407
params: {
408408
page_size: 100,
409409
next_page_token: nextPageToken,

0 commit comments

Comments
 (0)