@walkeros/web-destination-piwikpro 0.3.0 → 0.3.1
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/dist/index.browser.js +1 -1
- package/dist/index.d.mts +5 -29
- package/dist/index.d.ts +5 -29
- package/dist/index.es5.js +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import * as _walkeros_core from '@walkeros/core';
|
|
1
2
|
import { Destination as Destination$1, Mapping as Mapping$2, z } from '@walkeros/core';
|
|
2
3
|
import { DestinationWeb } from '@walkeros/web-core';
|
|
3
|
-
import * as zod_to_json_schema from 'zod-to-json-schema';
|
|
4
4
|
|
|
5
5
|
declare global {
|
|
6
6
|
interface Window {
|
|
@@ -112,41 +112,17 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
112
112
|
appId: z.ZodString;
|
|
113
113
|
url: z.ZodString;
|
|
114
114
|
linkTracking: z.ZodDefault<z.ZodBoolean>;
|
|
115
|
-
},
|
|
116
|
-
appId: string;
|
|
117
|
-
url: string;
|
|
118
|
-
linkTracking: boolean;
|
|
119
|
-
}, {
|
|
120
|
-
appId: string;
|
|
121
|
-
url: string;
|
|
122
|
-
linkTracking?: boolean | undefined;
|
|
123
|
-
}>;
|
|
115
|
+
}, z.core.$strip>;
|
|
124
116
|
type Settings = z.infer<typeof SettingsSchema>;
|
|
125
117
|
|
|
126
118
|
declare const MappingSchema: z.ZodObject<{
|
|
127
119
|
goalId: z.ZodString;
|
|
128
120
|
goalValue: z.ZodOptional<z.ZodString>;
|
|
129
|
-
},
|
|
130
|
-
goalId: string;
|
|
131
|
-
goalValue?: string | undefined;
|
|
132
|
-
}, {
|
|
133
|
-
goalId: string;
|
|
134
|
-
goalValue?: string | undefined;
|
|
135
|
-
}>;
|
|
121
|
+
}, z.core.$strip>;
|
|
136
122
|
type Mapping = z.infer<typeof MappingSchema>;
|
|
137
123
|
|
|
138
|
-
declare const settings:
|
|
139
|
-
|
|
140
|
-
definitions?: {
|
|
141
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
142
|
-
} | undefined;
|
|
143
|
-
};
|
|
144
|
-
declare const mapping: zod_to_json_schema.JsonSchema7Type & {
|
|
145
|
-
$schema?: string | undefined;
|
|
146
|
-
definitions?: {
|
|
147
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
148
|
-
} | undefined;
|
|
149
|
-
};
|
|
124
|
+
declare const settings: _walkeros_core.JSONSchema;
|
|
125
|
+
declare const mapping: _walkeros_core.JSONSchema;
|
|
150
126
|
|
|
151
127
|
type index_Mapping = Mapping;
|
|
152
128
|
declare const index_MappingSchema: typeof MappingSchema;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import * as _walkeros_core from '@walkeros/core';
|
|
1
2
|
import { Destination as Destination$1, Mapping as Mapping$2, z } from '@walkeros/core';
|
|
2
3
|
import { DestinationWeb } from '@walkeros/web-core';
|
|
3
|
-
import * as zod_to_json_schema from 'zod-to-json-schema';
|
|
4
4
|
|
|
5
5
|
declare global {
|
|
6
6
|
interface Window {
|
|
@@ -112,41 +112,17 @@ declare const SettingsSchema: z.ZodObject<{
|
|
|
112
112
|
appId: z.ZodString;
|
|
113
113
|
url: z.ZodString;
|
|
114
114
|
linkTracking: z.ZodDefault<z.ZodBoolean>;
|
|
115
|
-
},
|
|
116
|
-
appId: string;
|
|
117
|
-
url: string;
|
|
118
|
-
linkTracking: boolean;
|
|
119
|
-
}, {
|
|
120
|
-
appId: string;
|
|
121
|
-
url: string;
|
|
122
|
-
linkTracking?: boolean | undefined;
|
|
123
|
-
}>;
|
|
115
|
+
}, z.core.$strip>;
|
|
124
116
|
type Settings = z.infer<typeof SettingsSchema>;
|
|
125
117
|
|
|
126
118
|
declare const MappingSchema: z.ZodObject<{
|
|
127
119
|
goalId: z.ZodString;
|
|
128
120
|
goalValue: z.ZodOptional<z.ZodString>;
|
|
129
|
-
},
|
|
130
|
-
goalId: string;
|
|
131
|
-
goalValue?: string | undefined;
|
|
132
|
-
}, {
|
|
133
|
-
goalId: string;
|
|
134
|
-
goalValue?: string | undefined;
|
|
135
|
-
}>;
|
|
121
|
+
}, z.core.$strip>;
|
|
136
122
|
type Mapping = z.infer<typeof MappingSchema>;
|
|
137
123
|
|
|
138
|
-
declare const settings:
|
|
139
|
-
|
|
140
|
-
definitions?: {
|
|
141
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
142
|
-
} | undefined;
|
|
143
|
-
};
|
|
144
|
-
declare const mapping: zod_to_json_schema.JsonSchema7Type & {
|
|
145
|
-
$schema?: string | undefined;
|
|
146
|
-
definitions?: {
|
|
147
|
-
[key: string]: zod_to_json_schema.JsonSchema7Type;
|
|
148
|
-
} | undefined;
|
|
149
|
-
};
|
|
124
|
+
declare const settings: _walkeros_core.JSONSchema;
|
|
125
|
+
declare const mapping: _walkeros_core.JSONSchema;
|
|
150
126
|
|
|
151
127
|
type index_Mapping = Mapping;
|
|
152
128
|
declare const index_MappingSchema: typeof MappingSchema;
|