@soga/types 0.0.1 → 0.0.3

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/common.d.ts CHANGED
@@ -18,3 +18,11 @@ export type ApiListResponse<T = never> = {
18
18
  code: number;
19
19
  message: string;
20
20
  };
21
+ export type UpyunSignInfo = {
22
+ bucket: string;
23
+ domain: string;
24
+ policy: string;
25
+ signature: string;
26
+ authorization: string;
27
+ api: string;
28
+ };
package/dist/main.d.ts CHANGED
@@ -2,5 +2,5 @@ export * from './common';
2
2
  export * from './host';
3
3
  export * from './record';
4
4
  export * from './upload';
5
- export * from './user';
5
+ export * from './member';
6
6
  export declare const foo = "foo";
package/dist/main.js CHANGED
@@ -19,5 +19,5 @@ __exportStar(require("./common"), exports);
19
19
  __exportStar(require("./host"), exports);
20
20
  __exportStar(require("./record"), exports);
21
21
  __exportStar(require("./upload"), exports);
22
- __exportStar(require("./user"), exports);
22
+ __exportStar(require("./member"), exports);
23
23
  exports.foo = 'foo';
@@ -0,0 +1,10 @@
1
+ export type MemberInfo = {
2
+ id: number;
3
+ name: string;
4
+ email: string;
5
+ nick: string;
6
+ avatar: string;
7
+ created_at: string;
8
+ updated_at: string;
9
+ private_space_id: number;
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soga/types",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/dist/user.d.ts DELETED
@@ -1,18 +0,0 @@
1
- export type Userinfo = {
2
- id: number;
3
- name: string;
4
- email: string;
5
- nick: string;
6
- avatar: string;
7
- created_at: string;
8
- updated_at: string;
9
- private_space_id: number;
10
- };
11
- export type UpyunSignInfo = {
12
- bucket: string;
13
- domain: string;
14
- policy: string;
15
- signature: string;
16
- authorization: string;
17
- api: string;
18
- };
File without changes