@alicloud/aliding20230426 2.9.0 → 2.11.0
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/client.d.ts +752 -39
- package/dist/client.js +1244 -32
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1755 -275
package/dist/client.d.ts
CHANGED
|
@@ -116,6 +116,100 @@ export declare class AddAttendeeResponse extends $tea.Model {
|
|
|
116
116
|
[key: string]: any;
|
|
117
117
|
});
|
|
118
118
|
}
|
|
119
|
+
export declare class AddDriveSpaceHeaders extends $tea.Model {
|
|
120
|
+
commonHeaders?: {
|
|
121
|
+
[key: string]: string;
|
|
122
|
+
};
|
|
123
|
+
accountContext?: AddDriveSpaceHeadersAccountContext;
|
|
124
|
+
static names(): {
|
|
125
|
+
[key: string]: string;
|
|
126
|
+
};
|
|
127
|
+
static types(): {
|
|
128
|
+
[key: string]: any;
|
|
129
|
+
};
|
|
130
|
+
constructor(map?: {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
export declare class AddDriveSpaceShrinkHeaders extends $tea.Model {
|
|
135
|
+
commonHeaders?: {
|
|
136
|
+
[key: string]: string;
|
|
137
|
+
};
|
|
138
|
+
accountContextShrink?: string;
|
|
139
|
+
static names(): {
|
|
140
|
+
[key: string]: string;
|
|
141
|
+
};
|
|
142
|
+
static types(): {
|
|
143
|
+
[key: string]: any;
|
|
144
|
+
};
|
|
145
|
+
constructor(map?: {
|
|
146
|
+
[key: string]: any;
|
|
147
|
+
});
|
|
148
|
+
}
|
|
149
|
+
export declare class AddDriveSpaceRequest extends $tea.Model {
|
|
150
|
+
name?: string;
|
|
151
|
+
tenantContext?: AddDriveSpaceRequestTenantContext;
|
|
152
|
+
static names(): {
|
|
153
|
+
[key: string]: string;
|
|
154
|
+
};
|
|
155
|
+
static types(): {
|
|
156
|
+
[key: string]: any;
|
|
157
|
+
};
|
|
158
|
+
constructor(map?: {
|
|
159
|
+
[key: string]: any;
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
export declare class AddDriveSpaceShrinkRequest extends $tea.Model {
|
|
163
|
+
name?: string;
|
|
164
|
+
tenantContextShrink?: string;
|
|
165
|
+
static names(): {
|
|
166
|
+
[key: string]: string;
|
|
167
|
+
};
|
|
168
|
+
static types(): {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
};
|
|
171
|
+
constructor(map?: {
|
|
172
|
+
[key: string]: any;
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
export declare class AddDriveSpaceResponseBody extends $tea.Model {
|
|
176
|
+
createTime?: string;
|
|
177
|
+
modifyTime?: string;
|
|
178
|
+
permissionMode?: string;
|
|
179
|
+
quota?: number;
|
|
180
|
+
requestId?: string;
|
|
181
|
+
spaceId?: string;
|
|
182
|
+
spaceName?: string;
|
|
183
|
+
spaceType?: string;
|
|
184
|
+
usedQuota?: number;
|
|
185
|
+
vendorRequestId?: string;
|
|
186
|
+
vendorType?: string;
|
|
187
|
+
static names(): {
|
|
188
|
+
[key: string]: string;
|
|
189
|
+
};
|
|
190
|
+
static types(): {
|
|
191
|
+
[key: string]: any;
|
|
192
|
+
};
|
|
193
|
+
constructor(map?: {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
export declare class AddDriveSpaceResponse extends $tea.Model {
|
|
198
|
+
headers?: {
|
|
199
|
+
[key: string]: string;
|
|
200
|
+
};
|
|
201
|
+
statusCode?: number;
|
|
202
|
+
body?: AddDriveSpaceResponseBody;
|
|
203
|
+
static names(): {
|
|
204
|
+
[key: string]: string;
|
|
205
|
+
};
|
|
206
|
+
static types(): {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
};
|
|
209
|
+
constructor(map?: {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
});
|
|
212
|
+
}
|
|
119
213
|
export declare class AddMeetingRoomsHeaders extends $tea.Model {
|
|
120
214
|
commonHeaders?: {
|
|
121
215
|
[key: string]: string;
|
|
@@ -1548,6 +1642,106 @@ export declare class CreateDeliveryPlanResponse extends $tea.Model {
|
|
|
1548
1642
|
[key: string]: any;
|
|
1549
1643
|
});
|
|
1550
1644
|
}
|
|
1645
|
+
export declare class CreateDingtalkPersonalTodoTaskHeaders extends $tea.Model {
|
|
1646
|
+
commonHeaders?: {
|
|
1647
|
+
[key: string]: string;
|
|
1648
|
+
};
|
|
1649
|
+
accountContext?: CreateDingtalkPersonalTodoTaskHeadersAccountContext;
|
|
1650
|
+
static names(): {
|
|
1651
|
+
[key: string]: string;
|
|
1652
|
+
};
|
|
1653
|
+
static types(): {
|
|
1654
|
+
[key: string]: any;
|
|
1655
|
+
};
|
|
1656
|
+
constructor(map?: {
|
|
1657
|
+
[key: string]: any;
|
|
1658
|
+
});
|
|
1659
|
+
}
|
|
1660
|
+
export declare class CreateDingtalkPersonalTodoTaskShrinkHeaders extends $tea.Model {
|
|
1661
|
+
commonHeaders?: {
|
|
1662
|
+
[key: string]: string;
|
|
1663
|
+
};
|
|
1664
|
+
accountContextShrink?: string;
|
|
1665
|
+
static names(): {
|
|
1666
|
+
[key: string]: string;
|
|
1667
|
+
};
|
|
1668
|
+
static types(): {
|
|
1669
|
+
[key: string]: any;
|
|
1670
|
+
};
|
|
1671
|
+
constructor(map?: {
|
|
1672
|
+
[key: string]: any;
|
|
1673
|
+
});
|
|
1674
|
+
}
|
|
1675
|
+
export declare class CreateDingtalkPersonalTodoTaskRequest extends $tea.Model {
|
|
1676
|
+
description?: string;
|
|
1677
|
+
dueTime?: number;
|
|
1678
|
+
executorIds?: string[];
|
|
1679
|
+
notifyConfigs?: CreateDingtalkPersonalTodoTaskRequestNotifyConfigs;
|
|
1680
|
+
participantIds?: string[];
|
|
1681
|
+
subject?: string;
|
|
1682
|
+
tenantContext?: CreateDingtalkPersonalTodoTaskRequestTenantContext;
|
|
1683
|
+
userToken?: string;
|
|
1684
|
+
static names(): {
|
|
1685
|
+
[key: string]: string;
|
|
1686
|
+
};
|
|
1687
|
+
static types(): {
|
|
1688
|
+
[key: string]: any;
|
|
1689
|
+
};
|
|
1690
|
+
constructor(map?: {
|
|
1691
|
+
[key: string]: any;
|
|
1692
|
+
});
|
|
1693
|
+
}
|
|
1694
|
+
export declare class CreateDingtalkPersonalTodoTaskShrinkRequest extends $tea.Model {
|
|
1695
|
+
description?: string;
|
|
1696
|
+
dueTime?: number;
|
|
1697
|
+
executorIdsShrink?: string;
|
|
1698
|
+
notifyConfigsShrink?: string;
|
|
1699
|
+
participantIdsShrink?: string;
|
|
1700
|
+
subject?: string;
|
|
1701
|
+
tenantContextShrink?: string;
|
|
1702
|
+
userToken?: string;
|
|
1703
|
+
static names(): {
|
|
1704
|
+
[key: string]: string;
|
|
1705
|
+
};
|
|
1706
|
+
static types(): {
|
|
1707
|
+
[key: string]: any;
|
|
1708
|
+
};
|
|
1709
|
+
constructor(map?: {
|
|
1710
|
+
[key: string]: any;
|
|
1711
|
+
});
|
|
1712
|
+
}
|
|
1713
|
+
export declare class CreateDingtalkPersonalTodoTaskResponseBody extends $tea.Model {
|
|
1714
|
+
createdTime?: number;
|
|
1715
|
+
requestId?: string;
|
|
1716
|
+
taskId?: string;
|
|
1717
|
+
vendorRequestId?: string;
|
|
1718
|
+
vendorType?: string;
|
|
1719
|
+
static names(): {
|
|
1720
|
+
[key: string]: string;
|
|
1721
|
+
};
|
|
1722
|
+
static types(): {
|
|
1723
|
+
[key: string]: any;
|
|
1724
|
+
};
|
|
1725
|
+
constructor(map?: {
|
|
1726
|
+
[key: string]: any;
|
|
1727
|
+
});
|
|
1728
|
+
}
|
|
1729
|
+
export declare class CreateDingtalkPersonalTodoTaskResponse extends $tea.Model {
|
|
1730
|
+
headers?: {
|
|
1731
|
+
[key: string]: string;
|
|
1732
|
+
};
|
|
1733
|
+
statusCode?: number;
|
|
1734
|
+
body?: CreateDingtalkPersonalTodoTaskResponseBody;
|
|
1735
|
+
static names(): {
|
|
1736
|
+
[key: string]: string;
|
|
1737
|
+
};
|
|
1738
|
+
static types(): {
|
|
1739
|
+
[key: string]: any;
|
|
1740
|
+
};
|
|
1741
|
+
constructor(map?: {
|
|
1742
|
+
[key: string]: any;
|
|
1743
|
+
});
|
|
1744
|
+
}
|
|
1551
1745
|
export declare class CreateEventHeaders extends $tea.Model {
|
|
1552
1746
|
commonHeaders?: {
|
|
1553
1747
|
[key: string]: string;
|
|
@@ -3382,6 +3576,92 @@ export declare class DeleteColumnsResponse extends $tea.Model {
|
|
|
3382
3576
|
[key: string]: any;
|
|
3383
3577
|
});
|
|
3384
3578
|
}
|
|
3579
|
+
export declare class DeleteDriveSpaceHeaders extends $tea.Model {
|
|
3580
|
+
commonHeaders?: {
|
|
3581
|
+
[key: string]: string;
|
|
3582
|
+
};
|
|
3583
|
+
accountContext?: DeleteDriveSpaceHeadersAccountContext;
|
|
3584
|
+
static names(): {
|
|
3585
|
+
[key: string]: string;
|
|
3586
|
+
};
|
|
3587
|
+
static types(): {
|
|
3588
|
+
[key: string]: any;
|
|
3589
|
+
};
|
|
3590
|
+
constructor(map?: {
|
|
3591
|
+
[key: string]: any;
|
|
3592
|
+
});
|
|
3593
|
+
}
|
|
3594
|
+
export declare class DeleteDriveSpaceShrinkHeaders extends $tea.Model {
|
|
3595
|
+
commonHeaders?: {
|
|
3596
|
+
[key: string]: string;
|
|
3597
|
+
};
|
|
3598
|
+
accountContextShrink?: string;
|
|
3599
|
+
static names(): {
|
|
3600
|
+
[key: string]: string;
|
|
3601
|
+
};
|
|
3602
|
+
static types(): {
|
|
3603
|
+
[key: string]: any;
|
|
3604
|
+
};
|
|
3605
|
+
constructor(map?: {
|
|
3606
|
+
[key: string]: any;
|
|
3607
|
+
});
|
|
3608
|
+
}
|
|
3609
|
+
export declare class DeleteDriveSpaceRequest extends $tea.Model {
|
|
3610
|
+
spaceId?: string;
|
|
3611
|
+
tenantContext?: DeleteDriveSpaceRequestTenantContext;
|
|
3612
|
+
static names(): {
|
|
3613
|
+
[key: string]: string;
|
|
3614
|
+
};
|
|
3615
|
+
static types(): {
|
|
3616
|
+
[key: string]: any;
|
|
3617
|
+
};
|
|
3618
|
+
constructor(map?: {
|
|
3619
|
+
[key: string]: any;
|
|
3620
|
+
});
|
|
3621
|
+
}
|
|
3622
|
+
export declare class DeleteDriveSpaceShrinkRequest extends $tea.Model {
|
|
3623
|
+
spaceId?: string;
|
|
3624
|
+
tenantContextShrink?: string;
|
|
3625
|
+
static names(): {
|
|
3626
|
+
[key: string]: string;
|
|
3627
|
+
};
|
|
3628
|
+
static types(): {
|
|
3629
|
+
[key: string]: any;
|
|
3630
|
+
};
|
|
3631
|
+
constructor(map?: {
|
|
3632
|
+
[key: string]: any;
|
|
3633
|
+
});
|
|
3634
|
+
}
|
|
3635
|
+
export declare class DeleteDriveSpaceResponseBody extends $tea.Model {
|
|
3636
|
+
requestId?: string;
|
|
3637
|
+
vendorRequestId?: string;
|
|
3638
|
+
vendorType?: string;
|
|
3639
|
+
static names(): {
|
|
3640
|
+
[key: string]: string;
|
|
3641
|
+
};
|
|
3642
|
+
static types(): {
|
|
3643
|
+
[key: string]: any;
|
|
3644
|
+
};
|
|
3645
|
+
constructor(map?: {
|
|
3646
|
+
[key: string]: any;
|
|
3647
|
+
});
|
|
3648
|
+
}
|
|
3649
|
+
export declare class DeleteDriveSpaceResponse extends $tea.Model {
|
|
3650
|
+
headers?: {
|
|
3651
|
+
[key: string]: string;
|
|
3652
|
+
};
|
|
3653
|
+
statusCode?: number;
|
|
3654
|
+
body?: DeleteDriveSpaceResponseBody;
|
|
3655
|
+
static names(): {
|
|
3656
|
+
[key: string]: string;
|
|
3657
|
+
};
|
|
3658
|
+
static types(): {
|
|
3659
|
+
[key: string]: any;
|
|
3660
|
+
};
|
|
3661
|
+
constructor(map?: {
|
|
3662
|
+
[key: string]: any;
|
|
3663
|
+
});
|
|
3664
|
+
}
|
|
3385
3665
|
export declare class DeleteEventHeaders extends $tea.Model {
|
|
3386
3666
|
commonHeaders?: {
|
|
3387
3667
|
[key: string]: string;
|
|
@@ -9209,6 +9489,98 @@ export declare class ListDentriesResponse extends $tea.Model {
|
|
|
9209
9489
|
[key: string]: any;
|
|
9210
9490
|
});
|
|
9211
9491
|
}
|
|
9492
|
+
export declare class ListDriveSpacesHeaders extends $tea.Model {
|
|
9493
|
+
commonHeaders?: {
|
|
9494
|
+
[key: string]: string;
|
|
9495
|
+
};
|
|
9496
|
+
accountContext?: ListDriveSpacesHeadersAccountContext;
|
|
9497
|
+
static names(): {
|
|
9498
|
+
[key: string]: string;
|
|
9499
|
+
};
|
|
9500
|
+
static types(): {
|
|
9501
|
+
[key: string]: any;
|
|
9502
|
+
};
|
|
9503
|
+
constructor(map?: {
|
|
9504
|
+
[key: string]: any;
|
|
9505
|
+
});
|
|
9506
|
+
}
|
|
9507
|
+
export declare class ListDriveSpacesShrinkHeaders extends $tea.Model {
|
|
9508
|
+
commonHeaders?: {
|
|
9509
|
+
[key: string]: string;
|
|
9510
|
+
};
|
|
9511
|
+
accountContextShrink?: string;
|
|
9512
|
+
static names(): {
|
|
9513
|
+
[key: string]: string;
|
|
9514
|
+
};
|
|
9515
|
+
static types(): {
|
|
9516
|
+
[key: string]: any;
|
|
9517
|
+
};
|
|
9518
|
+
constructor(map?: {
|
|
9519
|
+
[key: string]: any;
|
|
9520
|
+
});
|
|
9521
|
+
}
|
|
9522
|
+
export declare class ListDriveSpacesRequest extends $tea.Model {
|
|
9523
|
+
maxResults?: number;
|
|
9524
|
+
nextToken?: string;
|
|
9525
|
+
spaceType?: string;
|
|
9526
|
+
tenantContext?: ListDriveSpacesRequestTenantContext;
|
|
9527
|
+
static names(): {
|
|
9528
|
+
[key: string]: string;
|
|
9529
|
+
};
|
|
9530
|
+
static types(): {
|
|
9531
|
+
[key: string]: any;
|
|
9532
|
+
};
|
|
9533
|
+
constructor(map?: {
|
|
9534
|
+
[key: string]: any;
|
|
9535
|
+
});
|
|
9536
|
+
}
|
|
9537
|
+
export declare class ListDriveSpacesShrinkRequest extends $tea.Model {
|
|
9538
|
+
maxResults?: number;
|
|
9539
|
+
nextToken?: string;
|
|
9540
|
+
spaceType?: string;
|
|
9541
|
+
tenantContextShrink?: string;
|
|
9542
|
+
static names(): {
|
|
9543
|
+
[key: string]: string;
|
|
9544
|
+
};
|
|
9545
|
+
static types(): {
|
|
9546
|
+
[key: string]: any;
|
|
9547
|
+
};
|
|
9548
|
+
constructor(map?: {
|
|
9549
|
+
[key: string]: any;
|
|
9550
|
+
});
|
|
9551
|
+
}
|
|
9552
|
+
export declare class ListDriveSpacesResponseBody extends $tea.Model {
|
|
9553
|
+
nextToken?: string;
|
|
9554
|
+
requestId?: string;
|
|
9555
|
+
spaces?: ListDriveSpacesResponseBodySpaces[];
|
|
9556
|
+
vendorRequestId?: string;
|
|
9557
|
+
vendorType?: string;
|
|
9558
|
+
static names(): {
|
|
9559
|
+
[key: string]: string;
|
|
9560
|
+
};
|
|
9561
|
+
static types(): {
|
|
9562
|
+
[key: string]: any;
|
|
9563
|
+
};
|
|
9564
|
+
constructor(map?: {
|
|
9565
|
+
[key: string]: any;
|
|
9566
|
+
});
|
|
9567
|
+
}
|
|
9568
|
+
export declare class ListDriveSpacesResponse extends $tea.Model {
|
|
9569
|
+
headers?: {
|
|
9570
|
+
[key: string]: string;
|
|
9571
|
+
};
|
|
9572
|
+
statusCode?: number;
|
|
9573
|
+
body?: ListDriveSpacesResponseBody;
|
|
9574
|
+
static names(): {
|
|
9575
|
+
[key: string]: string;
|
|
9576
|
+
};
|
|
9577
|
+
static types(): {
|
|
9578
|
+
[key: string]: any;
|
|
9579
|
+
};
|
|
9580
|
+
constructor(map?: {
|
|
9581
|
+
[key: string]: any;
|
|
9582
|
+
});
|
|
9583
|
+
}
|
|
9212
9584
|
export declare class ListEventsHeaders extends $tea.Model {
|
|
9213
9585
|
commonHeaders?: {
|
|
9214
9586
|
[key: string]: string;
|
|
@@ -11327,11 +11699,99 @@ export declare class QueryOrgHonorsRequest extends $tea.Model {
|
|
|
11327
11699
|
[key: string]: any;
|
|
11328
11700
|
});
|
|
11329
11701
|
}
|
|
11330
|
-
export declare class QueryOrgHonorsShrinkRequest extends $tea.Model {
|
|
11702
|
+
export declare class QueryOrgHonorsShrinkRequest extends $tea.Model {
|
|
11703
|
+
tenantContextShrink?: string;
|
|
11704
|
+
maxResults?: number;
|
|
11705
|
+
nextToken?: string;
|
|
11706
|
+
orgId?: number;
|
|
11707
|
+
static names(): {
|
|
11708
|
+
[key: string]: string;
|
|
11709
|
+
};
|
|
11710
|
+
static types(): {
|
|
11711
|
+
[key: string]: any;
|
|
11712
|
+
};
|
|
11713
|
+
constructor(map?: {
|
|
11714
|
+
[key: string]: any;
|
|
11715
|
+
});
|
|
11716
|
+
}
|
|
11717
|
+
export declare class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
11718
|
+
nextToken?: string;
|
|
11719
|
+
openHonors?: QueryOrgHonorsResponseBodyOpenHonors[];
|
|
11720
|
+
requestId?: string;
|
|
11721
|
+
static names(): {
|
|
11722
|
+
[key: string]: string;
|
|
11723
|
+
};
|
|
11724
|
+
static types(): {
|
|
11725
|
+
[key: string]: any;
|
|
11726
|
+
};
|
|
11727
|
+
constructor(map?: {
|
|
11728
|
+
[key: string]: any;
|
|
11729
|
+
});
|
|
11730
|
+
}
|
|
11731
|
+
export declare class QueryOrgHonorsResponse extends $tea.Model {
|
|
11732
|
+
headers?: {
|
|
11733
|
+
[key: string]: string;
|
|
11734
|
+
};
|
|
11735
|
+
statusCode?: number;
|
|
11736
|
+
body?: QueryOrgHonorsResponseBody;
|
|
11737
|
+
static names(): {
|
|
11738
|
+
[key: string]: string;
|
|
11739
|
+
};
|
|
11740
|
+
static types(): {
|
|
11741
|
+
[key: string]: any;
|
|
11742
|
+
};
|
|
11743
|
+
constructor(map?: {
|
|
11744
|
+
[key: string]: any;
|
|
11745
|
+
});
|
|
11746
|
+
}
|
|
11747
|
+
export declare class QueryOrgTodoTasksHeaders extends $tea.Model {
|
|
11748
|
+
commonHeaders?: {
|
|
11749
|
+
[key: string]: string;
|
|
11750
|
+
};
|
|
11751
|
+
accountContext?: QueryOrgTodoTasksHeadersAccountContext;
|
|
11752
|
+
static names(): {
|
|
11753
|
+
[key: string]: string;
|
|
11754
|
+
};
|
|
11755
|
+
static types(): {
|
|
11756
|
+
[key: string]: any;
|
|
11757
|
+
};
|
|
11758
|
+
constructor(map?: {
|
|
11759
|
+
[key: string]: any;
|
|
11760
|
+
});
|
|
11761
|
+
}
|
|
11762
|
+
export declare class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
|
|
11763
|
+
commonHeaders?: {
|
|
11764
|
+
[key: string]: string;
|
|
11765
|
+
};
|
|
11766
|
+
accountContextShrink?: string;
|
|
11767
|
+
static names(): {
|
|
11768
|
+
[key: string]: string;
|
|
11769
|
+
};
|
|
11770
|
+
static types(): {
|
|
11771
|
+
[key: string]: any;
|
|
11772
|
+
};
|
|
11773
|
+
constructor(map?: {
|
|
11774
|
+
[key: string]: any;
|
|
11775
|
+
});
|
|
11776
|
+
}
|
|
11777
|
+
export declare class QueryOrgTodoTasksRequest extends $tea.Model {
|
|
11778
|
+
tenantContext?: QueryOrgTodoTasksRequestTenantContext;
|
|
11779
|
+
isDone?: boolean;
|
|
11780
|
+
nextToken?: string;
|
|
11781
|
+
static names(): {
|
|
11782
|
+
[key: string]: string;
|
|
11783
|
+
};
|
|
11784
|
+
static types(): {
|
|
11785
|
+
[key: string]: any;
|
|
11786
|
+
};
|
|
11787
|
+
constructor(map?: {
|
|
11788
|
+
[key: string]: any;
|
|
11789
|
+
});
|
|
11790
|
+
}
|
|
11791
|
+
export declare class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
|
|
11331
11792
|
tenantContextShrink?: string;
|
|
11332
|
-
|
|
11793
|
+
isDone?: boolean;
|
|
11333
11794
|
nextToken?: string;
|
|
11334
|
-
orgId?: number;
|
|
11335
11795
|
static names(): {
|
|
11336
11796
|
[key: string]: string;
|
|
11337
11797
|
};
|
|
@@ -11342,10 +11802,10 @@ export declare class QueryOrgHonorsShrinkRequest extends $tea.Model {
|
|
|
11342
11802
|
[key: string]: any;
|
|
11343
11803
|
});
|
|
11344
11804
|
}
|
|
11345
|
-
export declare class
|
|
11805
|
+
export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
11346
11806
|
nextToken?: string;
|
|
11347
|
-
openHonors?: QueryOrgHonorsResponseBodyOpenHonors[];
|
|
11348
11807
|
requestId?: string;
|
|
11808
|
+
todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
|
|
11349
11809
|
static names(): {
|
|
11350
11810
|
[key: string]: string;
|
|
11351
11811
|
};
|
|
@@ -11356,12 +11816,12 @@ export declare class QueryOrgHonorsResponseBody extends $tea.Model {
|
|
|
11356
11816
|
[key: string]: any;
|
|
11357
11817
|
});
|
|
11358
11818
|
}
|
|
11359
|
-
export declare class
|
|
11819
|
+
export declare class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
11360
11820
|
headers?: {
|
|
11361
11821
|
[key: string]: string;
|
|
11362
11822
|
};
|
|
11363
11823
|
statusCode?: number;
|
|
11364
|
-
body?:
|
|
11824
|
+
body?: QueryOrgTodoTasksResponseBody;
|
|
11365
11825
|
static names(): {
|
|
11366
11826
|
[key: string]: string;
|
|
11367
11827
|
};
|
|
@@ -11372,11 +11832,11 @@ export declare class QueryOrgHonorsResponse extends $tea.Model {
|
|
|
11372
11832
|
[key: string]: any;
|
|
11373
11833
|
});
|
|
11374
11834
|
}
|
|
11375
|
-
export declare class
|
|
11835
|
+
export declare class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
11376
11836
|
commonHeaders?: {
|
|
11377
11837
|
[key: string]: string;
|
|
11378
11838
|
};
|
|
11379
|
-
accountContext?:
|
|
11839
|
+
accountContext?: QueryScheduleConferenceHeadersAccountContext;
|
|
11380
11840
|
static names(): {
|
|
11381
11841
|
[key: string]: string;
|
|
11382
11842
|
};
|
|
@@ -11387,7 +11847,7 @@ export declare class QueryOrgTodoTasksHeaders extends $tea.Model {
|
|
|
11387
11847
|
[key: string]: any;
|
|
11388
11848
|
});
|
|
11389
11849
|
}
|
|
11390
|
-
export declare class
|
|
11850
|
+
export declare class QueryScheduleConferenceShrinkHeaders extends $tea.Model {
|
|
11391
11851
|
commonHeaders?: {
|
|
11392
11852
|
[key: string]: string;
|
|
11393
11853
|
};
|
|
@@ -11402,10 +11862,9 @@ export declare class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
|
|
|
11402
11862
|
[key: string]: any;
|
|
11403
11863
|
});
|
|
11404
11864
|
}
|
|
11405
|
-
export declare class
|
|
11406
|
-
tenantContext?:
|
|
11407
|
-
|
|
11408
|
-
nextToken?: string;
|
|
11865
|
+
export declare class QueryScheduleConferenceRequest extends $tea.Model {
|
|
11866
|
+
tenantContext?: QueryScheduleConferenceRequestTenantContext;
|
|
11867
|
+
scheduleConferenceId?: string;
|
|
11409
11868
|
static names(): {
|
|
11410
11869
|
[key: string]: string;
|
|
11411
11870
|
};
|
|
@@ -11416,10 +11875,9 @@ export declare class QueryOrgTodoTasksRequest extends $tea.Model {
|
|
|
11416
11875
|
[key: string]: any;
|
|
11417
11876
|
});
|
|
11418
11877
|
}
|
|
11419
|
-
export declare class
|
|
11878
|
+
export declare class QueryScheduleConferenceShrinkRequest extends $tea.Model {
|
|
11420
11879
|
tenantContextShrink?: string;
|
|
11421
|
-
|
|
11422
|
-
nextToken?: string;
|
|
11880
|
+
scheduleConferenceId?: string;
|
|
11423
11881
|
static names(): {
|
|
11424
11882
|
[key: string]: string;
|
|
11425
11883
|
};
|
|
@@ -11430,10 +11888,15 @@ export declare class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
|
|
|
11430
11888
|
[key: string]: any;
|
|
11431
11889
|
});
|
|
11432
11890
|
}
|
|
11433
|
-
export declare class
|
|
11434
|
-
|
|
11891
|
+
export declare class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
11892
|
+
endTime?: number;
|
|
11893
|
+
phones?: string[];
|
|
11435
11894
|
requestId?: string;
|
|
11436
|
-
|
|
11895
|
+
roomCode?: string;
|
|
11896
|
+
scheduleConferenceId?: string;
|
|
11897
|
+
startTime?: number;
|
|
11898
|
+
title?: string;
|
|
11899
|
+
url?: string;
|
|
11437
11900
|
static names(): {
|
|
11438
11901
|
[key: string]: string;
|
|
11439
11902
|
};
|
|
@@ -11444,12 +11907,12 @@ export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
|
|
|
11444
11907
|
[key: string]: any;
|
|
11445
11908
|
});
|
|
11446
11909
|
}
|
|
11447
|
-
export declare class
|
|
11910
|
+
export declare class QueryScheduleConferenceResponse extends $tea.Model {
|
|
11448
11911
|
headers?: {
|
|
11449
11912
|
[key: string]: string;
|
|
11450
11913
|
};
|
|
11451
11914
|
statusCode?: number;
|
|
11452
|
-
body?:
|
|
11915
|
+
body?: QueryScheduleConferenceResponseBody;
|
|
11453
11916
|
static names(): {
|
|
11454
11917
|
[key: string]: string;
|
|
11455
11918
|
};
|
|
@@ -11460,11 +11923,11 @@ export declare class QueryOrgTodoTasksResponse extends $tea.Model {
|
|
|
11460
11923
|
[key: string]: any;
|
|
11461
11924
|
});
|
|
11462
11925
|
}
|
|
11463
|
-
export declare class
|
|
11926
|
+
export declare class QueryScheduleConferenceInfoHeaders extends $tea.Model {
|
|
11464
11927
|
commonHeaders?: {
|
|
11465
11928
|
[key: string]: string;
|
|
11466
11929
|
};
|
|
11467
|
-
accountContext?:
|
|
11930
|
+
accountContext?: QueryScheduleConferenceInfoHeadersAccountContext;
|
|
11468
11931
|
static names(): {
|
|
11469
11932
|
[key: string]: string;
|
|
11470
11933
|
};
|
|
@@ -11475,7 +11938,7 @@ export declare class QueryScheduleConferenceHeaders extends $tea.Model {
|
|
|
11475
11938
|
[key: string]: any;
|
|
11476
11939
|
});
|
|
11477
11940
|
}
|
|
11478
|
-
export declare class
|
|
11941
|
+
export declare class QueryScheduleConferenceInfoShrinkHeaders extends $tea.Model {
|
|
11479
11942
|
commonHeaders?: {
|
|
11480
11943
|
[key: string]: string;
|
|
11481
11944
|
};
|
|
@@ -11490,9 +11953,11 @@ export declare class QueryScheduleConferenceShrinkHeaders extends $tea.Model {
|
|
|
11490
11953
|
[key: string]: any;
|
|
11491
11954
|
});
|
|
11492
11955
|
}
|
|
11493
|
-
export declare class
|
|
11494
|
-
|
|
11956
|
+
export declare class QueryScheduleConferenceInfoRequest extends $tea.Model {
|
|
11957
|
+
maxResults?: number;
|
|
11958
|
+
nextToken?: string;
|
|
11495
11959
|
scheduleConferenceId?: string;
|
|
11960
|
+
tenantContext?: QueryScheduleConferenceInfoRequestTenantContext;
|
|
11496
11961
|
static names(): {
|
|
11497
11962
|
[key: string]: string;
|
|
11498
11963
|
};
|
|
@@ -11503,9 +11968,11 @@ export declare class QueryScheduleConferenceRequest extends $tea.Model {
|
|
|
11503
11968
|
[key: string]: any;
|
|
11504
11969
|
});
|
|
11505
11970
|
}
|
|
11506
|
-
export declare class
|
|
11507
|
-
|
|
11971
|
+
export declare class QueryScheduleConferenceInfoShrinkRequest extends $tea.Model {
|
|
11972
|
+
maxResults?: number;
|
|
11973
|
+
nextToken?: string;
|
|
11508
11974
|
scheduleConferenceId?: string;
|
|
11975
|
+
tenantContextShrink?: string;
|
|
11509
11976
|
static names(): {
|
|
11510
11977
|
[key: string]: string;
|
|
11511
11978
|
};
|
|
@@ -11516,15 +11983,13 @@ export declare class QueryScheduleConferenceShrinkRequest extends $tea.Model {
|
|
|
11516
11983
|
[key: string]: any;
|
|
11517
11984
|
});
|
|
11518
11985
|
}
|
|
11519
|
-
export declare class
|
|
11520
|
-
|
|
11521
|
-
|
|
11986
|
+
export declare class QueryScheduleConferenceInfoResponseBody extends $tea.Model {
|
|
11987
|
+
conferenceList?: QueryScheduleConferenceInfoResponseBodyConferenceList[];
|
|
11988
|
+
nextToken?: string;
|
|
11522
11989
|
requestId?: string;
|
|
11523
|
-
|
|
11524
|
-
|
|
11525
|
-
|
|
11526
|
-
title?: string;
|
|
11527
|
-
url?: string;
|
|
11990
|
+
totalCount?: number;
|
|
11991
|
+
vendorRequestId?: string;
|
|
11992
|
+
vendorType?: string;
|
|
11528
11993
|
static names(): {
|
|
11529
11994
|
[key: string]: string;
|
|
11530
11995
|
};
|
|
@@ -11535,12 +12000,12 @@ export declare class QueryScheduleConferenceResponseBody extends $tea.Model {
|
|
|
11535
12000
|
[key: string]: any;
|
|
11536
12001
|
});
|
|
11537
12002
|
}
|
|
11538
|
-
export declare class
|
|
12003
|
+
export declare class QueryScheduleConferenceInfoResponse extends $tea.Model {
|
|
11539
12004
|
headers?: {
|
|
11540
12005
|
[key: string]: string;
|
|
11541
12006
|
};
|
|
11542
12007
|
statusCode?: number;
|
|
11543
|
-
body?:
|
|
12008
|
+
body?: QueryScheduleConferenceInfoResponseBody;
|
|
11544
12009
|
static names(): {
|
|
11545
12010
|
[key: string]: string;
|
|
11546
12011
|
};
|
|
@@ -15709,6 +16174,30 @@ export declare class AddAttendeeResponseBodyContent extends $tea.Model {
|
|
|
15709
16174
|
[key: string]: any;
|
|
15710
16175
|
});
|
|
15711
16176
|
}
|
|
16177
|
+
export declare class AddDriveSpaceHeadersAccountContext extends $tea.Model {
|
|
16178
|
+
accountId?: string;
|
|
16179
|
+
static names(): {
|
|
16180
|
+
[key: string]: string;
|
|
16181
|
+
};
|
|
16182
|
+
static types(): {
|
|
16183
|
+
[key: string]: any;
|
|
16184
|
+
};
|
|
16185
|
+
constructor(map?: {
|
|
16186
|
+
[key: string]: any;
|
|
16187
|
+
});
|
|
16188
|
+
}
|
|
16189
|
+
export declare class AddDriveSpaceRequestTenantContext extends $tea.Model {
|
|
16190
|
+
tenantId?: string;
|
|
16191
|
+
static names(): {
|
|
16192
|
+
[key: string]: string;
|
|
16193
|
+
};
|
|
16194
|
+
static types(): {
|
|
16195
|
+
[key: string]: any;
|
|
16196
|
+
};
|
|
16197
|
+
constructor(map?: {
|
|
16198
|
+
[key: string]: any;
|
|
16199
|
+
});
|
|
16200
|
+
}
|
|
15712
16201
|
export declare class AddMeetingRoomsHeadersAccountContext extends $tea.Model {
|
|
15713
16202
|
accountId?: string;
|
|
15714
16203
|
static names(): {
|
|
@@ -16183,6 +16672,42 @@ export declare class CreateDeliveryPlanRequestTenantContext extends $tea.Model {
|
|
|
16183
16672
|
[key: string]: any;
|
|
16184
16673
|
});
|
|
16185
16674
|
}
|
|
16675
|
+
export declare class CreateDingtalkPersonalTodoTaskHeadersAccountContext extends $tea.Model {
|
|
16676
|
+
accountId?: string;
|
|
16677
|
+
static names(): {
|
|
16678
|
+
[key: string]: string;
|
|
16679
|
+
};
|
|
16680
|
+
static types(): {
|
|
16681
|
+
[key: string]: any;
|
|
16682
|
+
};
|
|
16683
|
+
constructor(map?: {
|
|
16684
|
+
[key: string]: any;
|
|
16685
|
+
});
|
|
16686
|
+
}
|
|
16687
|
+
export declare class CreateDingtalkPersonalTodoTaskRequestNotifyConfigs extends $tea.Model {
|
|
16688
|
+
dingNotify?: string;
|
|
16689
|
+
static names(): {
|
|
16690
|
+
[key: string]: string;
|
|
16691
|
+
};
|
|
16692
|
+
static types(): {
|
|
16693
|
+
[key: string]: any;
|
|
16694
|
+
};
|
|
16695
|
+
constructor(map?: {
|
|
16696
|
+
[key: string]: any;
|
|
16697
|
+
});
|
|
16698
|
+
}
|
|
16699
|
+
export declare class CreateDingtalkPersonalTodoTaskRequestTenantContext extends $tea.Model {
|
|
16700
|
+
tenantId?: string;
|
|
16701
|
+
static names(): {
|
|
16702
|
+
[key: string]: string;
|
|
16703
|
+
};
|
|
16704
|
+
static types(): {
|
|
16705
|
+
[key: string]: any;
|
|
16706
|
+
};
|
|
16707
|
+
constructor(map?: {
|
|
16708
|
+
[key: string]: any;
|
|
16709
|
+
});
|
|
16710
|
+
}
|
|
16186
16711
|
export declare class CreateEventHeadersAccountContext extends $tea.Model {
|
|
16187
16712
|
accountId?: string;
|
|
16188
16713
|
static names(): {
|
|
@@ -17048,6 +17573,30 @@ export declare class DeleteColumnsRequestTenantContext extends $tea.Model {
|
|
|
17048
17573
|
[key: string]: any;
|
|
17049
17574
|
});
|
|
17050
17575
|
}
|
|
17576
|
+
export declare class DeleteDriveSpaceHeadersAccountContext extends $tea.Model {
|
|
17577
|
+
accountId?: string;
|
|
17578
|
+
static names(): {
|
|
17579
|
+
[key: string]: string;
|
|
17580
|
+
};
|
|
17581
|
+
static types(): {
|
|
17582
|
+
[key: string]: any;
|
|
17583
|
+
};
|
|
17584
|
+
constructor(map?: {
|
|
17585
|
+
[key: string]: any;
|
|
17586
|
+
});
|
|
17587
|
+
}
|
|
17588
|
+
export declare class DeleteDriveSpaceRequestTenantContext extends $tea.Model {
|
|
17589
|
+
tenantId?: string;
|
|
17590
|
+
static names(): {
|
|
17591
|
+
[key: string]: string;
|
|
17592
|
+
};
|
|
17593
|
+
static types(): {
|
|
17594
|
+
[key: string]: any;
|
|
17595
|
+
};
|
|
17596
|
+
constructor(map?: {
|
|
17597
|
+
[key: string]: any;
|
|
17598
|
+
});
|
|
17599
|
+
}
|
|
17051
17600
|
export declare class DeleteEventHeadersAccountContext extends $tea.Model {
|
|
17052
17601
|
accountId?: string;
|
|
17053
17602
|
static names(): {
|
|
@@ -20174,6 +20723,49 @@ export declare class ListDentriesResponseBodyDentries extends $tea.Model {
|
|
|
20174
20723
|
[key: string]: any;
|
|
20175
20724
|
});
|
|
20176
20725
|
}
|
|
20726
|
+
export declare class ListDriveSpacesHeadersAccountContext extends $tea.Model {
|
|
20727
|
+
accountId?: string;
|
|
20728
|
+
static names(): {
|
|
20729
|
+
[key: string]: string;
|
|
20730
|
+
};
|
|
20731
|
+
static types(): {
|
|
20732
|
+
[key: string]: any;
|
|
20733
|
+
};
|
|
20734
|
+
constructor(map?: {
|
|
20735
|
+
[key: string]: any;
|
|
20736
|
+
});
|
|
20737
|
+
}
|
|
20738
|
+
export declare class ListDriveSpacesRequestTenantContext extends $tea.Model {
|
|
20739
|
+
tenantId?: string;
|
|
20740
|
+
static names(): {
|
|
20741
|
+
[key: string]: string;
|
|
20742
|
+
};
|
|
20743
|
+
static types(): {
|
|
20744
|
+
[key: string]: any;
|
|
20745
|
+
};
|
|
20746
|
+
constructor(map?: {
|
|
20747
|
+
[key: string]: any;
|
|
20748
|
+
});
|
|
20749
|
+
}
|
|
20750
|
+
export declare class ListDriveSpacesResponseBodySpaces extends $tea.Model {
|
|
20751
|
+
createTime?: string;
|
|
20752
|
+
modifyTime?: string;
|
|
20753
|
+
permissionMode?: string;
|
|
20754
|
+
quota?: number;
|
|
20755
|
+
spaceId?: string;
|
|
20756
|
+
spaceName?: string;
|
|
20757
|
+
spaceType?: string;
|
|
20758
|
+
usedQuota?: number;
|
|
20759
|
+
static names(): {
|
|
20760
|
+
[key: string]: string;
|
|
20761
|
+
};
|
|
20762
|
+
static types(): {
|
|
20763
|
+
[key: string]: any;
|
|
20764
|
+
};
|
|
20765
|
+
constructor(map?: {
|
|
20766
|
+
[key: string]: any;
|
|
20767
|
+
});
|
|
20768
|
+
}
|
|
20177
20769
|
export declare class ListEventsHeadersAccountContext extends $tea.Model {
|
|
20178
20770
|
accountId?: string;
|
|
20179
20771
|
static names(): {
|
|
@@ -22238,6 +22830,47 @@ export declare class QueryScheduleConferenceRequestTenantContext extends $tea.Mo
|
|
|
22238
22830
|
[key: string]: any;
|
|
22239
22831
|
});
|
|
22240
22832
|
}
|
|
22833
|
+
export declare class QueryScheduleConferenceInfoHeadersAccountContext extends $tea.Model {
|
|
22834
|
+
accountId?: string;
|
|
22835
|
+
static names(): {
|
|
22836
|
+
[key: string]: string;
|
|
22837
|
+
};
|
|
22838
|
+
static types(): {
|
|
22839
|
+
[key: string]: any;
|
|
22840
|
+
};
|
|
22841
|
+
constructor(map?: {
|
|
22842
|
+
[key: string]: any;
|
|
22843
|
+
});
|
|
22844
|
+
}
|
|
22845
|
+
export declare class QueryScheduleConferenceInfoRequestTenantContext extends $tea.Model {
|
|
22846
|
+
tenantId?: string;
|
|
22847
|
+
static names(): {
|
|
22848
|
+
[key: string]: string;
|
|
22849
|
+
};
|
|
22850
|
+
static types(): {
|
|
22851
|
+
[key: string]: any;
|
|
22852
|
+
};
|
|
22853
|
+
constructor(map?: {
|
|
22854
|
+
[key: string]: any;
|
|
22855
|
+
});
|
|
22856
|
+
}
|
|
22857
|
+
export declare class QueryScheduleConferenceInfoResponseBodyConferenceList extends $tea.Model {
|
|
22858
|
+
conferenceId?: string;
|
|
22859
|
+
endTime?: number;
|
|
22860
|
+
roomCode?: string;
|
|
22861
|
+
startTime?: number;
|
|
22862
|
+
status?: number;
|
|
22863
|
+
title?: string;
|
|
22864
|
+
static names(): {
|
|
22865
|
+
[key: string]: string;
|
|
22866
|
+
};
|
|
22867
|
+
static types(): {
|
|
22868
|
+
[key: string]: any;
|
|
22869
|
+
};
|
|
22870
|
+
constructor(map?: {
|
|
22871
|
+
[key: string]: any;
|
|
22872
|
+
});
|
|
22873
|
+
}
|
|
22241
22874
|
export declare class QueryUserHonorsHeadersAccountContext extends $tea.Model {
|
|
22242
22875
|
accountId?: string;
|
|
22243
22876
|
static names(): {
|
|
@@ -23657,6 +24290,22 @@ export default class Client extends OpenApi {
|
|
|
23657
24290
|
* @return AddAttendeeResponse
|
|
23658
24291
|
*/
|
|
23659
24292
|
addAttendee(request: AddAttendeeRequest): Promise<AddAttendeeResponse>;
|
|
24293
|
+
/**
|
|
24294
|
+
* @summary 新建钉盘空间
|
|
24295
|
+
*
|
|
24296
|
+
* @param tmpReq AddDriveSpaceRequest
|
|
24297
|
+
* @param tmpHeader AddDriveSpaceHeaders
|
|
24298
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24299
|
+
* @return AddDriveSpaceResponse
|
|
24300
|
+
*/
|
|
24301
|
+
addDriveSpaceWithOptions(tmpReq: AddDriveSpaceRequest, tmpHeader: AddDriveSpaceHeaders, runtime: $Util.RuntimeOptions): Promise<AddDriveSpaceResponse>;
|
|
24302
|
+
/**
|
|
24303
|
+
* @summary 新建钉盘空间
|
|
24304
|
+
*
|
|
24305
|
+
* @param request AddDriveSpaceRequest
|
|
24306
|
+
* @return AddDriveSpaceResponse
|
|
24307
|
+
*/
|
|
24308
|
+
addDriveSpace(request: AddDriveSpaceRequest): Promise<AddDriveSpaceResponse>;
|
|
23660
24309
|
/**
|
|
23661
24310
|
* @summary 预定会议室
|
|
23662
24311
|
*
|
|
@@ -23913,6 +24562,22 @@ export default class Client extends OpenApi {
|
|
|
23913
24562
|
* @return CreateDeliveryPlanResponse
|
|
23914
24563
|
*/
|
|
23915
24564
|
createDeliveryPlan(request: CreateDeliveryPlanRequest): Promise<CreateDeliveryPlanResponse>;
|
|
24565
|
+
/**
|
|
24566
|
+
* @summary 委托权限创建钉钉个人待办
|
|
24567
|
+
*
|
|
24568
|
+
* @param tmpReq CreateDingtalkPersonalTodoTaskRequest
|
|
24569
|
+
* @param tmpHeader CreateDingtalkPersonalTodoTaskHeaders
|
|
24570
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24571
|
+
* @return CreateDingtalkPersonalTodoTaskResponse
|
|
24572
|
+
*/
|
|
24573
|
+
createDingtalkPersonalTodoTaskWithOptions(tmpReq: CreateDingtalkPersonalTodoTaskRequest, tmpHeader: CreateDingtalkPersonalTodoTaskHeaders, runtime: $Util.RuntimeOptions): Promise<CreateDingtalkPersonalTodoTaskResponse>;
|
|
24574
|
+
/**
|
|
24575
|
+
* @summary 委托权限创建钉钉个人待办
|
|
24576
|
+
*
|
|
24577
|
+
* @param request CreateDingtalkPersonalTodoTaskRequest
|
|
24578
|
+
* @return CreateDingtalkPersonalTodoTaskResponse
|
|
24579
|
+
*/
|
|
24580
|
+
createDingtalkPersonalTodoTask(request: CreateDingtalkPersonalTodoTaskRequest): Promise<CreateDingtalkPersonalTodoTaskResponse>;
|
|
23916
24581
|
/**
|
|
23917
24582
|
* @summary 创建日程
|
|
23918
24583
|
*
|
|
@@ -24217,6 +24882,22 @@ export default class Client extends OpenApi {
|
|
|
24217
24882
|
* @return DeleteColumnsResponse
|
|
24218
24883
|
*/
|
|
24219
24884
|
deleteColumns(request: DeleteColumnsRequest): Promise<DeleteColumnsResponse>;
|
|
24885
|
+
/**
|
|
24886
|
+
* @summary 删除钉盘空间
|
|
24887
|
+
*
|
|
24888
|
+
* @param tmpReq DeleteDriveSpaceRequest
|
|
24889
|
+
* @param tmpHeader DeleteDriveSpaceHeaders
|
|
24890
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
24891
|
+
* @return DeleteDriveSpaceResponse
|
|
24892
|
+
*/
|
|
24893
|
+
deleteDriveSpaceWithOptions(tmpReq: DeleteDriveSpaceRequest, tmpHeader: DeleteDriveSpaceHeaders, runtime: $Util.RuntimeOptions): Promise<DeleteDriveSpaceResponse>;
|
|
24894
|
+
/**
|
|
24895
|
+
* @summary 删除钉盘空间
|
|
24896
|
+
*
|
|
24897
|
+
* @param request DeleteDriveSpaceRequest
|
|
24898
|
+
* @return DeleteDriveSpaceResponse
|
|
24899
|
+
*/
|
|
24900
|
+
deleteDriveSpace(request: DeleteDriveSpaceRequest): Promise<DeleteDriveSpaceResponse>;
|
|
24220
24901
|
/**
|
|
24221
24902
|
* @summary 删除日程
|
|
24222
24903
|
*
|
|
@@ -25301,6 +25982,22 @@ export default class Client extends OpenApi {
|
|
|
25301
25982
|
* @return ListDentriesResponse
|
|
25302
25983
|
*/
|
|
25303
25984
|
listDentries(request: ListDentriesRequest): Promise<ListDentriesResponse>;
|
|
25985
|
+
/**
|
|
25986
|
+
* @summary 获取钉盘空间列表
|
|
25987
|
+
*
|
|
25988
|
+
* @param tmpReq ListDriveSpacesRequest
|
|
25989
|
+
* @param tmpHeader ListDriveSpacesHeaders
|
|
25990
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
25991
|
+
* @return ListDriveSpacesResponse
|
|
25992
|
+
*/
|
|
25993
|
+
listDriveSpacesWithOptions(tmpReq: ListDriveSpacesRequest, tmpHeader: ListDriveSpacesHeaders, runtime: $Util.RuntimeOptions): Promise<ListDriveSpacesResponse>;
|
|
25994
|
+
/**
|
|
25995
|
+
* @summary 获取钉盘空间列表
|
|
25996
|
+
*
|
|
25997
|
+
* @param request ListDriveSpacesRequest
|
|
25998
|
+
* @return ListDriveSpacesResponse
|
|
25999
|
+
*/
|
|
26000
|
+
listDriveSpaces(request: ListDriveSpacesRequest): Promise<ListDriveSpacesResponse>;
|
|
25304
26001
|
/**
|
|
25305
26002
|
* @summary 查询日程列表
|
|
25306
26003
|
*
|
|
@@ -25717,6 +26414,22 @@ export default class Client extends OpenApi {
|
|
|
25717
26414
|
* @return QueryScheduleConferenceResponse
|
|
25718
26415
|
*/
|
|
25719
26416
|
queryScheduleConference(request: QueryScheduleConferenceRequest): Promise<QueryScheduleConferenceResponse>;
|
|
26417
|
+
/**
|
|
26418
|
+
* @summary 查询预约会议历史会议信息
|
|
26419
|
+
*
|
|
26420
|
+
* @param tmpReq QueryScheduleConferenceInfoRequest
|
|
26421
|
+
* @param tmpHeader QueryScheduleConferenceInfoHeaders
|
|
26422
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
26423
|
+
* @return QueryScheduleConferenceInfoResponse
|
|
26424
|
+
*/
|
|
26425
|
+
queryScheduleConferenceInfoWithOptions(tmpReq: QueryScheduleConferenceInfoRequest, tmpHeader: QueryScheduleConferenceInfoHeaders, runtime: $Util.RuntimeOptions): Promise<QueryScheduleConferenceInfoResponse>;
|
|
26426
|
+
/**
|
|
26427
|
+
* @summary 查询预约会议历史会议信息
|
|
26428
|
+
*
|
|
26429
|
+
* @param request QueryScheduleConferenceInfoRequest
|
|
26430
|
+
* @return QueryScheduleConferenceInfoResponse
|
|
26431
|
+
*/
|
|
26432
|
+
queryScheduleConferenceInfo(request: QueryScheduleConferenceInfoRequest): Promise<QueryScheduleConferenceInfoResponse>;
|
|
25720
26433
|
/**
|
|
25721
26434
|
* @summary 查询员工勋章列表
|
|
25722
26435
|
*
|