New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pexip-engage-public/plugin-configuration-parser

Package Overview
Dependencies
Maintainers
1
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pexip-engage-public/plugin-configuration-parser - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1-canary-20231215135519

16

./dist/index.js

@@ -173,7 +173,5 @@ "use strict";

"customer-customer_number": config.ccn,
"customer-date_of_birth": config.cdob,
"customer-email": config.cem,
"customer-external_id": config.ceid,
"customer-first_name": config.cfn,
"customer-gender": config.cgr,
"customer-id": config.cid,

@@ -190,4 +188,2 @@ "customer-is_existing": config.cie,

"customer-phone_number": config.cpn,
"customer-preferred_contact_id": config.cpci,
"customer-preferred_office_id": config.cpoi,
"customer-timezone": config.ctz,

@@ -290,7 +286,5 @@ language: config.lng,

customer_number: config["customer-customer_number"],
date_of_birth: config["customer-date_of_birth"],
email: config["customer-email"],
external_id: config["customer-external_id"],
first_name: config["customer-first_name"],
gender: config["customer-gender"],
id: config["customer-id"],

@@ -309,4 +303,2 @@ is_existing: config["customer-is_existing"],

phone_number: config["customer-phone_number"],
preferred_contact_id: config["customer-preferred_contact_id"],
preferred_office_id: config["customer-preferred_office_id"],
timezone: config["customer-timezone"]

@@ -448,7 +440,5 @@ },

ccn: getAttribute("customer.customer_number"),
cdob: getAttribute("customer.date_of_birth"),
cem: getAttribute("customer.email"),
ceid: getAttribute("customer.external_id"),
cfn: getAttribute("customer.first_name"),
cgr: getAttribute("customer.gender"),
cid: getAttribute("customer.id"),

@@ -465,4 +455,2 @@ cie: getAttribute("customer.is_existing"),

cpn: getAttribute("customer.phone_number"),
cpci: getAttribute("customer.preferred_contact_id"),
cpoi: getAttribute("customer.preferred_office_id"),
ctz: getAttribute("customer.timezone"),

@@ -532,7 +520,5 @@ /** APPOINTMENT */

ccn: config.customer?.customer_number,
cdob: config.customer?.date_of_birth,
cem: config.customer?.email,
ceid: config.customer?.external_id,
cfn: config.customer?.first_name,
cgr: config.customer?.gender,
cid: config.customer?.id,

@@ -549,4 +535,2 @@ cie: config.customer?.is_existing?.toString(),

cpn: config.customer?.phone_number,
cpci: config.customer?.preferred_contact_id,
cpoi: config.customer?.preferred_office_id,
ctz: config.customer?.timezone,

@@ -553,0 +537,0 @@ /** APPOINTMENT */

8

CHANGELOG.md
# @pexip-engage-public/plugin-configuration-parser
## 1.3.1-canary-20231215135519
### Patch Changes
- ccaf64df1: chore: remove deprecated config values from plugin
- Updated dependencies [ccaf64df1]
- @pexip-engage-public/plugin-configuration@1.3.1-canary-20231215135519
## 1.3.0

@@ -4,0 +12,0 @@

@@ -173,7 +173,5 @@ "use strict";

"customer-customer_number": config.ccn,
"customer-date_of_birth": config.cdob,
"customer-email": config.cem,
"customer-external_id": config.ceid,
"customer-first_name": config.cfn,
"customer-gender": config.cgr,
"customer-id": config.cid,

@@ -190,4 +188,2 @@ "customer-is_existing": config.cie,

"customer-phone_number": config.cpn,
"customer-preferred_contact_id": config.cpci,
"customer-preferred_office_id": config.cpoi,
"customer-timezone": config.ctz,

@@ -290,7 +286,5 @@ language: config.lng,

customer_number: config["customer-customer_number"],
date_of_birth: config["customer-date_of_birth"],
email: config["customer-email"],
external_id: config["customer-external_id"],
first_name: config["customer-first_name"],
gender: config["customer-gender"],
id: config["customer-id"],

