@readyfor/api-client-pigeon 0.182.0 → 0.183.0-pr956.d140042

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 (36) hide show
  1. package/dist/{chunk-WK3GQ3EJ.mjs → chunk-6JD6O54D.mjs} +2 -7
  2. package/dist/{chunk-74WMCVT5.mjs → chunk-E4EBP7CH.mjs} +1 -1
  3. package/dist/{chunk-N3BEWWAR.mjs → chunk-IZKSS2SI.mjs} +1 -1
  4. package/dist/{chunk-27FMVK5R.mjs → chunk-MT42GIFV.mjs} +1 -1
  5. package/dist/{chunk-RNVZT75U.mjs → chunk-VCZLUTX6.mjs} +1 -1
  6. package/dist/{chunk-T7TYL5GC.mjs → chunk-WHRQDKQG.mjs} +85 -8
  7. package/dist/{chunk-OHDYCNMB.mjs → chunk-X3WKGXGL.mjs} +1 -1
  8. package/dist/components.d.mts +2483 -125
  9. package/dist/components.d.ts +2483 -125
  10. package/dist/components.js +94 -8
  11. package/dist/components.mjs +21 -3
  12. package/dist/fetch/campaigns.d.mts +2 -2
  13. package/dist/fetch/campaigns.d.ts +2 -2
  14. package/dist/fetch/campaigns.js +74 -6
  15. package/dist/fetch/campaigns.mjs +2 -2
  16. package/dist/fetch/campaignsId.d.mts +138 -30
  17. package/dist/fetch/campaignsId.d.ts +138 -30
  18. package/dist/fetch/campaignsId.js +75 -12
  19. package/dist/fetch/campaignsId.mjs +2 -2
  20. package/dist/fetch/projectsProjectIdOrKeyword.js +74 -6
  21. package/dist/fetch/projectsProjectIdOrKeyword.mjs +2 -2
  22. package/dist/hooks/index.js +74 -6
  23. package/dist/hooks/index.mjs +7 -7
  24. package/dist/hooks/useCampaigns.js +74 -6
  25. package/dist/hooks/useCampaigns.mjs +5 -5
  26. package/dist/hooks/useCampaignsId.js +74 -6
  27. package/dist/hooks/useCampaignsId.mjs +5 -5
  28. package/dist/hooks/useProjectsProjectIdOrKeyword.js +74 -6
  29. package/dist/hooks/useProjectsProjectIdOrKeyword.mjs +5 -5
  30. package/dist/index.d.mts +1 -1
  31. package/dist/index.d.ts +1 -1
  32. package/dist/index.js +93 -12
  33. package/dist/index.mjs +23 -5
  34. package/dist/schemaType.d.mts +90 -43
  35. package/dist/schemaType.d.ts +90 -43
  36. package/package.json +9 -10
@@ -129,9 +129,9 @@ interface components {
129
129
  * "target": ""
130
130
  * },
131
131
  * "kind": "personalizedMailMagazine",
132
+ * "deliveryScheduledAt": "2000-01-23T04:56:07.000Z",
132
133
  * "id": 0,
133
134
  * "title": "title",
134
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z",
135
135
  * "status": "draft"
136
136
  * }
137
137
  * }
@@ -141,19 +141,6 @@ interface components {
141
141
  };
142
142
  /** CampaignDetail */
143
143
  CampaignDetail: components["schemas"]["CampaignDetailWithPersonalizedMailMagazine"] | components["schemas"]["CampaignDetailWithCurationMailMagazine"];
144
- /**
145
- * @example {
146
- * "formData": {
147
- * "personalizedMailMagazine": {
148
- * "targetCsv": "",
149
- * "utmCampaign": "utmCampaign"
150
- * },
151
- * "kind": "personalizedMailMagazine",
152
- * "title": "title",
153
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z"
154
- * }
155
- * }
156
- */
157
144
  PatchCampaignsCampaignIdRequestBody: {
158
145
  formData: components["schemas"]["CampaignFormData"];
159
146
  };
@@ -223,9 +210,9 @@ interface components {
223
210
  * "target": ""
224
211
  * },
225
212
  * "kind": "personalizedMailMagazine",
