@segment/analytics-browser-actions-braze-cloud-plugins 1.0.0
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/package.json +20 -0
- package/src/debouncePlugin.types.ts +3 -0
- package/src/generated-types.ts +3 -0
- package/src/index.ts +24 -0
- package/tsconfig.json +9 -0
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@segment/analytics-browser-actions-braze-cloud-plugins",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "./dist/cjs",
|
|
6
|
+
"module": "./dist/esm",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "yarn build:esm && yarn build:cjs",
|
|
9
|
+
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
|
|
10
|
+
"build:esm": "tsc --outDir ./dist/esm"
|
|
11
|
+
},
|
|
12
|
+
"typings": "./dist/esm",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@segment/analytics-browser-actions-braze": "^1.0.0",
|
|
15
|
+
"@segment/browser-destination-runtime": "^1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"@segment/analytics-next": "*"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Settings } from './generated-types'
|
|
2
|
+
import type { BrowserDestinationDefinition } from '@segment/browser-destination-runtime/types'
|
|
3
|
+
import { browserDestination } from '@segment/browser-destination-runtime/shim'
|
|
4
|
+
import debouncePlugin from '@segment/analytics-browser-actions-braze/debounce'
|
|
5
|
+
|
|
6
|
+
export const destination: BrowserDestinationDefinition<Settings, unknown> = {
|
|
7
|
+
name: 'Braze Cloud Mode (Actions)',
|
|
8
|
+
mode: 'device',
|
|
9
|
+
|
|
10
|
+
settings: {
|
|
11
|
+
// Add any Segment destination settings required here
|
|
12
|
+
},
|
|
13
|
+
|
|
14
|
+
initialize: async () => {
|
|
15
|
+
return {}
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
actions: {
|
|
19
|
+
// @ts-expect-error the types wont match because the Settings are very different (expected)
|
|
20
|
+
debouncePlugin
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default browserDestination(destination)
|