@@ -309,4 +303,2 @@ is_existing: config["customer-is_existing"],

phone_number: config["customer-phone_number"],
preferred_contact_id: config["customer-preferred_contact_id"],
preferred_office_id: config["customer-preferred_office_id"],
timezone: config["customer-timezone"]

@@ -448,7 +440,5 @@ },

ccn: getAttribute("customer.customer_number"),
cdob: getAttribute("customer.date_of_birth"),
cem: getAttribute("customer.email"),
ceid: getAttribute("customer.external_id"),
cfn: getAttribute("customer.first_name"),
cgr: getAttribute("customer.gender"),
cid: getAttribute("customer.id"),

@@ -465,4 +455,2 @@ cie: getAttribute("customer.is_existing"),

cpn: getAttribute("customer.phone_number"),
cpci: getAttribute("customer.preferred_contact_id"),
cpoi: getAttribute("customer.preferred_office_id"),
ctz: getAttribute("customer.timezone"),

@@ -532,7 +520,5 @@ /** APPOINTMENT */

ccn: config.customer?.customer_number,
cdob: config.customer?.date_of_birth,
cem: config.customer?.email,
ceid: config.customer?.external_id,
cfn: config.customer?.first_name,
cgr: config.customer?.gender,
cid: config.customer?.id,

@@ -549,4 +535,2 @@ cie: config.customer?.is_existing?.toString(),

cpn: config.customer?.phone_number,
cpci: config.customer?.preferred_contact_id,
cpoi: config.customer?.preferred_office_id,
ctz: config.customer?.timezone,

@@ -553,0 +537,0 @@ /** APPOINTMENT */

4

package.json
{
"name": "@pexip-engage-public/plugin-configuration-parser",
"version": "1.3.0",
"version": "1.3.1-canary-20231215135519",
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/configuration-parser#readme",

@@ -38,3 +38,3 @@ "bugs": {

"skedify-uri-encoding": "^2.1.1",
"@pexip-engage-public/plugin-configuration": "1.3.0",
"@pexip-engage-public/plugin-configuration": "1.3.1-canary-20231215135519",
"@pexip-engage-public/plugin-utils": "1.1.0"

@@ -41,0 +41,0 @@ },

@@ -53,7 +53,5 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration";

ccn: getAttribute("customer.customer_number"),
cdob: getAttribute("customer.date_of_birth"),
cem: getAttribute("customer.email"),
ceid: getAttribute("customer.external_id"),
cfn: getAttribute("customer.first_name"),
cgr: getAttribute("customer.gender"),
cid: getAttribute("customer.id"),

@@ -70,4 +68,2 @@ cie: getAttribute("customer.is_existing"),

cpn: getAttribute("customer.phone_number"),
cpci: getAttribute("customer.preferred_contact_id"),
cpoi: getAttribute("customer.preferred_office_id"),
ctz: getAttribute("customer.timezone"),

@@ -147,7 +143,5 @@ /** APPOINTMENT */

ccn: config.customer?.customer_number,
cdob: config.customer?.date_of_birth,
cem: config.customer?.email,
ceid: config.customer?.external_id,
cfn: config.customer?.first_name,
cgr: config.customer?.gender,
cid: config.customer?.id,

@@ -164,4 +158,2 @@ cie: config.customer?.is_existing?.toString(),

cpn: config.customer?.phone_number,
cpci: config.customer?.preferred_contact_id,
cpoi: config.customer?.preferred_office_id,
ctz: config.customer?.timezone,

@@ -218,7 +210,5 @@ /** APPOINTMENT */

customer_number?: string; // ccn
date_of_birth?: string;
email?: string; // cem
external_id?: string;
first_name?: string; // cfn
gender?: string;
id?: string;

@@ -237,4 +227,2 @@ is_existing?: string | boolean;

phone_number?: string; // cpn
preferred_contact_id?: string;
preferred_office_id?: string;
timezone?: string; // ctz

@@ -328,4 +316,2 @@ };

ccn?: string;
/** Maps to parameter customer.date_of_birth (see above).*/
cdob?: string;
/** Maps to parameter customer.email (see above).*/

