@readyfor/api-client-pigeon 1.23.0-pr1287.97bcb2a → 1.23.0-pr1287.b8e471e

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.
@@ -13,7 +13,8 @@ declare const buildCampaignsGetFetcher: (requestInit?: RequestInit) => (input: R
13
13
  lastEditedAt: string;
14
14
  title?: string | null | undefined;
15
15
  } & {
16
- kind: "personalizedMailMagazine";
16
+ kind: "curationMailMagazine";
17
+ bodyKind: "template" | "freeFormat";
17
18
  }) | ({
18
19
  id: number;
19
20
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
@@ -22,8 +23,7 @@ declare const buildCampaignsGetFetcher: (requestInit?: RequestInit) => (input: R
22
23
  lastEditedAt: string;
23
24
  title?: string | null | undefined;
24
25
  } & {
25
- kind: "curationMailMagazine";
26
- bodyKind: "template" | "freeFormat";
26
+ kind: "personalizedMailMagazine";
27
27
  }))[];
28
28
  pagination: {
29
29
  totalPages: number;
@@ -46,7 +46,8 @@ declare const getCampaigns: (query: CampaignsGetQuery, customRequestInit?: Reque
46
46
  lastEditedAt: string;
47
47
  title?: string | null | undefined;
48
48
  } & {
49
- kind: "personalizedMailMagazine";
49
+ kind: "curationMailMagazine";
50
+ bodyKind: "template" | "freeFormat";
50
51
  }) | ({
51
52
  id: number;
52
53
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
@@ -55,8 +56,7 @@ declare const getCampaigns: (query: CampaignsGetQuery, customRequestInit?: Reque
55
56
  lastEditedAt: string;
56
57
  title?: string | null | undefined;
57
58
  } & {
58
- kind: "curationMailMagazine";
59
- bodyKind: "template" | "freeFormat";
59
+ kind: "personalizedMailMagazine";
60
60
  }))[];