213
+ * "deliveryScheduledAt": "2000-01-23T04:56:07.000Z",
226
214
  * "id": 0,
227
215
  * "title": "title",
228
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z",
229
216
  * "status": "draft"
230
217
  * }
231
218
  */
@@ -255,7 +242,7 @@ interface components {
255
242
  status: components["schemas"]["CampaignStatus"];
256
243
  title: string | null;
257
244
  /** Format: date-time */
258
- scheduledDeliveryAt: string | null;
245
+ deliveryScheduledAt: string | null;
259
246
  };
260
247
  /** CampaignDetailKindDataPersonalizedMailMagazine */
261
248
  CampaignDetailKindDataPersonalizedMailMagazine: {
@@ -267,21 +254,9 @@ interface components {
267
254
  CampaignDetailKindDataCurationMailMagazine: {
268
255
  /** @enum {string} */
269
256
  kind: "curationMailMagazine";
270
- /** CurationMailMagazineDetail */
271
- curationMailMagazine: Record<string, never>;
257
+ curationMailMagazine: components["schemas"]["CurationMailMagazineDetail"];
272
258
  };
273
- /**
274
- * CampaignWithPersonalizedMailMagazineFormData
275
- * @example {
276
- * "personalizedMailMagazine": {
277
- * "targetCsv": "",
278
- * "utmCampaign": "utmCampaign"
279
- * },
280
- * "kind": "personalizedMailMagazine",
281
- * "title": "title",
282
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z"
283
- * }
284
- */
259
+ /** CampaignWithPersonalizedMailMagazineFormData */
285
260
  CampaignWithPersonalizedMailMagazineFormData: components["schemas"]["CampaignBaseFormData"] & components["schemas"]["CampaignKindDataPersonalizedMailMagazineFormData"];
286
261
  /** CampaignWithCurationMailMagazineFormData */
287
262
  CampaignWithCurationMailMagazineFormData: components["schemas"]["CampaignBaseFormData"] & components["schemas"]["CampaignKindDataCurationMailMagazineFormData"];
@@ -297,12 +272,20 @@ interface components {
297
272
  target: components["schemas"]["PersonalizedMailMagazineDetailTarget"] | null;
298
273
  };
299
274
  /** CurationMailMagazineDetail */
300
- CurationMailMagazineDetail: Record<string, never>;
275
+ CurationMailMagazineDetail: {
276
+ utmCampaign: string | null;
277
+ mailSubject: string | null;
278
+ preHeaderText: string | null;
279
+ deliveredUsersCount: number | null;
280
+ targets: components["schemas"]["CurationMailMagazineTarget"][];
281
+ projects: components["schemas"]["CurationMailMagazineTargetProject"][];
282
+ banners: components["schemas"]["CurationMailMagazineBanner"][];
283
+ };
301
284
  /** CampaignBaseFormData */
302
285
  CampaignBaseFormData: {
303
286
  title: string | null;
304
287
  /** Format: date-time */
305
- scheduledDeliveryAt: string | null;
288
+ deliveryScheduledAt: string | null;
306
289
  };
307
290
  /** CampaignKindDataPersonalizedMailMagazineFormData */
308
291
  CampaignKindDataPersonalizedMailMagazineFormData: {
@@ -314,8 +297,7 @@ interface components {
314
297
  CampaignKindDataCurationMailMagazineFormData: {
315
298
  /** @enum {string} */
316
299
  kind: "curationMailMagazine";
317
- /** CurationMailMagazineFormData */
318
- curationMailMagazine: Record<string, never>;
300
+ curationMailMagazine: components["schemas"]["CurationMailMagazineFormData"];
319
301
  };
320
302
  /** PersonalizedMailMagazineDetailTarget */
321
303
  PersonalizedMailMagazineDetailTarget: {
@@ -323,21 +305,72 @@ interface components {
323
305
  targetUsersCount: number;
324
306
  excludedUsersCount: number;
325
307
  };
326
- /**
327
- * PersonalizedMailMagazineFormData
328
- * @example {
329
- * "targetCsv": "",
330
- * "utmCampaign": "utmCampaign"
331
- * }
332
- */
308
+ /** CurationMailMagazineTarget */
309
+ CurationMailMagazineTarget: {
310
+ id: number;
311
+ behaviorSegumentCodes: string[];
312
+ profileSegumentCodes: string[];
313
+ };
314
+ /** CurationMailMagazineTargetProject */
315
+ CurationMailMagazineTargetProject: {
316
+ id: number;
317
+ readyforProjectId: number;
318
+ slotNumber: number;
319
+ isPaidSlot: boolean;
320
+ title: string | null;
321
+ description: string | null;
322
+ thumbnailUrl: string | null;
323
+ tag: string | null;
324
+ tagUrl: string | null;
325
+ };
326
+ /** CurationMailMagazineBanner */
327
+ CurationMailMagazineBanner: {
328
+ id: number;
329
+ slotNumber: number;
330
+ imageUrl: string | null;
331
+ url: string | null;
332
+ };
333
+ /** PersonalizedMailMagazineFormData */
333
334
  PersonalizedMailMagazineFormData: {
334
335
  utmCampaign: string | null;
335
336
  targetCsv: components["schemas"]["PersonalizedMailMagazineTargetCsvFormData"] | null;
336
337
  };
337
338
  /** CurationMailMagazineFormData */
338
- CurationMailMagazineFormData: Record<string, never>;
339
+ CurationMailMagazineFormData: {
340
+ utmCampaign: string | null;
341
+ mailSubject: string | null;
342
+ preHeaderText: string | null;
343
+ targets: components["schemas"]["CurationMailMagazineTargetFormData"][];
344
+ projects: components["schemas"]["CurationMailMagazineProjectFormData"][];
345
+ banners: components["schemas"]["CurationMailMagazineBannerFormData"][];
346
+ };
339
347
  /** PersonalizedMailMagazineTargetCsvFormData */
340
348
  PersonalizedMailMagazineTargetCsvFormData: components["schemas"]["PersonalizedMailMagazineTargetDeleteCsvFormData"] | components["schemas"]["PersonalizedMailMagazineTargetUploadCsvFormData"];
349
+ /** CurationMailMagazineTargetFormData */
350
+ CurationMailMagazineTargetFormData: {
351
+ id: string | null;
352
+ behaviorSgumentCodes: string[];
353
+ profileSgumentCodes: string[];
354
+ };
355
+ /** CurationMailMagazineProjectFormData */
356
+ CurationMailMagazineProjectFormData: {
357
+ id: number | null;
358
+ order: number;
359
+ readyforProjectId: number;
360
+ isPaidSlot: boolean;
361
+ title: string | null;
362
+ description: string | null;
363
+ thumbnal: components["schemas"]["ImageFormData"];
364
+ tag: string | null;
365
+ tagUrl: string | null;
366
+ };
367
+ /** CurationMailMagazineBannerFormData */
368
+ CurationMailMagazineBannerFormData: {
369
+ id: number | null;
370
+ order: number;
371
+ image: components["schemas"]["ImageFormData"];
372
+ url: string | null;
373
+ };
341
374
  /** PersonalizedMailMagazineTargetDeleteCsvFormData */
342
375
  PersonalizedMailMagazineTargetDeleteCsvFormData: {
343
376
  /** @enum {string} */
@@ -350,6 +383,8 @@ interface components {
350
383
  fileName: string;
351
384
  records: components["schemas"]["PersonalizedMailMagazineTargetUploadCsvRecordFormData"][];
352
385
  };
386
+ /** ImageFormData */
387
+ ImageFormData: components["schemas"]["UploadImageFormData"] | components["schemas"]["DeleteImageFormData"];
353
388
  /**
354
389
  * PersonalizedMailMagazineTargetUploadCsvRecordFormData
355
390
  * @example [
@@ -365,6 +400,18 @@ interface components {
365
400
  userId: number;
366
401
  projectIds: string;
367
402
  };
403
+ /** UploadImageFormData */
404
+ UploadImageFormData: {
405
+ /** @enum {string} */
406
+ kind: "upload";
407
+ /** Format: binary */
408
+ data: File | Blob;
409
+ };
410
+ /** DeleteImageFormData */
411
+ DeleteImageFormData: {
412
+ /** @enum {string} */
413
+ kind: "delete";
414
+ };
368
415
  };
369
416
  responses: never;
370
417
  parameters: never;
@@ -451,7 +498,7 @@ interface operations {
451
498
  };
452
499
  requestBody: {
453
500
  content: {
454
- "application/json": components["schemas"]["PatchCampaignsCampaignIdRequestBody"];
501
+ "multipart/form-data": components["schemas"]["PatchCampaignsCampaignIdRequestBody"];
455
502
  };
456
503
  };
457
504
  responses: {
@@ -129,9 +129,9 @@ interface components {
129
129
  * "target": ""
130
130
  * },
131
131
  * "kind": "personalizedMailMagazine",
132
+ * "deliveryScheduledAt": "2000-01-23T04:56:07.000Z",
132
133
  * "id": 0,
133
134
  * "title": "title",
134
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z",
135
135
  * "status": "draft"
136
136
  * }
137
137
  * }
@@ -141,19 +141,6 @@ interface components {
141
141
  };
142
142
  /** CampaignDetail */
143
143
  CampaignDetail: components["schemas"]["CampaignDetailWithPersonalizedMailMagazine"] | components["schemas"]["CampaignDetailWithCurationMailMagazine"];
144
- /**
145
- * @example {
146
- * "formData": {
147
- * "personalizedMailMagazine": {
148
- * "targetCsv": "",
149
- * "utmCampaign": "utmCampaign"
150
- * },
151
- * "kind": "personalizedMailMagazine",
152
- * "title": "title",
153
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z"
154
- * }
155
- * }
156
- */
157
144
  PatchCampaignsCampaignIdRequestBody: {
158
145
  formData: components["schemas"]["CampaignFormData"];
159
146
  };
@@ -223,9 +210,9 @@ interface components {
223
210
  * "target": ""
224
211
  * },
225
212
  * "kind": "personalizedMailMagazine",
213
+ * "deliveryScheduledAt": "2000-01-23T04:56:07.000Z",
226
214
  * "id": 0,
227
215
  * "title": "title",
228
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z",
229
216
  * "status": "draft"
230
217
  * }
231
218
  */
@@ -255,7 +242,7 @@ interface components {
255
242
  status: components["schemas"]["CampaignStatus"];
256
243
  title: string | null;
257
244
  /** Format: date-time */
258
- scheduledDeliveryAt: string | null;
245
+ deliveryScheduledAt: string | null;
259
246
  };
260
247
  /** CampaignDetailKindDataPersonalizedMailMagazine */
261
248
  CampaignDetailKindDataPersonalizedMailMagazine: {
@@ -267,21 +254,9 @@ interface components {
267
254
  CampaignDetailKindDataCurationMailMagazine: {
268
255
  /** @enum {string} */
269
256
  kind: "curationMailMagazine";
270
- /** CurationMailMagazineDetail */
271
- curationMailMagazine: Record<string, never>;
257
+ curationMailMagazine: components["schemas"]["CurationMailMagazineDetail"];
272
258
  };
273
- /**
274
- * CampaignWithPersonalizedMailMagazineFormData
275
- * @example {
276
- * "personalizedMailMagazine": {
277
- * "targetCsv": "",
278
- * "utmCampaign": "utmCampaign"
279
- * },
280
- * "kind": "personalizedMailMagazine",
281
- * "title": "title",
282
- * "scheduledDeliveryAt": "2000-01-23T04:56:07.000Z"
283
- * }
284
- */
259
+ /** CampaignWithPersonalizedMailMagazineFormData */
285
260
  CampaignWithPersonalizedMailMagazineFormData: components["schemas"]["CampaignBaseFormData"] & components["schemas"]["CampaignKindDataPersonalizedMailMagazineFormData"];
286
261
  /** CampaignWithCurationMailMagazineFormData */
287
262
  CampaignWithCurationMailMagazineFormData: components["schemas"]["CampaignBaseFormData"] & components["schemas"]["CampaignKindDataCurationMailMagazineFormData"];
@@ -297,12 +272,20 @@ interface components {
297
272
  target: components["schemas"]["PersonalizedMailMagazineDetailTarget"] | null;
298
273
  };
299
274
  /** CurationMailMagazineDetail */
300
- CurationMailMagazineDetail: Record<string, never>;
275
+ CurationMailMagazineDetail: {
276
+ utmCampaign: string | null;
277
+ mailSubject: string | null;
278
+ preHeaderText: string | null;
279
+ deliveredUsersCount: number | null;
280
+ targets: components["schemas"]["CurationMailMagazineTarget"][];
281
+ projects: components["schemas"]["CurationMailMagazineTargetProject"][];
282
+ banners: components["schemas"]["CurationMailMagazineBanner"][];
283
+ };
301
284
  /** CampaignBaseFormData */
302
285
  CampaignBaseFormData: {
303
286
  title: string | null;
304
287
  /** Format: date-time */
305
- scheduledDeliveryAt: string | null;
288
+ deliveryScheduledAt: string | null;
306
289
  };
307
290
  /** CampaignKindDataPersonalizedMailMagazineFormData */
308
291
  CampaignKindDataPersonalizedMailMagazineFormData: {
@@ -314,8 +297,7 @@ interface components {
314
297
  CampaignKindDataCurationMailMagazineFormData: {
315
298
  /** @enum {string} */
316
299
  kind: "curationMailMagazine";
317
- /** CurationMailMagazineFormData */
318
- curationMailMagazine: Record<string, never>;
300
+ curationMailMagazine: components["schemas"]["CurationMailMagazineFormData"];
319
301
  };
320
302
  /** PersonalizedMailMagazineDetailTarget */
321
303
  PersonalizedMailMagazineDetailTarget: {
@@ -323,21 +305,72 @@ interface components {
323
305
  targetUsersCount: number;
324
306
  excludedUsersCount: number;
325
307
  };
326
- /**
327
- * PersonalizedMailMagazineFormData
328
- * @example {
329
- * "targetCsv": "",
330
- * "utmCampaign": "utmCampaign"
331
- * }
332
- */
308
+ /** CurationMailMagazineTarget */
309
+ CurationMailMagazineTarget: {
310
+ id: number;
311
+ behaviorSegumentCodes: string[];
312
+ profileSegumentCodes: string[];
313
+ };
314
+ /** CurationMailMagazineTargetProject */
315
+ CurationMailMagazineTargetProject: {
316
+ id: number;
317
+ readyforProjectId: number;
318
+ slotNumber: number;
319
+ isPaidSlot: boolean;
320
+ title: string | null;
321
+ description: string | null;
322
+ thumbnailUrl: string | null;
323
+ tag: string | null;
324
+ tagUrl: string | null;
325
+ };
326
+ /** CurationMailMagazineBanner */
327
+ CurationMailMagazineBanner: {
328
+ id: number;
329
+ slotNumber: number;
330
+ imageUrl: string | null;
331
+ url: string | null;
332
+ };
333
+ /** PersonalizedMailMagazineFormData */
333
334
  PersonalizedMailMagazineFormData: {
334
335
  utmCampaign: string | null;
335
336
  targetCsv: components["schemas"]["PersonalizedMailMagazineTargetCsvFormData"] | null;
336
337
  };
337
338
  /** CurationMailMagazineFormData */
338
- CurationMailMagazineFormData: Record<string, never>;
339
+ CurationMailMagazineFormData: {
340
+ utmCampaign: string | null;
341
+ mailSubject: string | null;
342
+ preHeaderText: string | null;
343
+ targets: components["schemas"]["CurationMailMagazineTargetFormData"][];
344
+ projects: components["schemas"]["CurationMailMagazineProjectFormData"][];
345
+ banners: components["schemas"]["CurationMailMagazineBannerFormData"][];
346
+ };
339
347
  /** PersonalizedMailMagazineTargetCsvFormData */
340
348
  PersonalizedMailMagazineTargetCsvFormData: components["schemas"]["PersonalizedMailMagazineTargetDeleteCsvFormData"] | components["schemas"]["PersonalizedMailMagazineTargetUploadCsvFormData"];
349
+ /** CurationMailMagazineTargetFormData */
350
+ CurationMailMagazineTargetFormData: {
351
+ id: string | null;
352
+ behaviorSgumentCodes: string[];
353
+ profileSgumentCodes: string[];
354
+ };
355
+ /** CurationMailMagazineProjectFormData */
356
+ CurationMailMagazineProjectFormData: {
357
+ id: number | null;
358
+ order: number;
359
+ readyforProjectId: number;
360
+ isPaidSlot: boolean;
361
+ title: string | null;
362
+ description: string | null;
363
+ thumbnal: components["schemas"]["ImageFormData"];
364
+ tag: string | null;
365
+ tagUrl: string | null;
366
+ };
367
+ /** CurationMailMagazineBannerFormData */
368
+ CurationMailMagazineBannerFormData: {
369
+ id: number | null;
370
+ order: number;
371
+ image: components["schemas"]["ImageFormData"];
372
+ url: string | null;
373
+ };
341
374
  /** PersonalizedMailMagazineTargetDeleteCsvFormData */
342
375
  PersonalizedMailMagazineTargetDeleteCsvFormData: {
343
376
  /** @enum {string} */
@@ -350,6 +383,8 @@ interface components {
350
383
  fileName: string;
351
384
  records: components["schemas"]["PersonalizedMailMagazineTargetUploadCsvRecordFormData"][];
352
385
  };
386
+ /** ImageFormData */
387
+ ImageFormData: components["schemas"]["UploadImageFormData"] | components["schemas"]["DeleteImageFormData"];
353
388
  /**
354
389
  * PersonalizedMailMagazineTargetUploadCsvRecordFormData
355
390
  * @example [
@@ -365,6 +400,18 @@ interface components {
365
400
  userId: number;
366
401
  projectIds: string;
367
402
  };
403
+ /** UploadImageFormData */
404
+ UploadImageFormData: {
405
+ /** @enum {string} */
406
+ kind: "upload";
407
+ /** Format: binary */
408
+ data: File | Blob;
409
+ };
410
+ /** DeleteImageFormData */
411
+ DeleteImageFormData: {
412
+ /** @enum {string} */
413
+ kind: "delete";
414
+ };
368
415
  };
369
416
  responses: never;
370
417
  parameters: never;
@@ -451,7 +498,7 @@ interface operations {
451
498
  };
452
499
  requestBody: {
453
500
  content: {
454
- "application/json": components["schemas"]["PatchCampaignsCampaignIdRequestBody"];
501
+ "multipart/form-data": components["schemas"]["PatchCampaignsCampaignIdRequestBody"];
455
502
  };
456
503
  };
457
504
  responses: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readyfor/api-client-pigeon",
3
- "version": "0.182.0",
3
+ "version": "0.183.0-pr956.d140042",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,11 +20,7 @@
20
20
  "require": "./dist/hooks/index.js"
21
21
  }
22
22
  },
23
- "scripts": {
24
- "build": "tsup"
25
- },
26
23
  "devDependencies": {
27
- "@readyfor/api-client-base": "0.182.0",
28
24
  "@types/qs": "6.9.18",
29
25
  "@types/react": "^18.3.12",
30
26
  "@types/use-sync-external-store": "0.0.6",
@@ -32,15 +28,16 @@
32
28
  "react": "^18.3.1",
33
29
  "swr": "^2.3.3",
34
30
  "use-sync-external-store": "^1.2.2",
35
- "zod": "^3.24.1"
31
+ "zod": "^3.24.1",
32
+ "@readyfor/api-client-base": "0.183.0-pr956.d140042"
36
33
  },
37
34
  "peerDependencies": {
38
- "@readyfor/api-client-base": "*",
39
35
  "qs": "^6",
40
36
  "react": "^18",
41
37
  "swr": "^2.3.3",
42
38
  "use-sync-external-store": "1.2.2",
43
- "zod": "^3"
39
+ "zod": "^3",
40
+ "@readyfor/api-client-base": "0.183.0-pr956.d140042"
44
41
  },
45
42
  "peerDependenciesMeta": {
46
43
  "react": {
@@ -65,5 +62,7 @@
65
62
  "src"
66
63
  ]
67
64
  },
68
- "gitHead": "135dbb64f628d74b1bc67651a67a55fcaf9c9813"
69
- }
65
+ "scripts": {
66
+ "build": "tsup"
67
+ }
68
+ }