Socket
Socket
Sign inDemoInstall

@pexip-engage-public/plugin-events

Package Overview
Dependencies
Maintainers
1
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 1.0.28 to 2.0.0-canary-20231013111621

dist/conversion-analytics.d.ts

13

CHANGELOG.md
# @pexip-engage-public/plugin-events
## 2.0.0-canary-20231013111621
### Major Changes
- f94a30b50: feat: switch plugin packages to native node esm only
### Patch Changes
- Updated dependencies [f94a30b50]
- @pexip-engage-public/plugin-configuration@2.0.0-canary-20231013111621
- @pexip-engage-public/plugin-state@2.0.0-canary-20231013111621
- skedify-types@0.5.0
## 1.0.28

@@ -4,0 +17,0 @@

30

package.json
{
"name": "@pexip-engage-public/plugin-events",
"version": "1.0.28",
"version": "2.0.0-canary-20231013111621",
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-events#readme",

@@ -20,25 +20,22 @@ "bugs": {

"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./typings/index.d.ts",
"import": "./dist/index.mjs"
"import": "./dist/index.js"
}
},
"module": "./dist/index.mjs",
"types": "./typings/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"typings",
"src"
],
"dependencies": {
"@pexip-engage-public/plugin-configuration": "1.2.0",
"@pexip-engage-public/plugin-state": "1.2.0",
"skedify-types": "0.5.0"
"skedify-types": "0.5.0",
"@pexip-engage-public/plugin-state": "2.0.0-canary-20231013111621",
"@pexip-engage-public/plugin-configuration": "2.0.0-canary-20231013111621"
},
"devDependencies": {
"tsup": "^7.2.0",
"@pexip-engage/tsconfig": "0.0.9",
"eslint-config-pexip-engage": "0.0.39"
"@eslint/eslintrc": "^2.1.2",
"eslint-config-pexip-engage": "0.0.39",
"@pexip-engage/tsconfig": "0.0.10-canary-20231013111621"
},

@@ -53,9 +50,8 @@ "volta": {

"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo node_modules dist typings",
"dev": "concurrently \"tsc --build --watch\" \"tsup --watch\"",
"build": "tsc --build",
"clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
"dev": "tsc --build --watch",
"lint": "cross-env TIMING=1 eslint --max-warnings=0 .",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc --build"
"lint:fix": "pnpm lint --fix"
}
}
import type { PluginStateInput } from "@pexip-engage-public/plugin-state";
import type { Customer, MeetingType } from "skedify-types";
import type { ValueOf } from "./utils";
import type { ValueOf } from "./utils.js";

@@ -6,0 +6,0 @@ export interface CAMeta {

import type { PluginState } from "@pexip-engage-public/plugin-state";
import type { ValueOf } from "./utils";
import type { ValueOf } from "./utils.js";

@@ -82,6 +82,14 @@ export const PluginEvent = {

| "meeting-type";
subject?: { id: string; title: string };
office?: { id: string; title: string };
meetingType?: "video" | "phone" | "on_location" | "office";
employee?: { id: string; firstName: string | null; lastName: string | null };
subject?: { id: string; title?: string };
office?: { id: string; title?: string };
meetingType?:
| "video"
| "phone"
| "on_location"
| "office"
| "VIDEO"
| "PHONE"
| "ON_LOCATION"
| "OFFICE";
employee?: { id: string; firstName?: string | null; lastName?: string | null };
};

@@ -88,0 +96,0 @@ }

@@ -1,2 +0,2 @@

export * from "./conversion-analytics";
export * from "./event-types";
export * from "./conversion-analytics.js";
export * from "./event-types.js";
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