61
61
  pagination: {
62
62
  totalPages: number;
@@ -10,21 +10,6 @@ declare const buildCampaignsIdGetFetcher: (requestInit?: RequestInit) => (input:
10
10
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
11
11
  title: string | null;
12
12
  deliveryScheduledAt: string | null;
13
- } & {
14
- kind: "personalizedMailMagazine";
15
- personalizedMailMagazine: {
16
- utmCampaign: string | null;
17
- target: {
18
- csvFileName: string;
19
- targetUsersCount: number;
20
- excludedUsersCount: number;
21
- } | null;
22
- };
23
- }) | ({
24
- id: number;
25
- status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
26
- title: string | null;
27
- deliveryScheduledAt: string | null;
28
13
  } & {
29
14
  kind: "curationMailMagazine";
30
15
  curationMailMagazine: ({
@@ -37,6 +22,24 @@ declare const buildCampaignsIdGetFetcher: (requestInit?: RequestInit) => (input:
37
22
  behaviorSegmentCodes: string[];
38
23
  profileSegmentCodes: string[];
39
24
  }[];
25
+ } & {
26
+ bodyKind: "freeFormat";
27
+ htmlBody: string | null;
28
+ htmlStyle: string | null;
29
+ images: {
30
+ id: number;
31
+ key: string;
32
+ }[];
33
+ }) | ({
34
+ utmCampaign: string | null;
35
+ subject: string | null;
36
+ preHeaderText: string | null;
37
+ deliveredUsersCount: number | null;
38
+ targetFilters: {
39
+ id: number;
40
+ behaviorSegmentCodes: string[];
41
+ profileSegmentCodes: string[];
42
+ }[];
40
43
  } & {
41
44
  bodyKind: "template";
42
45
  projects: {
@@ -56,30 +59,8 @@ declare const buildCampaignsIdGetFetcher: (requestInit?: RequestInit) => (input:
56
59
  imageUrl: string | null;
57
60
  url: string | null;
58
61
  }[];
59
- }) | ({
60
- utmCampaign: string | null;
61
- subject: string | null;
62
- preHeaderText: string | null;
63
- deliveredUsersCount: number | null;
64
- targetFilters: {
65
- id: number;
66
- behaviorSegmentCodes: string[];
67
- profileSegmentCodes: string[];
68
- }[];
69
- } & {
70
- bodyKind: "freeFormat";
71
- htmlBody: string | null;
72
- htmlStyle: string | null;
73
- images: {
74
- id: number;
75
- key: string;
76
- }[];
77
62
  });
78
- });
79
- }>;
80
- type CampaignsIdGetPath = ForceDig<CampaignsIdGetOperation, ["parameters", "path"]>;
81
- declare const getCampaignsId: (path: CampaignsIdGetPath, customRequestInit?: RequestInit) => Promise<{
82
- campaignDetail: ({
63
+ }) | ({
83
64
  id: number;
84
65
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
85
66
  title: string | null;
@@ -94,7 +75,11 @@ declare const getCampaignsId: (path: CampaignsIdGetPath, customRequestInit?: Req
94
75
  excludedUsersCount: number;
95
76
  } | null;
96
77
  };
97
- }) | ({
78
+ });
79
+ }>;
80
+ type CampaignsIdGetPath = ForceDig<CampaignsIdGetOperation, ["parameters", "path"]>;
81
+ declare const getCampaignsId: (path: CampaignsIdGetPath, customRequestInit?: RequestInit) => Promise<{
82
+ campaignDetail: ({
98
83
  id: number;
99
84
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
100
85
  title: string | null;
@@ -111,6 +96,24 @@ declare const getCampaignsId: (path: CampaignsIdGetPath, customRequestInit?: Req
111
96
  behaviorSegmentCodes: string[];
112
97
  profileSegmentCodes: string[];
113
98
  }[];
99
+ } & {
100
+ bodyKind: "freeFormat";
101
+ htmlBody: string | null;
102
+ htmlStyle: string | null;
103
+ images: {
104
+ id: number;
105
+ key: string;
106
+ }[];
107
+ }) | ({
108
+ utmCampaign: string | null;
109
+ subject: string | null;
110
+ preHeaderText: string | null;
111
+ deliveredUsersCount: number | null;
112
+ targetFilters: {
113
+ id: number;
114
+ behaviorSegmentCodes: string[];
115
+ profileSegmentCodes: string[];
116
+ }[];
114
117
  } & {
115
118
  bodyKind: "template";
116
119
  projects: {
@@ -130,35 +133,8 @@ declare const getCampaignsId: (path: CampaignsIdGetPath, customRequestInit?: Req
130
133
  imageUrl: string | null;
131
134
  url: string | null;
132
135
  }[];
133
- }) | ({
134
- utmCampaign: string | null;
135
- subject: string | null;
136
- preHeaderText: string | null;
137
- deliveredUsersCount: number | null;
138
- targetFilters: {
139
- id: number;
140
- behaviorSegmentCodes: string[];
141
- profileSegmentCodes: string[];
142
- }[];
143
- } & {
144
- bodyKind: "freeFormat";
145
- htmlBody: string | null;
146
- htmlStyle: string | null;
147
- images: {
148
- id: number;
149
- key: string;
150
- }[];
151
136
  });
152
- });
153
- }>;
154
- type CampaignsIdDeleteOperation = paths["/api/campaigns/{id}"]["delete"];
155
- declare const buildCampaignsIdDeleteFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<void>;
156
- type CampaignsIdDeletePath = ForceDig<CampaignsIdDeleteOperation, ["parameters", "path"]>;
157
- declare const deleteCampaignsId: (path: CampaignsIdDeletePath, customRequestInit?: RequestInit) => Promise<void>;
158
- type CampaignsIdPatchOperation = paths["/api/campaigns/{id}"]["patch"];
159
- type CampaignsIdPatchResponse = CampaignsIdPatchOperation["responses"]["200"]["content"]["application/json"];
160
- declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
161
- campaignDetail: ({
137
+ }) | ({
162
138
  id: number;
163
139
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
164
140
  title: string | null;
@@ -173,7 +149,16 @@ declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (inpu
173
149
  excludedUsersCount: number;
174
150
  } | null;
175
151
  };
176
- }) | ({
152
+ });
153
+ }>;
154
+ type CampaignsIdDeleteOperation = paths["/api/campaigns/{id}"]["delete"];
155
+ declare const buildCampaignsIdDeleteFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<void>;
156
+ type CampaignsIdDeletePath = ForceDig<CampaignsIdDeleteOperation, ["parameters", "path"]>;
157
+ declare const deleteCampaignsId: (path: CampaignsIdDeletePath, customRequestInit?: RequestInit) => Promise<void>;
158
+ type CampaignsIdPatchOperation = paths["/api/campaigns/{id}"]["patch"];
159
+ type CampaignsIdPatchResponse = CampaignsIdPatchOperation["responses"]["200"]["content"]["application/json"];
160
+ declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
161
+ campaignDetail: ({
177
162
  id: number;
178
163
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
179
164
  title: string | null;
@@ -190,6 +175,24 @@ declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (inpu
190
175
  behaviorSegmentCodes: string[];
191
176
  profileSegmentCodes: string[];
192
177
  }[];
178
+ } & {
179
+ bodyKind: "freeFormat";
180
+ htmlBody: string | null;
181
+ htmlStyle: string | null;
182
+ images: {
183
+ id: number;
184
+ key: string;
185
+ }[];
186
+ }) | ({
187
+ utmCampaign: string | null;
188
+ subject: string | null;
189
+ preHeaderText: string | null;
190
+ deliveredUsersCount: number | null;
191
+ targetFilters: {
192
+ id: number;
193
+ behaviorSegmentCodes: string[];
194
+ profileSegmentCodes: string[];
195
+ }[];
193
196
  } & {
194
197
  bodyKind: "template";
195
198
  projects: {
@@ -209,31 +212,8 @@ declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (inpu
209
212
  imageUrl: string | null;
210
213
  url: string | null;
211
214
  }[];
212
- }) | ({
213
- utmCampaign: string | null;
214
- subject: string | null;
215
- preHeaderText: string | null;
216
- deliveredUsersCount: number | null;
217
- targetFilters: {
218
- id: number;
219
- behaviorSegmentCodes: string[];
220
- profileSegmentCodes: string[];
221
- }[];
222
- } & {
223
- bodyKind: "freeFormat";
224
- htmlBody: string | null;
225
- htmlStyle: string | null;
226
- images: {
227
- id: number;
228
- key: string;
229
- }[];
230
215
  });
231
- });
232
- }>;
233
- type CampaignsIdPatchPath = ForceDig<CampaignsIdPatchOperation, ["parameters", "path"]>;
234
- type CampaignsIdPatchRequestBody = ForceDig<CampaignsIdPatchOperation, ["requestBody", "content", "multipart/form-data"]>;
235
- declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: FormData, customRequestInit?: RequestInit) => Promise<{
236
- campaignDetail: ({
216
+ }) | ({
237
217
  id: number;
238
218
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
239
219
  title: string | null;
@@ -248,7 +228,12 @@ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: FormDa
248
228
  excludedUsersCount: number;
249
229
  } | null;
250
230
  };
251
- }) | ({
231
+ });
232
+ }>;
233
+ type CampaignsIdPatchPath = ForceDig<CampaignsIdPatchOperation, ["parameters", "path"]>;
234
+ type CampaignsIdPatchRequestBody = ForceDig<CampaignsIdPatchOperation, ["requestBody", "content", "multipart/form-data"]>;
235
+ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: FormData, customRequestInit?: RequestInit) => Promise<{
236
+ campaignDetail: ({
252
237
  id: number;
253
238
  status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
254
239
  title: string | null;
@@ -265,6 +250,24 @@ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: FormDa
265
250
  behaviorSegmentCodes: string[];
266
251
  profileSegmentCodes: string[];
267
252
  }[];
253
+ } & {
254
+ bodyKind: "freeFormat";
255
+ htmlBody: string | null;
256
+ htmlStyle: string | null;
257
+ images: {
258
+ id: number;
259
+ key: string;
260
+ }[];
261
+ }) | ({
262
+ utmCampaign: string | null;
263
+ subject: string | null;
264
+ preHeaderText: string | null;
265
+ deliveredUsersCount: number | null;
266
+ targetFilters: {
267
+ id: number;
268
+ behaviorSegmentCodes: string[];
269
+ profileSegmentCodes: string[];
270
+ }[];
268
271
  } & {
269
272
  bodyKind: "template";
270
273
  projects: {
@@ -284,25 +287,22 @@ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: FormDa
284
287
  imageUrl: string | null;
285
288
  url: string | null;
286
289
  }[];
287
- }) | ({
288
- utmCampaign: string | null;
289
- subject: string | null;
290
- preHeaderText: string | null;
291
- deliveredUsersCount: number | null;
292
- targetFilters: {
293
- id: number;
294
- behaviorSegmentCodes: string[];
295
- profileSegmentCodes: string[];
296
- }[];
297
- } & {
298
- bodyKind: "freeFormat";
299
- htmlBody: string | null;
300
- htmlStyle: string | null;
301
- images: {
302
- id: number;
303
- key: string;
304
- }[];
305
290
  });
