@bigbinary/neeto-playwright-commons 1.22.40 → 1.22.42
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/index.cjs.js +13 -13
- package/index.cjs.js.map +1 -1
- package/index.js +13 -13
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -67,10 +67,10 @@ const ROUTES = {
|
|
|
67
67
|
neetoApps: `${BASE_URL}/neeto_apps`,
|
|
68
68
|
directUploads: "/direct_uploads",
|
|
69
69
|
teamMembers: {
|
|
70
|
-
all: "/
|
|
71
|
-
bulkUpdate: "/
|
|
72
|
-
index: "/
|
|
73
|
-
show: (id) => `/
|
|
70
|
+
all: "/neeto_team_members*/**",
|
|
71
|
+
bulkUpdate: "/neeto_team_members/teams/bulk_update",
|
|
72
|
+
index: "/neeto_team_members/teams",
|
|
73
|
+
show: (id) => `/neeto_team_members/teams/${id}`,
|
|
74
74
|
},
|
|
75
75
|
attachment: `/neeto_editor${BASE_URL}/direct_uploads/attach`,
|
|
76
76
|
dashboard: "/dashboard",
|
|
@@ -90,11 +90,11 @@ const ROUTES = {
|
|
|
90
90
|
};
|
|
91
91
|
const API_ROUTES = {
|
|
92
92
|
teamMembers: {
|
|
93
|
-
all: "/
|
|
94
|
-
bulkUpdate: "/
|
|
95
|
-
index: "/
|
|
96
|
-
show: (id) => `/
|
|
97
|
-
creationStatus: (id) => `/
|
|
93
|
+
all: "/neeto_team_members*/**",
|
|
94
|
+
bulkUpdate: "/neeto_team_members/teams/bulk_update",
|
|
95
|
+
index: "/neeto_team_members/teams",
|
|
96
|
+
show: (id) => `/neeto_team_members/teams/${id}`,
|
|
97
|
+
creationStatus: (id) => `/neeto_team_members/teams/creation_status/${id}`,
|
|
98
98
|
},
|
|
99
99
|
integrations: {
|
|
100
100
|
zapier: {
|
|
@@ -187,7 +187,7 @@ let MemberApis$1 = class MemberApis {
|
|
|
187
187
|
url: `${this.teamsBaseUrl}/bulk_update`,
|
|
188
188
|
body: { users: body },
|
|
189
189
|
});
|
|
190
|
-
this.teamMembersBaseUrl = "/
|
|
190
|
+
this.teamMembersBaseUrl = "/neeto_team_members";
|
|
191
191
|
this.teamsBaseUrl = `${this.teamMembersBaseUrl}/teams`;
|
|
192
192
|
}
|
|
193
193
|
};
|
|
@@ -195,7 +195,7 @@ let MemberApis$1 = class MemberApis {
|
|
|
195
195
|
let RoleApis$1 = class RoleApis {
|
|
196
196
|
constructor(neetoPlaywrightUtilities) {
|
|
197
197
|
this.neetoPlaywrightUtilities = neetoPlaywrightUtilities;
|
|
198
|
-
this.BASE_URL = "/
|
|
198
|
+
this.BASE_URL = "/neeto_team_members";
|
|
199
199
|
this.ORGANIZATION_ROLES_URL = `${this.BASE_URL}/organization_roles`;
|
|
200
200
|
this.fetch = (endpoint) => this.neetoPlaywrightUtilities.apiRequest({
|
|
201
201
|
url: `${this.BASE_URL}/${endpoint}`,
|
|
@@ -192428,7 +192428,7 @@ class MemberApis {
|
|
|
192428
192428
|
url: `${this.teamsBaseUrl}/bulk_update`,
|
|
192429
192429
|
body: { users: body },
|
|
192430
192430
|
});
|
|
192431
|
-
this.teamMembersBaseUrl = "/
|
|
192431
|
+
this.teamMembersBaseUrl = "/neeto_team_members";
|
|
192432
192432
|
this.teamsBaseUrl = `${this.teamMembersBaseUrl}/teams`;
|
|
192433
192433
|
}
|
|
192434
192434
|
}
|
|
@@ -193833,7 +193833,7 @@ class CustomDomainPage {
|
|
|
193833
193833
|
class RoleApis {
|
|
193834
193834
|
constructor(neetoPlaywrightUtilities) {
|
|
193835
193835
|
this.neetoPlaywrightUtilities = neetoPlaywrightUtilities;
|
|
193836
|
-
this.BASE_URL = "/
|
|
193836
|
+
this.BASE_URL = "/neeto_team_members";
|
|
193837
193837
|
this.ORGANIZATION_ROLES_URL = `${this.BASE_URL}/organization_roles`;
|
|
193838
193838
|
this.fetch = (endpoint) => this.neetoPlaywrightUtilities.apiRequest({
|
|
193839
193839
|
url: `${this.BASE_URL}/${endpoint}`,
|