@ninetailed/experience.js-plugin-google-tagmanager 3.0.0-beta.26 → 3.0.0-beta.28

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,19 +1,20 @@
1
1
  {
2
2
  "name": "@ninetailed/experience.js-plugin-google-tagmanager",
3
- "version": "3.0.0-beta.26",
3
+ "version": "3.0.0-beta.28",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
8
  "analytics": "0.8.1",
9
- "zod": "3.19.1",
9
+ "zod": "3.20.2",
10
10
  "lodash": "4.17.21",
11
- "@ninetailed/experience.js-shared": "3.0.0-beta.26",
11
+ "@ninetailed/experience.js-shared": "3.0.0-beta.28",
12
+ "async-retry": "1.3.3",
12
13
  "ts-toolbelt": "9.6.0",
13
14
  "diary": "0.3.1",
14
15
  "locale-enum": "1.1.1",
15
16
  "i18n-iso-countries": "7.5.0",
16
- "@ninetailed/experience.js": "3.0.0-beta.26",
17
+ "@ninetailed/experience.js": "3.0.0-beta.28",
17
18
  "murmurhash-js": "1.0.0",
18
19
  "tslib": "2.4.1"
19
20
  },
@@ -87,7 +87,7 @@ declare const TrackComponentProperties: z.ZodObject<{
87
87
  isPersonalized: boolean;
88
88
  }>;
89
89
  export declare type TrackComponentProperties = z.infer<typeof TrackComponentProperties>;
90
- declare const TrackPayload: z.ZodDiscriminatedUnion<"event", z.Primitive, z.ZodObject<{
90
+ declare const TrackPayload: z.ZodDiscriminatedUnion<"event", [z.ZodObject<{
91
91
  event: z.ZodLiteral<"nt_experience">;
92
92
  properties: z.ZodObject<{
93
93
  experience: z.ZodObject<{
@@ -169,7 +169,7 @@ declare const TrackPayload: z.ZodDiscriminatedUnion<"event", z.Primitive, z.ZodO
169
169
  id: string;
170
170
  };
171
171
  };
172
- }> | z.ZodObject<{
172
+ }>, z.ZodObject<{
173
173
  event: z.ZodLiteral<"hasSeenComponent">;
174
174
  properties: z.ZodObject<{
175
175
  variant: z.ZodObject<{
@@ -226,7 +226,7 @@ declare const TrackPayload: z.ZodDiscriminatedUnion<"event", z.Primitive, z.ZodO
226
226
  };
227
227
  isPersonalized: boolean;
228
228
  };
229
- }>>;
229
+ }>]>;
230
230
  declare type TrackPayload = z.infer<typeof TrackPayload>;
231
231
  declare type TrackArgs = {
232
232
  payload: TrackPayload;