@soga/types 1.3.22 → 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 +20 -2
- package/dist/index.d.ts +20 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -69,6 +69,7 @@ interface CommonHostDetail {
|
|
|
69
69
|
vip_type: number;
|
|
70
70
|
remark: string;
|
|
71
71
|
sharelink?: string;
|
|
72
|
+
sharetext?: string;
|
|
72
73
|
uk: string;
|
|
73
74
|
is_save: number;
|
|
74
75
|
}
|
|
@@ -607,8 +608,10 @@ type SubListItem = {
|
|
|
607
608
|
share_id: number;
|
|
608
609
|
space_id: number;
|
|
609
610
|
file_id: number;
|
|
611
|
+
file_version: number;
|
|
610
612
|
name: string;
|
|
611
613
|
space_name: string;
|
|
614
|
+
share_at: string;
|
|
612
615
|
status: string;
|
|
613
616
|
sub_status: number;
|
|
614
617
|
expire_at: string;
|
|
@@ -617,8 +620,23 @@ type SubListItem = {
|
|
|
617
620
|
cloud_info: null;
|
|
618
621
|
needUpdate: number;
|
|
619
622
|
share_text: {
|
|
620
|
-
|
|
621
|
-
|
|
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;
|
|
622
640
|
};
|
|
623
641
|
};
|
|
624
642
|
|
package/dist/index.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ interface CommonHostDetail {
|
|
|
69
69
|
vip_type: number;
|
|
70
70
|
remark: string;
|
|
71
71
|
sharelink?: string;
|
|
72
|
+
sharetext?: string;
|
|
72
73
|
uk: string;
|
|
73
74
|
is_save: number;
|
|
74
75
|
}
|
|
@@ -607,8 +608,10 @@ type SubListItem = {
|
|
|
607
608
|
share_id: number;
|
|
608
609
|
space_id: number;
|
|
609
610
|
file_id: number;
|
|
611
|
+
file_version: number;
|
|
610
612
|
name: string;
|
|
611
613
|
space_name: string;
|
|
614
|
+
share_at: string;
|
|
612
615
|
status: string;
|
|
613
616
|
sub_status: number;
|
|
614
617
|
expire_at: string;
|
|
@@ -617,8 +620,23 @@ type SubListItem = {
|
|
|
617
620
|
cloud_info: null;
|
|
618
621
|
needUpdate: number;
|
|
619
622
|
share_text: {
|
|
620
|
-
|
|
621
|
-
|
|
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;
|
|
622
640
|
};
|
|
623
641
|
};
|
|
624
642
|
|