@getuserfeedback/protocol 0.5.11 → 0.6.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/dist/app-event.d.ts +274 -274
- package/dist/app-event.d.ts.map +1 -1
- package/dist/app-event.js +16 -16
- package/dist/client-meta.d.ts +13 -13
- package/dist/client-meta.d.ts.map +1 -1
- package/dist/client-meta.js +6 -6
- package/dist/flow-assignments.d.ts +183 -183
- package/dist/flow-assignments.d.ts.map +1 -1
- package/dist/flow-assignments.js +16 -16
- package/dist/host/sdk-types.d.ts +8 -4
- package/dist/host/sdk-types.d.ts.map +1 -1
- package/dist/identity-type.d.ts +2 -2
- package/dist/identity-type.d.ts.map +1 -1
- package/dist/identity-type.js +13 -15
- package/dist/index.d.ts +86 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -1
- package/dist/public-grant-scope.d.ts +12 -0
- package/dist/public-grant-scope.d.ts.map +1 -0
- package/dist/public-grant-scope.js +13 -0
- package/dist/runtime-endpoints.d.ts +4 -4
- package/dist/runtime-endpoints.d.ts.map +1 -1
- package/dist/runtime-endpoints.js +4 -6
- package/dist/scopes.d.ts +4 -4
- package/dist/scopes.d.ts.map +1 -1
- package/dist/scopes.js +1 -1
- package/dist/trpc-envelope.d.ts +4 -4
- package/dist/trpc-envelope.d.ts.map +1 -1
- package/dist/trpc-envelope.js +1 -1
- package/dist/version-resolution.d.ts +5 -5
- package/dist/version-resolution.d.ts.map +1 -1
- package/dist/version-resolution.js +2 -2
- package/dist/widget-commands.d.ts +112 -108
- package/dist/widget-commands.d.ts.map +1 -1
- package/dist/widget-commands.js +30 -56
- package/dist/widget-config.d.ts +315 -96
- package/dist/widget-config.d.ts.map +1 -1
- package/dist/widget-config.js +65 -35
- package/package.json +1 -1
package/dist/widget-config.d.ts
CHANGED
|
@@ -1,47 +1,54 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"personalization.storage": "personalization.storage";
|
|
6
|
-
"ads.storage": "ads.storage";
|
|
7
|
-
"ads.user_data": "ads.user_data";
|
|
8
|
-
"ads.personalization": "ads.personalization";
|
|
9
|
-
}>;
|
|
10
|
-
export type PublicGrantScope = z.infer<typeof publicGrantScopeIdSchema>;
|
|
11
|
-
export declare function isPublicGrantScope(value: unknown): value is PublicGrantScope;
|
|
12
|
-
export declare const colorSchemeConfigInputSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
13
|
-
autoDetectColorScheme: z.ZodArray<z.ZodString>;
|
|
14
|
-
}, z.core.$strict>, z.ZodEnum<{
|
|
1
|
+
import * as z from "zod/mini";
|
|
2
|
+
export declare const colorSchemeConfigInputSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
3
|
+
autoDetectColorScheme: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
4
|
+
}, z.core.$strict>, z.ZodMiniEnum<{
|
|
15
5
|
light: "light";
|
|
16
6
|
dark: "dark";
|
|
17
7
|
system: "system";
|
|
18
8
|
}>]>;
|
|
19
9
|
export type ColorSchemeConfigInput = z.output<typeof colorSchemeConfigInputSchema>;
|
|
20
|
-
export declare const
|
|
10
|
+
export declare const telemetryConfigInputSchema: z.ZodMiniObject<{
|
|
11
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
export type TelemetryConfigInput = z.output<typeof telemetryConfigInputSchema>;
|
|
14
|
+
export declare const consentConfigInputSchema: z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
21
15
|
pending: "pending";
|
|
22
16
|
granted: "granted";
|
|
23
17
|
denied: "denied";
|
|
24
18
|
revoked: "revoked";
|
|
25
|
-
}>, z.
|
|
19
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
26
20
|
"analytics.storage": "analytics.storage";
|
|
27
21
|
"analytics.measurement": "analytics.measurement";
|
|
28
22
|
"personalization.storage": "personalization.storage";
|
|
29
23
|
"ads.storage": "ads.storage";
|
|
30
24
|
"ads.user_data": "ads.user_data";
|
|
31
25
|
"ads.personalization": "ads.personalization";
|
|
26
|
+
"functionality.storage": "functionality.storage";
|
|
27
|
+
"security.storage": "security.storage";
|
|
32
28
|
}>>]>;
|
|
33
29
|
export type ConsentConfigInput = z.output<typeof consentConfigInputSchema>;
|
|
34
|
-
export declare const debugInputSchema: z.
|
|
30
|
+
export declare const debugInputSchema: z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>;
|
|
35
31
|
export type DebugConfigInput = z.output<typeof debugInputSchema>;
|
|
36
|
-
export declare const
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
32
|
+
export declare const authJwtConfigInputSchema: z.ZodMiniObject<{
|
|
33
|
+
token: z.ZodMiniString<string>;
|
|
34
|
+
}, z.core.$strip>;
|
|
35
|
+
export type AuthJwtConfigInput = z.output<typeof authJwtConfigInputSchema>;
|
|
36
|
+
export declare const authConfigInputSchema: z.ZodMiniObject<{
|
|
37
|
+
jwt: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
38
|
+
token: z.ZodMiniString<string>;
|
|
39
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
40
40
|
}, z.core.$strip>;
|
|
41
|
-
export
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
export type AuthConfigInput = z.output<typeof authConfigInputSchema>;
|
|
42
|
+
export declare const identityConfigInputSchema: z.ZodMiniObject<{
|
|
43
|
+
anonymousId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
+
userId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
+
traits: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
46
|
+
}, z.core.$strip>;
|
|
47
|
+
export type IdentityConfigInput = z.output<typeof identityConfigInputSchema>;
|
|
48
|
+
export declare const flagsConfigInputSchema: z.ZodMiniArray<z.ZodMiniObject<{
|
|
49
|
+
key: z.ZodMiniString<string>;
|
|
50
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
45
52
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
46
53
|
} | null)[] | {
|
|
47
54
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -90,87 +97,91 @@ export declare const flagsConfigInputSchema: z.ZodArray<z.ZodObject<{
|
|
|
90
97
|
} | null)[] | {
|
|
91
98
|
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
92
99
|
} | null, unknown>>;
|
|
93
|
-
variant: z.
|
|
94
|
-
origin: z.
|
|
100
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
101
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
95
102
|
runtime_config: "runtime_config";
|
|
96
103
|
trigger_context: "trigger_context";
|
|
97
104
|
provider_sync: "provider_sync";
|
|
98
105
|
api: "api";
|
|
99
106
|
}>>;
|
|
100
|
-
provider: z.
|
|
101
|
-
name: z.
|
|
102
|
-
project: z.
|
|
103
|
-
environment: z.
|
|
107
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
108
|
+
name: z.ZodMiniString<string>;
|
|
109
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
110
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
104
111
|
}, z.core.$strip>>;
|
|
105
|
-
status: z.
|
|
106
|
-
reason: z.
|
|
107
|
-
evaluatedAt: z.
|
|
112
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
113
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
114
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
108
115
|
}, z.core.$strip>>;
|
|
109
116
|
export type FlagsConfigInput = z.output<typeof flagsConfigInputSchema>;
|
|
110
|
-
export declare const hostCapabilitiesConfigInputSchema: z.
|
|
111
|
-
key: z.
|
|
112
|
-
source: z.
|
|
113
|
-
provider: z.
|
|
114
|
-
name: z.
|
|
115
|
-
project: z.
|
|
116
|
-
environment: z.
|
|
117
|
+
export declare const hostCapabilitiesConfigInputSchema: z.ZodMiniArray<z.ZodMiniObject<{
|
|
118
|
+
key: z.ZodMiniString<string>;
|
|
119
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
120
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
121
|
+
name: z.ZodMiniString<string>;
|
|
122
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
123
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
117
124
|
}, z.core.$strip>>;
|
|
118
125
|
}, z.core.$strip>>;
|
|
119
126
|
export type HostCapabilitiesConfigInput = z.output<typeof hostCapabilitiesConfigInputSchema>;
|
|
120
|
-
export declare const configureOptionsSchema: z.
|
|
121
|
-
colorScheme: z.
|
|
122
|
-
autoDetectColorScheme: z.
|
|
123
|
-
}, z.core.$strict>, z.
|
|
127
|
+
export declare const configureOptionsSchema: z.ZodMiniObject<{
|
|
128
|
+
colorScheme: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
129
|
+
autoDetectColorScheme: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
130
|
+
}, z.core.$strict>, z.ZodMiniEnum<{
|
|
124
131
|
light: "light";
|
|
125
132
|
dark: "dark";
|
|
126
133
|
system: "system";
|
|
127
134
|
}>]>>;
|
|
128
|
-
consent: z.
|
|
135
|
+
consent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
129
136
|
pending: "pending";
|
|
130
137
|
granted: "granted";
|
|
131
138
|
denied: "denied";
|
|
132
139
|
revoked: "revoked";
|
|
133
|
-
}>, z.
|
|
140
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
134
141
|
"analytics.storage": "analytics.storage";
|
|
135
142
|
"analytics.measurement": "analytics.measurement";
|
|
136
143
|
"personalization.storage": "personalization.storage";
|
|
137
144
|
"ads.storage": "ads.storage";
|
|
138
145
|
"ads.user_data": "ads.user_data";
|
|
139
146
|
"ads.personalization": "ads.personalization";
|
|
147
|
+
"functionality.storage": "functionality.storage";
|
|
148
|
+
"security.storage": "security.storage";
|
|
140
149
|
}>>]>>;
|
|
141
|
-
auth: z.
|
|
142
|
-
jwt: z.
|
|
143
|
-
token: z.
|
|
144
|
-
}, z.core.$strip>, z.
|
|
150
|
+
auth: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
151
|
+
jwt: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
152
|
+
token: z.ZodMiniString<string>;
|
|
153
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
145
154
|
}, z.core.$strip>>;
|
|
146
155
|
}, z.core.$strict>;
|
|
147
156
|
export type ConfigureOptions = z.output<typeof configureOptionsSchema>;
|
|
148
|
-
export declare const initOptionsSchema: z.
|
|
149
|
-
apiKey: z.
|
|
150
|
-
colorScheme: z.
|
|
151
|
-
autoDetectColorScheme: z.
|
|
152
|
-
}, z.core.$strict>, z.
|
|
157
|
+
export declare const initOptionsSchema: z.ZodMiniObject<{
|
|
158
|
+
apiKey: z.ZodMiniString<string>;
|
|
159
|
+
colorScheme: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
160
|
+
autoDetectColorScheme: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
161
|
+
}, z.core.$strict>, z.ZodMiniEnum<{
|
|
153
162
|
light: "light";
|
|
154
163
|
dark: "dark";
|
|
155
164
|
system: "system";
|
|
156
165
|
}>]>>;
|
|
157
|
-
disableTelemetry: z.
|
|
158
|
-
enableDebug: z.
|
|
159
|
-
defaultConsent: z.
|
|
166
|
+
disableTelemetry: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
167
|
+
enableDebug: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
168
|
+
defaultConsent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
160
169
|
pending: "pending";
|
|
161
170
|
granted: "granted";
|
|
162
171
|
denied: "denied";
|
|
163
172
|
revoked: "revoked";
|
|
164
|
-
}>, z.
|
|
173
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
165
174
|
"analytics.storage": "analytics.storage";
|
|
166
175
|
"analytics.measurement": "analytics.measurement";
|
|
167
176
|
"personalization.storage": "personalization.storage";
|
|
168
177
|
"ads.storage": "ads.storage";
|
|
169
178
|
"ads.user_data": "ads.user_data";
|
|
170
179
|
"ads.personalization": "ads.personalization";
|
|
180
|
+
"functionality.storage": "functionality.storage";
|
|
181
|
+
"security.storage": "security.storage";
|
|
171
182
|
}>>]>>;
|
|
172
|
-
clientMeta: z.
|
|
173
|
-
loader: z.
|
|
183
|
+
clientMeta: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
184
|
+
loader: z.ZodMiniEnum<{
|
|
174
185
|
custom: "custom";
|
|
175
186
|
sdk: "sdk";
|
|
176
187
|
gtm: "gtm";
|
|
@@ -178,38 +189,38 @@ export declare const initOptionsSchema: z.ZodObject<{
|
|
|
178
189
|
rudderstack: "rudderstack";
|
|
179
190
|
tealium: "tealium";
|
|
180
191
|
}>;
|
|
181
|
-
clientName: z.
|
|
182
|
-
clientVersion: z.
|
|
183
|
-
integrator: z.
|
|
184
|
-
name: z.
|
|
185
|
-
version: z.
|
|
192
|
+
clientName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
193
|
+
clientVersion: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
194
|
+
integrator: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
195
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
196
|
+
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
186
197
|
}, z.core.$strip>>;
|
|
187
|
-
transport: z.
|
|
198
|
+
transport: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
188
199
|
loader: "loader";
|
|
189
200
|
"script-tag": "script-tag";
|
|
190
201
|
esm: "esm";
|
|
191
202
|
"tag-manager": "tag-manager";
|
|
192
203
|
snippet: "snippet";
|
|
193
204
|
}>>;
|
|
194
|
-
runtime: z.
|
|
195
|
-
framework: z.
|
|
205
|
+
runtime: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
206
|
+
framework: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
196
207
|
next: "next";
|
|
197
208
|
vite: "vite";
|
|
198
209
|
webpack: "webpack";
|
|
199
210
|
plain: "plain";
|
|
200
211
|
}>>;
|
|
201
|
-
runtime: z.
|
|
212
|
+
runtime: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
202
213
|
browser: "browser";
|
|
203
214
|
edge: "edge";
|
|
204
215
|
}>>;
|
|
205
216
|
}, z.core.$strip>>;
|
|
206
|
-
notes: z.
|
|
217
|
+
notes: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
207
218
|
}, z.core.$strip>>;
|
|
208
|
-
capabilities: z.
|
|
209
|
-
flags: z.
|
|
210
|
-
key: z.
|
|
211
|
-
target: z.
|
|
212
|
-
value: z.
|
|
219
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
220
|
+
flags: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
221
|
+
key: z.ZodMiniString<string>;
|
|
222
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
223
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
213
224
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
214
225
|
} | null)[] | {
|
|
215
226
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -258,36 +269,244 @@ export declare const initOptionsSchema: z.ZodObject<{
|
|
|
258
269
|
} | null)[] | {
|
|
259
270
|
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
260
271
|
} | null, unknown>>;
|
|
261
|
-
variant: z.
|
|
262
|
-
origin: z.
|
|
272
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
273
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
263
274
|
runtime_config: "runtime_config";
|
|
264
275
|
trigger_context: "trigger_context";
|
|
265
276
|
provider_sync: "provider_sync";
|
|
266
277
|
api: "api";
|
|
267
278
|
}>>;
|
|
268
|
-
provider: z.
|
|
269
|
-
name: z.
|
|
270
|
-
project: z.
|
|
271
|
-
environment: z.
|
|
279
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
280
|
+
name: z.ZodMiniString<string>;
|
|
281
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
282
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
272
283
|
}, z.core.$strip>>;
|
|
273
|
-
status: z.
|
|
274
|
-
reason: z.
|
|
275
|
-
evaluatedAt: z.
|
|
284
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
285
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
286
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
276
287
|
}, z.core.$strip>>>;
|
|
277
|
-
hostCapabilities: z.
|
|
278
|
-
key: z.
|
|
279
|
-
source: z.
|
|
280
|
-
provider: z.
|
|
281
|
-
name: z.
|
|
282
|
-
project: z.
|
|
283
|
-
environment: z.
|
|
288
|
+
hostCapabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
289
|
+
key: z.ZodMiniString<string>;
|
|
290
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
291
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
292
|
+
name: z.ZodMiniString<string>;
|
|
293
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
294
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
284
295
|
}, z.core.$strip>>;
|
|
285
296
|
}, z.core.$strip>>>;
|
|
286
|
-
runtimeEndpoints: z.
|
|
287
|
-
apiUrl: z.
|
|
288
|
-
coreUrl: z.
|
|
297
|
+
runtimeEndpoints: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
298
|
+
apiUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
299
|
+
coreUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
289
300
|
}, z.core.$strict>>;
|
|
290
301
|
}, z.core.$strict>;
|
|
291
302
|
export type InitOptions = z.output<typeof initOptionsSchema>;
|
|
292
303
|
export declare const DEFAULT_COLOR_SCHEME_CONFIG: ColorSchemeConfigInput;
|
|
304
|
+
/**
|
|
305
|
+
* Schema for the subset of instance config that can be updated via merge (any source).
|
|
306
|
+
* Telemetry, enableDebug, clientMeta, SDK protocol capabilities, customer
|
|
307
|
+
* flags, and customer host capabilities are set at registration only.
|
|
308
|
+
*/
|
|
309
|
+
export declare const instanceUpdateableConfigSchema: z.ZodMiniObject<{
|
|
310
|
+
colorScheme: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
311
|
+
autoDetectColorScheme: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
312
|
+
}, z.core.$strict>, z.ZodMiniEnum<{
|
|
313
|
+
light: "light";
|
|
314
|
+
dark: "dark";
|
|
315
|
+
system: "system";
|
|
316
|
+
}>]>>;
|
|
317
|
+
consent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
318
|
+
pending: "pending";
|
|
319
|
+
granted: "granted";
|
|
320
|
+
denied: "denied";
|
|
321
|
+
revoked: "revoked";
|
|
322
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
323
|
+
"analytics.storage": "analytics.storage";
|
|
324
|
+
"analytics.measurement": "analytics.measurement";
|
|
325
|
+
"personalization.storage": "personalization.storage";
|
|
326
|
+
"ads.storage": "ads.storage";
|
|
327
|
+
"ads.user_data": "ads.user_data";
|
|
328
|
+
"ads.personalization": "ads.personalization";
|
|
329
|
+
"functionality.storage": "functionality.storage";
|
|
330
|
+
"security.storage": "security.storage";
|
|
331
|
+
}>>]>>;
|
|
332
|
+
auth: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
333
|
+
jwt: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
334
|
+
token: z.ZodMiniString<string>;
|
|
335
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
336
|
+
}, z.core.$strip>>;
|
|
337
|
+
identity: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
338
|
+
anonymousId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
339
|
+
userId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
340
|
+
traits: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
341
|
+
}, z.core.$strip>>;
|
|
342
|
+
}, z.core.$strict>;
|
|
343
|
+
export type InstanceUpdateableConfig = z.output<typeof instanceUpdateableConfigSchema>;
|
|
344
|
+
/** Keys that may be merged into instance config (updatable subset). */
|
|
345
|
+
export declare const INSTANCE_CONFIG_UPDATE_KEYS: (keyof InstanceUpdateableConfig)[];
|
|
346
|
+
/**
|
|
347
|
+
* Schema for resolved instance config state. Used when producing or validating
|
|
348
|
+
* stored config (e.g. after register or merge). Defaults are applied here so
|
|
349
|
+
* state always has a full shape; parse partial input with this schema to get
|
|
350
|
+
* resolved state. For update shape use InstanceUpdateableConfig. Configure
|
|
351
|
+
* command opts are in widget-commands (widgetConfigUpdateSchema).
|
|
352
|
+
*/
|
|
353
|
+
export declare const coreInstanceConfigSchema: z.ZodMiniObject<{
|
|
354
|
+
colorScheme: z.ZodMiniDefault<z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
355
|
+
autoDetectColorScheme: z.ZodMiniArray<z.ZodMiniString<string>>;
|
|
356
|
+
}, z.core.$strict>, z.ZodMiniEnum<{
|
|
357
|
+
light: "light";
|
|
358
|
+
dark: "dark";
|
|
359
|
+
system: "system";
|
|
360
|
+
}>]>>>;
|
|
361
|
+
disableTelemetry: z.ZodMiniDefault<z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>>;
|
|
362
|
+
enableDebug: z.ZodMiniDefault<z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>>;
|
|
363
|
+
consent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
364
|
+
pending: "pending";
|
|
365
|
+
granted: "granted";
|
|
366
|
+
denied: "denied";
|
|
367
|
+
revoked: "revoked";
|
|
368
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
369
|
+
"analytics.storage": "analytics.storage";
|
|
370
|
+
"analytics.measurement": "analytics.measurement";
|
|
371
|
+
"personalization.storage": "personalization.storage";
|
|
372
|
+
"ads.storage": "ads.storage";
|
|
373
|
+
"ads.user_data": "ads.user_data";
|
|
374
|
+
"ads.personalization": "ads.personalization";
|
|
375
|
+
"functionality.storage": "functionality.storage";
|
|
376
|
+
"security.storage": "security.storage";
|
|
377
|
+
}>>]>>;
|
|
378
|
+
auth: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
379
|
+
jwt: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
380
|
+
token: z.ZodMiniString<string>;
|
|
381
|
+
}, z.core.$strip>, z.ZodMiniNull]>>;
|
|
382
|
+
}, z.core.$strip>>;
|
|
383
|
+
identity: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
384
|
+
anonymousId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
385
|
+
userId: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
386
|
+
traits: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
|
|
387
|
+
}, z.core.$strip>>;
|
|
388
|
+
apiKey: z.ZodMiniString<string>;
|
|
389
|
+
clientMeta: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
390
|
+
loader: z.ZodMiniEnum<{
|
|
391
|
+
custom: "custom";
|
|
392
|
+
sdk: "sdk";
|
|
393
|
+
gtm: "gtm";
|
|
394
|
+
segment: "segment";
|
|
395
|
+
rudderstack: "rudderstack";
|
|
396
|
+
tealium: "tealium";
|
|
397
|
+
}>;
|
|
398
|
+
clientName: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
399
|
+
clientVersion: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
400
|
+
integrator: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
401
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
402
|
+
version: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
403
|
+
}, z.core.$strip>>;
|
|
404
|
+
transport: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
405
|
+
loader: "loader";
|
|
406
|
+
"script-tag": "script-tag";
|
|
407
|
+
esm: "esm";
|
|
408
|
+
"tag-manager": "tag-manager";
|
|
409
|
+
snippet: "snippet";
|
|
410
|
+
}>>;
|
|
411
|
+
runtime: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
412
|
+
framework: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
413
|
+
next: "next";
|
|
414
|
+
vite: "vite";
|
|
415
|
+
webpack: "webpack";
|
|
416
|
+
plain: "plain";
|
|
417
|
+
}>>;
|
|
418
|
+
runtime: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
419
|
+
browser: "browser";
|
|
420
|
+
edge: "edge";
|
|
421
|
+
}>>;
|
|
422
|
+
}, z.core.$strip>>;
|
|
423
|
+
notes: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
424
|
+
}, z.core.$strip>>;
|
|
425
|
+
capabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
426
|
+
flags: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
427
|
+
key: z.ZodMiniString<string>;
|
|
428
|
+
target: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
429
|
+
value: z.ZodMiniType<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
430
|
+
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
431
|
+
} | null)[] | {
|
|
432
|
+
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
433
|
+
} | null)[] | {
|
|
434
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
435
|
+
} | null)[] | {
|
|
436
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
437
|
+
} | null)[] | {
|
|
438
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
439
|
+
} | null)[] | {
|
|
440
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
441
|
+
} | null)[] | {
|
|
442
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
443
|
+
} | null)[] | {
|
|
444
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
445
|
+
} | null)[] | {
|
|
446
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
447
|
+
} | null)[] | {
|
|
448
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
449
|
+
} | null)[] | {
|
|
450
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
451
|
+
} | null)[] | {
|
|
452
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
453
|
+
} | null, unknown, z.core.$ZodTypeInternals<string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | {
|
|
454
|
+
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
455
|
+
} | null)[] | {
|
|
456
|
+
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
457
|
+
} | null)[] | {
|
|
458
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
459
|
+
} | null)[] | {
|
|
460
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
461
|
+
} | null)[] | {
|
|
462
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
463
|
+
} | null)[] | {
|
|
464
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
465
|
+
} | null)[] | {
|
|
466
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
467
|
+
} | null)[] | {
|
|
468
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
469
|
+
} | null)[] | {
|
|
470
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
471
|
+
} | null)[] | {
|
|
472
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
473
|
+
} | null)[] | {
|
|
474
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
475
|
+
} | null)[] | {
|
|
476
|
+
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
477
|
+
} | null, unknown>>;
|
|
478
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
479
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
480
|
+
runtime_config: "runtime_config";
|
|
481
|
+
trigger_context: "trigger_context";
|
|
482
|
+
provider_sync: "provider_sync";
|
|
483
|
+
api: "api";
|
|
484
|
+
}>>;
|
|
485
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
486
|
+
name: z.ZodMiniString<string>;
|
|
487
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
488
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
489
|
+
}, z.core.$strip>>;
|
|
490
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
491
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
492
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
493
|
+
}, z.core.$strip>>>;
|
|
494
|
+
hostCapabilities: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
|
|
495
|
+
key: z.ZodMiniString<string>;
|
|
496
|
+
source: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
497
|
+
provider: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
498
|
+
name: z.ZodMiniString<string>;
|
|
499
|
+
project: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
500
|
+
environment: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
501
|
+
}, z.core.$strip>>;
|
|
502
|
+
}, z.core.$strip>>>;
|
|
503
|
+
runtimeEndpoints: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
504
|
+
apiUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
505
|
+
coreUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
506
|
+
}, z.core.$strict>>;
|
|
507
|
+
}, z.core.$strict>;
|
|
508
|
+
/** Input shape for instance config (partial; used for register/merge). */
|
|
509
|
+
export type CoreInstanceConfigInput = z.input<typeof coreInstanceConfigSchema>;
|
|
510
|
+
/** Resolved instance config state (defaults applied). */
|
|
511
|
+
export type CoreInstanceConfig = z.output<typeof coreInstanceConfigSchema>;
|
|
293
512
|
//# sourceMappingURL=widget-config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-config.d.ts","sourceRoot":"","sources":["../src/widget-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"widget-config.d.ts","sourceRoot":"","sources":["../src/widget-config.ts"],"names":[],"mappings":"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"}
|