@soga/types 0.5.0 → 0.5.2
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.mts +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -580,7 +580,6 @@ declare enum RootStatus {
|
|
|
580
580
|
NULL = 0,
|
|
581
581
|
PROCESS = 1,
|
|
582
582
|
SUCCESS = 2,
|
|
583
|
-
PAUSED = 3,
|
|
584
583
|
ERROR = 4
|
|
585
584
|
}
|
|
586
585
|
type UploadInputItem = {
|
|
@@ -637,15 +636,21 @@ type UploadFileItem = {
|
|
|
637
636
|
};
|
|
638
637
|
type UploadFileSuceessItem = {
|
|
639
638
|
id: number;
|
|
639
|
+
root_id: number;
|
|
640
|
+
pid: number;
|
|
640
641
|
space_id: number;
|
|
641
642
|
space_name: string;
|
|
642
643
|
uid: number;
|
|
643
|
-
title: string;
|
|
644
|
-
path: string;
|
|
645
644
|
cloud_id: number;
|
|
645
|
+
cloud_name: string;
|
|
646
646
|
type: RecordType;
|
|
647
|
-
updated_at: string;
|
|
648
647
|
created_at: string;
|
|
648
|
+
updated_at: string;
|
|
649
|
+
inputs: {
|
|
650
|
+
filename: string;
|
|
651
|
+
filepath: string;
|
|
652
|
+
filesize: number;
|
|
653
|
+
}[];
|
|
649
654
|
};
|
|
650
655
|
|
|
651
656
|
type MemberInfo = {
|
package/dist/index.d.ts
CHANGED
|
@@ -580,7 +580,6 @@ declare enum RootStatus {
|
|
|
580
580
|
NULL = 0,
|
|
581
581
|
PROCESS = 1,
|
|
582
582
|
SUCCESS = 2,
|
|
583
|
-
PAUSED = 3,
|
|
584
583
|
ERROR = 4
|
|
585
584
|
}
|
|
586
585
|
type UploadInputItem = {
|
|
@@ -637,15 +636,21 @@ type UploadFileItem = {
|
|
|
637
636
|
};
|
|
638
637
|
type UploadFileSuceessItem = {
|
|
639
638
|
id: number;
|
|
639
|
+
root_id: number;
|
|
640
|
+
pid: number;
|
|
640
641
|
space_id: number;
|
|
641
642
|
space_name: string;
|
|
642
643
|
uid: number;
|
|
643
|
-
title: string;
|
|
644
|
-
path: string;
|
|
645
644
|
cloud_id: number;
|
|
645
|
+
cloud_name: string;
|
|
646
646
|
type: RecordType;
|
|
647
|
-
updated_at: string;
|
|
648
647
|
created_at: string;
|
|
648
|
+
updated_at: string;
|
|
649
|
+
inputs: {
|
|
650
|
+
filename: string;
|
|
651
|
+
filepath: string;
|
|
652
|
+
filesize: number;
|
|
653
|
+
}[];
|
|
649
654
|
};
|
|
650
655
|
|
|
651
656
|
type MemberInfo = {
|
package/dist/index.js
CHANGED
|
@@ -113,7 +113,6 @@ var RootStatus = /* @__PURE__ */ function(RootStatus2) {
|
|
|
113
113
|
RootStatus2[RootStatus2["NULL"] = 0] = "NULL";
|
|
114
114
|
RootStatus2[RootStatus2["PROCESS"] = 1] = "PROCESS";
|
|
115
115
|
RootStatus2[RootStatus2["SUCCESS"] = 2] = "SUCCESS";
|
|
116
|
-
RootStatus2[RootStatus2["PAUSED"] = 3] = "PAUSED";
|
|
117
116
|
RootStatus2[RootStatus2["ERROR"] = 4] = "ERROR";
|
|
118
117
|
return RootStatus2;
|
|
119
118
|
}({});
|
package/dist/index.mjs
CHANGED
|
@@ -76,7 +76,6 @@ var RootStatus = /* @__PURE__ */ function(RootStatus2) {
|
|
|
76
76
|
RootStatus2[RootStatus2["NULL"] = 0] = "NULL";
|
|
77
77
|
RootStatus2[RootStatus2["PROCESS"] = 1] = "PROCESS";
|
|
78
78
|
RootStatus2[RootStatus2["SUCCESS"] = 2] = "SUCCESS";
|
|
79
|
-
RootStatus2[RootStatus2["PAUSED"] = 3] = "PAUSED";
|
|
80
79
|
RootStatus2[RootStatus2["ERROR"] = 4] = "ERROR";
|
|
81
80
|
return RootStatus2;
|
|
82
81
|
}({});
|