@kanda-libs/ks-component-ts 0.3.92 → 0.3.94

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-component-ts",
3
- "version": "0.3.92",
3
+ "version": "0.3.94",
4
4
  "description": "Kanda form component library",
5
5
  "main": "dist/index.esm.js",
6
6
  "module": "dist/index.esm.js",
@@ -0,0 +1,9 @@
1
+ import * as t from "io-ts";
2
+
3
+ export const DeleteDeviceRegistrationRequest = t.type({
4
+ id: t.string,
5
+ });
6
+
7
+ export interface DeleteDeviceRegistrationRequest {
8
+ id: string;
9
+ }
@@ -41,6 +41,7 @@ export const SatNote = t.intersection([
41
41
  t.literal("Yes I understand"),
42
42
  t.literal("No I do not understand"),
43
43
  ]),
44
+ remark: t.string,
44
45
  }),
45
46
  ]);
46
47
 
@@ -65,4 +66,5 @@ export interface SatNote {
65
66
  q_saving?: "Yes I understand" | "No I do not understand";
66
67
  signature: Signature;
67
68
  certificate: Document;
69
+ remark?: string;
68
70
  }
@@ -38,6 +38,7 @@ export * from "./Credit";
38
38
  export * from "./Customer";
39
39
  export * from "./CustomerDetails";
40
40
  export * from "./CustomerOptions";
41
+ export * from "./DeleteDeviceRegistrationRequest";
41
42
  export * from "./DeviceRegistration";
42
43
  export * from "./DirectorInfo";
43
44
  export * from "./DirectorVerification";
@@ -19,6 +19,6 @@ export const deleteProfileDeviceRegistrationOperation = {
19
19
  } as const;
20
20
 
21
21
  export type DeleteProfileDeviceRegistrationRequestFunction = RequestFunction<
22
- { body: string },
22
+ { body: schemas.DeleteDeviceRegistrationRequest },
23
23
  schemas.UserProfile
24
24
  >;