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

@pexip-engage-public/plugin-state

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pexip-engage-public/plugin-state - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4-canary-20230207094120

6

CHANGELOG.md
# @pexip-engage-public/plugin-state
## 1.0.4-canary-20230207094120
### Patch Changes
- 7cf61b55: feat: Add experimental month Timetable
## 1.0.3

@@ -4,0 +10,0 @@

4

package.json
{
"name": "@pexip-engage-public/plugin-state",
"version": "1.0.3",
"version": "1.0.4-canary-20230207094120",
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-state#readme",

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

"@pexip-engage/tsconfig": "0.0.7",
"eslint-config-pexip-engage": "0.0.10"
"eslint-config-pexip-engage": "0.0.11"
},

@@ -42,0 +42,0 @@ "volta": {

@@ -204,2 +204,3 @@ import { z } from "zod";

* By default the value `'SMOTQC` will be assumed. This will be the case if no value was provided or if the provided value fails these constraints.
* @default "SMOTQC"
*/

@@ -264,2 +265,3 @@ flow: z.string().default(DEFAULT_FLOW),

* Used to enable/disable tracking of events in the plugin for insights about conversion.
* @default "default"
*/

@@ -283,3 +285,7 @@ status: z.enum(["default", "disabled"]).default("default"),

/**
* An RFC 5646-compatible language tag. This will cause the plugin to be displayed in the specified language, unless the language is unavailable. In that case, a best-effort fallback will be performed with increasingly more generic variants of the specified language or finally 'en' if no variants of the specified language are available.
* An RFC 5646-compatible language tag.
*
* This will cause the plugin to be displayed in the specified language, unless the language is unavailable.
*
* In that case, a best-effort fallback will be performed with increasingly more generic variants of the specified language or finally 'en' if no variants of the specified language are available.
*/

@@ -291,3 +297,5 @@ language: StringSchema,

/**
* Used to enable timezone selection when the meeting type is video or phone. Possible values: enable_timezone_selection, disable_timezone_selection. The default is disable_timezone_selection.
* Used to enable timezone selection when the meeting type is video or phone.
* @default "enable_timezone_selection"
* @type {"enable_timezone_selection" | "disable_timezone_selection"}
*/

@@ -297,6 +305,14 @@ timezoneSelection: z

.default("enable_timezone_selection"),
/**
* Used to decide wether to show month of week timetable view
* @experimental
* @default "week"
*/
timetableUI: z.enum(["week", "month"]).default("week"),
})
.default({}),
/**
* This parameter is used for prefilling the location search step, so that offices are already scoped to this location. When location is passed, both geolocation & formatted_address are required.
* This parameter is used for prefilling the location search step, so that offices are already scoped to this location.
*
* When location is passed, both geolocation & formatted_address are required.
*/

@@ -313,3 +329,5 @@ location: z

/**
* The country that should be used for searching locations. Should be a two letter ISO 3166-1 country code. You can provide a maximum of 5 comma-separated countries.
* The country that should be used for searching locations. Should be a two letter ISO 3166-1 country code.
*
* You can provide a maximum of 5 comma-separated countries.
*/

@@ -316,0 +334,0 @@ searchCountries: ArraySchema.refine((arg) => arg.length <= 5),

@@ -406,2 +406,3 @@ import { z } from "zod";

* By default the value `'SMOTQC` will be assumed. This will be the case if no value was provided or if the provided value fails these constraints.
* @default "SMOTQC"
*/

@@ -489,2 +490,3 @@ flow: z.ZodDefault<z.ZodString>;

* Used to enable/disable tracking of events in the plugin for insights about conversion.
* @default "default"
*/

@@ -603,3 +605,7 @@ status: z.ZodDefault<z.ZodEnum<["default", "disabled"]>>;

/**
* An RFC 5646-compatible language tag. This will cause the plugin to be displayed in the specified language, unless the language is unavailable. In that case, a best-effort fallback will be performed with increasingly more generic variants of the specified language or finally 'en' if no variants of the specified language are available.
* An RFC 5646-compatible language tag.
*
* This will cause the plugin to be displayed in the specified language, unless the language is unavailable.
*
* In that case, a best-effort fallback will be performed with increasingly more generic variants of the specified language or finally 'en' if no variants of the specified language are available.
*/

@@ -610,12 +616,24 @@ language: z.ZodOptional<z.ZodString>;

/**
* Used to enable timezone selection when the meeting type is video or phone. Possible values: enable_timezone_selection, disable_timezone_selection. The default is disable_timezone_selection.
* Used to enable timezone selection when the meeting type is video or phone.
* @default "enable_timezone_selection"
* @type {"enable_timezone_selection" | "disable_timezone_selection"}
*/
timezoneSelection: z.ZodDefault<z.ZodEnum<["enable_timezone_selection", "disable_timezone_selection"]>>;
/**
* Used to decide wether to show month of week timetable view
* @experimental
* @default "week"
*/
timetableUI: z.ZodDefault<z.ZodEnum<["week", "month"]>>;
}, "strip", z.ZodTypeAny, {
timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection";
timetableUI: "week" | "month";
}, {
timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined;
timetableUI?: "week" | "month" | undefined;
}>>;
/**
* This parameter is used for prefilling the location search step, so that offices are already scoped to this location. When location is passed, both geolocation & formatted_address are required.
* This parameter is used for prefilling the location search step, so that offices are already scoped to this location.
*
* When location is passed, both geolocation & formatted_address are required.
*/

@@ -637,3 +655,5 @@ location: z.ZodDefault<z.ZodObject<{

/**
* The country that should be used for searching locations. Should be a two letter ISO 3166-1 country code. You can provide a maximum of 5 comma-separated countries.
* The country that should be used for searching locations. Should be a two letter ISO 3166-1 country code.
*
* You can provide a maximum of 5 comma-separated countries.
*/

@@ -713,2 +733,3 @@ searchCountries: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>, string[], string | string[] | null | undefined>, string[], string | string[] | null | undefined>;

timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection";
timetableUI: "week" | "month";
};

@@ -787,2 +808,3 @@ searchCountries: string[];

timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined;
timetableUI?: "week" | "month" | undefined;
} | undefined;

@@ -942,2 +964,3 @@ initialSearchAddress?: string | undefined;

timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection";
timetableUI: "week" | "month";
};

@@ -1095,2 +1118,3 @@ searchCountries: string[];

timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined;
timetableUI?: "week" | "month" | undefined;
} | undefined;

@@ -1097,0 +1121,0 @@ initialSearchAddress?: string | undefined;

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