@segment/analytics-browser-actions-bucket 1.20.1-staging.6 → 1.21.1-staging.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@segment/analytics-browser-actions-bucket",
3
- "version": "1.20.1-staging.6+a1e03c9b2",
3
+ "version": "1.21.1-staging.5+87aac1d09",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -16,11 +16,11 @@
16
16
  "typings": "./dist/esm",
17
17
  "dependencies": {
18
18
  "@bucketco/tracking-sdk": "^2.0.0",
19
- "@segment/actions-core": "^3.109.1-staging.6+a1e03c9b2",
20
- "@segment/browser-destination-runtime": "^1.39.1-staging.6+a1e03c9b2"
19
+ "@segment/actions-core": "^3.110.1-staging.5+87aac1d09",
20
+ "@segment/browser-destination-runtime": "^1.40.1-staging.5+87aac1d09"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@segment/analytics-next": ">=1.55.0"
24
24
  },
25
- "gitHead": "a1e03c9b2b16ff6a221b2627f5b3395481ccd092"
25
+ "gitHead": "87aac1d096d4d53961f5f82de385da53c8a3918b"
26
26
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  export interface Settings {
4
4
  /**
5
- * Your Bucket App tracking key, found on the tracking page.
5
+ * The publishable key for your Bucket environment, found on the tracking page on app.bucket.co.
6
6
  */
7
7
  trackingKey: string
8
8
  }
package/src/index.ts CHANGED
@@ -45,9 +45,10 @@ export const destination: BrowserDestinationDefinition<Settings, Bucket> = {
45
45
  ],
46
46
 
47
47
  settings: {
48
+ // kept as the legacy `trackingKey` here to avoid needing to migrate installed plugins
48
49
  trackingKey: {
49
- description: 'Your Bucket App tracking key, found on the tracking page.',
50
- label: 'Tracking Key',
50
+ description: 'The publishable key for your Bucket environment, found on the tracking page on app.bucket.co.',
51
+ label: 'Publishable Key',
51
52
  type: 'string',
52
53
  required: true
53
54
  }