291
+ }) | ({
292
+ id: number;
293
+ status: "draft" | "scheduled" | "delivering" | "delivered" | "deliveryFailed";
294
+ title: string | null;
295
+ deliveryScheduledAt: string | null;
296
+ } & {
297
+ kind: "personalizedMailMagazine";
298
+ personalizedMailMagazine: {
299
+ utmCampaign: string | null;
300
+ target: {
301
+ csvFileName: string;
302
+ targetUsersCount: number;
303
+ excludedUsersCount: number;
304
+ } | null;
305
+ };
306
306
  });
307
307
  }>;
308
308
  //#endregion
@@ -1,2 +1,2 @@
1
- import { a as buildCampaignsGetFetcher, c as postCampaigns, i as CampaignsPostResponse, n as CampaignsGetResponse, o as buildCampaignsPostFetcher, r as CampaignsPostRequestBody, s as getCampaigns, t as CampaignsGetQuery } from "../campaigns-DkYSWWar.js";
1
+ import { a as buildCampaignsGetFetcher, c as postCampaigns, i as CampaignsPostResponse, n as CampaignsGetResponse, o as buildCampaignsPostFetcher, r as CampaignsPostRequestBody, s as getCampaigns, t as CampaignsGetQuery } from "../campaigns-DZNsI5kN.js";
2
2
  export { CampaignsGetQuery, CampaignsGetResponse, CampaignsPostRequestBody, CampaignsPostResponse, buildCampaignsGetFetcher, buildCampaignsPostFetcher, getCampaigns, postCampaigns };
