@farcaster/miniapp-core 0.0.0-canary-20250701152931 → 0.3.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/actions/index.d.ts +1 -1
- package/dist/actions/index.js +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/schemas/embeds.d.ts +40 -324
- package/dist/schemas/embeds.js +11 -11
- package/dist/schemas/events.d.ts +24 -156
- package/dist/schemas/events.js +14 -14
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +1 -1
- package/dist/schemas/manifest.d.ts +220 -750
- package/dist/schemas/manifest.js +16 -22
- package/dist/schemas/notifications.d.ts +10 -48
- package/dist/schemas/notifications.js +14 -14
- package/dist/schemas/shared.d.ts +7 -23
- package/dist/schemas/shared.js +19 -19
- package/dist/solanaWire.js +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js +2 -2
- package/esm/actions/index.d.ts +1 -1
- package/esm/actions/index.js +1 -1
- package/esm/index.d.ts +3 -3
- package/esm/index.js +3 -3
- package/esm/schemas/embeds.d.ts +40 -324
- package/esm/schemas/embeds.js +1 -1
- package/esm/schemas/events.d.ts +24 -156
- package/esm/schemas/events.js +1 -1
- package/esm/schemas/index.d.ts +1 -1
- package/esm/schemas/index.js +1 -1
- package/esm/schemas/manifest.d.ts +220 -750
- package/esm/schemas/manifest.js +1 -7
- package/esm/schemas/notifications.d.ts +10 -48
- package/esm/schemas/notifications.js +1 -1
- package/esm/schemas/shared.d.ts +7 -23
- package/esm/schemas/shared.js +2 -2
- package/esm/solanaWire.js +1 -1
- package/esm/tsconfig.tsbuildinfo +1 -1
- package/esm/types.d.ts +1 -1
- package/esm/types.js +1 -1
- package/package.json +1 -1
- package/src/actions/index.ts +1 -1
- package/src/index.ts +3 -3
- package/src/schemas/embeds.ts +1 -1
- package/src/schemas/events.ts +1 -1
- package/src/schemas/index.ts +1 -1
- package/src/schemas/manifest.ts +1 -7
- package/src/schemas/notifications.ts +1 -1
- package/src/schemas/shared.ts +3 -6
- package/src/solana.ts +3 -1
- package/src/solanaWire.ts +1 -1
- package/src/types.ts +1 -1
package/esm/schemas/embeds.d.ts
CHANGED
|
@@ -1,284 +1,87 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
2
|
export declare const actionLaunchFrameSchema: z.ZodObject<{
|
|
3
3
|
type: z.ZodLiteral<"launch_frame">;
|
|
4
4
|
name: z.ZodString;
|
|
5
|
-
url: z.ZodOptional<z.
|
|
6
|
-
splashImageUrl: z.ZodOptional<z.
|
|
5
|
+
url: z.ZodOptional<z.ZodString>;
|
|
6
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
7
7
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
8
|
-
},
|
|
9
|
-
type: "launch_frame";
|
|
10
|
-
name: string;
|
|
11
|
-
url?: string | undefined;
|
|
12
|
-
splashImageUrl?: string | undefined;
|
|
13
|
-
splashBackgroundColor?: string | undefined;
|
|
14
|
-
}, {
|
|
15
|
-
type: "launch_frame";
|
|
16
|
-
name: string;
|
|
17
|
-
url?: string | undefined;
|
|
18
|
-
splashImageUrl?: string | undefined;
|
|
19
|
-
splashBackgroundColor?: string | undefined;
|
|
20
|
-
}>;
|
|
8
|
+
}, z.core.$strip>;
|
|
21
9
|
export declare const actionLaunchMiniAppSchema: z.ZodObject<{
|
|
22
10
|
type: z.ZodLiteral<"launch_miniapp">;
|
|
23
11
|
name: z.ZodString;
|
|
24
|
-
url: z.ZodOptional<z.
|
|
25
|
-
splashImageUrl: z.ZodOptional<z.
|
|
12
|
+
url: z.ZodOptional<z.ZodString>;
|
|
13
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
26
14
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
27
|
-
},
|
|
28
|
-
type: "launch_miniapp";
|
|
29
|
-
name: string;
|
|
30
|
-
url?: string | undefined;
|
|
31
|
-
splashImageUrl?: string | undefined;
|
|
32
|
-
splashBackgroundColor?: string | undefined;
|
|
33
|
-
}, {
|
|
34
|
-
type: "launch_miniapp";
|
|
35
|
-
name: string;
|
|
36
|
-
url?: string | undefined;
|
|
37
|
-
splashImageUrl?: string | undefined;
|
|
38
|
-
splashBackgroundColor?: string | undefined;
|
|
39
|
-
}>;
|
|
15
|
+
}, z.core.$strip>;
|
|
40
16
|
export declare const actionViewTokenSchema: z.ZodObject<{
|
|
41
17
|
type: z.ZodLiteral<"view_token">;
|
|
42
18
|
token: z.ZodString;
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
token: string;
|
|
46
|
-
}, {
|
|
47
|
-
type: "view_token";
|
|
48
|
-
token: string;
|
|
49
|
-
}>;
|
|
50
|
-
export declare const actionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
19
|
+
}, z.core.$strip>;
|
|
20
|
+
export declare const actionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
51
21
|
type: z.ZodLiteral<"launch_miniapp">;
|
|
52
22
|
name: z.ZodString;
|
|
53
|
-
url: z.ZodOptional<z.
|
|
54
|
-
splashImageUrl: z.ZodOptional<z.
|
|
23
|
+
url: z.ZodOptional<z.ZodString>;
|
|
24
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
55
25
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
56
|
-
},
|
|
57
|
-
type: "launch_miniapp";
|
|
58
|
-
name: string;
|
|
59
|
-
url?: string | undefined;
|
|
60
|
-
splashImageUrl?: string | undefined;
|
|
61
|
-
splashBackgroundColor?: string | undefined;
|
|
62
|
-
}, {
|
|
63
|
-
type: "launch_miniapp";
|
|
64
|
-
name: string;
|
|
65
|
-
url?: string | undefined;
|
|
66
|
-
splashImageUrl?: string | undefined;
|
|
67
|
-
splashBackgroundColor?: string | undefined;
|
|
68
|
-
}>, z.ZodObject<{
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
69
27
|
type: z.ZodLiteral<"view_token">;
|
|
70
28
|
token: z.ZodString;
|
|
71
|
-
},
|
|
72
|
-
type: "view_token";
|
|
73
|
-
token: string;
|
|
74
|
-
}, {
|
|
75
|
-
type: "view_token";
|
|
76
|
-
token: string;
|
|
77
|
-
}>, z.ZodObject<{
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
78
30
|
type: z.ZodLiteral<"launch_frame">;
|
|
79
31
|
name: z.ZodString;
|
|
80
|
-
url: z.ZodOptional<z.
|
|
81
|
-
splashImageUrl: z.ZodOptional<z.
|
|
32
|
+
url: z.ZodOptional<z.ZodString>;
|
|
33
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
82
34
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
83
|
-
},
|
|
84
|
-
type: "launch_frame";
|
|
85
|
-
name: string;
|
|
86
|
-
url?: string | undefined;
|
|
87
|
-
splashImageUrl?: string | undefined;
|
|
88
|
-
splashBackgroundColor?: string | undefined;
|
|
89
|
-
}, {
|
|
90
|
-
type: "launch_frame";
|
|
91
|
-
name: string;
|
|
92
|
-
url?: string | undefined;
|
|
93
|
-
splashImageUrl?: string | undefined;
|
|
94
|
-
splashBackgroundColor?: string | undefined;
|
|
95
|
-
}>]>;
|
|
35
|
+
}, z.core.$strip>]>;
|
|
96
36
|
export declare const buttonSchema: z.ZodObject<{
|
|
97
37
|
title: z.ZodString;
|
|
98
|
-
action: z.ZodDiscriminatedUnion<
|
|
38
|
+
action: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
99
39
|
type: z.ZodLiteral<"launch_miniapp">;
|
|
100
40
|
name: z.ZodString;
|
|
101
|
-
url: z.ZodOptional<z.
|
|
102
|
-
splashImageUrl: z.ZodOptional<z.
|
|
41
|
+
url: z.ZodOptional<z.ZodString>;
|
|
42
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
103
43
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
104
|
-
},
|
|
105
|
-
type: "launch_miniapp";
|
|
106
|
-
name: string;
|
|
107
|
-
url?: string | undefined;
|
|
108
|
-
splashImageUrl?: string | undefined;
|
|
109
|
-
splashBackgroundColor?: string | undefined;
|
|
110
|
-
}, {
|
|
111
|
-
type: "launch_miniapp";
|
|
112
|
-
name: string;
|
|
113
|
-
url?: string | undefined;
|
|
114
|
-
splashImageUrl?: string | undefined;
|
|
115
|
-
splashBackgroundColor?: string | undefined;
|
|
116
|
-
}>, z.ZodObject<{
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
117
45
|
type: z.ZodLiteral<"view_token">;
|
|
118
46
|
token: z.ZodString;
|
|
119
|
-
},
|
|
120
|
-
type: "view_token";
|
|
121
|
-
token: string;
|
|
122
|
-
}, {
|
|
123
|
-
type: "view_token";
|
|
124
|
-
token: string;
|
|
125
|
-
}>, z.ZodObject<{
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
126
48
|
type: z.ZodLiteral<"launch_frame">;
|
|
127
49
|
name: z.ZodString;
|
|
128
|
-
url: z.ZodOptional<z.
|
|
129
|
-
splashImageUrl: z.ZodOptional<z.
|
|
50
|
+
url: z.ZodOptional<z.ZodString>;
|
|
51
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
130
52
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
131
|
-
},
|
|
132
|
-
|
|
133
|
-
name: string;
|
|
134
|
-
url?: string | undefined;
|
|
135
|
-
splashImageUrl?: string | undefined;
|
|
136
|
-
splashBackgroundColor?: string | undefined;
|
|
137
|
-
}, {
|
|
138
|
-
type: "launch_frame";
|
|
139
|
-
name: string;
|
|
140
|
-
url?: string | undefined;
|
|
141
|
-
splashImageUrl?: string | undefined;
|
|
142
|
-
splashBackgroundColor?: string | undefined;
|
|
143
|
-
}>]>;
|
|
144
|
-
}, "strip", z.ZodTypeAny, {
|
|
145
|
-
title: string;
|
|
146
|
-
action: {
|
|
147
|
-
type: "launch_frame";
|
|
148
|
-
name: string;
|
|
149
|
-
url?: string | undefined;
|
|
150
|
-
splashImageUrl?: string | undefined;
|
|
151
|
-
splashBackgroundColor?: string | undefined;
|
|
152
|
-
} | {
|
|
153
|
-
type: "launch_miniapp";
|
|
154
|
-
name: string;
|
|
155
|
-
url?: string | undefined;
|
|
156
|
-
splashImageUrl?: string | undefined;
|
|
157
|
-
splashBackgroundColor?: string | undefined;
|
|
158
|
-
} | {
|
|
159
|
-
type: "view_token";
|
|
160
|
-
token: string;
|
|
161
|
-
};
|
|
162
|
-
}, {
|
|
163
|
-
title: string;
|
|
164
|
-
action: {
|
|
165
|
-
type: "launch_frame";
|
|
166
|
-
name: string;
|
|
167
|
-
url?: string | undefined;
|
|
168
|
-
splashImageUrl?: string | undefined;
|
|
169
|
-
splashBackgroundColor?: string | undefined;
|
|
170
|
-
} | {
|
|
171
|
-
type: "launch_miniapp";
|
|
172
|
-
name: string;
|
|
173
|
-
url?: string | undefined;
|
|
174
|
-
splashImageUrl?: string | undefined;
|
|
175
|
-
splashBackgroundColor?: string | undefined;
|
|
176
|
-
} | {
|
|
177
|
-
type: "view_token";
|
|
178
|
-
token: string;
|
|
179
|
-
};
|
|
180
|
-
}>;
|
|
53
|
+
}, z.core.$strip>]>;
|
|
54
|
+
}, z.core.$strip>;
|
|
181
55
|
export declare const miniAppEmbedNextSchema: z.ZodObject<{
|
|
182
56
|
version: z.ZodLiteral<"next">;
|
|
183
|
-
imageUrl: z.
|
|
184
|
-
aspectRatio: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"1:1">, z.ZodLiteral<"3:2">]>>;
|
|
57
|
+
imageUrl: z.ZodString;
|
|
58
|
+
aspectRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"1:1">, z.ZodLiteral<"3:2">]>>;
|
|
185
59
|
button: z.ZodObject<{
|
|
186
60
|
title: z.ZodString;
|
|
187
|
-
action: z.ZodDiscriminatedUnion<
|
|
61
|
+
action: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
188
62
|
type: z.ZodLiteral<"launch_miniapp">;
|
|
189
63
|
name: z.ZodString;
|
|
190
|
-
url: z.ZodOptional<z.
|
|
191
|
-
splashImageUrl: z.ZodOptional<z.
|
|
64
|
+
url: z.ZodOptional<z.ZodString>;
|
|
65
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
192
66
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
193
|
-
},
|
|
194
|
-
type: "launch_miniapp";
|
|
195
|
-
name: string;
|
|
196
|
-
url?: string | undefined;
|
|
197
|
-
splashImageUrl?: string | undefined;
|
|
198
|
-
splashBackgroundColor?: string | undefined;
|
|
199
|
-
}, {
|
|
200
|
-
type: "launch_miniapp";
|
|
201
|
-
name: string;
|
|
202
|
-
url?: string | undefined;
|
|
203
|
-
splashImageUrl?: string | undefined;
|
|
204
|
-
splashBackgroundColor?: string | undefined;
|
|
205
|
-
}>, z.ZodObject<{
|
|
67
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
206
68
|
type: z.ZodLiteral<"view_token">;
|
|
207
69
|
token: z.ZodString;
|
|
208
|
-
},
|
|
209
|
-
type: "view_token";
|
|
210
|
-
token: string;
|
|
211
|
-
}, {
|
|
212
|
-
type: "view_token";
|
|
213
|
-
token: string;
|
|
214
|
-
}>, z.ZodObject<{
|
|
70
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
215
71
|
type: z.ZodLiteral<"launch_frame">;
|
|
216
72
|
name: z.ZodString;
|
|
217
|
-
url: z.ZodOptional<z.
|
|
218
|
-
splashImageUrl: z.ZodOptional<z.
|
|
73
|
+
url: z.ZodOptional<z.ZodString>;
|
|
74
|
+
splashImageUrl: z.ZodOptional<z.ZodString>;
|
|
219
75
|
splashBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
220
|
-
},
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
splashImageUrl?: string | undefined;
|
|
225
|
-
splashBackgroundColor?: string | undefined;
|
|
226
|
-
}, {
|
|
227
|
-
type: "launch_frame";
|
|
228
|
-
name: string;
|
|
229
|
-
url?: string | undefined;
|
|
230
|
-
splashImageUrl?: string | undefined;
|
|
231
|
-
splashBackgroundColor?: string | undefined;
|
|
232
|
-
}>]>;
|
|
233
|
-
}, "strip", z.ZodTypeAny, {
|
|
234
|
-
title: string;
|
|
235
|
-
action: {
|
|
236
|
-
type: "launch_frame";
|
|
237
|
-
name: string;
|
|
238
|
-
url?: string | undefined;
|
|
239
|
-
splashImageUrl?: string | undefined;
|
|
240
|
-
splashBackgroundColor?: string | undefined;
|
|
241
|
-
} | {
|
|
242
|
-
type: "launch_miniapp";
|
|
243
|
-
name: string;
|
|
244
|
-
url?: string | undefined;
|
|
245
|
-
splashImageUrl?: string | undefined;
|
|
246
|
-
splashBackgroundColor?: string | undefined;
|
|
247
|
-
} | {
|
|
248
|
-
type: "view_token";
|
|
249
|
-
token: string;
|
|
250
|
-
};
|
|
251
|
-
}, {
|
|
252
|
-
title: string;
|
|
253
|
-
action: {
|
|
254
|
-
type: "launch_frame";
|
|
255
|
-
name: string;
|
|
256
|
-
url?: string | undefined;
|
|
257
|
-
splashImageUrl?: string | undefined;
|
|
258
|
-
splashBackgroundColor?: string | undefined;
|
|
259
|
-
} | {
|
|
260
|
-
type: "launch_miniapp";
|
|
261
|
-
name: string;
|
|
262
|
-
url?: string | undefined;
|
|
263
|
-
splashImageUrl?: string | undefined;
|
|
264
|
-
splashBackgroundColor?: string | undefined;
|
|
265
|
-
} | {
|
|
266
|
-
type: "view_token";
|
|
267
|
-
token: string;
|
|
268
|
-
};
|
|
269
|
-
}>;
|
|
270
|
-
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
}, z.core.$strip>]>;
|
|
77
|
+
}, z.core.$strip>;
|
|
78
|
+
}, z.core.$strip>;
|
|
79
|
+
export declare const safeParseMiniAppEmbed: (rawResponse: unknown) => z.ZodSafeParseResult<{
|
|
271
80
|
version: "next";
|
|
272
81
|
imageUrl: string;
|
|
273
82
|
button: {
|
|
274
83
|
title: string;
|
|
275
84
|
action: {
|
|
276
|
-
type: "launch_frame";
|
|
277
|
-
name: string;
|
|
278
|
-
url?: string | undefined;
|
|
279
|
-
splashImageUrl?: string | undefined;
|
|
280
|
-
splashBackgroundColor?: string | undefined;
|
|
281
|
-
} | {
|
|
282
85
|
type: "launch_miniapp";
|
|
283
86
|
name: string;
|
|
284
87
|
url?: string | undefined;
|
|
@@ -287,92 +90,22 @@ export declare const miniAppEmbedNextSchema: z.ZodObject<{
|
|
|
287
90
|
} | {
|
|
288
91
|
type: "view_token";
|
|
289
92
|
token: string;
|
|
290
|
-
};
|
|
291
|
-
};
|
|
292
|
-
aspectRatio?: "1:1" | "3:2" | undefined;
|
|
293
|
-
}, {
|
|
294
|
-
version: "next";
|
|
295
|
-
imageUrl: string;
|
|
296
|
-
button: {
|
|
297
|
-
title: string;
|
|
298
|
-
action: {
|
|
299
|
-
type: "launch_frame";
|
|
300
|
-
name: string;
|
|
301
|
-
url?: string | undefined;
|
|
302
|
-
splashImageUrl?: string | undefined;
|
|
303
|
-
splashBackgroundColor?: string | undefined;
|
|
304
|
-
} | {
|
|
305
|
-
type: "launch_miniapp";
|
|
306
|
-
name: string;
|
|
307
|
-
url?: string | undefined;
|
|
308
|
-
splashImageUrl?: string | undefined;
|
|
309
|
-
splashBackgroundColor?: string | undefined;
|
|
310
93
|
} | {
|
|
311
|
-
type: "view_token";
|
|
312
|
-
token: string;
|
|
313
|
-
};
|
|
314
|
-
};
|
|
315
|
-
aspectRatio?: "1:1" | "3:2" | undefined;
|
|
316
|
-
}>;
|
|
317
|
-
export declare const safeParseMiniAppEmbed: (rawResponse: unknown) => z.SafeParseReturnType<{
|
|
318
|
-
version: "next";
|
|
319
|
-
imageUrl: string;
|
|
320
|
-
button: {
|
|
321
|
-
title: string;
|
|
322
|
-
action: {
|
|
323
94
|
type: "launch_frame";
|
|
324
95
|
name: string;
|
|
325
96
|
url?: string | undefined;
|
|
326
97
|
splashImageUrl?: string | undefined;
|
|
327
98
|
splashBackgroundColor?: string | undefined;
|
|
328
|
-
} | {
|
|
329
|
-
type: "launch_miniapp";
|
|
330
|
-
name: string;
|
|
331
|
-
url?: string | undefined;
|
|
332
|
-
splashImageUrl?: string | undefined;
|
|
333
|
-
splashBackgroundColor?: string | undefined;
|
|
334
|
-
} | {
|
|
335
|
-
type: "view_token";
|
|
336
|
-
token: string;
|
|
337
|
-
};
|
|
338
|
-
};
|
|
339
|
-
aspectRatio?: "1:1" | "3:2" | undefined;
|
|
340
|
-
}, {
|
|
341
|
-
version: "next";
|
|
342
|
-
imageUrl: string;
|
|
343
|
-
button: {
|
|
344
|
-
title: string;
|
|
345
|
-
action: {
|
|
346
|
-
type: "launch_frame";
|
|
347
|
-
name: string;
|
|
348
|
-
url?: string | undefined;
|
|
349
|
-
splashImageUrl?: string | undefined;
|
|
350
|
-
splashBackgroundColor?: string | undefined;
|
|
351
|
-
} | {
|
|
352
|
-
type: "launch_miniapp";
|
|
353
|
-
name: string;
|
|
354
|
-
url?: string | undefined;
|
|
355
|
-
splashImageUrl?: string | undefined;
|
|
356
|
-
splashBackgroundColor?: string | undefined;
|
|
357
|
-
} | {
|
|
358
|
-
type: "view_token";
|
|
359
|
-
token: string;
|
|
360
99
|
};
|
|
361
100
|
};
|
|
362
101
|
aspectRatio?: "1:1" | "3:2" | undefined;
|
|
363
102
|
}>;
|
|
364
|
-
export declare const safeParseFrameEmbed: (rawResponse: unknown) => z.
|
|
103
|
+
export declare const safeParseFrameEmbed: (rawResponse: unknown) => z.ZodSafeParseResult<{
|
|
365
104
|
version: "next";
|
|
366
105
|
imageUrl: string;
|
|
367
106
|
button: {
|
|
368
107
|
title: string;
|
|
369
108
|
action: {
|
|
370
|
-
type: "launch_frame";
|
|
371
|
-
name: string;
|
|
372
|
-
url?: string | undefined;
|
|
373
|
-
splashImageUrl?: string | undefined;
|
|
374
|
-
splashBackgroundColor?: string | undefined;
|
|
375
|
-
} | {
|
|
376
109
|
type: "launch_miniapp";
|
|
377
110
|
name: string;
|
|
378
111
|
url?: string | undefined;
|
|
@@ -381,29 +114,12 @@ export declare const safeParseFrameEmbed: (rawResponse: unknown) => z.SafeParseR
|
|
|
381
114
|
} | {
|
|
382
115
|
type: "view_token";
|
|
383
116
|
token: string;
|
|
384
|
-
};
|
|
385
|
-
};
|
|
386
|
-
aspectRatio?: "1:1" | "3:2" | undefined;
|
|
387
|
-
}, {
|
|
388
|
-
version: "next";
|
|
389
|
-
imageUrl: string;
|
|
390
|
-
button: {
|
|
391
|
-
title: string;
|
|
392
|
-
action: {
|
|
393
|
-
type: "launch_frame";
|
|
394
|
-
name: string;
|
|
395
|
-
url?: string | undefined;
|
|
396
|
-
splashImageUrl?: string | undefined;
|
|
397
|
-
splashBackgroundColor?: string | undefined;
|
|
398
117
|
} | {
|
|
399
|
-
type: "
|
|
118
|
+
type: "launch_frame";
|
|
400
119
|
name: string;
|
|
401
120
|
url?: string | undefined;
|
|
402
121
|
splashImageUrl?: string | undefined;
|
|
403
122
|
splashBackgroundColor?: string | undefined;
|
|
404
|
-
} | {
|
|
405
|
-
type: "view_token";
|
|
406
|
-
token: string;
|
|
407
123
|
};
|
|
408
124
|
};
|
|
409
125
|
aspectRatio?: "1:1" | "3:2" | undefined;
|
package/esm/schemas/embeds.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
2
|
import { aspectRatioSchema, buttonTitleSchema, caip19TokenSchema, hexColorSchema, miniAppNameSchema, secureUrlSchema, } from "./shared.js";
|
|
3
3
|
export const actionLaunchFrameSchema = z.object({
|
|
4
4
|
type: z.literal('launch_frame'),
|
package/esm/schemas/events.d.ts
CHANGED
|
@@ -1,195 +1,63 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
2
|
export declare const eventMiniAppAddedSchema: z.ZodObject<{
|
|
3
3
|
event: z.ZodLiteral<"miniapp_added">;
|
|
4
4
|
notificationDetails: z.ZodOptional<z.ZodObject<{
|
|
5
5
|
url: z.ZodString;
|
|
6
6
|
token: z.ZodString;
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
token: string;
|
|
10
|
-
}, {
|
|
11
|
-
url: string;
|
|
12
|
-
token: string;
|
|
13
|
-
}>>;
|
|
14
|
-
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
event: "miniapp_added";
|
|
16
|
-
notificationDetails?: {
|
|
17
|
-
url: string;
|
|
18
|
-
token: string;
|
|
19
|
-
} | undefined;
|
|
20
|
-
}, {
|
|
21
|
-
event: "miniapp_added";
|
|
22
|
-
notificationDetails?: {
|
|
23
|
-
url: string;
|
|
24
|
-
token: string;
|
|
25
|
-
} | undefined;
|
|
26
|
-
}>;
|
|
7
|
+
}, z.core.$strip>>;
|
|
8
|
+
}, z.core.$strip>;
|
|
27
9
|
export type EventMiniAppAdded = z.infer<typeof eventMiniAppAddedSchema>;
|
|
28
10
|
export declare const eventFrameAddedSchema: z.ZodObject<{
|
|
29
11
|
event: z.ZodLiteral<"frame_added">;
|
|
30
12
|
notificationDetails: z.ZodOptional<z.ZodObject<{
|
|
31
13
|
url: z.ZodString;
|
|
32
14
|
token: z.ZodString;
|
|
33
|
-
},
|
|
34
|
-
|
|
35
|
-
token: string;
|
|
36
|
-
}, {
|
|
37
|
-
url: string;
|
|
38
|
-
token: string;
|
|
39
|
-
}>>;
|
|
40
|
-
}, "strip", z.ZodTypeAny, {
|
|
41
|
-
event: "frame_added";
|
|
42
|
-
notificationDetails?: {
|
|
43
|
-
url: string;
|
|
44
|
-
token: string;
|
|
45
|
-
} | undefined;
|
|
46
|
-
}, {
|
|
47
|
-
event: "frame_added";
|
|
48
|
-
notificationDetails?: {
|
|
49
|
-
url: string;
|
|
50
|
-
token: string;
|
|
51
|
-
} | undefined;
|
|
52
|
-
}>;
|
|
15
|
+
}, z.core.$strip>>;
|
|
16
|
+
}, z.core.$strip>;
|
|
53
17
|
export type EventFrameAdded = z.infer<typeof eventFrameAddedSchema>;
|
|
54
18
|
export declare const eventMiniAppRemovedSchema: z.ZodObject<{
|
|
55
19
|
event: z.ZodLiteral<"miniapp_removed">;
|
|
56
|
-
},
|
|
57
|
-
event: "miniapp_removed";
|
|
58
|
-
}, {
|
|
59
|
-
event: "miniapp_removed";
|
|
60
|
-
}>;
|
|
20
|
+
}, z.core.$strip>;
|
|
61
21
|
export type EventMiniAppRemoved = z.infer<typeof eventMiniAppRemovedSchema>;
|
|
62
22
|
export declare const eventFrameRemovedSchema: z.ZodObject<{
|
|
63
23
|
event: z.ZodLiteral<"frame_removed">;
|
|
64
|
-
},
|
|
65
|
-
event: "frame_removed";
|
|
66
|
-
}, {
|
|
67
|
-
event: "frame_removed";
|
|
68
|
-
}>;
|
|
24
|
+
}, z.core.$strip>;
|
|
69
25
|
export type EventFrameRemoved = z.infer<typeof eventFrameRemovedSchema>;
|
|
70
26
|
export declare const eventNotificationsEnabledSchema: z.ZodObject<{
|
|
71
27
|
event: z.ZodLiteral<"notifications_enabled">;
|
|
72
28
|
notificationDetails: z.ZodObject<{
|
|
73
|
-
url: z.ZodString
|
|
74
|
-
token: z.ZodString
|
|
75
|
-
},
|
|
76
|
-
|
|
77
|
-
token: string;
|
|
78
|
-
}, {
|
|
79
|
-
url: string;
|
|
80
|
-
token: string;
|
|
81
|
-
}>;
|
|
82
|
-
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
event: "notifications_enabled";
|
|
84
|
-
notificationDetails: {
|
|
85
|
-
url: string;
|
|
86
|
-
token: string;
|
|
87
|
-
};
|
|
88
|
-
}, {
|
|
89
|
-
event: "notifications_enabled";
|
|
90
|
-
notificationDetails: {
|
|
91
|
-
url: string;
|
|
92
|
-
token: string;
|
|
93
|
-
};
|
|
94
|
-
}>;
|
|
29
|
+
url: z.ZodNonOptional<z.ZodString>;
|
|
30
|
+
token: z.ZodNonOptional<z.ZodString>;
|
|
31
|
+
}, z.core.$strip>;
|
|
32
|
+
}, z.core.$strip>;
|
|
95
33
|
export type EventNotificationsEnabled = z.infer<typeof eventNotificationsEnabledSchema>;
|
|
96
34
|
export declare const notificationsDisabledSchema: z.ZodObject<{
|
|
97
35
|
event: z.ZodLiteral<"notifications_disabled">;
|
|
98
|
-
},
|
|
99
|
-
event: "notifications_disabled";
|
|
100
|
-
}, {
|
|
101
|
-
event: "notifications_disabled";
|
|
102
|
-
}>;
|
|
36
|
+
}, z.core.$strip>;
|
|
103
37
|
export type EventNotificationsDisabled = z.infer<typeof notificationsDisabledSchema>;
|
|
104
|
-
export declare const serverEventSchema: z.ZodDiscriminatedUnion<
|
|
38
|
+
export declare const serverEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
105
39
|
event: z.ZodLiteral<"miniapp_added">;
|
|
106
40
|
notificationDetails: z.ZodOptional<z.ZodObject<{
|
|
107
41
|
url: z.ZodString;
|
|
108
42
|
token: z.ZodString;
|
|
109
|
-
},
|
|
110
|
-
|
|
111
|
-
token: string;
|
|
112
|
-
}, {
|
|
113
|
-
url: string;
|
|
114
|
-
token: string;
|
|
115
|
-
}>>;
|
|
116
|
-
}, "strip", z.ZodTypeAny, {
|
|
117
|
-
event: "miniapp_added";
|
|
118
|
-
notificationDetails?: {
|
|
119
|
-
url: string;
|
|
120
|
-
token: string;
|
|
121
|
-
} | undefined;
|
|
122
|
-
}, {
|
|
123
|
-
event: "miniapp_added";
|
|
124
|
-
notificationDetails?: {
|
|
125
|
-
url: string;
|
|
126
|
-
token: string;
|
|
127
|
-
} | undefined;
|
|
128
|
-
}>, z.ZodObject<{
|
|
43
|
+
}, z.core.$strip>>;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
129
45
|
event: z.ZodLiteral<"miniapp_removed">;
|
|
130
|
-
},
|
|
131
|
-
event: "miniapp_removed";
|
|
132
|
-
}, {
|
|
133
|
-
event: "miniapp_removed";
|
|
134
|
-
}>, z.ZodObject<{
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
135
47
|
event: z.ZodLiteral<"notifications_enabled">;
|
|
136
48
|
notificationDetails: z.ZodObject<{
|
|
137
|
-
url: z.ZodString
|
|
138
|
-
token: z.ZodString
|
|
139
|
-
},
|
|
140
|
-
|
|
141
|
-
token: string;
|
|
142
|
-
}, {
|
|
143
|
-
url: string;
|
|
144
|
-
token: string;
|
|
145
|
-
}>;
|
|
146
|
-
}, "strip", z.ZodTypeAny, {
|
|
147
|
-
event: "notifications_enabled";
|
|
148
|
-
notificationDetails: {
|
|
149
|
-
url: string;
|
|
150
|
-
token: string;
|
|
151
|
-
};
|
|
152
|
-
}, {
|
|
153
|
-
event: "notifications_enabled";
|
|
154
|
-
notificationDetails: {
|
|
155
|
-
url: string;
|
|
156
|
-
token: string;
|
|
157
|
-
};
|
|
158
|
-
}>, z.ZodObject<{
|
|
49
|
+
url: z.ZodNonOptional<z.ZodString>;
|
|
50
|
+
token: z.ZodNonOptional<z.ZodString>;
|
|
51
|
+
}, z.core.$strip>;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
159
53
|
event: z.ZodLiteral<"notifications_disabled">;
|
|
160
|
-
},
|
|
161
|
-
event: "notifications_disabled";
|
|
162
|
-
}, {
|
|
163
|
-
event: "notifications_disabled";
|
|
164
|
-
}>, z.ZodObject<{
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
165
55
|
event: z.ZodLiteral<"frame_added">;
|
|
166
56
|
notificationDetails: z.ZodOptional<z.ZodObject<{
|
|
167
57
|
url: z.ZodString;
|
|
168
58
|
token: z.ZodString;
|
|
169
|
-
},
|
|
170
|
-
|
|
171
|
-
token: string;
|
|
172
|
-
}, {
|
|
173
|
-
url: string;
|
|
174
|
-
token: string;
|
|
175
|
-
}>>;
|
|
176
|
-
}, "strip", z.ZodTypeAny, {
|
|
177
|
-
event: "frame_added";
|
|
178
|
-
notificationDetails?: {
|
|
179
|
-
url: string;
|
|
180
|
-
token: string;
|
|
181
|
-
} | undefined;
|
|
182
|
-
}, {
|
|
183
|
-
event: "frame_added";
|
|
184
|
-
notificationDetails?: {
|
|
185
|
-
url: string;
|
|
186
|
-
token: string;
|
|
187
|
-
} | undefined;
|
|
188
|
-
}>, z.ZodObject<{
|
|
59
|
+
}, z.core.$strip>>;
|
|
60
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
189
61
|
event: z.ZodLiteral<"frame_removed">;
|
|
190
|
-
},
|
|
191
|
-
event: "frame_removed";
|
|
192
|
-
}, {
|
|
193
|
-
event: "frame_removed";
|
|
194
|
-
}>]>;
|
|
62
|
+
}, z.core.$strip>]>;
|
|
195
63
|
export type MiniAppServerEvent = z.infer<typeof serverEventSchema>;
|
package/esm/schemas/events.js
CHANGED