@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.
Files changed (39) hide show
  1. package/dist/app-event.d.ts +274 -274
  2. package/dist/app-event.d.ts.map +1 -1
  3. package/dist/app-event.js +16 -16
  4. package/dist/client-meta.d.ts +13 -13
  5. package/dist/client-meta.d.ts.map +1 -1
  6. package/dist/client-meta.js +6 -6
  7. package/dist/flow-assignments.d.ts +183 -183
  8. package/dist/flow-assignments.d.ts.map +1 -1
  9. package/dist/flow-assignments.js +16 -16
  10. package/dist/host/sdk-types.d.ts +8 -4
  11. package/dist/host/sdk-types.d.ts.map +1 -1
  12. package/dist/identity-type.d.ts +2 -2
  13. package/dist/identity-type.d.ts.map +1 -1
  14. package/dist/identity-type.js +13 -15
  15. package/dist/index.d.ts +86 -1
  16. package/dist/index.d.ts.map +1 -1
  17. package/dist/index.js +7 -1
  18. package/dist/public-grant-scope.d.ts +12 -0
  19. package/dist/public-grant-scope.d.ts.map +1 -0
  20. package/dist/public-grant-scope.js +13 -0
  21. package/dist/runtime-endpoints.d.ts +4 -4
  22. package/dist/runtime-endpoints.d.ts.map +1 -1
  23. package/dist/runtime-endpoints.js +4 -6
  24. package/dist/scopes.d.ts +4 -4
  25. package/dist/scopes.d.ts.map +1 -1
  26. package/dist/scopes.js +1 -1
  27. package/dist/trpc-envelope.d.ts +4 -4
  28. package/dist/trpc-envelope.d.ts.map +1 -1
  29. package/dist/trpc-envelope.js +1 -1
  30. package/dist/version-resolution.d.ts +5 -5
  31. package/dist/version-resolution.d.ts.map +1 -1
  32. package/dist/version-resolution.js +2 -2
  33. package/dist/widget-commands.d.ts +112 -108
  34. package/dist/widget-commands.d.ts.map +1 -1
  35. package/dist/widget-commands.js +30 -56
  36. package/dist/widget-config.d.ts +315 -96
  37. package/dist/widget-config.d.ts.map +1 -1
  38. package/dist/widget-config.js +65 -35
  39. package/package.json +1 -1
