@getuserfeedback/protocol 0.5.12 → 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/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 +85 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/public-grant-scope.d.ts +3 -3
- package/dist/public-grant-scope.d.ts.map +1 -1
- package/dist/public-grant-scope.js +1 -1
- 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 +2 -2
- 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 +108 -108
- package/dist/widget-commands.d.ts.map +1 -1
- package/dist/widget-commands.js +30 -56
- package/dist/widget-config.d.ts +161 -245
- package/dist/widget-config.d.ts.map +1 -1
- package/dist/widget-config.js +22 -36
- package/package.json +1 -1
package/dist/widget-config.d.ts
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}, 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<{
|
|
6
5
|
light: "light";
|
|
7
6
|
dark: "dark";
|
|
8
7
|
system: "system";
|
|
9
8
|
}>]>;
|
|
10
9
|
export type ColorSchemeConfigInput = z.output<typeof colorSchemeConfigInputSchema>;
|
|
11
|
-
export declare const telemetryConfigInputSchema: z.
|
|
12
|
-
enabled: z.
|
|
10
|
+
export declare const telemetryConfigInputSchema: z.ZodMiniObject<{
|
|
11
|
+
enabled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
13
12
|
}, z.core.$strip>;
|
|
14
13
|
export type TelemetryConfigInput = z.output<typeof telemetryConfigInputSchema>;
|
|
15
|
-
export declare const consentConfigInputSchema: z.
|
|
14
|
+
export declare const consentConfigInputSchema: z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
16
15
|
pending: "pending";
|
|
17
16
|
granted: "granted";
|
|
18
17
|
denied: "denied";
|
|
19
18
|
revoked: "revoked";
|
|
20
|
-
}>, z.
|
|
19
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
21
20
|
"analytics.storage": "analytics.storage";
|
|
22
21
|
"analytics.measurement": "analytics.measurement";
|
|
23
22
|
"personalization.storage": "personalization.storage";
|
|
@@ -28,28 +27,28 @@ export declare const consentConfigInputSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
28
27
|
"security.storage": "security.storage";
|
|
29
28
|
}>>]>;
|
|
30
29
|
export type ConsentConfigInput = z.output<typeof consentConfigInputSchema>;
|
|
31
|
-
export declare const debugInputSchema: z.
|
|
30
|
+
export declare const debugInputSchema: z.ZodMiniUnion<readonly [z.ZodMiniBoolean<boolean>, z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>;
|
|
32
31
|
export type DebugConfigInput = z.output<typeof debugInputSchema>;
|
|
33
|
-
export declare const authJwtConfigInputSchema: z.
|
|
34
|
-
token: z.
|
|
32
|
+
export declare const authJwtConfigInputSchema: z.ZodMiniObject<{
|
|
33
|
+
token: z.ZodMiniString<string>;
|
|
35
34
|
}, z.core.$strip>;
|
|
36
35
|
export type AuthJwtConfigInput = z.output<typeof authJwtConfigInputSchema>;
|
|
37
|
-
export declare const authConfigInputSchema: z.
|
|
38
|
-
jwt: z.
|
|
39
|
-
token: z.
|
|
40
|
-
}, z.core.$strip>, z.
|
|
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]>>;
|
|
41
40
|
}, z.core.$strip>;
|
|
42
41
|
export type AuthConfigInput = z.output<typeof authConfigInputSchema>;
|
|
43
|
-
export declare const identityConfigInputSchema: z.
|
|
44
|
-
anonymousId: z.
|
|
45
|
-
userId: z.
|
|
46
|
-
traits: z.
|
|
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>>;
|
|
47
46
|
}, z.core.$strip>;
|
|
48
47
|
export type IdentityConfigInput = z.output<typeof identityConfigInputSchema>;
|
|
49
|
-
export declare const flagsConfigInputSchema: z.
|
|
50
|
-
key: z.
|
|
51
|
-
target: z.
|
|
52
|
-
value: z.
|
|
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 | {
|
|
53
52
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
54
53
|
} | null)[] | {
|
|
55
54
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -98,130 +97,47 @@ export declare const flagsConfigInputSchema: z.ZodArray<z.ZodObject<{
|
|
|
98
97
|
} | null)[] | {
|
|
99
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;
|
|
100
99
|
} | null, unknown>>;
|
|
101
|
-
variant: z.
|
|
102
|
-
origin: z.
|
|
100
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
101
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
103
102
|
runtime_config: "runtime_config";
|
|
104
103
|
trigger_context: "trigger_context";
|
|
105
104
|
provider_sync: "provider_sync";
|
|
106
105
|
api: "api";
|
|
107
106
|
}>>;
|
|
108
|
-
provider: z.
|
|
109
|
-
name: z.
|
|
110
|
-
project: z.
|
|
111
|
-
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>>;
|
|
112
111
|
}, z.core.$strip>>;
|
|
113
|
-
status: z.
|
|
114
|
-
reason: z.
|
|
115
|
-
evaluatedAt: z.
|
|
112
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
113
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
114
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
116
115
|
}, z.core.$strip>>;
|
|
117
116
|
export type FlagsConfigInput = z.output<typeof flagsConfigInputSchema>;
|
|
118
|
-
export declare const hostCapabilitiesConfigInputSchema: z.
|
|
119
|
-
key: z.
|
|
120
|
-
source: z.
|
|
121
|
-
provider: z.
|
|
122
|
-
name: z.
|
|
123
|
-
project: z.
|
|
124
|
-
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>>;
|
|
125
124
|
}, z.core.$strip>>;
|
|
126
125
|
}, z.core.$strip>>;
|
|
127
126
|
export type HostCapabilitiesConfigInput = z.output<typeof hostCapabilitiesConfigInputSchema>;
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
key: z.ZodString;
|
|
133
|
-
target: z.ZodOptional<z.ZodString>;
|
|
134
|
-
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 | {
|
|
135
|
-
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
136
|
-
} | null)[] | {
|
|
137
|
-
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
138
|
-
} | null)[] | {
|
|
139
|
-
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
140
|
-
} | null)[] | {
|
|
141
|
-
[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;
|
|
142
|
-
} | null)[] | {
|
|
143
|
-
[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;
|
|
144
|
-
} | null)[] | {
|
|
145
|
-
[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;
|
|
146
|
-
} | null)[] | {
|
|
147
|
-
[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;
|
|
148
|
-
} | null)[] | {
|
|
149
|
-
[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;
|
|
150
|
-
} | null)[] | {
|
|
151
|
-
[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;
|
|
152
|
-
} | null)[] | {
|
|
153
|
-
[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;
|
|
154
|
-
} | null)[] | {
|
|
155
|
-
[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;
|
|
156
|
-
} | null)[] | {
|
|
157
|
-
[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;
|
|
158
|
-
} | 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 | {
|
|
159
|
-
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
160
|
-
} | null)[] | {
|
|
161
|
-
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
162
|
-
} | null)[] | {
|
|
163
|
-
[key: string]: string | number | boolean | (string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
164
|
-
} | null)[] | {
|
|
165
|
-
[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;
|
|
166
|
-
} | null)[] | {
|
|
167
|
-
[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;
|
|
168
|
-
} | null)[] | {
|
|
169
|
-
[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;
|
|
170
|
-
} | null)[] | {
|
|
171
|
-
[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;
|
|
172
|
-
} | null)[] | {
|
|
173
|
-
[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;
|
|
174
|
-
} | null)[] | {
|
|
175
|
-
[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;
|
|
176
|
-
} | null)[] | {
|
|
177
|
-
[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;
|
|
178
|
-
} | null)[] | {
|
|
179
|
-
[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;
|
|
180
|
-
} | null)[] | {
|
|
181
|
-
[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;
|
|
182
|
-
} | null, unknown>>;
|
|
183
|
-
variant: z.ZodOptional<z.ZodString>;
|
|
184
|
-
origin: z.ZodOptional<z.ZodEnum<{
|
|
185
|
-
runtime_config: "runtime_config";
|
|
186
|
-
trigger_context: "trigger_context";
|
|
187
|
-
provider_sync: "provider_sync";
|
|
188
|
-
api: "api";
|
|
189
|
-
}>>;
|
|
190
|
-
provider: z.ZodOptional<z.ZodObject<{
|
|
191
|
-
name: z.ZodString;
|
|
192
|
-
project: z.ZodOptional<z.ZodString>;
|
|
193
|
-
environment: z.ZodOptional<z.ZodString>;
|
|
194
|
-
}, z.core.$strip>>;
|
|
195
|
-
status: z.ZodOptional<z.ZodString>;
|
|
196
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
197
|
-
evaluatedAt: z.ZodOptional<z.ZodString>;
|
|
198
|
-
}, z.core.$strip>;
|
|
199
|
-
/** @deprecated Prefer {@link AppEventCapability}; legacy name from widget-config surface. */
|
|
200
|
-
export type RuntimeCapabilityConfigInput = AppEventCapability;
|
|
201
|
-
/** @deprecated Prefer {@link appEventCapabilitySchema}; legacy name from widget-config surface. */
|
|
202
|
-
export declare const runtimeCapabilityConfigInputSchema: z.ZodObject<{
|
|
203
|
-
key: z.ZodString;
|
|
204
|
-
source: z.ZodOptional<z.ZodString>;
|
|
205
|
-
provider: z.ZodOptional<z.ZodObject<{
|
|
206
|
-
name: z.ZodString;
|
|
207
|
-
project: z.ZodOptional<z.ZodString>;
|
|
208
|
-
environment: z.ZodOptional<z.ZodString>;
|
|
209
|
-
}, z.core.$strip>>;
|
|
210
|
-
}, z.core.$strip>;
|
|
211
|
-
export declare const configureOptionsSchema: z.ZodObject<{
|
|
212
|
-
colorScheme: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
213
|
-
autoDetectColorScheme: z.ZodArray<z.ZodString>;
|
|
214
|
-
}, 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<{
|
|
215
131
|
light: "light";
|
|
216
132
|
dark: "dark";
|
|
217
133
|
system: "system";
|
|
218
134
|
}>]>>;
|
|
219
|
-
consent: z.
|
|
135
|
+
consent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
220
136
|
pending: "pending";
|
|
221
137
|
granted: "granted";
|
|
222
138
|
denied: "denied";
|
|
223
139
|
revoked: "revoked";
|
|
224
|
-
}>, z.
|
|
140
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
225
141
|
"analytics.storage": "analytics.storage";
|
|
226
142
|
"analytics.measurement": "analytics.measurement";
|
|
227
143
|
"personalization.storage": "personalization.storage";
|
|
@@ -231,30 +147,30 @@ export declare const configureOptionsSchema: z.ZodObject<{
|
|
|
231
147
|
"functionality.storage": "functionality.storage";
|
|
232
148
|
"security.storage": "security.storage";
|
|
233
149
|
}>>]>>;
|
|
234
|
-
auth: z.
|
|
235
|
-
jwt: z.
|
|
236
|
-
token: z.
|
|
237
|
-
}, 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]>>;
|
|
238
154
|
}, z.core.$strip>>;
|
|
239
155
|
}, z.core.$strict>;
|
|
240
156
|
export type ConfigureOptions = z.output<typeof configureOptionsSchema>;
|
|
241
|
-
export declare const initOptionsSchema: z.
|
|
242
|
-
apiKey: z.
|
|
243
|
-
colorScheme: z.
|
|
244
|
-
autoDetectColorScheme: z.
|
|
245
|
-
}, 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<{
|
|
246
162
|
light: "light";
|
|
247
163
|
dark: "dark";
|
|
248
164
|
system: "system";
|
|
249
165
|
}>]>>;
|
|
250
|
-
disableTelemetry: z.
|
|
251
|
-
enableDebug: z.
|
|
252
|
-
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<{
|
|
253
169
|
pending: "pending";
|
|
254
170
|
granted: "granted";
|
|
255
171
|
denied: "denied";
|
|
256
172
|
revoked: "revoked";
|
|
257
|
-
}>, z.
|
|
173
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
258
174
|
"analytics.storage": "analytics.storage";
|
|
259
175
|
"analytics.measurement": "analytics.measurement";
|
|
260
176
|
"personalization.storage": "personalization.storage";
|
|
@@ -264,8 +180,8 @@ export declare const initOptionsSchema: z.ZodObject<{
|
|
|
264
180
|
"functionality.storage": "functionality.storage";
|
|
265
181
|
"security.storage": "security.storage";
|
|
266
182
|
}>>]>>;
|
|
267
|
-
clientMeta: z.
|
|
268
|
-
loader: z.
|
|
183
|
+
clientMeta: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
184
|
+
loader: z.ZodMiniEnum<{
|
|
269
185
|
custom: "custom";
|
|
270
186
|
sdk: "sdk";
|
|
271
187
|
gtm: "gtm";
|
|
@@ -273,38 +189,38 @@ export declare const initOptionsSchema: z.ZodObject<{
|
|
|
273
189
|
rudderstack: "rudderstack";
|
|
274
190
|
tealium: "tealium";
|
|
275
191
|
}>;
|
|
276
|
-
clientName: z.
|
|
277
|
-
clientVersion: z.
|
|
278
|
-
integrator: z.
|
|
279
|
-
name: z.
|
|
280
|
-
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>>;
|
|
281
197
|
}, z.core.$strip>>;
|
|
282
|
-
transport: z.
|
|
198
|
+
transport: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
283
199
|
loader: "loader";
|
|
284
200
|
"script-tag": "script-tag";
|
|
285
201
|
esm: "esm";
|
|
286
202
|
"tag-manager": "tag-manager";
|
|
287
203
|
snippet: "snippet";
|
|
288
204
|
}>>;
|
|
289
|
-
runtime: z.
|
|
290
|
-
framework: z.
|
|
205
|
+
runtime: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
206
|
+
framework: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
291
207
|
next: "next";
|
|
292
208
|
vite: "vite";
|
|
293
209
|
webpack: "webpack";
|
|
294
210
|
plain: "plain";
|
|
295
211
|
}>>;
|
|
296
|
-
runtime: z.
|
|
212
|
+
runtime: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
297
213
|
browser: "browser";
|
|
298
214
|
edge: "edge";
|
|
299
215
|
}>>;
|
|
300
216
|
}, z.core.$strip>>;
|
|
301
|
-
notes: z.
|
|
217
|
+
notes: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
302
218
|
}, z.core.$strip>>;
|
|
303
|
-
capabilities: z.
|
|
304
|
-
flags: z.
|
|
305
|
-
key: z.
|
|
306
|
-
target: z.
|
|
307
|
-
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 | {
|
|
308
224
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
309
225
|
} | null)[] | {
|
|
310
226
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -353,34 +269,34 @@ export declare const initOptionsSchema: z.ZodObject<{
|
|
|
353
269
|
} | null)[] | {
|
|
354
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;
|
|
355
271
|
} | null, unknown>>;
|
|
356
|
-
variant: z.
|
|
357
|
-
origin: z.
|
|
272
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
273
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
358
274
|
runtime_config: "runtime_config";
|
|
359
275
|
trigger_context: "trigger_context";
|
|
360
276
|
provider_sync: "provider_sync";
|
|
361
277
|
api: "api";
|
|
362
278
|
}>>;
|
|
363
|
-
provider: z.
|
|
364
|
-
name: z.
|
|
365
|
-
project: z.
|
|
366
|
-
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>>;
|
|
367
283
|
}, z.core.$strip>>;
|
|
368
|
-
status: z.
|
|
369
|
-
reason: z.
|
|
370
|
-
evaluatedAt: z.
|
|
284
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
285
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
286
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
371
287
|
}, z.core.$strip>>>;
|
|
372
|
-
hostCapabilities: z.
|
|
373
|
-
key: z.
|
|
374
|
-
source: z.
|
|
375
|
-
provider: z.
|
|
376
|
-
name: z.
|
|
377
|
-
project: z.
|
|
378
|
-
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>>;
|
|
379
295
|
}, z.core.$strip>>;
|
|
380
296
|
}, z.core.$strip>>>;
|
|
381
|
-
runtimeEndpoints: z.
|
|
382
|
-
apiUrl: z.
|
|
383
|
-
coreUrl: z.
|
|
297
|
+
runtimeEndpoints: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
298
|
+
apiUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
299
|
+
coreUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
384
300
|
}, z.core.$strict>>;
|
|
385
301
|
}, z.core.$strict>;
|
|
386
302
|
export type InitOptions = z.output<typeof initOptionsSchema>;
|
|
@@ -390,20 +306,20 @@ export declare const DEFAULT_COLOR_SCHEME_CONFIG: ColorSchemeConfigInput;
|
|
|
390
306
|
* Telemetry, enableDebug, clientMeta, SDK protocol capabilities, customer
|
|
391
307
|
* flags, and customer host capabilities are set at registration only.
|
|
392
308
|
*/
|
|
393
|
-
export declare const instanceUpdateableConfigSchema: z.
|
|
394
|
-
colorScheme: z.
|
|
395
|
-
autoDetectColorScheme: z.
|
|
396
|
-
}, z.core.$strict>, z.
|
|
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<{
|
|
397
313
|
light: "light";
|
|
398
314
|
dark: "dark";
|
|
399
315
|
system: "system";
|
|
400
316
|
}>]>>;
|
|
401
|
-
consent: z.
|
|
317
|
+
consent: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniEnum<{
|
|
402
318
|
pending: "pending";
|
|
403
319
|
granted: "granted";
|
|
404
320
|
denied: "denied";
|
|
405
321
|
revoked: "revoked";
|
|
406
|
-
}>, z.
|
|
322
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
407
323
|
"analytics.storage": "analytics.storage";
|
|
408
324
|
"analytics.measurement": "analytics.measurement";
|
|
409
325
|
"personalization.storage": "personalization.storage";
|
|
@@ -413,15 +329,15 @@ export declare const instanceUpdateableConfigSchema: z.ZodObject<{
|
|
|
413
329
|
"functionality.storage": "functionality.storage";
|
|
414
330
|
"security.storage": "security.storage";
|
|
415
331
|
}>>]>>;
|
|
416
|
-
auth: z.
|
|
417
|
-
jwt: z.
|
|
418
|
-
token: z.
|
|
419
|
-
}, z.core.$strip>, z.
|
|
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]>>;
|
|
420
336
|
}, z.core.$strip>>;
|
|
421
|
-
identity: z.
|
|
422
|
-
anonymousId: z.
|
|
423
|
-
userId: z.
|
|
424
|
-
traits: z.
|
|
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>>;
|
|
425
341
|
}, z.core.$strip>>;
|
|
426
342
|
}, z.core.$strict>;
|
|
427
343
|
export type InstanceUpdateableConfig = z.output<typeof instanceUpdateableConfigSchema>;
|
|
@@ -434,22 +350,22 @@ export declare const INSTANCE_CONFIG_UPDATE_KEYS: (keyof InstanceUpdateableConfi
|
|
|
434
350
|
* resolved state. For update shape use InstanceUpdateableConfig. Configure
|
|
435
351
|
* command opts are in widget-commands (widgetConfigUpdateSchema).
|
|
436
352
|
*/
|
|
437
|
-
export declare const coreInstanceConfigSchema: z.
|
|
438
|
-
colorScheme: z.
|
|
439
|
-
autoDetectColorScheme: z.
|
|
440
|
-
}, z.core.$strict>, z.
|
|
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<{
|
|
441
357
|
light: "light";
|
|
442
358
|
dark: "dark";
|
|
443
359
|
system: "system";
|
|
444
360
|
}>]>>>;
|
|
445
|
-
disableTelemetry: z.
|
|
446
|
-
enableDebug: z.
|
|
447
|
-
consent: z.
|
|
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<{
|
|
448
364
|
pending: "pending";
|
|
449
365
|
granted: "granted";
|
|
450
366
|
denied: "denied";
|
|
451
367
|
revoked: "revoked";
|
|
452
|
-
}>, z.
|
|
368
|
+
}>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
453
369
|
"analytics.storage": "analytics.storage";
|
|
454
370
|
"analytics.measurement": "analytics.measurement";
|
|
455
371
|
"personalization.storage": "personalization.storage";
|
|
@@ -459,19 +375,19 @@ export declare const coreInstanceConfigSchema: z.ZodObject<{
|
|
|
459
375
|
"functionality.storage": "functionality.storage";
|
|
460
376
|
"security.storage": "security.storage";
|
|
461
377
|
}>>]>>;
|
|
462
|
-
auth: z.
|
|
463
|
-
jwt: z.
|
|
464
|
-
token: z.
|
|
465
|
-
}, z.core.$strip>, z.
|
|
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]>>;
|
|
466
382
|
}, z.core.$strip>>;
|
|
467
|
-
identity: z.
|
|
468
|
-
anonymousId: z.
|
|
469
|
-
userId: z.
|
|
470
|
-
traits: z.
|
|
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>>;
|
|
471
387
|
}, z.core.$strip>>;
|
|
472
|
-
apiKey: z.
|
|
473
|
-
clientMeta: z.
|
|
474
|
-
loader: z.
|
|
388
|
+
apiKey: z.ZodMiniString<string>;
|
|
389
|
+
clientMeta: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
390
|
+
loader: z.ZodMiniEnum<{
|
|
475
391
|
custom: "custom";
|
|
476
392
|
sdk: "sdk";
|
|
477
393
|
gtm: "gtm";
|
|
@@ -479,38 +395,38 @@ export declare const coreInstanceConfigSchema: z.ZodObject<{
|
|
|
479
395
|
rudderstack: "rudderstack";
|
|
480
396
|
tealium: "tealium";
|
|
481
397
|
}>;
|
|
482
|
-
clientName: z.
|
|
483
|
-
clientVersion: z.
|
|
484
|
-
integrator: z.
|
|
485
|
-
name: z.
|
|
486
|
-
version: z.
|
|
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>>;
|
|
487
403
|
}, z.core.$strip>>;
|
|
488
|
-
transport: z.
|
|
404
|
+
transport: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
489
405
|
loader: "loader";
|
|
490
406
|
"script-tag": "script-tag";
|
|
491
407
|
esm: "esm";
|
|
492
408
|
"tag-manager": "tag-manager";
|
|
493
409
|
snippet: "snippet";
|
|
494
410
|
}>>;
|
|
495
|
-
runtime: z.
|
|
496
|
-
framework: z.
|
|
411
|
+
runtime: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
412
|
+
framework: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
497
413
|
next: "next";
|
|
498
414
|
vite: "vite";
|
|
499
415
|
webpack: "webpack";
|
|
500
416
|
plain: "plain";
|
|
501
417
|
}>>;
|
|
502
|
-
runtime: z.
|
|
418
|
+
runtime: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
503
419
|
browser: "browser";
|
|
504
420
|
edge: "edge";
|
|
505
421
|
}>>;
|
|
506
422
|
}, z.core.$strip>>;
|
|
507
|
-
notes: z.
|
|
423
|
+
notes: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
508
424
|
}, z.core.$strip>>;
|
|
509
|
-
capabilities: z.
|
|
510
|
-
flags: z.
|
|
511
|
-
key: z.
|
|
512
|
-
target: z.
|
|
513
|
-
value: z.
|
|
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 | {
|
|
514
430
|
[key: string]: string | number | boolean | /*elided*/ any | /*elided*/ any | null;
|
|
515
431
|
} | null)[] | {
|
|
516
432
|
[key: string]: string | number | boolean | (string | number | boolean | /*elided*/ any | /*elided*/ any | null)[] | /*elided*/ any | null;
|
|
@@ -559,34 +475,34 @@ export declare const coreInstanceConfigSchema: z.ZodObject<{
|
|
|
559
475
|
} | null)[] | {
|
|
560
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;
|
|
561
477
|
} | null, unknown>>;
|
|
562
|
-
variant: z.
|
|
563
|
-
origin: z.
|
|
478
|
+
variant: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
479
|
+
origin: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
564
480
|
runtime_config: "runtime_config";
|
|
565
481
|
trigger_context: "trigger_context";
|
|
566
482
|
provider_sync: "provider_sync";
|
|
567
483
|
api: "api";
|
|
568
484
|
}>>;
|
|
569
|
-
provider: z.
|
|
570
|
-
name: z.
|
|
571
|
-
project: z.
|
|
572
|
-
environment: z.
|
|
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>>;
|
|
573
489
|
}, z.core.$strip>>;
|
|
574
|
-
status: z.
|
|
575
|
-
reason: z.
|
|
576
|
-
evaluatedAt: z.
|
|
490
|
+
status: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
491
|
+
reason: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
492
|
+
evaluatedAt: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
577
493
|
}, z.core.$strip>>>;
|
|
578
|
-
hostCapabilities: z.
|
|
579
|
-
key: z.
|
|
580
|
-
source: z.
|
|
581
|
-
provider: z.
|
|
582
|
-
name: z.
|
|
583
|
-
project: z.
|
|
584
|
-
environment: z.
|
|
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>>;
|
|
585
501
|
}, z.core.$strip>>;
|
|
586
502
|
}, z.core.$strip>>>;
|
|
587
|
-
runtimeEndpoints: z.
|
|
588
|
-
apiUrl: z.
|
|
589
|
-
coreUrl: z.
|
|
503
|
+
runtimeEndpoints: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
504
|
+
apiUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
505
|
+
coreUrl: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
590
506
|
}, z.core.$strict>>;
|
|
591
507
|
}, z.core.$strict>;
|
|
592
508
|
/** Input shape for instance config (partial; used for register/merge). */
|