@@ -1,2 +1,2 @@
1
- import { a as CampaignsIdPatchRequestBody, c as buildCampaignsIdGetFetcher, d as getCampaignsId, f as patchCampaignsId, i as CampaignsIdPatchPath, l as buildCampaignsIdPatchFetcher, n as CampaignsIdGetPath, o as CampaignsIdPatchResponse, r as CampaignsIdGetResponse, s as buildCampaignsIdDeleteFetcher, t as CampaignsIdDeletePath, u as deleteCampaignsId } from "../campaignsId-BTi3WxE8.js";
1
+ import { a as CampaignsIdPatchRequestBody, c as buildCampaignsIdGetFetcher, d as getCampaignsId, f as patchCampaignsId, i as CampaignsIdPatchPath, l as buildCampaignsIdPatchFetcher, n as CampaignsIdGetPath, o as CampaignsIdPatchResponse, r as CampaignsIdGetResponse, s as buildCampaignsIdDeleteFetcher, t as CampaignsIdDeletePath, u as deleteCampaignsId } from "../campaignsId-qIqhKTZn.js";
2
2
  export { CampaignsIdDeletePath, CampaignsIdGetPath, CampaignsIdGetResponse, CampaignsIdPatchPath, CampaignsIdPatchRequestBody, CampaignsIdPatchResponse, buildCampaignsIdDeleteFetcher, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, deleteCampaignsId, getCampaignsId, patchCampaignsId };
