@readyfor/api-client-pigeon 0.173.0 → 0.174.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/{chunk-2FYAHTET.mjs → chunk-7JKGCVP4.mjs} +9 -1
- package/dist/{chunk-SE465IBN.mjs → chunk-AUDLS557.mjs} +1 -1
- package/dist/fetch/campaignsId.d.mts +8 -1
- package/dist/fetch/campaignsId.d.ts +8 -1
- package/dist/fetch/campaignsId.js +9 -0
- package/dist/fetch/campaignsId.mjs +5 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/hooks/useCampaigns.mjs +1 -1
- package/dist/hooks/useCampaignsId.mjs +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +9 -0
- package/dist/index.mjs +5 -1
- package/dist/schemaType.d.mts +16 -0
- package/dist/schemaType.d.ts +16 -0
- package/package.json +3 -3
|
@@ -5,13 +5,19 @@ import {
|
|
|
5
5
|
// src/fetch/campaignsId.ts
|
|
6
6
|
import {
|
|
7
7
|
createJsonFetcher,
|
|
8
|
-
__internal__requestUrl
|
|
8
|
+
__internal__requestUrl,
|
|
9
|
+
createVoidFetcher
|
|
9
10
|
} from "@readyfor/api-client-base";
|
|
10
11
|
var buildCampaignsIdGetFetcher = (requestInit) => createJsonFetcher(CampaignsCampaignIdResponse, { ...requestInit });
|
|
11
12
|
var getCampaignsId = (path, requestInit) => buildCampaignsIdGetFetcher()(
|
|
12
13
|
__internal__requestUrl("/api/campaigns/{id}", path),
|
|
13
14
|
{ ...requestInit, method: "GET" }
|
|
14
15
|
);
|
|
16
|
+
var buildCampaignsIdDeleteFetcher = (requestInit) => createVoidFetcher({ ...requestInit });
|
|
17
|
+
var deleteCampaignsId = (path, requestInit) => buildCampaignsIdDeleteFetcher()(
|
|
18
|
+
__internal__requestUrl("/api/campaigns/{id}", path),
|
|
19
|
+
{ ...requestInit, method: "DELETE" }
|
|
20
|
+
);
|
|
15
21
|
var buildCampaignsIdPatchFetcher = (requestInit) => createJsonFetcher(CampaignsCampaignIdResponse, { ...requestInit });
|
|
16
22
|
var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatchFetcher()(
|
|
17
23
|
__internal__requestUrl("/api/campaigns/{id}", path),
|
|
@@ -26,6 +32,8 @@ var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatch
|
|
|
26
32
|
export {
|
|
27
33
|
buildCampaignsIdGetFetcher,
|
|
28
34
|
getCampaignsId,
|
|
35
|
+
buildCampaignsIdDeleteFetcher,
|
|
36
|
+
deleteCampaignsId,
|
|
29
37
|
buildCampaignsIdPatchFetcher,
|
|
30
38
|
patchCampaignsId
|
|
31
39
|
};
|
|
@@ -55,6 +55,13 @@ declare const getCampaignsId: (path: CampaignsIdGetPath, requestInit?: RequestIn
|
|
|
55
55
|
id: number;
|
|
56
56
|
};
|
|
57
57
|
}>;
|
|
58
|
+
type CampaignsIdDeleteOperation = paths["/api/campaigns/{id}"]["delete"];
|
|
59
|
+
declare const buildCampaignsIdDeleteFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<void>;
|
|
60
|
+
type CampaignsIdDeletePath = ForceDig<CampaignsIdDeleteOperation, [
|
|
61
|
+
"parameters",
|
|
62
|
+
"path"
|
|
63
|
+
]>;
|
|
64
|
+
declare const deleteCampaignsId: (path: CampaignsIdDeletePath, requestInit?: RequestInit) => Promise<void>;
|
|
58
65
|
type CampaignsIdPatchOperation = paths["/api/campaigns/{id}"]["patch"];
|
|
59
66
|
type CampaignsIdPatchResponse = CampaignsIdPatchOperation["responses"]["200"]["content"]["application/json"];
|
|
60
67
|
declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
@@ -115,4 +122,4 @@ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: Campai
|
|
|
115
122
|
};
|
|
116
123
|
}>;
|
|
117
124
|
|
|
118
|
-
export { type CampaignsIdGetPath, type CampaignsIdGetResponse, type CampaignsIdPatchPath, type CampaignsIdPatchRequestBody, type CampaignsIdPatchResponse, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, getCampaignsId, patchCampaignsId };
|
|
125
|
+
export { type CampaignsIdDeletePath, type CampaignsIdGetPath, type CampaignsIdGetResponse, type CampaignsIdPatchPath, type CampaignsIdPatchRequestBody, type CampaignsIdPatchResponse, buildCampaignsIdDeleteFetcher, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, deleteCampaignsId, getCampaignsId, patchCampaignsId };
|
|
@@ -55,6 +55,13 @@ declare const getCampaignsId: (path: CampaignsIdGetPath, requestInit?: RequestIn
|
|
|
55
55
|
id: number;
|
|
56
56
|
};
|
|
57
57
|
}>;
|
|
58
|
+
type CampaignsIdDeleteOperation = paths["/api/campaigns/{id}"]["delete"];
|
|
59
|
+
declare const buildCampaignsIdDeleteFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<void>;
|
|
60
|
+
type CampaignsIdDeletePath = ForceDig<CampaignsIdDeleteOperation, [
|
|
61
|
+
"parameters",
|
|
62
|
+
"path"
|
|
63
|
+
]>;
|
|
64
|
+
declare const deleteCampaignsId: (path: CampaignsIdDeletePath, requestInit?: RequestInit) => Promise<void>;
|
|
58
65
|
type CampaignsIdPatchOperation = paths["/api/campaigns/{id}"]["patch"];
|
|
59
66
|
type CampaignsIdPatchResponse = CampaignsIdPatchOperation["responses"]["200"]["content"]["application/json"];
|
|
60
67
|
declare const buildCampaignsIdPatchFetcher: (requestInit?: RequestInit) => (input: RequestInfo, requestInit?: RequestInit) => Promise<{
|
|
@@ -115,4 +122,4 @@ declare const patchCampaignsId: (path: CampaignsIdPatchPath, requestBody: Campai
|
|
|
115
122
|
};
|
|
116
123
|
}>;
|
|
117
124
|
|
|
118
|
-
export { type CampaignsIdGetPath, type CampaignsIdGetResponse, type CampaignsIdPatchPath, type CampaignsIdPatchRequestBody, type CampaignsIdPatchResponse, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, getCampaignsId, patchCampaignsId };
|
|
125
|
+
export { type CampaignsIdDeletePath, type CampaignsIdGetPath, type CampaignsIdGetResponse, type CampaignsIdPatchPath, type CampaignsIdPatchRequestBody, type CampaignsIdPatchResponse, buildCampaignsIdDeleteFetcher, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, deleteCampaignsId, getCampaignsId, patchCampaignsId };
|
|
@@ -20,8 +20,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/fetch/campaignsId.ts
|
|
21
21
|
var campaignsId_exports = {};
|
|
22
22
|
__export(campaignsId_exports, {
|
|
23
|
+
buildCampaignsIdDeleteFetcher: () => buildCampaignsIdDeleteFetcher,
|
|
23
24
|
buildCampaignsIdGetFetcher: () => buildCampaignsIdGetFetcher,
|
|
24
25
|
buildCampaignsIdPatchFetcher: () => buildCampaignsIdPatchFetcher,
|
|
26
|
+
deleteCampaignsId: () => deleteCampaignsId,
|
|
25
27
|
getCampaignsId: () => getCampaignsId,
|
|
26
28
|
patchCampaignsId: () => patchCampaignsId
|
|
27
29
|
});
|
|
@@ -143,6 +145,11 @@ var getCampaignsId = (path, requestInit) => buildCampaignsIdGetFetcher()(
|
|
|
143
145
|
(0, import_api_client_base.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
144
146
|
{ ...requestInit, method: "GET" }
|
|
145
147
|
);
|
|
148
|
+
var buildCampaignsIdDeleteFetcher = (requestInit) => (0, import_api_client_base.createVoidFetcher)({ ...requestInit });
|
|
149
|
+
var deleteCampaignsId = (path, requestInit) => buildCampaignsIdDeleteFetcher()(
|
|
150
|
+
(0, import_api_client_base.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
151
|
+
{ ...requestInit, method: "DELETE" }
|
|
152
|
+
);
|
|
146
153
|
var buildCampaignsIdPatchFetcher = (requestInit) => (0, import_api_client_base.createJsonFetcher)(CampaignsCampaignIdResponse, { ...requestInit });
|
|
147
154
|
var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatchFetcher()(
|
|
148
155
|
(0, import_api_client_base.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
@@ -155,8 +162,10 @@ var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatch
|
|
|
155
162
|
);
|
|
156
163
|
// Annotate the CommonJS export names for ESM import in node:
|
|
157
164
|
0 && (module.exports = {
|
|
165
|
+
buildCampaignsIdDeleteFetcher,
|
|
158
166
|
buildCampaignsIdGetFetcher,
|
|
159
167
|
buildCampaignsIdPatchFetcher,
|
|
168
|
+
deleteCampaignsId,
|
|
160
169
|
getCampaignsId,
|
|
161
170
|
patchCampaignsId
|
|
162
171
|
});
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
|
+
buildCampaignsIdDeleteFetcher,
|
|
2
3
|
buildCampaignsIdGetFetcher,
|
|
3
4
|
buildCampaignsIdPatchFetcher,
|
|
5
|
+
deleteCampaignsId,
|
|
4
6
|
getCampaignsId,
|
|
5
7
|
patchCampaignsId
|
|
6
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-7JKGCVP4.mjs";
|
|
7
9
|
import "../chunk-Z7QYYQ55.mjs";
|
|
8
10
|
export {
|
|
11
|
+
buildCampaignsIdDeleteFetcher,
|
|
9
12
|
buildCampaignsIdGetFetcher,
|
|
10
13
|
buildCampaignsIdPatchFetcher,
|
|
14
|
+
deleteCampaignsId,
|
|
11
15
|
getCampaignsId,
|
|
12
16
|
patchCampaignsId
|
|
13
17
|
};
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -7,10 +7,10 @@ import {
|
|
|
7
7
|
useCampaignsId,
|
|
8
8
|
useCampaignsIdImmutable,
|
|
9
9
|
useCampaignsIdInfinite
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-AUDLS557.mjs";
|
|
11
11
|
import "../chunk-KZFT6V6I.mjs";
|
|
12
12
|
import "../chunk-2CYVMP5Y.mjs";
|
|
13
|
-
import "../chunk-
|
|
13
|
+
import "../chunk-7JKGCVP4.mjs";
|
|
14
14
|
import "../chunk-Z7QYYQ55.mjs";
|
|
15
15
|
export {
|
|
16
16
|
useCampaigns,
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
useCampaignsId,
|
|
3
3
|
useCampaignsIdImmutable,
|
|
4
4
|
useCampaignsIdInfinite
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-AUDLS557.mjs";
|
|
6
6
|
import "../chunk-KZFT6V6I.mjs";
|
|
7
7
|
import "../chunk-2CYVMP5Y.mjs";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-7JKGCVP4.mjs";
|
|
9
9
|
import "../chunk-Z7QYYQ55.mjs";
|
|
10
10
|
export {
|
|
11
11
|
useCampaignsId,
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { $defs, components, external, operations, paths, webhooks } from './schemaType.mjs';
|
|
2
2
|
export { Campaign, CampaignBaseFormData, CampaignDetail, CampaignDetailBase, CampaignDetailKindDataCurationMailMagazine, CampaignDetailKindDataPersonalizedMailMagazine, CampaignDetailWithCurationMailMagazine, CampaignDetailWithPersonalizedMailMagazine, CampaignFormData, CampaignKind, CampaignKindDataCurationMailMagazineFormData, CampaignKindDataPersonalizedMailMagazineFormData, CampaignStatus, CampaignWithCurationMailMagazineFormData, CampaignWithPersonalizedMailMagazineFormData, CampaignsCampaignIdResponse, CurationMailMagazineDetail, CurationMailMagazineFormData, GetCampaignsResponse, Pagination, PatchCampaignsCampaignIdRequestBody, PersonalizedMailMagazineDetail, PersonalizedMailMagazineDetailTarget, PersonalizedMailMagazineFormData, PersonalizedMailMagazineTargetCsvFormData, PersonalizedMailMagazineTargetCsvRecordFormData, PostCampaignsRequestBody, PostCampaignsResponse } from './components.mjs';
|
|
3
3
|
export { CampaignsGetQuery, CampaignsGetResponse, CampaignsPostRequestBody, CampaignsPostResponse, buildCampaignsGetFetcher, buildCampaignsPostFetcher, getCampaigns, postCampaigns } from './fetch/campaigns.mjs';
|
|
4
|
-
export { CampaignsIdGetPath, CampaignsIdGetResponse, CampaignsIdPatchPath, CampaignsIdPatchRequestBody, CampaignsIdPatchResponse, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, getCampaignsId, patchCampaignsId } from './fetch/campaignsId.mjs';
|
|
4
|
+
export { CampaignsIdDeletePath, CampaignsIdGetPath, CampaignsIdGetResponse, CampaignsIdPatchPath, CampaignsIdPatchRequestBody, CampaignsIdPatchResponse, buildCampaignsIdDeleteFetcher, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, deleteCampaignsId, getCampaignsId, patchCampaignsId } from './fetch/campaignsId.mjs';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import '@readyfor/api-client-base';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { $defs, components, external, operations, paths, webhooks } from './schemaType.js';
|
|
2
2
|
export { Campaign, CampaignBaseFormData, CampaignDetail, CampaignDetailBase, CampaignDetailKindDataCurationMailMagazine, CampaignDetailKindDataPersonalizedMailMagazine, CampaignDetailWithCurationMailMagazine, CampaignDetailWithPersonalizedMailMagazine, CampaignFormData, CampaignKind, CampaignKindDataCurationMailMagazineFormData, CampaignKindDataPersonalizedMailMagazineFormData, CampaignStatus, CampaignWithCurationMailMagazineFormData, CampaignWithPersonalizedMailMagazineFormData, CampaignsCampaignIdResponse, CurationMailMagazineDetail, CurationMailMagazineFormData, GetCampaignsResponse, Pagination, PatchCampaignsCampaignIdRequestBody, PersonalizedMailMagazineDetail, PersonalizedMailMagazineDetailTarget, PersonalizedMailMagazineFormData, PersonalizedMailMagazineTargetCsvFormData, PersonalizedMailMagazineTargetCsvRecordFormData, PostCampaignsRequestBody, PostCampaignsResponse } from './components.js';
|
|
3
3
|
export { CampaignsGetQuery, CampaignsGetResponse, CampaignsPostRequestBody, CampaignsPostResponse, buildCampaignsGetFetcher, buildCampaignsPostFetcher, getCampaigns, postCampaigns } from './fetch/campaigns.js';
|
|
4
|
-
export { CampaignsIdGetPath, CampaignsIdGetResponse, CampaignsIdPatchPath, CampaignsIdPatchRequestBody, CampaignsIdPatchResponse, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, getCampaignsId, patchCampaignsId } from './fetch/campaignsId.js';
|
|
4
|
+
export { CampaignsIdDeletePath, CampaignsIdGetPath, CampaignsIdGetResponse, CampaignsIdPatchPath, CampaignsIdPatchRequestBody, CampaignsIdPatchResponse, buildCampaignsIdDeleteFetcher, buildCampaignsIdGetFetcher, buildCampaignsIdPatchFetcher, deleteCampaignsId, getCampaignsId, patchCampaignsId } from './fetch/campaignsId.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import '@readyfor/api-client-base';
|
package/dist/index.js
CHANGED
|
@@ -49,9 +49,11 @@ __export(src_exports, {
|
|
|
49
49
|
PostCampaignsRequestBody: () => PostCampaignsRequestBody,
|
|
50
50
|
PostCampaignsResponse: () => PostCampaignsResponse,
|
|
51
51
|
buildCampaignsGetFetcher: () => buildCampaignsGetFetcher,
|
|
52
|
+
buildCampaignsIdDeleteFetcher: () => buildCampaignsIdDeleteFetcher,
|
|
52
53
|
buildCampaignsIdGetFetcher: () => buildCampaignsIdGetFetcher,
|
|
53
54
|
buildCampaignsIdPatchFetcher: () => buildCampaignsIdPatchFetcher,
|
|
54
55
|
buildCampaignsPostFetcher: () => buildCampaignsPostFetcher,
|
|
56
|
+
deleteCampaignsId: () => deleteCampaignsId,
|
|
55
57
|
getCampaigns: () => getCampaigns,
|
|
56
58
|
getCampaignsId: () => getCampaignsId,
|
|
57
59
|
patchCampaignsId: () => patchCampaignsId,
|
|
@@ -190,6 +192,11 @@ var getCampaignsId = (path, requestInit) => buildCampaignsIdGetFetcher()(
|
|
|
190
192
|
(0, import_api_client_base2.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
191
193
|
{ ...requestInit, method: "GET" }
|
|
192
194
|
);
|
|
195
|
+
var buildCampaignsIdDeleteFetcher = (requestInit) => (0, import_api_client_base2.createVoidFetcher)({ ...requestInit });
|
|
196
|
+
var deleteCampaignsId = (path, requestInit) => buildCampaignsIdDeleteFetcher()(
|
|
197
|
+
(0, import_api_client_base2.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
198
|
+
{ ...requestInit, method: "DELETE" }
|
|
199
|
+
);
|
|
193
200
|
var buildCampaignsIdPatchFetcher = (requestInit) => (0, import_api_client_base2.createJsonFetcher)(CampaignsCampaignIdResponse, { ...requestInit });
|
|
194
201
|
var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatchFetcher()(
|
|
195
202
|
(0, import_api_client_base2.__internal__requestUrl)("/api/campaigns/{id}", path),
|
|
@@ -231,9 +238,11 @@ var patchCampaignsId = (path, requestBody, requestInit) => buildCampaignsIdPatch
|
|
|
231
238
|
PostCampaignsRequestBody,
|
|
232
239
|
PostCampaignsResponse,
|
|
233
240
|
buildCampaignsGetFetcher,
|
|
241
|
+
buildCampaignsIdDeleteFetcher,
|
|
234
242
|
buildCampaignsIdGetFetcher,
|
|
235
243
|
buildCampaignsIdPatchFetcher,
|
|
236
244
|
buildCampaignsPostFetcher,
|
|
245
|
+
deleteCampaignsId,
|
|
237
246
|
getCampaigns,
|
|
238
247
|
getCampaignsId,
|
|
239
248
|
patchCampaignsId,
|
package/dist/index.mjs
CHANGED
|
@@ -6,11 +6,13 @@ import {
|
|
|
6
6
|
postCampaigns
|
|
7
7
|
} from "./chunk-2CYVMP5Y.mjs";
|
|
8
8
|
import {
|
|
9
|
+
buildCampaignsIdDeleteFetcher,
|
|
9
10
|
buildCampaignsIdGetFetcher,
|
|
10
11
|
buildCampaignsIdPatchFetcher,
|
|
12
|
+
deleteCampaignsId,
|
|
11
13
|
getCampaignsId,
|
|
12
14
|
patchCampaignsId
|
|
13
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-7JKGCVP4.mjs";
|
|
14
16
|
import {
|
|
15
17
|
Campaign,
|
|
16
18
|
CampaignBaseFormData,
|
|
@@ -71,9 +73,11 @@ export {
|
|
|
71
73
|
PostCampaignsRequestBody,
|
|
72
74
|
PostCampaignsResponse,
|
|
73
75
|
buildCampaignsGetFetcher,
|
|
76
|
+
buildCampaignsIdDeleteFetcher,
|
|
74
77
|
buildCampaignsIdGetFetcher,
|
|
75
78
|
buildCampaignsIdPatchFetcher,
|
|
76
79
|
buildCampaignsPostFetcher,
|
|
80
|
+
deleteCampaignsId,
|
|
77
81
|
getCampaigns,
|
|
78
82
|
getCampaignsId,
|
|
79
83
|
patchCampaignsId,
|
package/dist/schemaType.d.mts
CHANGED
|
@@ -12,6 +12,8 @@ interface paths {
|
|
|
12
12
|
"/api/campaigns/{id}": {
|
|
13
13
|
/** キャンペーン詳細を取得する */
|
|
14
14
|
get: operations["GetCampaignsCampaignId"];
|
|
15
|
+
/** キャンペーンを削除する */
|
|
16
|
+
delete: operations["DeleteCampaignsCampaignId"];
|
|
15
17
|
/** キャンペーンを更新する */
|
|
16
18
|
patch: operations["PatchCampaignsCampaignId"];
|
|
17
19
|
};
|
|
@@ -357,6 +359,20 @@ interface operations {
|
|
|
357
359
|
};
|
|
358
360
|
};
|
|
359
361
|
};
|
|
362
|
+
/** キャンペーンを削除する */
|
|
363
|
+
DeleteCampaignsCampaignId: {
|
|
364
|
+
parameters: {
|
|
365
|
+
path: {
|
|
366
|
+
id: number;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
responses: {
|
|
370
|
+
/** @description No Content */
|
|
371
|
+
204: {
|
|
372
|
+
content: never;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
360
376
|
/** キャンペーンを更新する */
|
|
361
377
|
PatchCampaignsCampaignId: {
|
|
362
378
|
parameters: {
|
package/dist/schemaType.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ interface paths {
|
|
|
12
12
|
"/api/campaigns/{id}": {
|
|
13
13
|
/** キャンペーン詳細を取得する */
|
|
14
14
|
get: operations["GetCampaignsCampaignId"];
|
|
15
|
+
/** キャンペーンを削除する */
|
|
16
|
+
delete: operations["DeleteCampaignsCampaignId"];
|
|
15
17
|
/** キャンペーンを更新する */
|
|
16
18
|
patch: operations["PatchCampaignsCampaignId"];
|
|
17
19
|
};
|
|
@@ -357,6 +359,20 @@ interface operations {
|
|
|
357
359
|
};
|
|
358
360
|
};
|
|
359
361
|
};
|
|
362
|
+
/** キャンペーンを削除する */
|
|
363
|
+
DeleteCampaignsCampaignId: {
|
|
364
|
+
parameters: {
|
|
365
|
+
path: {
|
|
366
|
+
id: number;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
responses: {
|
|
370
|
+
/** @description No Content */
|
|
371
|
+
204: {
|
|
372
|
+
content: never;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
360
376
|
/** キャンペーンを更新する */
|
|
361
377
|
PatchCampaignsCampaignId: {
|
|
362
378
|
parameters: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@readyfor/api-client-pigeon",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.174.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.
|
|
27
|
+
"@readyfor/api-client-base": "0.174.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": "
|
|
68
|
+
"gitHead": "4291825ffd41f638431d2debee64a23d68189c46"
|
|
69
69
|
}
|