@readyfor/api-client-pigeon 0.175.0 → 0.177.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.
@@ -151,6 +151,18 @@ interface components {
151
151
  PatchCampaignsCampaignIdRequestBody: {
152
152
  formData: components["schemas"]["CampaignFormData"];
153
153
  };
154
+ /**
155
+ * HttpErrorBadRequest
156
+ * @example {
157
+ * "errors": [
158
+ * "errors",
159
+ * "errors"
160
+ * ]
161
+ * }
162
+ */
163
+ HttpErrorBadRequest: {
164
+ errors: string[];
165
+ };
154
166
  /**
155
167
  * Pagination
156
168
  * @description ページネーション
@@ -290,15 +302,33 @@ interface components {
290
302
  /** CurationMailMagazineFormData */
291
303
  CurationMailMagazineFormData: Record<string, never>;
292
304
  /** PersonalizedMailMagazineTargetCsvFormData */
293
- PersonalizedMailMagazineTargetCsvFormData: {
305
+ PersonalizedMailMagazineTargetCsvFormData: components["schemas"]["PersonalizedMailMagazineTargetDeleteCsvFormData"] | components["schemas"]["PersonalizedMailMagazineTargetUploadCsvFormData"];
306
+ /** PersonalizedMailMagazineTargetDeleteCsvFormData */
307
+ PersonalizedMailMagazineTargetDeleteCsvFormData: {
308
+ /** @enum {string} */
309
+ kind: "deleteTargetCsv";
310
+ };
311
+ /** PersonalizedMailMagazineTargetUploadCsvFormData */
312
+ PersonalizedMailMagazineTargetUploadCsvFormData: {
313
+ /** @enum {string} */
314
+ kind: "uploadCsv";
294
315
  fileName: string;
295
- records: components["schemas"]["PersonalizedMailMagazineTargetCsvRecordFormData"][];
316
+ records: components["schemas"]["PersonalizedMailMagazineTargetUploadCsvRecordFormData"][];
296
317
  };
297
- /** PersonalizedMailMagazineTargetCsvRecordFormData */
298
- PersonalizedMailMagazineTargetCsvRecordFormData: {
318
+ /**
319
+ * PersonalizedMailMagazineTargetUploadCsvRecordFormData
320
+ * @example [
321
+ * {
322
+ * "userId": 12345678
323
+ * },
324
+ * {
325
+ * "projectIds": "111111;2222222;33333333"
326
+ * }
327
+ * ]
328
+ */
329
+ PersonalizedMailMagazineTargetUploadCsvRecordFormData: {
299
330
  userId: number;
300
- projectId: number;
301
- slotNumber: number;
331
+ projectIds: string;
302
332
  };
303
333
  };
304
334
  responses: never;
@@ -396,6 +426,12 @@ interface operations {
396
426
  "application/json": components["schemas"]["CampaignsCampaignIdResponse"];
397
427
  };
398
428
  };
429
+ /** @description Bad Request */
430
+ 400: {
431
+ content: {
432
+ "application/json": components["schemas"]["HttpErrorBadRequest"];
433
+ };
434
+ };
399
435
  };
400
436
  };
401
437
  /** キャンペーンの配信予約をする */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readyfor/api-client-pigeon",
3
- "version": "0.175.0",
3
+ "version": "0.177.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,7 +24,7 @@
24
24
  "build": "tsup"
25
25
  },
26
26
  "devDependencies": {
27
- "@readyfor/api-client-base": "0.175.0",
27
+ "@readyfor/api-client-base": "0.177.0",
28
28
  "@types/qs": "6.9.17",
29
29
  "@types/react": "^18.3.12",
30
30
  "@types/use-sync-external-store": "0.0.6",
@@ -65,5 +65,5 @@
65
65
  "src"
66
66
  ]
67
67
  },
68
- "gitHead": "5214fb827d24aae6f543d2912223e14c0e1761b9"
68
+ "gitHead": "600a5eb6af59f3cf226eb5e48affaff55d0eafeb"
69
69
  }