@@ -1,5 +1,5 @@
1
1
  import { n as components } from "../schemaType-DcWvaCEH.js";
2
- import { n as CampaignsGetResponse, t as CampaignsGetQuery } from "../campaigns-DkYSWWar.js";
2
+ import { n as CampaignsGetResponse, t as CampaignsGetQuery } from "../campaigns-DZNsI5kN.js";
3
3
  import * as _$swr from "swr";
4
4
  import { Arguments } from "swr";
5
5
  import * as _$swr__internal0 from "swr/_internal";
@@ -1,5 +1,5 @@
1
1
  import { n as components } from "../schemaType-DcWvaCEH.js";
2
- import { n as CampaignsIdGetPath, r as CampaignsIdGetResponse } from "../campaignsId-BTi3WxE8.js";
2
+ import { n as CampaignsIdGetPath, r as CampaignsIdGetResponse } from "../campaignsId-qIqhKTZn.js";
3
3
  import * as _$swr from "swr";
4
4
  import { Arguments } from "swr";
5
5
  import * as _$swr__internal0 from "swr/_internal";
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { $ as PersonalizedMailMagazineTargetDeleteCsvFormData, A as CurationMailMagazineFormDataBodyKindFreeFormat, B as GetProfileSegmentsResponse, C as CurationMailMagazineCampaign, D as CurationMailMagazineDetailBodyKindTemplate, E as CurationMailMagazineDetailBodyKindFreeFormat, F as CurationMailMagazineTargetProject, G as ImageFormData, H as GetTargetUsersCountResponse, I as DeleteImageFormData, J as PersonalizedMailMagazineCampaign, K as Pagination, L as GetBehaviorSegmentsResponse, M as CurationMailMagazineProjectFormData, N as CurationMailMagazineTargetFilter, O as CurationMailMagazineFormData, P as CurationMailMagazineTargetFilterFormData, Q as PersonalizedMailMagazineTargetCsvFormData, R as GetCampaignsCampaignIdPreviewResponse, S as CurationMailMagazineBannerFormData, T as CurationMailMagazineDetailBase, U as HttpErrorBadRequest, V as GetProjectsProjectIdOrKeywordResponse, W as Image, X as PersonalizedMailMagazineDetailTarget, Y as PersonalizedMailMagazineDetail, Z as PersonalizedMailMagazineFormData, _ as CampaignWithPersonalizedMailMagazineFormData, a as CampaignDetail, at as PostCampaignsResponse, b as CreateCampaignKindPersonalizedMailMagazineFormData, c as CampaignDetailKindDataPersonalizedMailMagazine, ct as TargetFilterSegments, d as CampaignFormData, et as PersonalizedMailMagazineTargetUploadCsvFormData, f as CampaignKind, g as CampaignWithCurationMailMagazineFormData, h as CampaignStatus, i as CampaignBaseFormData, it as PostCampaignsRequestBody, j as CurationMailMagazineFormDataBodyKindTemplate, k as CurationMailMagazineFormDataBase, l as CampaignDetailWithCurationMailMagazine, lt as UploadImageFormData, m as CampaignKindDataPersonalizedMailMagazineFormData, n as Campaign, nt as PostCampaignsCampaignIdImagesReqeustBody, o as CampaignDetailBase, ot as ReadyforProject, p as CampaignKindDataCurationMailMagazineFormData, q as PatchCampaignsCampaignIdRequestBody, r as CampaignBase, rt as PostCampaignsCampaignIdPreviewDeliveryEmailRequestBody, s as CampaignDetailKindDataCurationMailMagazine, st as Segment, t as BodyKind, tt as PersonalizedMailMagazineTargetUploadCsvRecordFormData, u as CampaignDetailWithPersonalizedMailMagazine, v as CampaignsCampaignIdResponse, w as CurationMailMagazineDetail, x as CurationMailMagazineBanner, y as CreateCampaignKindCurationMailMagazineFormData, z as GetCampaignsResponse } from "./components-CkziYCTx.js";
2
2
  import { a as paths, i as operations, n as components, o as webhooks, r as external, t as $defs } from "./schemaType-DcWvaCEH.js";