@@ -1,47 +1,54 @@
1
- import * as z from "zod";
2
- export declare const publicGrantScopeIdSchema: z.ZodEnum<{
3
- "analytics.storage": "analytics.storage";
4
- "analytics.measurement": "analytics.measurement";
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 consentConfigInputSchema: z.ZodUnion<readonly [z.ZodEnum<{
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.ZodArray<z.ZodEnum<{
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.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString>]>;
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 authConfigInputSchema: z.ZodObject<{
37
- jwt: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
38
- token: z.ZodString;
39
- }, z.core.$strip>, z.ZodNull]>>;
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 declare const flagsConfigInputSchema: z.ZodArray<z.ZodObject<{
42
- key: z.ZodString;
43
- target: z.ZodOptional<z.ZodString>;
44
- value: z.ZodType<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 | {
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.ZodOptional<z.ZodString>;
94
- origin: z.ZodOptional<z.ZodEnum<{
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.ZodOptional<z.ZodObject<{
101
- name: z.ZodString;
102
- project: z.ZodOptional<z.ZodString>;
103
- environment: z.ZodOptional<z.ZodString>;
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.ZodOptional<z.ZodString>;
106
- reason: z.ZodOptional<z.ZodString>;
107
- evaluatedAt: z.ZodOptional<z.ZodString>;
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.ZodArray<z.ZodObject<{
111
- key: z.ZodString;
112
- source: z.ZodOptional<z.ZodString>;
113
- provider: z.ZodOptional<z.ZodObject<{
114
- name: z.ZodString;
115
- project: z.ZodOptional<z.ZodString>;
116
- environment: z.ZodOptional<z.ZodString>;
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.ZodObject<{
121
- colorScheme: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
122
- autoDetectColorScheme: z.ZodArray<z.ZodString>;
123
- }, z.core.$strict>, z.ZodEnum<{
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.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
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.ZodArray<z.ZodEnum<{
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.ZodOptional<z.ZodObject<{
142
- jwt: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
143
- token: z.ZodString;
144
- }, z.core.$strip>, z.ZodNull]>>;
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.ZodObject<{
149
- apiKey: z.ZodString;
150
- colorScheme: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
151
- autoDetectColorScheme: z.ZodArray<z.ZodString>;
152
- }, z.core.$strict>, z.ZodEnum<{
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.ZodOptional<z.ZodBoolean>;
158
- enableDebug: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodString, z.ZodArray<z.ZodString>]>>;
159
- defaultConsent: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
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.ZodArray<z.ZodEnum<{
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.ZodOptional<z.ZodObject<{
173
- loader: z.ZodEnum<{
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.ZodOptional<z.ZodString>;
182
- clientVersion: z.ZodOptional<z.ZodString>;
183
- integrator: z.ZodOptional<z.ZodObject<{
184
- name: z.ZodOptional<z.ZodString>;
185
- version: z.ZodOptional<z.ZodString>;
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.ZodOptional<z.ZodEnum<{
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.ZodOptional<z.ZodObject<{
195
- framework: z.ZodOptional<z.ZodEnum<{
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.ZodOptional<z.ZodEnum<{
212
+ runtime: z.ZodMiniOptional<z.ZodMiniEnum<{
202
213
  browser: "browser";
203
214
  edge: "edge";
204
215
  }>>;
205
216
  }, z.core.$strip>>;
206
- notes: z.ZodOptional<z.ZodString>;
217
+ notes: z.ZodMiniOptional<z.ZodMiniString<string>>;
207
218
  }, z.core.$strip>>;
208
- capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
209
- flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
210
- key: z.ZodString;
211
- target: z.ZodOptional<z.ZodString>;
212
- value: z.ZodType<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 | {
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.ZodOptional<z.ZodString>;
262
- origin: z.ZodOptional<z.ZodEnum<{
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.ZodOptional<z.ZodObject<{
269
- name: z.ZodString;
270
- project: z.ZodOptional<z.ZodString>;
271
- environment: z.ZodOptional<z.ZodString>;
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.ZodOptional<z.ZodString>;
274
- reason: z.ZodOptional<z.ZodString>;
275
- evaluatedAt: z.ZodOptional<z.ZodString>;
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.ZodOptional<z.ZodArray<z.ZodObject<{
278
- key: z.ZodString;
279
- source: z.ZodOptional<z.ZodString>;
280
- provider: z.ZodOptional<z.ZodObject<{
281
- name: z.ZodString;
282
- project: z.ZodOptional<z.ZodString>;
283
- environment: z.ZodOptional<z.ZodString>;
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.ZodOptional<z.ZodObject<{
287
- apiUrl: z.ZodOptional<z.ZodString>;
288
- coreUrl: z.ZodOptional<z.ZodString>;
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,KAAK,CAAC;AA4BzB,eAAO,MAAM,wBAAwB;;;;;;;EAA8B,CAAC;AAEpE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAExE,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,gBAAgB,CAE5E;AAED,eAAO,MAAM,4BAA4B;;;;;;IAOvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAC5C,OAAO,4BAA4B,CACnC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;KAGnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE3E,eAAO,MAAM,gBAAgB,2EAI3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE,eAAO,MAAM,qBAAqB;;;;iBAShC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAA8B,CAAC;AAElE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEvE,eAAO,MAAM,iCAAiC;;;;;;;;kBAE7C,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CACjD,OAAO,iCAAiC,CACxC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;kBAMzB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEvE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAapB,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE7D,eAAO,MAAM,2BAA2B,EAAE,sBAEzC,CAAC"}
1
+ {"version":3,"file":"widget-config.d.ts","sourceRoot":"","sources":["../src/widget-config.ts"],"names":[],"mappings":"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"}