@bigbinary/neeto-playwright-commons 1.22.36 → 1.22.38
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 +7 -1
- package/index.cjs.js.map +1 -1
- package/index.d.ts +16 -1
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -138,7 +138,7 @@ const PROFILE_LINKS = {
|
|
|
138
138
|
class ApiKeysApi {
|
|
139
139
|
constructor(neetoPlaywrightUtilities) {
|
|
140
140
|
this.neetoPlaywrightUtilities = neetoPlaywrightUtilities;
|
|
141
|
-
this.API_KEYS_BASE_URL = `
|
|
141
|
+
this.API_KEYS_BASE_URL = `neeto_api_keys${BASE_URL}`;
|
|
142
142
|
this.create = (label, type = "general") => this.neetoPlaywrightUtilities.apiRequest({
|
|
143
143
|
url: `${this.API_KEYS_BASE_URL}/api_keys`,
|
|
144
144
|
method: "post",
|
|
@@ -3506,6 +3506,7 @@ const COMMON_SELECTORS = {
|
|
|
3506
3506
|
switchWrapper: "nui-switch-wrapper",
|
|
3507
3507
|
switchLabel: "nui-switch-item",
|
|
3508
3508
|
antdSliderRail: ".ant-slider-rail",
|
|
3509
|
+
card: "neeto-molecules-card",
|
|
3509
3510
|
columnVisibilityBtn: (action) => `column-visibility-${action}-button`,
|
|
3510
3511
|
customSwitch: (switchLabel) => `${neetoCist.hyphenate(switchLabel)}-switch`,
|
|
3511
3512
|
customMenuItem: (label) => `${neetoCist.hyphenate(label)}-menu-item`,
|
|
@@ -4249,6 +4250,10 @@ const ONBOARDING_SELECTORS = {
|
|
|
4249
4250
|
congratulationsBtn: "onboarding-congratulations-button",
|
|
4250
4251
|
};
|
|
4251
4252
|
|
|
4253
|
+
const NEETO_SEO_SELECTORS = {
|
|
4254
|
+
configureButton: "neeto-seo-configure-button",
|
|
4255
|
+
};
|
|
4256
|
+
|
|
4252
4257
|
const mimeTypeMap = {
|
|
4253
4258
|
csv: "text/csv",
|
|
4254
4259
|
avi: "video/x-msvideo",
|
|
@@ -199199,6 +199204,7 @@ exports.NEETO_EDITOR_SELECTORS = NEETO_EDITOR_SELECTORS;
|
|
|
199199
199204
|
exports.NEETO_FILTERS_SELECTORS = NEETO_FILTERS_SELECTORS;
|
|
199200
199205
|
exports.NEETO_IMAGE_UPLOADER_SELECTORS = NEETO_IMAGE_UPLOADER_SELECTORS;
|
|
199201
199206
|
exports.NEETO_ROUTES = NEETO_ROUTES;
|
|
199207
|
+
exports.NEETO_SEO_SELECTORS = NEETO_SEO_SELECTORS;
|
|
199202
199208
|
exports.NEETO_TEXT_MODIFIER_SELECTORS = NEETO_TEXT_MODIFIER_SELECTORS;
|
|
199203
199209
|
exports.ONBOARDING_SELECTORS = ONBOARDING_SELECTORS;
|
|
199204
199210
|
exports.ORGANIZATION_TEXTS = ORGANIZATION_TEXTS;
|