@amplitude/plugin-web-attribution-browser 2.1.84 → 2.1.85

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.
@@ -1 +1 @@
1
- {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAGhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
1
+ {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAIhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
@@ -3,8 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.webAttributionPlugin = void 0;
4
4
  var tslib_1 = require("tslib");
5
5
  var analytics_client_common_1 = require("@amplitude/analytics-client-common");
6
- var analytics_client_common_2 = require("@amplitude/analytics-client-common");
7
- var analytics_client_common_3 = require("@amplitude/analytics-client-common");
6
+ /* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment */
8
7
  /**
9
8
  * @deprecated
10
9
  * This plugin is not used by @amplitude/analytics-browser and
@@ -30,8 +29,8 @@ var webAttributionPlugin = function (options) {
30
29
  pluginConfig = webAttribution.options;
31
30
  currentCampaign = webAttribution.currentCampaign;
32
31
  previousCampaign = webAttribution.previousCampaign;
33
- isEventInNewSession = (0, analytics_client_common_3.isNewSession)(config.sessionTimeout, config.lastEventTime);
34
- if ((0, analytics_client_common_2.isNewCampaign)(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {
32
+ isEventInNewSession = (0, analytics_client_common_1.isNewSession)(config.sessionTimeout, config.lastEventTime);
33
+ if ((0, analytics_client_common_1.isNewCampaign)(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {
35
34
  if (pluginConfig.resetSessionOnNewCampaign) {
36
35
  amplitude.setSessionId(Date.now());
37
36
  config.loggerProvider.log('Created a new session for new campaign.');
@@ -1 +1 @@
1
- {"version":3,"file":"web-attribution.js","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":";;;;AAAA,8EAAoE;AAEpE,8EAAmE;AAEnE,8EAAkE;AAElE;;;;;GAKG;AACI,IAAM,oBAAoB,GAA+B,UAAU,OAAqB;IAA/B,iBA8B/D;IA9ByE,wBAAA,EAAA,YAAqB;IAC7F,IAAM,MAAM,GAAiB;QAC3B,IAAI,EAAE,2CAA2C;QACjD,IAAI,EAAE,QAAQ;QAEd,KAAK,EAAE,UAAgB,MAAqB,EAAE,SAAwB;;;;;;4BAC9D,cAAc,GAAG,IAAI,wCAAc,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;4BAC3D,qBAAM,cAAc,CAAC,IAAI,EAAE,EAAA;;4BAA3B,SAA2B,CAAC;4BAEtB,YAAY,GAAG,cAAc,CAAC,OAAO,CAAC;4BACtC,eAAe,GAAG,cAAc,CAAC,eAAe,CAAC;4BACjD,gBAAgB,GAAG,cAAc,CAAC,gBAAgB,CAAC;4BAEnD,mBAAmB,GAAG,IAAA,sCAAY,EAAC,MAAM,CAAC,cAAc,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;4BAEtF,IAAI,IAAA,uCAAa,EAAC,eAAe,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,CAAC,cAAc,EAAE,mBAAmB,CAAC,EAAE;gCAC9G,IAAI,YAAY,CAAC,yBAAyB,EAAE;oCAC1C,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;oCACnC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;iCACtE;gCACD,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;gCAC7C,aAAa,GAAG,cAAc,CAAC,qBAAqB,EAAE,CAAC;gCAC7D,SAAS,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;6BAChC;;;;;SACF;QAED,OAAO,EAAE,UAAO,KAAY;YAAK,sBAAA,KAAK,EAAA;iBAAA;KACvC,CAAC;IAEF,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AA9BW,QAAA,oBAAoB,wBA8B/B","sourcesContent":["import { WebAttribution } from '@amplitude/analytics-client-common';\nimport { BeforePlugin, BrowserClient, BrowserConfig, Event } from '@amplitude/analytics-types';\nimport { isNewCampaign } from '@amplitude/analytics-client-common';\nimport { CreateWebAttributionPlugin, Options } from './typings/web-attribution';\nimport { isNewSession } from '@amplitude/analytics-client-common';\n\n/**\n * @deprecated\n * This plugin is not used by @amplitude/analytics-browser and\n * is replaced by WebAttribution in @amplitude/analytics-client-common to\n * be able to send identify events before session start.\n */\nexport const webAttributionPlugin: CreateWebAttributionPlugin = function (options: Options = {}) {\n const plugin: BeforePlugin = {\n name: '@amplitude/plugin-web-attribution-browser',\n type: 'before',\n\n setup: async function (config: BrowserConfig, amplitude: BrowserClient) {\n const webAttribution = new WebAttribution(options, config);\n await webAttribution.init();\n\n const pluginConfig = webAttribution.options;\n const currentCampaign = webAttribution.currentCampaign;\n const previousCampaign = webAttribution.previousCampaign;\n\n const isEventInNewSession = isNewSession(config.sessionTimeout, config.lastEventTime);\n\n if (isNewCampaign(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {\n if (pluginConfig.resetSessionOnNewCampaign) {\n amplitude.setSessionId(Date.now());\n config.loggerProvider.log('Created a new session for new campaign.');\n }\n config.loggerProvider.log('Tracking attribution.');\n const campaignEvent = webAttribution.generateCampaignEvent();\n amplitude.track(campaignEvent);\n }\n },\n\n execute: async (event: Event) => event,\n };\n\n return plugin;\n};\n"]}
1
+ {"version":3,"file":"web-attribution.js","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":";;;;AAAA,8EAAiG;AAIjG,mGAAmG;AAEnG;;;;;GAKG;AACI,IAAM,oBAAoB,GAA+B,UAAU,OAAqB;IAA/B,iBA8B/D;IA9ByE,wBAAA,EAAA,YAAqB;IAC7F,IAAM,MAAM,GAAiB;QAC3B,IAAI,EAAE,2CAA2C;QACjD,IAAI,EAAE,QAAQ;QAEd,KAAK,EAAE,UAAgB,MAAqB,EAAE,SAAwB;;;;;;4BAC9D,cAAc,GAAG,IAAI,wCAAc,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;4BAC3D,qBAAM,cAAc,CAAC,IAAI,EAAE,EAAA;;4BAA3B,SAA2B,CAAC;4BAEtB,YAAY,GAAG,cAAc,CAAC,OAAO,CAAC;4BACtC,eAAe,GAAG,cAAc,CAAC,eAAe,CAAC;4BACjD,gBAAgB,GAAG,cAAc,CAAC,gBAAgB,CAAC;4BAEnD,mBAAmB,GAAG,IAAA,sCAAY,EAAC,MAAM,CAAC,cAAc,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;4BAEtF,IAAI,IAAA,uCAAa,EAAC,eAAe,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,CAAC,cAAc,EAAE,mBAAmB,CAAC,EAAE;gCAC9G,IAAI,YAAY,CAAC,yBAAyB,EAAE;oCAC1C,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;oCACnC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;iCACtE;gCACD,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;gCAC7C,aAAa,GAAG,cAAc,CAAC,qBAAqB,EAAE,CAAC;gCAC7D,SAAS,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;6BAChC;;;;;SACF;QAED,OAAO,EAAE,UAAO,KAAY;YAAK,sBAAA,KAAK,EAAA;iBAAA;KACvC,CAAC;IAEF,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AA9BW,QAAA,oBAAoB,wBA8B/B","sourcesContent":["import { WebAttribution, isNewCampaign, isNewSession } from '@amplitude/analytics-client-common';\nimport { BeforePlugin, BrowserClient, BrowserConfig, Event } from '@amplitude/analytics-types';\nimport { CreateWebAttributionPlugin, Options } from './typings/web-attribution';\n\n/* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment */\n\n/**\n * @deprecated\n * This plugin is not used by @amplitude/analytics-browser and\n * is replaced by WebAttribution in @amplitude/analytics-client-common to\n * be able to send identify events before session start.\n */\nexport const webAttributionPlugin: CreateWebAttributionPlugin = function (options: Options = {}) {\n const plugin: BeforePlugin = {\n name: '@amplitude/plugin-web-attribution-browser',\n type: 'before',\n\n setup: async function (config: BrowserConfig, amplitude: BrowserClient) {\n const webAttribution = new WebAttribution(options, config);\n await webAttribution.init();\n\n const pluginConfig = webAttribution.options;\n const currentCampaign = webAttribution.currentCampaign;\n const previousCampaign = webAttribution.previousCampaign;\n\n const isEventInNewSession = isNewSession(config.sessionTimeout, config.lastEventTime);\n\n if (isNewCampaign(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {\n if (pluginConfig.resetSessionOnNewCampaign) {\n amplitude.setSessionId(Date.now());\n config.loggerProvider.log('Created a new session for new campaign.');\n }\n config.loggerProvider.log('Tracking attribution.');\n const campaignEvent = webAttribution.generateCampaignEvent();\n amplitude.track(campaignEvent);\n }\n },\n\n execute: async (event: Event) => event,\n };\n\n return plugin;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAGhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
1
+ {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAIhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
@@ -1,7 +1,6 @@
1
1
  import { __awaiter, __generator } from "tslib";
2
- import { WebAttribution } from '@amplitude/analytics-client-common';
3
- import { isNewCampaign } from '@amplitude/analytics-client-common';
4
- import { isNewSession } from '@amplitude/analytics-client-common';
2
+ import { WebAttribution, isNewCampaign, isNewSession } from '@amplitude/analytics-client-common';
3
+ /* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment */
5
4
  /**
6
5
  * @deprecated
7
6
  * This plugin is not used by @amplitude/analytics-browser and
@@ -1 +1 @@
1
- {"version":3,"file":"web-attribution.js","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEpE,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AAEnE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAElE;;;;;GAKG;AACH,MAAM,CAAC,IAAM,oBAAoB,GAA+B,UAAU,OAAqB;IAA/B,iBA8B/D;IA9ByE,wBAAA,EAAA,YAAqB;IAC7F,IAAM,MAAM,GAAiB;QAC3B,IAAI,EAAE,2CAA2C;QACjD,IAAI,EAAE,QAAQ;QAEd,KAAK,EAAE,UAAgB,MAAqB,EAAE,SAAwB;;;;;;4BAC9D,cAAc,GAAG,IAAI,cAAc,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;4BAC3D,qBAAM,cAAc,CAAC,IAAI,EAAE,EAAA;;4BAA3B,SAA2B,CAAC;4BAEtB,YAAY,GAAG,cAAc,CAAC,OAAO,CAAC;4BACtC,eAAe,GAAG,cAAc,CAAC,eAAe,CAAC;4BACjD,gBAAgB,GAAG,cAAc,CAAC,gBAAgB,CAAC;4BAEnD,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC,cAAc,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;4BAEtF,IAAI,aAAa,CAAC,eAAe,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,CAAC,cAAc,EAAE,mBAAmB,CAAC,EAAE;gCAC9G,IAAI,YAAY,CAAC,yBAAyB,EAAE;oCAC1C,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;oCACnC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;iCACtE;gCACD,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;gCAC7C,aAAa,GAAG,cAAc,CAAC,qBAAqB,EAAE,CAAC;gCAC7D,SAAS,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;6BAChC;;;;;SACF;QAED,OAAO,EAAE,UAAO,KAAY;YAAK,sBAAA,KAAK,EAAA;iBAAA;KACvC,CAAC;IAEF,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC","sourcesContent":["import { WebAttribution } from '@amplitude/analytics-client-common';\nimport { BeforePlugin, BrowserClient, BrowserConfig, Event } from '@amplitude/analytics-types';\nimport { isNewCampaign } from '@amplitude/analytics-client-common';\nimport { CreateWebAttributionPlugin, Options } from './typings/web-attribution';\nimport { isNewSession } from '@amplitude/analytics-client-common';\n\n/**\n * @deprecated\n * This plugin is not used by @amplitude/analytics-browser and\n * is replaced by WebAttribution in @amplitude/analytics-client-common to\n * be able to send identify events before session start.\n */\nexport const webAttributionPlugin: CreateWebAttributionPlugin = function (options: Options = {}) {\n const plugin: BeforePlugin = {\n name: '@amplitude/plugin-web-attribution-browser',\n type: 'before',\n\n setup: async function (config: BrowserConfig, amplitude: BrowserClient) {\n const webAttribution = new WebAttribution(options, config);\n await webAttribution.init();\n\n const pluginConfig = webAttribution.options;\n const currentCampaign = webAttribution.currentCampaign;\n const previousCampaign = webAttribution.previousCampaign;\n\n const isEventInNewSession = isNewSession(config.sessionTimeout, config.lastEventTime);\n\n if (isNewCampaign(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {\n if (pluginConfig.resetSessionOnNewCampaign) {\n amplitude.setSessionId(Date.now());\n config.loggerProvider.log('Created a new session for new campaign.');\n }\n config.loggerProvider.log('Tracking attribution.');\n const campaignEvent = webAttribution.generateCampaignEvent();\n amplitude.track(campaignEvent);\n }\n },\n\n execute: async (event: Event) => event,\n };\n\n return plugin;\n};\n"]}
1
+ {"version":3,"file":"web-attribution.js","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAIjG,mGAAmG;AAEnG;;;;;GAKG;AACH,MAAM,CAAC,IAAM,oBAAoB,GAA+B,UAAU,OAAqB;IAA/B,iBA8B/D;IA9ByE,wBAAA,EAAA,YAAqB;IAC7F,IAAM,MAAM,GAAiB;QAC3B,IAAI,EAAE,2CAA2C;QACjD,IAAI,EAAE,QAAQ;QAEd,KAAK,EAAE,UAAgB,MAAqB,EAAE,SAAwB;;;;;;4BAC9D,cAAc,GAAG,IAAI,cAAc,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;4BAC3D,qBAAM,cAAc,CAAC,IAAI,EAAE,EAAA;;4BAA3B,SAA2B,CAAC;4BAEtB,YAAY,GAAG,cAAc,CAAC,OAAO,CAAC;4BACtC,eAAe,GAAG,cAAc,CAAC,eAAe,CAAC;4BACjD,gBAAgB,GAAG,cAAc,CAAC,gBAAgB,CAAC;4BAEnD,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC,cAAc,EAAE,MAAM,CAAC,aAAa,CAAC,CAAC;4BAEtF,IAAI,aAAa,CAAC,eAAe,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,CAAC,cAAc,EAAE,mBAAmB,CAAC,EAAE;gCAC9G,IAAI,YAAY,CAAC,yBAAyB,EAAE;oCAC1C,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;oCACnC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,yCAAyC,CAAC,CAAC;iCACtE;gCACD,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;gCAC7C,aAAa,GAAG,cAAc,CAAC,qBAAqB,EAAE,CAAC;gCAC7D,SAAS,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;6BAChC;;;;;SACF;QAED,OAAO,EAAE,UAAO,KAAY;YAAK,sBAAA,KAAK,EAAA;iBAAA;KACvC,CAAC;IAEF,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC","sourcesContent":["import { WebAttribution, isNewCampaign, isNewSession } from '@amplitude/analytics-client-common';\nimport { BeforePlugin, BrowserClient, BrowserConfig, Event } from '@amplitude/analytics-types';\nimport { CreateWebAttributionPlugin, Options } from './typings/web-attribution';\n\n/* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment */\n\n/**\n * @deprecated\n * This plugin is not used by @amplitude/analytics-browser and\n * is replaced by WebAttribution in @amplitude/analytics-client-common to\n * be able to send identify events before session start.\n */\nexport const webAttributionPlugin: CreateWebAttributionPlugin = function (options: Options = {}) {\n const plugin: BeforePlugin = {\n name: '@amplitude/plugin-web-attribution-browser',\n type: 'before',\n\n setup: async function (config: BrowserConfig, amplitude: BrowserClient) {\n const webAttribution = new WebAttribution(options, config);\n await webAttribution.init();\n\n const pluginConfig = webAttribution.options;\n const currentCampaign = webAttribution.currentCampaign;\n const previousCampaign = webAttribution.previousCampaign;\n\n const isEventInNewSession = isNewSession(config.sessionTimeout, config.lastEventTime);\n\n if (isNewCampaign(currentCampaign, previousCampaign, pluginConfig, config.loggerProvider, isEventInNewSession)) {\n if (pluginConfig.resetSessionOnNewCampaign) {\n amplitude.setSessionId(Date.now());\n config.loggerProvider.log('Created a new session for new campaign.');\n }\n config.loggerProvider.log('Tracking attribution.');\n const campaignEvent = webAttribution.generateCampaignEvent();\n amplitude.track(campaignEvent);\n }\n },\n\n execute: async (event: Event) => event,\n };\n\n return plugin;\n};\n"]}
Binary file
@@ -1 +1 @@
1
- {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAGhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
1
+ {"version":3,"file":"web-attribution.d.ts","sourceRoot":"","sources":["../../src/web-attribution.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,0BAA0B,EAAW,MAAM,2BAA2B,CAAC;AAIhF;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,EAAE,0BA8BlC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amplitude/plugin-web-attribution-browser",
3
- "version": "2.1.84",
3
+ "version": "2.1.85",
4
4
  "description": "",
5
5
  "author": "Amplitude Inc",
6
6
  "homepage": "https://github.com/amplitude/Amplitude-TypeScript",
@@ -37,13 +37,13 @@
37
37
  "url": "https://github.com/amplitude/Amplitude-TypeScript/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@amplitude/analytics-client-common": "^2.4.4",
41
- "@amplitude/analytics-core": "^2.26.2",
40
+ "@amplitude/analytics-client-common": "^2.4.5",
41
+ "@amplitude/analytics-core": "^2.27.0",
42
42
  "@amplitude/analytics-types": "^2.10.0",
43
43
  "tslib": "^2.4.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@amplitude/analytics-browser": "^2.25.4",
46
+ "@amplitude/analytics-browser": "^2.26.0",
47
47
  "@rollup/plugin-commonjs": "^23.0.4",
48
48
  "@rollup/plugin-node-resolve": "^15.0.1",
49
49
  "@rollup/plugin-typescript": "^10.0.1",
@@ -55,5 +55,5 @@
55
55
  "files": [
56
56
  "lib"
57
57
  ],
58
- "gitHead": "859b13ab478941c1544e90da196aa9323f96680e"
58
+ "gitHead": "9ad8b4e5050a8c1e02617661ab41ff301c003da2"
59
59
  }