@soga/types 1.3.23 → 1.3.24
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 +19 -2
- package/dist/index.d.ts +19 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -608,8 +608,10 @@ type SubListItem = {
|
|
|
608
608
|
share_id: number;
|
|
609
609
|
space_id: number;
|
|
610
610
|
file_id: number;
|
|
611
|
+
file_version: number;
|
|
611
612
|
name: string;
|
|
612
613
|
space_name: string;
|
|
614
|
+
share_at: string;
|
|
613
615
|
status: string;
|
|
614
616
|
sub_status: number;
|
|
615
617
|
expire_at: string;
|
|
@@ -618,8 +620,23 @@ type SubListItem = {
|
|
|
618
620
|
cloud_info: null;
|
|
619
621
|
needUpdate: number;
|
|
620
622
|
share_text: {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
+
[key in HostType]?: string;
|
|
624
|
+
};
|
|
625
|
+
available_cloud_types: HostType[];
|
|
626
|
+
clouds: {
|
|
627
|
+
cloud_id: number;
|
|
628
|
+
cloud_info: {
|
|
629
|
+
account_level: string;
|
|
630
|
+
account_name: string;
|
|
631
|
+
avatar_url: string;
|
|
632
|
+
cloud_type: CloudType;
|
|
633
|
+
remark: string;
|
|
634
|
+
vip_type: number;
|
|
635
|
+
};
|
|
636
|
+
cloud_type: CloudType;
|
|
637
|
+
has_update: number;
|
|
638
|
+
synced_version: number;
|
|
639
|
+
transfer_at: string;
|
|
623
640
|
};
|
|
624
641
|
};
|
|
625
642
|
|
package/dist/index.d.ts
CHANGED
|
@@ -608,8 +608,10 @@ type SubListItem = {
|
|
|
608
608
|
share_id: number;
|
|
609
609
|
space_id: number;
|
|
610
610
|
file_id: number;
|
|
611
|
+
file_version: number;
|
|
611
612
|
name: string;
|
|
612
613
|
space_name: string;
|
|
614
|
+
share_at: string;
|
|
613
615
|
status: string;
|
|
614
616
|
sub_status: number;
|
|
615
617
|
expire_at: string;
|
|
@@ -618,8 +620,23 @@ type SubListItem = {
|
|
|
618
620
|
cloud_info: null;
|
|
619
621
|
needUpdate: number;
|
|
620
622
|
share_text: {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
+
[key in HostType]?: string;
|
|
624
|
+
};
|
|
625
|
+
available_cloud_types: HostType[];
|
|
626
|
+
clouds: {
|
|
627
|
+
cloud_id: number;
|
|
628
|
+
cloud_info: {
|
|
629
|
+
account_level: string;
|
|
630
|
+
account_name: string;
|
|
631
|
+
avatar_url: string;
|
|
632
|
+
cloud_type: CloudType;
|
|
633
|
+
remark: string;
|
|
634
|
+
vip_type: number;
|
|
635
|
+
};
|
|
636
|
+
cloud_type: CloudType;
|
|
637
|
+
has_update: number;
|
|
638
|
+
synced_version: number;
|
|
639
|
+
transfer_at: string;
|
|
623
640
|
};
|
|
624
641
|
};
|
|
625
642
|
|