@@ -337,4 +323,2 @@ cem?: string;

cfn?: string;
/** Maps to parameter customer.gender (see above).*/
cgr?: string;
/** Maps to parameter customer.id (see above).*/

@@ -362,6 +346,2 @@ cid?: string;

cpn?: string;
/** Maps to parameter customer.preferred_contact_id (see above).*/
cpci?: string;
/** Maps to parameter customer.preferred_office_id (see above).*/
cpoi?: string;
/** Maps to parameter customer.timezone (see above).*/

@@ -368,0 +348,0 @@ ctz?: string;

@@ -31,7 +31,5 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration";

"customer-customer_number": config.ccn,
"customer-date_of_birth": config.cdob,
"customer-email": config.cem,
"customer-external_id": config.ceid,
"customer-first_name": config.cfn,
"customer-gender": config.cgr,
"customer-id": config.cid,

@@ -48,4 +46,2 @@ "customer-is_existing": config.cie,

"customer-phone_number": config.cpn,
"customer-preferred_contact_id": config.cpci,
"customer-preferred_office_id": config.cpoi,
"customer-timezone": config.ctz,

@@ -172,7 +168,5 @@ language: config.lng,

customer_number: config["customer-customer_number"],
date_of_birth: config["customer-date_of_birth"],
email: config["customer-email"],
external_id: config["customer-external_id"],
first_name: config["customer-first_name"],
gender: config["customer-gender"],
id: config["customer-id"],

@@ -191,4 +185,2 @@ is_existing: config["customer-is_existing"] as any,

phone_number: config["customer-phone_number"],
preferred_contact_id: config["customer-preferred_contact_id"],
preferred_office_id: config["customer-preferred_office_id"],
timezone: config["customer-timezone"],

@@ -195,0 +187,0 @@ },

@@ -111,7 +111,5 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration";

customer_number?: StringConfig;
date_of_birth?: StringConfig;
email?: StringConfig;
external_id?: StringConfig;
first_name?: StringConfig;
gender?: StringConfig;
id?: StringConfig;

@@ -130,4 +128,2 @@ is_existing?: BooleanConfig;

phone_number?: StringConfig;
preferred_contact_id?: StringConfig;
preferred_office_id?: StringConfig;
timezone?: StringConfig;

@@ -134,0 +130,0 @@ };

@@ -32,7 +32,5 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration";

customer_number?: string;
date_of_birth?: string;
email?: string;
external_id?: string;
first_name?: string;
gender?: string;
id?: string;

@@ -51,4 +49,2 @@ is_existing?: string | boolean;

phone_number?: string;
preferred_contact_id?: string;
preferred_office_id?: string;
timezone?: string;

@@ -139,4 +135,2 @@ };

ccn?: string;
/** Maps to parameter customer.date_of_birth (see above).*/
cdob?: string;
/** Maps to parameter customer.email (see above).*/

@@ -148,4 +142,2 @@ cem?: string;

cfn?: string;
/** Maps to parameter customer.gender (see above).*/
cgr?: string;
/** Maps to parameter customer.id (see above).*/

@@ -173,6 +165,2 @@ cid?: string;

cpn?: string;
/** Maps to parameter customer.preferred_contact_id (see above).*/
cpci?: string;
/** Maps to parameter customer.preferred_office_id (see above).*/
cpoi?: string;
/** Maps to parameter customer.timezone (see above).*/

@@ -179,0 +167,0 @@ ctz?: string;

@@ -38,7 +38,5 @@ import type { PluginConfiguration } from "@pexip-engage-public/plugin-configuration";

customer_number?: StringConfig;
date_of_birth?: StringConfig;
email?: StringConfig;
external_id?: StringConfig;
first_name?: StringConfig;
gender?: StringConfig;
id?: StringConfig;

@@ -57,4 +55,2 @@ is_existing?: BooleanConfig;

phone_number?: StringConfig;
preferred_contact_id?: StringConfig;
preferred_office_id?: StringConfig;
timezone?: StringConfig;

@@ -61,0 +57,0 @@ };

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc