@kanda-libs/ks-component-ts 0.3.28 → 0.3.30
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/index.d.ts +12849 -12849
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/operations/postIntroductionNotification.ts +3 -6
- package/src/generated/widget/index.tsx +61086 -61086
package/package.json
CHANGED
|
@@ -8,10 +8,7 @@ export type PostIntroductionNotificationRequestParameters = {
|
|
|
8
8
|
export const postIntroductionNotificationOperation = {
|
|
9
9
|
path: "/api/introduction/{id}/notification",
|
|
10
10
|
method: "post",
|
|
11
|
-
responses: {
|
|
12
|
-
"200": { _tag: "JsonResponse", decoder: schemas.Introduction },
|
|
13
|
-
default: { _tag: "JsonResponse", decoder: schemas.Error },
|
|
14
|
-
},
|
|
11
|
+
responses: { default: { _tag: "JsonResponse", decoder: schemas.Error } },
|
|
15
12
|
parameters: [
|
|
16
13
|
{
|
|
17
14
|
_tag: "FormParameter",
|
|
@@ -20,10 +17,10 @@ export const postIntroductionNotificationOperation = {
|
|
|
20
17
|
name: "id",
|
|
21
18
|
},
|
|
22
19
|
],
|
|
23
|
-
requestDefaultHeaders: {
|
|
20
|
+
requestDefaultHeaders: {},
|
|
24
21
|
} as const;
|
|
25
22
|
|
|
26
23
|
export type PostIntroductionNotificationRequestFunction = RequestFunction<
|
|
27
24
|
{ params: PostIntroductionNotificationRequestParameters },
|
|
28
|
-
|
|
25
|
+
void
|
|
29
26
|
>;
|