3
- import { a as buildCampaignsGetFetcher, c as postCampaigns, i as CampaignsPostResponse, n as CampaignsGetResponse, o as buildCampaignsPostFetcher, r as CampaignsPostRequestBody, s as getCampaigns, t as CampaignsGetQuery } from "./campaigns-DkYSWWar.js";
3
+ import { a as buildCampaignsGetFetcher, c as postCampaigns, i as CampaignsPostResponse, n as CampaignsGetResponse, o as buildCampaignsPostFetcher, r as CampaignsPostRequestBody, s as getCampaigns, t as CampaignsGetQuery } from "./campaigns-DZNsI5kN.js";
4
4
  import { n as buildCampaignsCampaignIdImagesIdDeleteFetcher, r as deleteCampaignsCampaignIdImagesId, t as CampaignsCampaignIdImagesIdDeletePath } from "./campaignsCampaignIdImagesId-BzoZ_38r.js";
5
- import { a as CampaignsIdPatchRequestBody, c as buildCampaignsIdGetFetcher, d as getCampaignsId, f as patchCampaignsId, i as CampaignsIdPatchPath, l as buildCampaignsIdPatchFetcher, n as CampaignsIdGetPath, o as CampaignsIdPatchResponse, r as CampaignsIdGetResponse, s as buildCampaignsIdDeleteFetcher, t as CampaignsIdDeletePath, u as deleteCampaignsId } from "./campaignsId-BTi3WxE8.js";
5
+ import { a as CampaignsIdPatchRequestBody, c as buildCampaignsIdGetFetcher, d as getCampaignsId, f as patchCampaignsId, i as CampaignsIdPatchPath, l as buildCampaignsIdPatchFetcher, n as CampaignsIdGetPath, o as CampaignsIdPatchResponse, r as CampaignsIdGetResponse, s as buildCampaignsIdDeleteFetcher, t as CampaignsIdDeletePath, u as deleteCampaignsId } from "./campaignsId-qIqhKTZn.js";
6
6
  import { a as deleteCampaignsIdDeliveryJob, i as buildCampaignsIdDeliveryJobPostFetcher, n as CampaignsIdDeliveryJobPostPath, o as postCampaignsIdDeliveryJob, r as buildCampaignsIdDeliveryJobDeleteFetcher, t as CampaignsIdDeliveryJobDeletePath } from "./campaignsIdDeliveryJob--2Nogu0k.js";
7
7
  import { a as postCampaignsIdImages, i as buildCampaignsIdImagesPostFetcher, n as CampaignsIdImagesPostRequestBody, r as CampaignsIdImagesPostResponse, t as CampaignsIdImagesPostPath } from "./campaignsIdImages-DMSAp5-N.js";
8
8
  import { i as getCampaignsIdPreview, n as CampaignsIdPreviewGetResponse, r as buildCampaignsIdPreviewGetFetcher, t as CampaignsIdPreviewGetPath } from "./campaignsIdPreview-C10ENt3B.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readyfor/api-client-pigeon",
3
- "version": "1.23.0-pr1287.97bcb2a",
3
+ "version": "1.23.0-pr1287.b8e471e",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -36,7 +36,7 @@
36
36
  "swr": "2.4.1",
37
37
  "use-sync-external-store": "1.6.0",
38
38
  "zod": "^4.3.6",
39
- "@readyfor/api-client-base": "1.23.0-pr1287.97bcb2a"
39
+ "@readyfor/api-client-base": "1.23.0-pr1287.b8e471e"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "qs": "^6",
@@ -44,7 +44,7 @@
44
44
  "swr": "^2.3.3",
45
45
  "use-sync-external-store": "^1.2.2",
46
46
  "zod": "^4",
47
- "@readyfor/api-client-base": "1.23.0-pr1287.97bcb2a"
47
+ "@readyfor/api-client-base": "1.23.0-pr1287.b8e471e"
48
48
  },
49
49
  "peerDependenciesMeta": {
50
50
  "react": {