@larksuiteoapi/node-sdk 1.20.0 → 1.21.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/es/index.js +196 -105
- package/lib/index.js +196 -105
- package/package.json +1 -1
- package/types/index.d.ts +1087 -400
package/types/index.d.ts
CHANGED
|
@@ -394,7 +394,7 @@ declare abstract class Client$1 {
|
|
|
394
394
|
};
|
|
395
395
|
};
|
|
396
396
|
/**
|
|
397
|
-
*
|
|
397
|
+
* 管理后台-数据报表
|
|
398
398
|
*/
|
|
399
399
|
admin: {
|
|
400
400
|
/**
|
|
@@ -1725,6 +1725,42 @@ declare abstract class Client$1 {
|
|
|
1725
1725
|
data?: {} | undefined;
|
|
1726
1726
|
}>;
|
|
1727
1727
|
};
|
|
1728
|
+
/**
|
|
1729
|
+
* application.contacts_range
|
|
1730
|
+
*/
|
|
1731
|
+
applicationContactsRange: {
|
|
1732
|
+
/**
|
|
1733
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.contacts_range&apiName=patch&version=v6 click to debug }
|
|
1734
|
+
*
|
|
1735
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=application&resource=application.contacts_range&version=v6 document }
|
|
1736
|
+
*/
|
|
1737
|
+
patch: (payload?: {
|
|
1738
|
+
data: {
|
|
1739
|
+
contacts_range_type: "equal_to_availability" | "some" | "all";
|
|
1740
|
+
add_visible_list?: {
|
|
1741
|
+
user_ids?: Array<string>;
|
|
1742
|
+
department_ids?: Array<string>;
|
|
1743
|
+
group_ids?: Array<string>;
|
|
1744
|
+
};
|
|
1745
|
+
del_visible_list?: {
|
|
1746
|
+
user_ids?: Array<string>;
|
|
1747
|
+
department_ids?: Array<string>;
|
|
1748
|
+
group_ids?: Array<string>;
|
|
1749
|
+
};
|
|
1750
|
+
};
|
|
1751
|
+
params?: {
|
|
1752
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
1753
|
+
department_id_type?: "open_department_id" | "department_id";
|
|
1754
|
+
};
|
|
1755
|
+
path: {
|
|
1756
|
+
app_id: string;
|
|
1757
|
+
};
|
|
1758
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
1759
|
+
code?: number | undefined;
|
|
1760
|
+
msg?: string | undefined;
|
|
1761
|
+
data?: {} | undefined;
|
|
1762
|
+
}>;
|
|
1763
|
+
};
|
|
1728
1764
|
/**
|
|
1729
1765
|
* 应用
|
|
1730
1766
|
*/
|
|
@@ -2033,6 +2069,47 @@ declare abstract class Client$1 {
|
|
|
2033
2069
|
}[] | undefined;
|
|
2034
2070
|
} | undefined;
|
|
2035
2071
|
}>;
|
|
2072
|
+
/**
|
|
2073
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.visibility&apiName=patch&version=v6 click to debug }
|
|
2074
|
+
*
|
|
2075
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=application&resource=application.visibility&version=v6 document }
|
|
2076
|
+
*/
|
|
2077
|
+
patch: (payload?: {
|
|
2078
|
+
data?: {
|
|
2079
|
+
add_visible_list?: {
|
|
2080
|
+
user_ids?: Array<string>;
|
|
2081
|
+
department_ids?: Array<string>;
|
|
2082
|
+
group_ids?: Array<string>;
|
|
2083
|
+
};
|
|
2084
|
+
del_visible_list?: {
|
|
2085
|
+
user_ids?: Array<string>;
|
|
2086
|
+
department_ids?: Array<string>;
|
|
2087
|
+
group_ids?: Array<string>;
|
|
2088
|
+
};
|
|
2089
|
+
add_invisible_list?: {
|
|
2090
|
+
user_ids?: Array<string>;
|
|
2091
|
+
department_ids?: Array<string>;
|
|
2092
|
+
group_ids?: Array<string>;
|
|
2093
|
+
};
|
|
2094
|
+
del_invisible_list?: {
|
|
2095
|
+
user_ids?: Array<string>;
|
|
2096
|
+
department_ids?: Array<string>;
|
|
2097
|
+
group_ids?: Array<string>;
|
|
2098
|
+
};
|
|
2099
|
+
is_visible_to_all?: boolean;
|
|
2100
|
+
};
|
|
2101
|
+
params?: {
|
|
2102
|
+
department_id_type?: "open_department_id" | "department_id";
|
|
2103
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
2104
|
+
};
|
|
2105
|
+
path: {
|
|
2106
|
+
app_id: string;
|
|
2107
|
+
};
|
|
2108
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
2109
|
+
code?: number | undefined;
|
|
2110
|
+
msg?: string | undefined;
|
|
2111
|
+
data?: {} | undefined;
|
|
2112
|
+
}>;
|
|
2036
2113
|
};
|
|
2037
2114
|
};
|
|
2038
2115
|
/**
|
|
@@ -2040,7 +2117,7 @@ declare abstract class Client$1 {
|
|
|
2040
2117
|
*/
|
|
2041
2118
|
approval: {
|
|
2042
2119
|
/**
|
|
2043
|
-
*
|
|
2120
|
+
* 原生审批定义
|
|
2044
2121
|
*/
|
|
2045
2122
|
approval: {
|
|
2046
2123
|
/**
|
|
@@ -3307,7 +3384,7 @@ declare abstract class Client$1 {
|
|
|
3307
3384
|
}>;
|
|
3308
3385
|
};
|
|
3309
3386
|
/**
|
|
3310
|
-
*
|
|
3387
|
+
* 原生审批任务
|
|
3311
3388
|
*/
|
|
3312
3389
|
task: {
|
|
3313
3390
|
/**
|
|
@@ -5667,6 +5744,86 @@ declare abstract class Client$1 {
|
|
|
5667
5744
|
} | undefined;
|
|
5668
5745
|
}>;
|
|
5669
5746
|
};
|
|
5747
|
+
/**
|
|
5748
|
+
* authorize
|
|
5749
|
+
*/
|
|
5750
|
+
authorize: {
|
|
5751
|
+
/**
|
|
5752
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=authorize&apiName=get&version=v1 click to debug }
|
|
5753
|
+
*
|
|
5754
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=authen&resource=authorize&version=v1 document }
|
|
5755
|
+
*/
|
|
5756
|
+
get: (payload?: {
|
|
5757
|
+
params: {
|
|
5758
|
+
app_id: string;
|
|
5759
|
+
redirect_uri: string;
|
|
5760
|
+
scope?: string;
|
|
5761
|
+
state?: string;
|
|
5762
|
+
};
|
|
5763
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5764
|
+
code?: number | undefined;
|
|
5765
|
+
msg?: string | undefined;
|
|
5766
|
+
data?: {
|
|
5767
|
+
redirect_uri?: string | undefined;
|
|
5768
|
+
code?: string | undefined;
|
|
5769
|
+
state?: string | undefined;
|
|
5770
|
+
} | undefined;
|
|
5771
|
+
}>;
|
|
5772
|
+
};
|
|
5773
|
+
/**
|
|
5774
|
+
* oidc.access_token
|
|
5775
|
+
*/
|
|
5776
|
+
oidcAccessToken: {
|
|
5777
|
+
/**
|
|
5778
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=oidc.access_token&apiName=create&version=v1 click to debug }
|
|
5779
|
+
*
|
|
5780
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=authen&resource=oidc.access_token&version=v1 document }
|
|
5781
|
+
*/
|
|
5782
|
+
create: (payload?: {
|
|
5783
|
+
data: {
|
|
5784
|
+
grant_type: string;
|
|
5785
|
+
code: string;
|
|
5786
|
+
};
|
|
5787
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5788
|
+
code?: number | undefined;
|
|
5789
|
+
msg?: string | undefined;
|
|
5790
|
+
data?: {
|
|
5791
|
+
access_token: string;
|
|
5792
|
+
refresh_token?: string | undefined;
|
|
5793
|
+
token_type: string;
|
|
5794
|
+
expires_in?: number | undefined;
|
|
5795
|
+
refresh_expires_in?: number | undefined;
|
|
5796
|
+
scope?: string | undefined;
|
|
5797
|
+
} | undefined;
|
|
5798
|
+
}>;
|
|
5799
|
+
};
|
|
5800
|
+
/**
|
|
5801
|
+
* oidc.refresh_access_token
|
|
5802
|
+
*/
|
|
5803
|
+
oidcRefreshAccessToken: {
|
|
5804
|
+
/**
|
|
5805
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=oidc.refresh_access_token&apiName=create&version=v1 click to debug }
|
|
5806
|
+
*
|
|
5807
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=authen&resource=oidc.refresh_access_token&version=v1 document }
|
|
5808
|
+
*/
|
|
5809
|
+
create: (payload?: {
|
|
5810
|
+
data: {
|
|
5811
|
+
grant_type: string;
|
|
5812
|
+
refresh_token: string;
|
|
5813
|
+
};
|
|
5814
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5815
|
+
code?: number | undefined;
|
|
5816
|
+
msg?: string | undefined;
|
|
5817
|
+
data?: {
|
|
5818
|
+
access_token: string;
|
|
5819
|
+
refresh_token?: string | undefined;
|
|
5820
|
+
token_type: string;
|
|
5821
|
+
expires_in?: number | undefined;
|
|
5822
|
+
refresh_expires_in?: number | undefined;
|
|
5823
|
+
scope?: string | undefined;
|
|
5824
|
+
} | undefined;
|
|
5825
|
+
}>;
|
|
5826
|
+
};
|
|
5670
5827
|
/**
|
|
5671
5828
|
* refresh_access_token
|
|
5672
5829
|
*/
|
|
@@ -7042,6 +7199,7 @@ declare abstract class Client$1 {
|
|
|
7042
7199
|
name?: string;
|
|
7043
7200
|
folder_token?: string;
|
|
7044
7201
|
without_content?: boolean;
|
|
7202
|
+
time_zone?: string;
|
|
7045
7203
|
};
|
|
7046
7204
|
path: {
|
|
7047
7205
|
app_token: string;
|
|
@@ -7056,6 +7214,8 @@ declare abstract class Client$1 {
|
|
|
7056
7214
|
revision?: number | undefined;
|
|
7057
7215
|
folder_token?: string | undefined;
|
|
7058
7216
|
url?: string | undefined;
|
|
7217
|
+
default_table_id?: string | undefined;
|
|
7218
|
+
time_zone?: string | undefined;
|
|
7059
7219
|
} | undefined;
|
|
7060
7220
|
} | undefined;
|
|
7061
7221
|
}>;
|
|
@@ -7068,6 +7228,7 @@ declare abstract class Client$1 {
|
|
|
7068
7228
|
data?: {
|
|
7069
7229
|
name?: string;
|
|
7070
7230
|
folder_token?: string;
|
|
7231
|
+
time_zone?: string;
|
|
7071
7232
|
};
|
|
7072
7233
|
params?: {
|
|
7073
7234
|
customized_config?: boolean;
|
|
@@ -7085,6 +7246,8 @@ declare abstract class Client$1 {
|
|
|
7085
7246
|
revision?: number | undefined;
|
|
7086
7247
|
folder_token?: string | undefined;
|
|
7087
7248
|
url?: string | undefined;
|
|
7249
|
+
default_table_id?: string | undefined;
|
|
7250
|
+
time_zone?: string | undefined;
|
|
7088
7251
|
} | undefined;
|
|
7089
7252
|
} | undefined;
|
|
7090
7253
|
}>;
|
|
@@ -7112,6 +7275,7 @@ declare abstract class Client$1 {
|
|
|
7112
7275
|
name?: string | undefined;
|
|
7113
7276
|
revision?: number | undefined;
|
|
7114
7277
|
is_advanced?: boolean | undefined;
|
|
7278
|
+
time_zone?: string | undefined;
|
|
7115
7279
|
} | undefined;
|
|
7116
7280
|
} | undefined;
|
|
7117
7281
|
}>;
|
|
@@ -7144,6 +7308,7 @@ declare abstract class Client$1 {
|
|
|
7144
7308
|
app_token?: string | undefined;
|
|
7145
7309
|
name?: string | undefined;
|
|
7146
7310
|
is_advanced?: boolean | undefined;
|
|
7311
|
+
time_zone?: string | undefined;
|
|
7147
7312
|
} | undefined;
|
|
7148
7313
|
} | undefined;
|
|
7149
7314
|
}>;
|
|
@@ -7237,9 +7402,9 @@ declare abstract class Client$1 {
|
|
|
7237
7402
|
data: {
|
|
7238
7403
|
role_name: string;
|
|
7239
7404
|
table_roles: Array<{
|
|
7405
|
+
table_perm: number;
|
|
7240
7406
|
table_name?: string;
|
|
7241
7407
|
table_id?: string;
|
|
7242
|
-
table_perm: number;
|
|
7243
7408
|
rec_rule?: {
|
|
7244
7409
|
conditions: Array<{
|
|
7245
7410
|
field_name: string;
|
|
@@ -7249,7 +7414,7 @@ declare abstract class Client$1 {
|
|
|
7249
7414
|
conjunction?: "and" | "or";
|
|
7250
7415
|
other_perm?: number;
|
|
7251
7416
|
};
|
|
7252
|
-
field_perm?:
|
|
7417
|
+
field_perm?: Record<string, number>;
|
|
7253
7418
|
allow_add_record?: boolean;
|
|
7254
7419
|
allow_delete_record?: boolean;
|
|
7255
7420
|
}>;
|
|
@@ -7269,9 +7434,9 @@ declare abstract class Client$1 {
|
|
|
7269
7434
|
role_name: string;
|
|
7270
7435
|
role_id?: string | undefined;
|
|
7271
7436
|
table_roles: Array<{
|
|
7437
|
+
table_perm: number;
|
|
7272
7438
|
table_name?: string;
|
|
7273
7439
|
table_id?: string;
|
|
7274
|
-
table_perm: number;
|
|
7275
7440
|
rec_rule?: {
|
|
7276
7441
|
conditions: Array<{
|
|
7277
7442
|
field_name: string;
|
|
@@ -7282,7 +7447,7 @@ declare abstract class Client$1 {
|
|
|
7282
7447
|
conjunction?: "and" | "or";
|
|
7283
7448
|
other_perm?: number;
|
|
7284
7449
|
};
|
|
7285
|
-
field_perm?:
|
|
7450
|
+
field_perm?: Record<string, number>;
|
|
7286
7451
|
allow_add_record?: boolean;
|
|
7287
7452
|
allow_delete_record?: boolean;
|
|
7288
7453
|
}>;
|
|
@@ -7327,9 +7492,9 @@ declare abstract class Client$1 {
|
|
|
7327
7492
|
role_name: string;
|
|
7328
7493
|
role_id?: string | undefined;
|
|
7329
7494
|
table_roles: Array<{
|
|
7495
|
+
table_perm: number;
|
|
7330
7496
|
table_name?: string;
|
|
7331
7497
|
table_id?: string;
|
|
7332
|
-
table_perm: number;
|
|
7333
7498
|
rec_rule?: {
|
|
7334
7499
|
conditions: Array<{
|
|
7335
7500
|
field_name: string;
|
|
@@ -7340,7 +7505,7 @@ declare abstract class Client$1 {
|
|
|
7340
7505
|
conjunction?: "and" | "or";
|
|
7341
7506
|
other_perm?: number;
|
|
7342
7507
|
};
|
|
7343
|
-
field_perm?:
|
|
7508
|
+
field_perm?: Record<string, number>;
|
|
7344
7509
|
allow_add_record?: boolean;
|
|
7345
7510
|
allow_delete_record?: boolean;
|
|
7346
7511
|
}>;
|
|
@@ -7378,9 +7543,9 @@ declare abstract class Client$1 {
|
|
|
7378
7543
|
role_name: string;
|
|
7379
7544
|
role_id?: string | undefined;
|
|
7380
7545
|
table_roles: Array<{
|
|
7546
|
+
table_perm: number;
|
|
7381
7547
|
table_name?: string;
|
|
7382
7548
|
table_id?: string;
|
|
7383
|
-
table_perm: number;
|
|
7384
7549
|
rec_rule?: {
|
|
7385
7550
|
conditions: Array<{
|
|
7386
7551
|
field_name: string;
|
|
@@ -7391,7 +7556,7 @@ declare abstract class Client$1 {
|
|
|
7391
7556
|
conjunction?: "and" | "or";
|
|
7392
7557
|
other_perm?: number;
|
|
7393
7558
|
};
|
|
7394
|
-
field_perm?:
|
|
7559
|
+
field_perm?: Record<string, number>;
|
|
7395
7560
|
allow_add_record?: boolean;
|
|
7396
7561
|
allow_delete_record?: boolean;
|
|
7397
7562
|
}>;
|
|
@@ -7421,9 +7586,9 @@ declare abstract class Client$1 {
|
|
|
7421
7586
|
data: {
|
|
7422
7587
|
role_name: string;
|
|
7423
7588
|
table_roles: Array<{
|
|
7589
|
+
table_perm: number;
|
|
7424
7590
|
table_name?: string;
|
|
7425
7591
|
table_id?: string;
|
|
7426
|
-
table_perm: number;
|
|
7427
7592
|
rec_rule?: {
|
|
7428
7593
|
conditions: Array<{
|
|
7429
7594
|
field_name: string;
|
|
@@ -7433,7 +7598,7 @@ declare abstract class Client$1 {
|
|
|
7433
7598
|
conjunction?: "and" | "or";
|
|
7434
7599
|
other_perm?: number;
|
|
7435
7600
|
};
|
|
7436
|
-
field_perm?:
|
|
7601
|
+
field_perm?: Record<string, number>;
|
|
7437
7602
|
allow_add_record?: boolean;
|
|
7438
7603
|
allow_delete_record?: boolean;
|
|
7439
7604
|
}>;
|
|
@@ -7454,9 +7619,9 @@ declare abstract class Client$1 {
|
|
|
7454
7619
|
role_name: string;
|
|
7455
7620
|
role_id?: string | undefined;
|
|
7456
7621
|
table_roles: Array<{
|
|
7622
|
+
table_perm: number;
|
|
7457
7623
|
table_name?: string;
|
|
7458
7624
|
table_id?: string;
|
|
7459
|
-
table_perm: number;
|
|
7460
7625
|
rec_rule?: {
|
|
7461
7626
|
conditions: Array<{
|
|
7462
7627
|
field_name: string;
|
|
@@ -7467,7 +7632,7 @@ declare abstract class Client$1 {
|
|
|
7467
7632
|
conjunction?: "and" | "or";
|
|
7468
7633
|
other_perm?: number;
|
|
7469
7634
|
};
|
|
7470
|
-
field_perm?:
|
|
7635
|
+
field_perm?: Record<string, number>;
|
|
7471
7636
|
allow_add_record?: boolean;
|
|
7472
7637
|
allow_delete_record?: boolean;
|
|
7473
7638
|
}>;
|
|
@@ -7669,6 +7834,7 @@ declare abstract class Client$1 {
|
|
|
7669
7834
|
fields?: {
|
|
7670
7835
|
field_name: string;
|
|
7671
7836
|
type: number;
|
|
7837
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7672
7838
|
property?: {
|
|
7673
7839
|
options?: {
|
|
7674
7840
|
name?: string | undefined;
|
|
@@ -7767,6 +7933,7 @@ declare abstract class Client$1 {
|
|
|
7767
7933
|
fields?: {
|
|
7768
7934
|
field_name: string;
|
|
7769
7935
|
type: number;
|
|
7936
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7770
7937
|
property?: {
|
|
7771
7938
|
options?: {
|
|
7772
7939
|
name?: string | undefined;
|
|
@@ -8115,10 +8282,7 @@ declare abstract class Client$1 {
|
|
|
8115
8282
|
symbol?: string | undefined;
|
|
8116
8283
|
} | undefined;
|
|
8117
8284
|
} | undefined;
|
|
8118
|
-
description?:
|
|
8119
|
-
disable_sync?: boolean | undefined;
|
|
8120
|
-
text?: string | undefined;
|
|
8121
|
-
} | undefined;
|
|
8285
|
+
description?: string | undefined;
|
|
8122
8286
|
is_primary?: boolean | undefined;
|
|
8123
8287
|
field_id?: string | undefined;
|
|
8124
8288
|
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
@@ -8194,10 +8358,7 @@ declare abstract class Client$1 {
|
|
|
8194
8358
|
symbol?: string | undefined;
|
|
8195
8359
|
} | undefined;
|
|
8196
8360
|
} | undefined;
|
|
8197
|
-
description?:
|
|
8198
|
-
disable_sync?: boolean | undefined;
|
|
8199
|
-
text?: string | undefined;
|
|
8200
|
-
} | undefined;
|
|
8361
|
+
description?: string | undefined;
|
|
8201
8362
|
is_primary?: boolean | undefined;
|
|
8202
8363
|
field_id?: string | undefined;
|
|
8203
8364
|
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
@@ -8507,22 +8668,6 @@ declare abstract class Client$1 {
|
|
|
8507
8668
|
batchCreate: (payload?: {
|
|
8508
8669
|
data: {
|
|
8509
8670
|
records: Array<{
|
|
8510
|
-
created_by?: {
|
|
8511
|
-
id?: string;
|
|
8512
|
-
name?: string;
|
|
8513
|
-
en_name?: string;
|
|
8514
|
-
email?: string;
|
|
8515
|
-
avatar_url?: string;
|
|
8516
|
-
};
|
|
8517
|
-
created_time?: number;
|
|
8518
|
-
last_modified_by?: {
|
|
8519
|
-
id?: string;
|
|
8520
|
-
name?: string;
|
|
8521
|
-
en_name?: string;
|
|
8522
|
-
email?: string;
|
|
8523
|
-
avatar_url?: string;
|
|
8524
|
-
};
|
|
8525
|
-
last_modified_time?: number;
|
|
8526
8671
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8527
8672
|
text?: string;
|
|
8528
8673
|
link?: string;
|
|
@@ -8552,6 +8697,22 @@ declare abstract class Client$1 {
|
|
|
8552
8697
|
url?: string;
|
|
8553
8698
|
tmp_url?: string;
|
|
8554
8699
|
}>>;
|
|
8700
|
+
created_by?: {
|
|
8701
|
+
id?: string;
|
|
8702
|
+
name?: string;
|
|
8703
|
+
en_name?: string;
|
|
8704
|
+
email?: string;
|
|
8705
|
+
avatar_url?: string;
|
|
8706
|
+
};
|
|
8707
|
+
created_time?: number;
|
|
8708
|
+
last_modified_by?: {
|
|
8709
|
+
id?: string;
|
|
8710
|
+
name?: string;
|
|
8711
|
+
en_name?: string;
|
|
8712
|
+
email?: string;
|
|
8713
|
+
avatar_url?: string;
|
|
8714
|
+
};
|
|
8715
|
+
last_modified_time?: number;
|
|
8555
8716
|
}>;
|
|
8556
8717
|
};
|
|
8557
8718
|
params?: {
|
|
@@ -8567,23 +8728,6 @@ declare abstract class Client$1 {
|
|
|
8567
8728
|
msg?: string | undefined;
|
|
8568
8729
|
data?: {
|
|
8569
8730
|
records?: {
|
|
8570
|
-
record_id?: string | undefined;
|
|
8571
|
-
created_by?: {
|
|
8572
|
-
id?: string | undefined;
|
|
8573
|
-
name?: string | undefined;
|
|
8574
|
-
en_name?: string | undefined;
|
|
8575
|
-
email?: string | undefined;
|
|
8576
|
-
avatar_url?: string | undefined;
|
|
8577
|
-
} | undefined;
|
|
8578
|
-
created_time?: number | undefined;
|
|
8579
|
-
last_modified_by?: {
|
|
8580
|
-
id?: string | undefined;
|
|
8581
|
-
name?: string | undefined;
|
|
8582
|
-
en_name?: string | undefined;
|
|
8583
|
-
email?: string | undefined;
|
|
8584
|
-
avatar_url?: string | undefined;
|
|
8585
|
-
} | undefined;
|
|
8586
|
-
last_modified_time?: number | undefined;
|
|
8587
8731
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8588
8732
|
text?: string;
|
|
8589
8733
|
link?: string;
|
|
@@ -8613,6 +8757,23 @@ declare abstract class Client$1 {
|
|
|
8613
8757
|
url?: string;
|
|
8614
8758
|
tmp_url?: string;
|
|
8615
8759
|
}>>;
|
|
8760
|
+
record_id?: string | undefined;
|
|
8761
|
+
created_by?: {
|
|
8762
|
+
id?: string | undefined;
|
|
8763
|
+
name?: string | undefined;
|
|
8764
|
+
en_name?: string | undefined;
|
|
8765
|
+
email?: string | undefined;
|
|
8766
|
+
avatar_url?: string | undefined;
|
|
8767
|
+
} | undefined;
|
|
8768
|
+
created_time?: number | undefined;
|
|
8769
|
+
last_modified_by?: {
|
|
8770
|
+
id?: string | undefined;
|
|
8771
|
+
name?: string | undefined;
|
|
8772
|
+
en_name?: string | undefined;
|
|
8773
|
+
email?: string | undefined;
|
|
8774
|
+
avatar_url?: string | undefined;
|
|
8775
|
+
} | undefined;
|
|
8776
|
+
last_modified_time?: number | undefined;
|
|
8616
8777
|
}[] | undefined;
|
|
8617
8778
|
} | undefined;
|
|
8618
8779
|
}>;
|
|
@@ -8659,23 +8820,6 @@ declare abstract class Client$1 {
|
|
|
8659
8820
|
batchUpdate: (payload?: {
|
|
8660
8821
|
data: {
|
|
8661
8822
|
records: Array<{
|
|
8662
|
-
record_id?: string;
|
|
8663
|
-
created_by?: {
|
|
8664
|
-
id?: string;
|
|
8665
|
-
name?: string;
|
|
8666
|
-
en_name?: string;
|
|
8667
|
-
email?: string;
|
|
8668
|
-
avatar_url?: string;
|
|
8669
|
-
};
|
|
8670
|
-
created_time?: number;
|
|
8671
|
-
last_modified_by?: {
|
|
8672
|
-
id?: string;
|
|
8673
|
-
name?: string;
|
|
8674
|
-
en_name?: string;
|
|
8675
|
-
email?: string;
|
|
8676
|
-
avatar_url?: string;
|
|
8677
|
-
};
|
|
8678
|
-
last_modified_time?: number;
|
|
8679
8823
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8680
8824
|
text?: string;
|
|
8681
8825
|
link?: string;
|
|
@@ -8705,6 +8849,23 @@ declare abstract class Client$1 {
|
|
|
8705
8849
|
url?: string;
|
|
8706
8850
|
tmp_url?: string;
|
|
8707
8851
|
}>>;
|
|
8852
|
+
record_id?: string;
|
|
8853
|
+
created_by?: {
|
|
8854
|
+
id?: string;
|
|
8855
|
+
name?: string;
|
|
8856
|
+
en_name?: string;
|
|
8857
|
+
email?: string;
|
|
8858
|
+
avatar_url?: string;
|
|
8859
|
+
};
|
|
8860
|
+
created_time?: number;
|
|
8861
|
+
last_modified_by?: {
|
|
8862
|
+
id?: string;
|
|
8863
|
+
name?: string;
|
|
8864
|
+
en_name?: string;
|
|
8865
|
+
email?: string;
|
|
8866
|
+
avatar_url?: string;
|
|
8867
|
+
};
|
|
8868
|
+
last_modified_time?: number;
|
|
8708
8869
|
}>;
|
|
8709
8870
|
};
|
|
8710
8871
|
params?: {
|
|
@@ -8719,23 +8880,6 @@ declare abstract class Client$1 {
|
|
|
8719
8880
|
msg?: string | undefined;
|
|
8720
8881
|
data?: {
|
|
8721
8882
|
records?: {
|
|
8722
|
-
record_id?: string | undefined;
|
|
8723
|
-
created_by?: {
|
|
8724
|
-
id?: string | undefined;
|
|
8725
|
-
name?: string | undefined;
|
|
8726
|
-
en_name?: string | undefined;
|
|
8727
|
-
email?: string | undefined;
|
|
8728
|
-
avatar_url?: string | undefined;
|
|
8729
|
-
} | undefined;
|
|
8730
|
-
created_time?: number | undefined;
|
|
8731
|
-
last_modified_by?: {
|
|
8732
|
-
id?: string | undefined;
|
|
8733
|
-
name?: string | undefined;
|
|
8734
|
-
en_name?: string | undefined;
|
|
8735
|
-
email?: string | undefined;
|
|
8736
|
-
avatar_url?: string | undefined;
|
|
8737
|
-
} | undefined;
|
|
8738
|
-
last_modified_time?: number | undefined;
|
|
8739
8883
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8740
8884
|
text?: string;
|
|
8741
8885
|
link?: string;
|
|
@@ -8765,6 +8909,23 @@ declare abstract class Client$1 {
|
|
|
8765
8909
|
url?: string;
|
|
8766
8910
|
tmp_url?: string;
|
|
8767
8911
|
}>>;
|
|
8912
|
+
record_id?: string | undefined;
|
|
8913
|
+
created_by?: {
|
|
8914
|
+
id?: string | undefined;
|
|
8915
|
+
name?: string | undefined;
|
|
8916
|
+
en_name?: string | undefined;
|
|
8917
|
+
email?: string | undefined;
|
|
8918
|
+
avatar_url?: string | undefined;
|
|
8919
|
+
} | undefined;
|
|
8920
|
+
created_time?: number | undefined;
|
|
8921
|
+
last_modified_by?: {
|
|
8922
|
+
id?: string | undefined;
|
|
8923
|
+
name?: string | undefined;
|
|
8924
|
+
en_name?: string | undefined;
|
|
8925
|
+
email?: string | undefined;
|
|
8926
|
+
avatar_url?: string | undefined;
|
|
8927
|
+
} | undefined;
|
|
8928
|
+
last_modified_time?: number | undefined;
|
|
8768
8929
|
}[] | undefined;
|
|
8769
8930
|
} | undefined;
|
|
8770
8931
|
}>;
|
|
@@ -8823,23 +8984,6 @@ declare abstract class Client$1 {
|
|
|
8823
8984
|
msg?: string | undefined;
|
|
8824
8985
|
data?: {
|
|
8825
8986
|
record?: {
|
|
8826
|
-
record_id?: string | undefined;
|
|
8827
|
-
created_by?: {
|
|
8828
|
-
id?: string | undefined;
|
|
8829
|
-
name?: string | undefined;
|
|
8830
|
-
en_name?: string | undefined;
|
|
8831
|
-
email?: string | undefined;
|
|
8832
|
-
avatar_url?: string | undefined;
|
|
8833
|
-
} | undefined;
|
|
8834
|
-
created_time?: number | undefined;
|
|
8835
|
-
last_modified_by?: {
|
|
8836
|
-
id?: string | undefined;
|
|
8837
|
-
name?: string | undefined;
|
|
8838
|
-
en_name?: string | undefined;
|
|
8839
|
-
email?: string | undefined;
|
|
8840
|
-
avatar_url?: string | undefined;
|
|
8841
|
-
} | undefined;
|
|
8842
|
-
last_modified_time?: number | undefined;
|
|
8843
8987
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8844
8988
|
text?: string;
|
|
8845
8989
|
link?: string;
|
|
@@ -8869,6 +9013,23 @@ declare abstract class Client$1 {
|
|
|
8869
9013
|
url?: string;
|
|
8870
9014
|
tmp_url?: string;
|
|
8871
9015
|
}>>;
|
|
9016
|
+
record_id?: string | undefined;
|
|
9017
|
+
created_by?: {
|
|
9018
|
+
id?: string | undefined;
|
|
9019
|
+
name?: string | undefined;
|
|
9020
|
+
en_name?: string | undefined;
|
|
9021
|
+
email?: string | undefined;
|
|
9022
|
+
avatar_url?: string | undefined;
|
|
9023
|
+
} | undefined;
|
|
9024
|
+
created_time?: number | undefined;
|
|
9025
|
+
last_modified_by?: {
|
|
9026
|
+
id?: string | undefined;
|
|
9027
|
+
name?: string | undefined;
|
|
9028
|
+
en_name?: string | undefined;
|
|
9029
|
+
email?: string | undefined;
|
|
9030
|
+
avatar_url?: string | undefined;
|
|
9031
|
+
} | undefined;
|
|
9032
|
+
last_modified_time?: number | undefined;
|
|
8872
9033
|
} | undefined;
|
|
8873
9034
|
} | undefined;
|
|
8874
9035
|
}>;
|
|
@@ -8913,6 +9074,7 @@ declare abstract class Client$1 {
|
|
|
8913
9074
|
text_field_as_array?: boolean;
|
|
8914
9075
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
8915
9076
|
display_formula_ref?: boolean;
|
|
9077
|
+
with_shared_url?: boolean;
|
|
8916
9078
|
automatic_fields?: boolean;
|
|
8917
9079
|
};
|
|
8918
9080
|
path: {
|
|
@@ -8925,23 +9087,6 @@ declare abstract class Client$1 {
|
|
|
8925
9087
|
msg?: string | undefined;
|
|
8926
9088
|
data?: {
|
|
8927
9089
|
record?: {
|
|
8928
|
-
record_id?: string | undefined;
|
|
8929
|
-
created_by?: {
|
|
8930
|
-
id?: string | undefined;
|
|
8931
|
-
name?: string | undefined;
|
|
8932
|
-
en_name?: string | undefined;
|
|
8933
|
-
email?: string | undefined;
|
|
8934
|
-
avatar_url?: string | undefined;
|
|
8935
|
-
} | undefined;
|
|
8936
|
-
created_time?: number | undefined;
|
|
8937
|
-
last_modified_by?: {
|
|
8938
|
-
id?: string | undefined;
|
|
8939
|
-
name?: string | undefined;
|
|
8940
|
-
en_name?: string | undefined;
|
|
8941
|
-
email?: string | undefined;
|
|
8942
|
-
avatar_url?: string | undefined;
|
|
8943
|
-
} | undefined;
|
|
8944
|
-
last_modified_time?: number | undefined;
|
|
8945
9090
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8946
9091
|
text?: string;
|
|
8947
9092
|
link?: string;
|
|
@@ -8971,6 +9116,23 @@ declare abstract class Client$1 {
|
|
|
8971
9116
|
url?: string;
|
|
8972
9117
|
tmp_url?: string;
|
|
8973
9118
|
}>>;
|
|
9119
|
+
record_id?: string | undefined;
|
|
9120
|
+
created_by?: {
|
|
9121
|
+
id?: string | undefined;
|
|
9122
|
+
name?: string | undefined;
|
|
9123
|
+
en_name?: string | undefined;
|
|
9124
|
+
email?: string | undefined;
|
|
9125
|
+
avatar_url?: string | undefined;
|
|
9126
|
+
} | undefined;
|
|
9127
|
+
created_time?: number | undefined;
|
|
9128
|
+
last_modified_by?: {
|
|
9129
|
+
id?: string | undefined;
|
|
9130
|
+
name?: string | undefined;
|
|
9131
|
+
en_name?: string | undefined;
|
|
9132
|
+
email?: string | undefined;
|
|
9133
|
+
avatar_url?: string | undefined;
|
|
9134
|
+
} | undefined;
|
|
9135
|
+
last_modified_time?: number | undefined;
|
|
8974
9136
|
} | undefined;
|
|
8975
9137
|
} | undefined;
|
|
8976
9138
|
}>;
|
|
@@ -8995,23 +9157,6 @@ declare abstract class Client$1 {
|
|
|
8995
9157
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
8996
9158
|
total?: number | undefined;
|
|
8997
9159
|
items?: {
|
|
8998
|
-
record_id?: string | undefined;
|
|
8999
|
-
created_by?: {
|
|
9000
|
-
id?: string | undefined;
|
|
9001
|
-
name?: string | undefined;
|
|
9002
|
-
en_name?: string | undefined;
|
|
9003
|
-
email?: string | undefined;
|
|
9004
|
-
avatar_url?: string | undefined;
|
|
9005
|
-
} | undefined;
|
|
9006
|
-
created_time?: number | undefined;
|
|
9007
|
-
last_modified_by?: {
|
|
9008
|
-
id?: string | undefined;
|
|
9009
|
-
name?: string | undefined;
|
|
9010
|
-
en_name?: string | undefined;
|
|
9011
|
-
email?: string | undefined;
|
|
9012
|
-
avatar_url?: string | undefined;
|
|
9013
|
-
} | undefined;
|
|
9014
|
-
last_modified_time?: number | undefined;
|
|
9015
9160
|
fields: Record<string, string | number | number | number | boolean | {
|
|
9016
9161
|
text?: string;
|
|
9017
9162
|
link?: string;
|
|
@@ -9041,6 +9186,23 @@ declare abstract class Client$1 {
|
|
|
9041
9186
|
url?: string;
|
|
9042
9187
|
tmp_url?: string;
|
|
9043
9188
|
}>>;
|
|
9189
|
+
record_id?: string | undefined;
|
|
9190
|
+
created_by?: {
|
|
9191
|
+
id?: string | undefined;
|
|
9192
|
+
name?: string | undefined;
|
|
9193
|
+
en_name?: string | undefined;
|
|
9194
|
+
email?: string | undefined;
|
|
9195
|
+
avatar_url?: string | undefined;
|
|
9196
|
+
} | undefined;
|
|
9197
|
+
created_time?: number | undefined;
|
|
9198
|
+
last_modified_by?: {
|
|
9199
|
+
id?: string | undefined;
|
|
9200
|
+
name?: string | undefined;
|
|
9201
|
+
en_name?: string | undefined;
|
|
9202
|
+
email?: string | undefined;
|
|
9203
|
+
avatar_url?: string | undefined;
|
|
9204
|
+
} | undefined;
|
|
9205
|
+
last_modified_time?: number | undefined;
|
|
9044
9206
|
}[] | undefined;
|
|
9045
9207
|
} | null, void, unknown>;
|
|
9046
9208
|
}>;
|
|
@@ -9080,23 +9242,6 @@ declare abstract class Client$1 {
|
|
|
9080
9242
|
page_token?: string | undefined;
|
|
9081
9243
|
total?: number | undefined;
|
|
9082
9244
|
items?: {
|
|
9083
|
-
record_id?: string | undefined;
|
|
9084
|
-
created_by?: {
|
|
9085
|
-
id?: string | undefined;
|
|
9086
|
-
name?: string | undefined;
|
|
9087
|
-
en_name?: string | undefined;
|
|
9088
|
-
email?: string | undefined;
|
|
9089
|
-
avatar_url?: string | undefined;
|
|
9090
|
-
} | undefined;
|
|
9091
|
-
created_time?: number | undefined;
|
|
9092
|
-
last_modified_by?: {
|
|
9093
|
-
id?: string | undefined;
|
|
9094
|
-
name?: string | undefined;
|
|
9095
|
-
en_name?: string | undefined;
|
|
9096
|
-
email?: string | undefined;
|
|
9097
|
-
avatar_url?: string | undefined;
|
|
9098
|
-
} | undefined;
|
|
9099
|
-
last_modified_time?: number | undefined;
|
|
9100
9245
|
fields: Record<string, string | number | number | number | boolean | {
|
|
9101
9246
|
text?: string;
|
|
9102
9247
|
link?: string;
|
|
@@ -9126,6 +9271,23 @@ declare abstract class Client$1 {
|
|
|
9126
9271
|
url?: string;
|
|
9127
9272
|
tmp_url?: string;
|
|
9128
9273
|
}>>;
|
|
9274
|
+
record_id?: string | undefined;
|
|
9275
|
+
created_by?: {
|
|
9276
|
+
id?: string | undefined;
|
|
9277
|
+
name?: string | undefined;
|
|
9278
|
+
en_name?: string | undefined;
|
|
9279
|
+
email?: string | undefined;
|
|
9280
|
+
avatar_url?: string | undefined;
|
|
9281
|
+
} | undefined;
|
|
9282
|
+
created_time?: number | undefined;
|
|
9283
|
+
last_modified_by?: {
|
|
9284
|
+
id?: string | undefined;
|
|
9285
|
+
name?: string | undefined;
|
|
9286
|
+
en_name?: string | undefined;
|
|
9287
|
+
email?: string | undefined;
|
|
9288
|
+
avatar_url?: string | undefined;
|
|
9289
|
+
} | undefined;
|
|
9290
|
+
last_modified_time?: number | undefined;
|
|
9129
9291
|
}[] | undefined;
|
|
9130
9292
|
} | undefined;
|
|
9131
9293
|
}>;
|
|
@@ -9184,23 +9346,6 @@ declare abstract class Client$1 {
|
|
|
9184
9346
|
msg?: string | undefined;
|
|
9185
9347
|
data?: {
|
|
9186
9348
|
record?: {
|
|
9187
|
-
record_id?: string | undefined;
|
|
9188
|
-
created_by?: {
|
|
9189
|
-
id?: string | undefined;
|
|
9190
|
-
name?: string | undefined;
|
|
9191
|
-
en_name?: string | undefined;
|
|
9192
|
-
email?: string | undefined;
|
|
9193
|
-
avatar_url?: string | undefined;
|
|
9194
|
-
} | undefined;
|
|
9195
|
-
created_time?: number | undefined;
|
|
9196
|
-
last_modified_by?: {
|
|
9197
|
-
id?: string | undefined;
|
|
9198
|
-
name?: string | undefined;
|
|
9199
|
-
en_name?: string | undefined;
|
|
9200
|
-
email?: string | undefined;
|
|
9201
|
-
avatar_url?: string | undefined;
|
|
9202
|
-
} | undefined;
|
|
9203
|
-
last_modified_time?: number | undefined;
|
|
9204
9349
|
fields: Record<string, string | number | number | number | boolean | {
|
|
9205
9350
|
text?: string;
|
|
9206
9351
|
link?: string;
|
|
@@ -9230,6 +9375,23 @@ declare abstract class Client$1 {
|
|
|
9230
9375
|
url?: string;
|
|
9231
9376
|
tmp_url?: string;
|
|
9232
9377
|
}>>;
|
|
9378
|
+
record_id?: string | undefined;
|
|
9379
|
+
created_by?: {
|
|
9380
|
+
id?: string | undefined;
|
|
9381
|
+
name?: string | undefined;
|
|
9382
|
+
en_name?: string | undefined;
|
|
9383
|
+
email?: string | undefined;
|
|
9384
|
+
avatar_url?: string | undefined;
|
|
9385
|
+
} | undefined;
|
|
9386
|
+
created_time?: number | undefined;
|
|
9387
|
+
last_modified_by?: {
|
|
9388
|
+
id?: string | undefined;
|
|
9389
|
+
name?: string | undefined;
|
|
9390
|
+
en_name?: string | undefined;
|
|
9391
|
+
email?: string | undefined;
|
|
9392
|
+
avatar_url?: string | undefined;
|
|
9393
|
+
} | undefined;
|
|
9394
|
+
last_modified_time?: number | undefined;
|
|
9233
9395
|
} | undefined;
|
|
9234
9396
|
} | undefined;
|
|
9235
9397
|
}>;
|
|
@@ -13607,6 +13769,7 @@ declare abstract class Client$1 {
|
|
|
13607
13769
|
} | undefined;
|
|
13608
13770
|
} | undefined;
|
|
13609
13771
|
}[] | undefined;
|
|
13772
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13610
13773
|
}[] | undefined;
|
|
13611
13774
|
} | undefined;
|
|
13612
13775
|
}>;
|
|
@@ -13733,6 +13896,7 @@ declare abstract class Client$1 {
|
|
|
13733
13896
|
};
|
|
13734
13897
|
};
|
|
13735
13898
|
}>;
|
|
13899
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
13736
13900
|
};
|
|
13737
13901
|
params?: {
|
|
13738
13902
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -13844,6 +14008,7 @@ declare abstract class Client$1 {
|
|
|
13844
14008
|
} | undefined;
|
|
13845
14009
|
} | undefined;
|
|
13846
14010
|
}[] | undefined;
|
|
14011
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13847
14012
|
} | undefined;
|
|
13848
14013
|
} | undefined;
|
|
13849
14014
|
}>;
|
|
@@ -13994,6 +14159,7 @@ declare abstract class Client$1 {
|
|
|
13994
14159
|
} | undefined;
|
|
13995
14160
|
} | undefined;
|
|
13996
14161
|
}[] | undefined;
|
|
14162
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13997
14163
|
}[] | undefined;
|
|
13998
14164
|
} | null, void, unknown>;
|
|
13999
14165
|
}>;
|
|
@@ -14123,6 +14289,7 @@ declare abstract class Client$1 {
|
|
|
14123
14289
|
} | undefined;
|
|
14124
14290
|
} | undefined;
|
|
14125
14291
|
}[] | undefined;
|
|
14292
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14126
14293
|
}[] | undefined;
|
|
14127
14294
|
} | undefined;
|
|
14128
14295
|
}>;
|
|
@@ -14251,6 +14418,7 @@ declare abstract class Client$1 {
|
|
|
14251
14418
|
} | undefined;
|
|
14252
14419
|
} | undefined;
|
|
14253
14420
|
}[] | undefined;
|
|
14421
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14254
14422
|
} | undefined;
|
|
14255
14423
|
} | undefined;
|
|
14256
14424
|
}>;
|
|
@@ -14368,6 +14536,7 @@ declare abstract class Client$1 {
|
|
|
14368
14536
|
} | undefined;
|
|
14369
14537
|
} | undefined;
|
|
14370
14538
|
}[] | undefined;
|
|
14539
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14371
14540
|
}[] | undefined;
|
|
14372
14541
|
} | null, void, unknown>;
|
|
14373
14542
|
}>;
|
|
@@ -14494,6 +14663,7 @@ declare abstract class Client$1 {
|
|
|
14494
14663
|
} | undefined;
|
|
14495
14664
|
} | undefined;
|
|
14496
14665
|
}[] | undefined;
|
|
14666
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14497
14667
|
}[] | undefined;
|
|
14498
14668
|
} | undefined;
|
|
14499
14669
|
}>;
|
|
@@ -14583,6 +14753,7 @@ declare abstract class Client$1 {
|
|
|
14583
14753
|
};
|
|
14584
14754
|
};
|
|
14585
14755
|
}>;
|
|
14756
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
14586
14757
|
};
|
|
14587
14758
|
params?: {
|
|
14588
14759
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -14696,6 +14867,7 @@ declare abstract class Client$1 {
|
|
|
14696
14867
|
} | undefined;
|
|
14697
14868
|
} | undefined;
|
|
14698
14869
|
}[] | undefined;
|
|
14870
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14699
14871
|
} | undefined;
|
|
14700
14872
|
} | undefined;
|
|
14701
14873
|
}>;
|
|
@@ -14816,6 +14988,7 @@ declare abstract class Client$1 {
|
|
|
14816
14988
|
};
|
|
14817
14989
|
};
|
|
14818
14990
|
}>;
|
|
14991
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
14819
14992
|
};
|
|
14820
14993
|
params?: {
|
|
14821
14994
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -14927,6 +15100,7 @@ declare abstract class Client$1 {
|
|
|
14927
15100
|
} | undefined;
|
|
14928
15101
|
} | undefined;
|
|
14929
15102
|
}[] | undefined;
|
|
15103
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14930
15104
|
} | undefined;
|
|
14931
15105
|
} | undefined;
|
|
14932
15106
|
}>;
|
|
@@ -17196,6 +17370,24 @@ declare abstract class Client$1 {
|
|
|
17196
17370
|
cost_center_id?: string;
|
|
17197
17371
|
rate?: number;
|
|
17198
17372
|
}>;
|
|
17373
|
+
original_employment_change?: {
|
|
17374
|
+
regular_employee_start_date?: string;
|
|
17375
|
+
seniority_date?: string;
|
|
17376
|
+
employee_number?: string;
|
|
17377
|
+
custom_fields?: Array<{
|
|
17378
|
+
custom_api_name: string;
|
|
17379
|
+
value: string;
|
|
17380
|
+
}>;
|
|
17381
|
+
};
|
|
17382
|
+
target_employment_change?: {
|
|
17383
|
+
regular_employee_start_date?: string;
|
|
17384
|
+
seniority_date?: string;
|
|
17385
|
+
employee_number?: string;
|
|
17386
|
+
custom_fields?: Array<{
|
|
17387
|
+
custom_api_name: string;
|
|
17388
|
+
value: string;
|
|
17389
|
+
}>;
|
|
17390
|
+
};
|
|
17199
17391
|
};
|
|
17200
17392
|
transfer_key?: string;
|
|
17201
17393
|
initiator_id?: string;
|
|
@@ -17269,6 +17461,34 @@ declare abstract class Client$1 {
|
|
|
17269
17461
|
cost_center_id?: string | undefined;
|
|
17270
17462
|
rate?: number | undefined;
|
|
17271
17463
|
}[] | undefined;
|
|
17464
|
+
original_employment_change?: {
|
|
17465
|
+
regular_employee_start_date?: string | undefined;
|
|
17466
|
+
seniority_date?: string | undefined;
|
|
17467
|
+
employee_number?: string | undefined;
|
|
17468
|
+
custom_fields?: {
|
|
17469
|
+
custom_api_name: string;
|
|
17470
|
+
name?: {
|
|
17471
|
+
zh_cn?: string | undefined;
|
|
17472
|
+
en_us?: string | undefined;
|
|
17473
|
+
} | undefined;
|
|
17474
|
+
type?: number | undefined;
|
|
17475
|
+
value: string;
|
|
17476
|
+
}[] | undefined;
|
|
17477
|
+
} | undefined;
|
|
17478
|
+
target_employment_change?: {
|
|
17479
|
+
regular_employee_start_date?: string | undefined;
|
|
17480
|
+
seniority_date?: string | undefined;
|
|
17481
|
+
employee_number?: string | undefined;
|
|
17482
|
+
custom_fields?: {
|
|
17483
|
+
custom_api_name: string;
|
|
17484
|
+
name?: {
|
|
17485
|
+
zh_cn?: string | undefined;
|
|
17486
|
+
en_us?: string | undefined;
|
|
17487
|
+
} | undefined;
|
|
17488
|
+
type?: number | undefined;
|
|
17489
|
+
value: string;
|
|
17490
|
+
}[] | undefined;
|
|
17491
|
+
} | undefined;
|
|
17272
17492
|
} | undefined;
|
|
17273
17493
|
} | undefined;
|
|
17274
17494
|
}>;
|
|
@@ -18035,6 +18255,7 @@ declare abstract class Client$1 {
|
|
|
18035
18255
|
as_of_date?: string;
|
|
18036
18256
|
employment_id_list?: number;
|
|
18037
18257
|
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
18258
|
+
time_zone?: string;
|
|
18038
18259
|
};
|
|
18039
18260
|
}, options?: IRequestOptions$1) => Promise<{
|
|
18040
18261
|
code?: number | undefined;
|
|
@@ -18090,6 +18311,9 @@ declare abstract class Client$1 {
|
|
|
18090
18311
|
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
18091
18312
|
leave_update_time_min?: string;
|
|
18092
18313
|
leave_update_time_max?: string;
|
|
18314
|
+
return_detail?: boolean;
|
|
18315
|
+
leave_term_type?: number;
|
|
18316
|
+
time_zone?: string;
|
|
18093
18317
|
};
|
|
18094
18318
|
}, options?: IRequestOptions$1) => Promise<{
|
|
18095
18319
|
code?: number | undefined;
|
|
@@ -18117,6 +18341,19 @@ declare abstract class Client$1 {
|
|
|
18117
18341
|
submitted_at: string;
|
|
18118
18342
|
submitted_by: string;
|
|
18119
18343
|
notes: string;
|
|
18344
|
+
approval_date?: string | undefined;
|
|
18345
|
+
is_deducted?: boolean | undefined;
|
|
18346
|
+
details?: {
|
|
18347
|
+
leave_request_id: string;
|
|
18348
|
+
leave_date: string;
|
|
18349
|
+
leave_duration: string;
|
|
18350
|
+
leave_duration_unit: number;
|
|
18351
|
+
paid_type: number;
|
|
18352
|
+
}[] | undefined;
|
|
18353
|
+
leave_type_code?: string | undefined;
|
|
18354
|
+
actual_end_date?: string | undefined;
|
|
18355
|
+
estimated_end_date?: string | undefined;
|
|
18356
|
+
time_zone?: string | undefined;
|
|
18120
18357
|
}[] | undefined;
|
|
18121
18358
|
has_more?: boolean | undefined;
|
|
18122
18359
|
page_token?: string | undefined;
|
|
@@ -31801,6 +32038,7 @@ declare abstract class Client$1 {
|
|
|
31801
32038
|
create_user_id: string;
|
|
31802
32039
|
is_whole_day?: boolean;
|
|
31803
32040
|
expire_time: string;
|
|
32041
|
+
notify_time: string;
|
|
31804
32042
|
text_element_style?: {
|
|
31805
32043
|
bold?: boolean;
|
|
31806
32044
|
italic?: boolean;
|
|
@@ -31980,6 +32218,7 @@ declare abstract class Client$1 {
|
|
|
31980
32218
|
create_user_id: string;
|
|
31981
32219
|
is_whole_day?: boolean;
|
|
31982
32220
|
expire_time: string;
|
|
32221
|
+
notify_time: string;
|
|
31983
32222
|
text_element_style?: {
|
|
31984
32223
|
bold?: boolean;
|
|
31985
32224
|
italic?: boolean;
|
|
@@ -34844,6 +35083,7 @@ declare abstract class Client$1 {
|
|
|
34844
35083
|
create_user_id: string;
|
|
34845
35084
|
is_whole_day?: boolean;
|
|
34846
35085
|
expire_time: string;
|
|
35086
|
+
notify_time: string;
|
|
34847
35087
|
text_element_style?: {
|
|
34848
35088
|
bold?: boolean;
|
|
34849
35089
|
italic?: boolean;
|
|
@@ -34972,6 +35212,7 @@ declare abstract class Client$1 {
|
|
|
34972
35212
|
create_user_id: string;
|
|
34973
35213
|
is_whole_day?: boolean;
|
|
34974
35214
|
expire_time: string;
|
|
35215
|
+
notify_time: string;
|
|
34975
35216
|
text_element_style?: {
|
|
34976
35217
|
bold?: boolean;
|
|
34977
35218
|
italic?: boolean;
|
|
@@ -35100,6 +35341,7 @@ declare abstract class Client$1 {
|
|
|
35100
35341
|
create_user_id: string;
|
|
35101
35342
|
is_whole_day?: boolean;
|
|
35102
35343
|
expire_time: string;
|
|
35344
|
+
notify_time: string;
|
|
35103
35345
|
text_element_style?: {
|
|
35104
35346
|
bold?: boolean;
|
|
35105
35347
|
italic?: boolean;
|
|
@@ -35228,6 +35470,7 @@ declare abstract class Client$1 {
|
|
|
35228
35470
|
create_user_id: string;
|
|
35229
35471
|
is_whole_day?: boolean;
|
|
35230
35472
|
expire_time: string;
|
|
35473
|
+
notify_time: string;
|
|
35231
35474
|
text_element_style?: {
|
|
35232
35475
|
bold?: boolean;
|
|
35233
35476
|
italic?: boolean;
|
|
@@ -35356,6 +35599,7 @@ declare abstract class Client$1 {
|
|
|
35356
35599
|
create_user_id: string;
|
|
35357
35600
|
is_whole_day?: boolean;
|
|
35358
35601
|
expire_time: string;
|
|
35602
|
+
notify_time: string;
|
|
35359
35603
|
text_element_style?: {
|
|
35360
35604
|
bold?: boolean;
|
|
35361
35605
|
italic?: boolean;
|
|
@@ -35484,6 +35728,7 @@ declare abstract class Client$1 {
|
|
|
35484
35728
|
create_user_id: string;
|
|
35485
35729
|
is_whole_day?: boolean;
|
|
35486
35730
|
expire_time: string;
|
|
35731
|
+
notify_time: string;
|
|
35487
35732
|
text_element_style?: {
|
|
35488
35733
|
bold?: boolean;
|
|
35489
35734
|
italic?: boolean;
|
|
@@ -35612,6 +35857,7 @@ declare abstract class Client$1 {
|
|
|
35612
35857
|
create_user_id: string;
|
|
35613
35858
|
is_whole_day?: boolean;
|
|
35614
35859
|
expire_time: string;
|
|
35860
|
+
notify_time: string;
|
|
35615
35861
|
text_element_style?: {
|
|
35616
35862
|
bold?: boolean;
|
|
35617
35863
|
italic?: boolean;
|
|
@@ -35740,6 +35986,7 @@ declare abstract class Client$1 {
|
|
|
35740
35986
|
create_user_id: string;
|
|
35741
35987
|
is_whole_day?: boolean;
|
|
35742
35988
|
expire_time: string;
|
|
35989
|
+
notify_time: string;
|
|
35743
35990
|
text_element_style?: {
|
|
35744
35991
|
bold?: boolean;
|
|
35745
35992
|
italic?: boolean;
|
|
@@ -35868,6 +36115,7 @@ declare abstract class Client$1 {
|
|
|
35868
36115
|
create_user_id: string;
|
|
35869
36116
|
is_whole_day?: boolean;
|
|
35870
36117
|
expire_time: string;
|
|
36118
|
+
notify_time: string;
|
|
35871
36119
|
text_element_style?: {
|
|
35872
36120
|
bold?: boolean;
|
|
35873
36121
|
italic?: boolean;
|
|
@@ -35996,6 +36244,7 @@ declare abstract class Client$1 {
|
|
|
35996
36244
|
create_user_id: string;
|
|
35997
36245
|
is_whole_day?: boolean;
|
|
35998
36246
|
expire_time: string;
|
|
36247
|
+
notify_time: string;
|
|
35999
36248
|
text_element_style?: {
|
|
36000
36249
|
bold?: boolean;
|
|
36001
36250
|
italic?: boolean;
|
|
@@ -36124,6 +36373,7 @@ declare abstract class Client$1 {
|
|
|
36124
36373
|
create_user_id: string;
|
|
36125
36374
|
is_whole_day?: boolean;
|
|
36126
36375
|
expire_time: string;
|
|
36376
|
+
notify_time: string;
|
|
36127
36377
|
text_element_style?: {
|
|
36128
36378
|
bold?: boolean;
|
|
36129
36379
|
italic?: boolean;
|
|
@@ -36252,6 +36502,7 @@ declare abstract class Client$1 {
|
|
|
36252
36502
|
create_user_id: string;
|
|
36253
36503
|
is_whole_day?: boolean;
|
|
36254
36504
|
expire_time: string;
|
|
36505
|
+
notify_time: string;
|
|
36255
36506
|
text_element_style?: {
|
|
36256
36507
|
bold?: boolean;
|
|
36257
36508
|
italic?: boolean;
|
|
@@ -36380,6 +36631,7 @@ declare abstract class Client$1 {
|
|
|
36380
36631
|
create_user_id: string;
|
|
36381
36632
|
is_whole_day?: boolean;
|
|
36382
36633
|
expire_time: string;
|
|
36634
|
+
notify_time: string;
|
|
36383
36635
|
text_element_style?: {
|
|
36384
36636
|
bold?: boolean;
|
|
36385
36637
|
italic?: boolean;
|
|
@@ -36508,6 +36760,7 @@ declare abstract class Client$1 {
|
|
|
36508
36760
|
create_user_id: string;
|
|
36509
36761
|
is_whole_day?: boolean;
|
|
36510
36762
|
expire_time: string;
|
|
36763
|
+
notify_time: string;
|
|
36511
36764
|
text_element_style?: {
|
|
36512
36765
|
bold?: boolean;
|
|
36513
36766
|
italic?: boolean;
|
|
@@ -36636,6 +36889,7 @@ declare abstract class Client$1 {
|
|
|
36636
36889
|
create_user_id: string;
|
|
36637
36890
|
is_whole_day?: boolean;
|
|
36638
36891
|
expire_time: string;
|
|
36892
|
+
notify_time: string;
|
|
36639
36893
|
text_element_style?: {
|
|
36640
36894
|
bold?: boolean;
|
|
36641
36895
|
italic?: boolean;
|
|
@@ -36764,6 +37018,7 @@ declare abstract class Client$1 {
|
|
|
36764
37018
|
create_user_id: string;
|
|
36765
37019
|
is_whole_day?: boolean;
|
|
36766
37020
|
expire_time: string;
|
|
37021
|
+
notify_time: string;
|
|
36767
37022
|
text_element_style?: {
|
|
36768
37023
|
bold?: boolean;
|
|
36769
37024
|
italic?: boolean;
|
|
@@ -45476,6 +45731,71 @@ declare abstract class Client$1 {
|
|
|
45476
45731
|
msg?: string | undefined;
|
|
45477
45732
|
data?: {} | undefined;
|
|
45478
45733
|
}>;
|
|
45734
|
+
listWithIterator: (payload?: {
|
|
45735
|
+
params: {
|
|
45736
|
+
page_size?: number;
|
|
45737
|
+
page_token?: string;
|
|
45738
|
+
file_type: "doc" | "sheet" | "file" | "docx";
|
|
45739
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45740
|
+
};
|
|
45741
|
+
path: {
|
|
45742
|
+
file_token: string;
|
|
45743
|
+
comment_id: string;
|
|
45744
|
+
};
|
|
45745
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
45746
|
+
[Symbol.asyncIterator](): AsyncGenerator<{} | null, void, unknown>;
|
|
45747
|
+
}>;
|
|
45748
|
+
/**
|
|
45749
|
+
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file.comment.reply&apiName=list&version=v1 click to debug }
|
|
45750
|
+
*
|
|
45751
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment-reply/list document }
|
|
45752
|
+
*
|
|
45753
|
+
* 获取回复
|
|
45754
|
+
*
|
|
45755
|
+
* 该接口用于根据评论 ID 以及分页参数,获取回复。
|
|
45756
|
+
*/
|
|
45757
|
+
list: (payload?: {
|
|
45758
|
+
params: {
|
|
45759
|
+
page_size?: number;
|
|
45760
|
+
page_token?: string;
|
|
45761
|
+
file_type: "doc" | "sheet" | "file" | "docx";
|
|
45762
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45763
|
+
};
|
|
45764
|
+
path: {
|
|
45765
|
+
file_token: string;
|
|
45766
|
+
comment_id: string;
|
|
45767
|
+
};
|
|
45768
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
45769
|
+
code?: number | undefined;
|
|
45770
|
+
msg?: string | undefined;
|
|
45771
|
+
data?: {
|
|
45772
|
+
items?: {
|
|
45773
|
+
reply_id?: string | undefined;
|
|
45774
|
+
user_id?: string | undefined;
|
|
45775
|
+
create_time?: number | undefined;
|
|
45776
|
+
update_time?: number | undefined;
|
|
45777
|
+
content: {
|
|
45778
|
+
elements: Array<{
|
|
45779
|
+
type: "text_run" | "docs_link" | "person";
|
|
45780
|
+
text_run?: {
|
|
45781
|
+
text: string;
|
|
45782
|
+
};
|
|
45783
|
+
docs_link?: {
|
|
45784
|
+
url: string;
|
|
45785
|
+
};
|
|
45786
|
+
person?: {
|
|
45787
|
+
user_id: string;
|
|
45788
|
+
};
|
|
45789
|
+
}>;
|
|
45790
|
+
};
|
|
45791
|
+
extra?: {
|
|
45792
|
+
image_list?: string[] | undefined;
|
|
45793
|
+
} | undefined;
|
|
45794
|
+
}[] | undefined;
|
|
45795
|
+
page_token?: string | undefined;
|
|
45796
|
+
has_more: boolean;
|
|
45797
|
+
} | undefined;
|
|
45798
|
+
}>;
|
|
45479
45799
|
/**
|
|
45480
45800
|
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file.comment.reply&apiName=update&version=v1 click to debug }
|
|
45481
45801
|
*
|
|
@@ -46026,9 +46346,6 @@ declare abstract class Client$1 {
|
|
|
46026
46346
|
*/
|
|
46027
46347
|
get: (payload?: {
|
|
46028
46348
|
data: {
|
|
46029
|
-
subscription_id?: string;
|
|
46030
|
-
subscription_type?: "comment_update";
|
|
46031
|
-
is_subcribe?: boolean;
|
|
46032
46349
|
file_type: "doc" | "docx" | "wiki";
|
|
46033
46350
|
};
|
|
46034
46351
|
path?: {
|
|
@@ -46571,7 +46888,7 @@ declare abstract class Client$1 {
|
|
|
46571
46888
|
*/
|
|
46572
46889
|
auth: (payload?: {
|
|
46573
46890
|
params: {
|
|
46574
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
46891
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46575
46892
|
action: "view" | "edit" | "share" | "comment" | "export" | "copy" | "print";
|
|
46576
46893
|
};
|
|
46577
46894
|
path: {
|
|
@@ -46600,7 +46917,7 @@ declare abstract class Client$1 {
|
|
|
46600
46917
|
perm: "view" | "edit" | "full_access";
|
|
46601
46918
|
};
|
|
46602
46919
|
params: {
|
|
46603
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes";
|
|
46920
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes" | "slides";
|
|
46604
46921
|
need_notification?: boolean;
|
|
46605
46922
|
};
|
|
46606
46923
|
path: {
|
|
@@ -46628,7 +46945,7 @@ declare abstract class Client$1 {
|
|
|
46628
46945
|
*/
|
|
46629
46946
|
delete: (payload?: {
|
|
46630
46947
|
params: {
|
|
46631
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes";
|
|
46948
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes" | "slides";
|
|
46632
46949
|
member_type: "email" | "openid" | "openchat" | "opendepartmentid" | "userid";
|
|
46633
46950
|
};
|
|
46634
46951
|
path: {
|
|
@@ -46653,7 +46970,7 @@ declare abstract class Client$1 {
|
|
|
46653
46970
|
*/
|
|
46654
46971
|
list: (payload?: {
|
|
46655
46972
|
params: {
|
|
46656
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
46973
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46657
46974
|
fields?: string;
|
|
46658
46975
|
};
|
|
46659
46976
|
path: {
|
|
@@ -46685,7 +47002,7 @@ declare abstract class Client$1 {
|
|
|
46685
47002
|
member_id: string;
|
|
46686
47003
|
};
|
|
46687
47004
|
params: {
|
|
46688
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47005
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46689
47006
|
need_notification?: boolean;
|
|
46690
47007
|
remove_old_owner?: boolean;
|
|
46691
47008
|
stay_put?: boolean;
|
|
@@ -46716,7 +47033,7 @@ declare abstract class Client$1 {
|
|
|
46716
47033
|
};
|
|
46717
47034
|
params: {
|
|
46718
47035
|
need_notification?: boolean;
|
|
46719
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47036
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46720
47037
|
};
|
|
46721
47038
|
path: {
|
|
46722
47039
|
token: string;
|
|
@@ -46749,7 +47066,7 @@ declare abstract class Client$1 {
|
|
|
46749
47066
|
*/
|
|
46750
47067
|
get: (payload?: {
|
|
46751
47068
|
params: {
|
|
46752
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47069
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46753
47070
|
};
|
|
46754
47071
|
path: {
|
|
46755
47072
|
token: string;
|
|
@@ -46788,7 +47105,7 @@ declare abstract class Client$1 {
|
|
|
46788
47105
|
invite_external?: boolean;
|
|
46789
47106
|
};
|
|
46790
47107
|
params: {
|
|
46791
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47108
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46792
47109
|
};
|
|
46793
47110
|
path: {
|
|
46794
47111
|
token: string;
|
|
@@ -46820,7 +47137,7 @@ declare abstract class Client$1 {
|
|
|
46820
47137
|
*/
|
|
46821
47138
|
create: (payload?: {
|
|
46822
47139
|
params: {
|
|
46823
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47140
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46824
47141
|
};
|
|
46825
47142
|
path?: {
|
|
46826
47143
|
token?: string;
|
|
@@ -46839,7 +47156,7 @@ declare abstract class Client$1 {
|
|
|
46839
47156
|
*/
|
|
46840
47157
|
delete: (payload?: {
|
|
46841
47158
|
params: {
|
|
46842
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47159
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46843
47160
|
};
|
|
46844
47161
|
path?: {
|
|
46845
47162
|
token?: string;
|
|
@@ -46856,7 +47173,7 @@ declare abstract class Client$1 {
|
|
|
46856
47173
|
*/
|
|
46857
47174
|
update: (payload?: {
|
|
46858
47175
|
params: {
|
|
46859
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47176
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46860
47177
|
};
|
|
46861
47178
|
path?: {
|
|
46862
47179
|
token?: string;
|
|
@@ -49596,6 +49913,10 @@ declare abstract class Client$1 {
|
|
|
49596
49913
|
department_id?: string | undefined;
|
|
49597
49914
|
probation_month?: number | undefined;
|
|
49598
49915
|
contract_year?: number | undefined;
|
|
49916
|
+
contract_period?: {
|
|
49917
|
+
period_type: number;
|
|
49918
|
+
period: number;
|
|
49919
|
+
} | undefined;
|
|
49599
49920
|
recruitment_type?: {
|
|
49600
49921
|
id?: string | undefined;
|
|
49601
49922
|
zh_name?: string | undefined;
|
|
@@ -49694,6 +50015,13 @@ declare abstract class Client$1 {
|
|
|
49694
50015
|
job_id?: string | undefined;
|
|
49695
50016
|
job_name?: string | undefined;
|
|
49696
50017
|
} | undefined;
|
|
50018
|
+
customized_module_list?: {
|
|
50019
|
+
ID?: string | undefined;
|
|
50020
|
+
object_list?: {
|
|
50021
|
+
object_id?: string | undefined;
|
|
50022
|
+
customize_value?: string | undefined;
|
|
50023
|
+
}[] | undefined;
|
|
50024
|
+
}[] | undefined;
|
|
49697
50025
|
} | undefined;
|
|
49698
50026
|
} | undefined;
|
|
49699
50027
|
}>;
|
|
@@ -49820,6 +50148,57 @@ declare abstract class Client$1 {
|
|
|
49820
50148
|
en_name?: string | undefined;
|
|
49821
50149
|
en_description?: string | undefined;
|
|
49822
50150
|
} | undefined;
|
|
50151
|
+
assessment_score?: {
|
|
50152
|
+
calculate_type: number;
|
|
50153
|
+
score: number;
|
|
50154
|
+
full_score?: number | undefined;
|
|
50155
|
+
} | undefined;
|
|
50156
|
+
question_list?: {
|
|
50157
|
+
id: string;
|
|
50158
|
+
title?: {
|
|
50159
|
+
zh_cn?: string | undefined;
|
|
50160
|
+
en_us?: string | undefined;
|
|
50161
|
+
} | undefined;
|
|
50162
|
+
description?: {
|
|
50163
|
+
zh_cn?: string | undefined;
|
|
50164
|
+
en_us?: string | undefined;
|
|
50165
|
+
} | undefined;
|
|
50166
|
+
content?: string | undefined;
|
|
50167
|
+
ability_list?: {
|
|
50168
|
+
id: string;
|
|
50169
|
+
name?: {
|
|
50170
|
+
zh_cn?: string | undefined;
|
|
50171
|
+
en_us?: string | undefined;
|
|
50172
|
+
} | undefined;
|
|
50173
|
+
description?: {
|
|
50174
|
+
zh_cn?: string | undefined;
|
|
50175
|
+
en_us?: string | undefined;
|
|
50176
|
+
} | undefined;
|
|
50177
|
+
}[] | undefined;
|
|
50178
|
+
}[] | undefined;
|
|
50179
|
+
code_question_list?: {
|
|
50180
|
+
id: string;
|
|
50181
|
+
title?: {
|
|
50182
|
+
zh_cn?: string | undefined;
|
|
50183
|
+
en_us?: string | undefined;
|
|
50184
|
+
} | undefined;
|
|
50185
|
+
description?: {
|
|
50186
|
+
zh_cn?: string | undefined;
|
|
50187
|
+
en_us?: string | undefined;
|
|
50188
|
+
} | undefined;
|
|
50189
|
+
content?: string | undefined;
|
|
50190
|
+
ability_list?: {
|
|
50191
|
+
id: string;
|
|
50192
|
+
name?: {
|
|
50193
|
+
zh_cn?: string | undefined;
|
|
50194
|
+
en_us?: string | undefined;
|
|
50195
|
+
} | undefined;
|
|
50196
|
+
description?: {
|
|
50197
|
+
zh_cn?: string | undefined;
|
|
50198
|
+
en_us?: string | undefined;
|
|
50199
|
+
} | undefined;
|
|
50200
|
+
}[] | undefined;
|
|
50201
|
+
}[] | undefined;
|
|
49823
50202
|
interviewer?: {
|
|
49824
50203
|
id?: string | undefined;
|
|
49825
50204
|
name?: {
|
|
@@ -49827,12 +50206,20 @@ declare abstract class Client$1 {
|
|
|
49827
50206
|
en_us?: string | undefined;
|
|
49828
50207
|
} | undefined;
|
|
49829
50208
|
} | undefined;
|
|
50209
|
+
image_list?: {
|
|
50210
|
+
id: string;
|
|
50211
|
+
url: string;
|
|
50212
|
+
name?: string | undefined;
|
|
50213
|
+
mime?: string | undefined;
|
|
50214
|
+
create_time?: string | undefined;
|
|
50215
|
+
}[] | undefined;
|
|
49830
50216
|
dimension_assessment_list?: {
|
|
49831
50217
|
id?: string | undefined;
|
|
49832
50218
|
name?: {
|
|
49833
50219
|
zh_cn?: string | undefined;
|
|
49834
50220
|
en_us?: string | undefined;
|
|
49835
50221
|
} | undefined;
|
|
50222
|
+
full_score?: number | undefined;
|
|
49836
50223
|
content?: string | undefined;
|
|
49837
50224
|
dimension_id?: string | undefined;
|
|
49838
50225
|
dimension_score?: {
|
|
@@ -49841,6 +50228,7 @@ declare abstract class Client$1 {
|
|
|
49841
50228
|
zh_cn?: string | undefined;
|
|
49842
50229
|
en_us?: string | undefined;
|
|
49843
50230
|
} | undefined;
|
|
50231
|
+
score_val?: number | undefined;
|
|
49844
50232
|
} | undefined;
|
|
49845
50233
|
dimension_score_list?: {
|
|
49846
50234
|
id?: string | undefined;
|
|
@@ -49848,6 +50236,42 @@ declare abstract class Client$1 {
|
|
|
49848
50236
|
zh_cn?: string | undefined;
|
|
49849
50237
|
en_us?: string | undefined;
|
|
49850
50238
|
} | undefined;
|
|
50239
|
+
score_val?: number | undefined;
|
|
50240
|
+
}[] | undefined;
|
|
50241
|
+
dimension_custom_score?: number | undefined;
|
|
50242
|
+
ability_list?: {
|
|
50243
|
+
id: string;
|
|
50244
|
+
name?: {
|
|
50245
|
+
zh_cn?: string | undefined;
|
|
50246
|
+
en_us?: string | undefined;
|
|
50247
|
+
} | undefined;
|
|
50248
|
+
description?: {
|
|
50249
|
+
zh_cn?: string | undefined;
|
|
50250
|
+
en_us?: string | undefined;
|
|
50251
|
+
} | undefined;
|
|
50252
|
+
}[] | undefined;
|
|
50253
|
+
question_list?: {
|
|
50254
|
+
id: string;
|
|
50255
|
+
title?: {
|
|
50256
|
+
zh_cn?: string | undefined;
|
|
50257
|
+
en_us?: string | undefined;
|
|
50258
|
+
} | undefined;
|
|
50259
|
+
description?: {
|
|
50260
|
+
zh_cn?: string | undefined;
|
|
50261
|
+
en_us?: string | undefined;
|
|
50262
|
+
} | undefined;
|
|
50263
|
+
content?: string | undefined;
|
|
50264
|
+
ability_list?: {
|
|
50265
|
+
id: string;
|
|
50266
|
+
name?: {
|
|
50267
|
+
zh_cn?: string | undefined;
|
|
50268
|
+
en_us?: string | undefined;
|
|
50269
|
+
} | undefined;
|
|
50270
|
+
description?: {
|
|
50271
|
+
zh_cn?: string | undefined;
|
|
50272
|
+
en_us?: string | undefined;
|
|
50273
|
+
} | undefined;
|
|
50274
|
+
}[] | undefined;
|
|
49851
50275
|
}[] | undefined;
|
|
49852
50276
|
dimension_type?: number | undefined;
|
|
49853
50277
|
}[] | undefined;
|
|
@@ -50441,6 +50865,57 @@ declare abstract class Client$1 {
|
|
|
50441
50865
|
en_name?: string | undefined;
|
|
50442
50866
|
en_description?: string | undefined;
|
|
50443
50867
|
} | undefined;
|
|
50868
|
+
assessment_score?: {
|
|
50869
|
+
calculate_type: number;
|
|
50870
|
+
score: number;
|
|
50871
|
+
full_score?: number | undefined;
|
|
50872
|
+
} | undefined;
|
|
50873
|
+
question_list?: {
|
|
50874
|
+
id: string;
|
|
50875
|
+
title?: {
|
|
50876
|
+
zh_cn?: string | undefined;
|
|
50877
|
+
en_us?: string | undefined;
|
|
50878
|
+
} | undefined;
|
|
50879
|
+
description?: {
|
|
50880
|
+
zh_cn?: string | undefined;
|
|
50881
|
+
en_us?: string | undefined;
|
|
50882
|
+
} | undefined;
|
|
50883
|
+
content?: string | undefined;
|
|
50884
|
+
ability_list?: {
|
|
50885
|
+
id: string;
|
|
50886
|
+
name?: {
|
|
50887
|
+
zh_cn?: string | undefined;
|
|
50888
|
+
en_us?: string | undefined;
|
|
50889
|
+
} | undefined;
|
|
50890
|
+
description?: {
|
|
50891
|
+
zh_cn?: string | undefined;
|
|
50892
|
+
en_us?: string | undefined;
|
|
50893
|
+
} | undefined;
|
|
50894
|
+
}[] | undefined;
|
|
50895
|
+
}[] | undefined;
|
|
50896
|
+
code_question_list?: {
|
|
50897
|
+
id: string;
|
|
50898
|
+
title?: {
|
|
50899
|
+
zh_cn?: string | undefined;
|
|
50900
|
+
en_us?: string | undefined;
|
|
50901
|
+
} | undefined;
|
|
50902
|
+
description?: {
|
|
50903
|
+
zh_cn?: string | undefined;
|
|
50904
|
+
en_us?: string | undefined;
|
|
50905
|
+
} | undefined;
|
|
50906
|
+
content?: string | undefined;
|
|
50907
|
+
ability_list?: {
|
|
50908
|
+
id: string;
|
|
50909
|
+
name?: {
|
|
50910
|
+
zh_cn?: string | undefined;
|
|
50911
|
+
en_us?: string | undefined;
|
|
50912
|
+
} | undefined;
|
|
50913
|
+
description?: {
|
|
50914
|
+
zh_cn?: string | undefined;
|
|
50915
|
+
en_us?: string | undefined;
|
|
50916
|
+
} | undefined;
|
|
50917
|
+
}[] | undefined;
|
|
50918
|
+
}[] | undefined;
|
|
50444
50919
|
interviewer?: {
|
|
50445
50920
|
id?: string | undefined;
|
|
50446
50921
|
name?: {
|
|
@@ -50448,12 +50923,20 @@ declare abstract class Client$1 {
|
|
|
50448
50923
|
en_us?: string | undefined;
|
|
50449
50924
|
} | undefined;
|
|
50450
50925
|
} | undefined;
|
|
50926
|
+
image_list?: {
|
|
50927
|
+
id: string;
|
|
50928
|
+
url: string;
|
|
50929
|
+
name?: string | undefined;
|
|
50930
|
+
mime?: string | undefined;
|
|
50931
|
+
create_time?: string | undefined;
|
|
50932
|
+
}[] | undefined;
|
|
50451
50933
|
dimension_assessment_list?: {
|
|
50452
50934
|
id?: string | undefined;
|
|
50453
50935
|
name?: {
|
|
50454
50936
|
zh_cn?: string | undefined;
|
|
50455
50937
|
en_us?: string | undefined;
|
|
50456
50938
|
} | undefined;
|
|
50939
|
+
full_score?: number | undefined;
|
|
50457
50940
|
content?: string | undefined;
|
|
50458
50941
|
dimension_id?: string | undefined;
|
|
50459
50942
|
dimension_score?: {
|
|
@@ -50462,6 +50945,7 @@ declare abstract class Client$1 {
|
|
|
50462
50945
|
zh_cn?: string | undefined;
|
|
50463
50946
|
en_us?: string | undefined;
|
|
50464
50947
|
} | undefined;
|
|
50948
|
+
score_val?: number | undefined;
|
|
50465
50949
|
} | undefined;
|
|
50466
50950
|
dimension_score_list?: {
|
|
50467
50951
|
id?: string | undefined;
|
|
@@ -50469,6 +50953,42 @@ declare abstract class Client$1 {
|
|
|
50469
50953
|
zh_cn?: string | undefined;
|
|
50470
50954
|
en_us?: string | undefined;
|
|
50471
50955
|
} | undefined;
|
|
50956
|
+
score_val?: number | undefined;
|
|
50957
|
+
}[] | undefined;
|
|
50958
|
+
dimension_custom_score?: number | undefined;
|
|
50959
|
+
ability_list?: {
|
|
50960
|
+
id: string;
|
|
50961
|
+
name?: {
|
|
50962
|
+
zh_cn?: string | undefined;
|
|
50963
|
+
en_us?: string | undefined;
|
|
50964
|
+
} | undefined;
|
|
50965
|
+
description?: {
|
|
50966
|
+
zh_cn?: string | undefined;
|
|
50967
|
+
en_us?: string | undefined;
|
|
50968
|
+
} | undefined;
|
|
50969
|
+
}[] | undefined;
|
|
50970
|
+
question_list?: {
|
|
50971
|
+
id: string;
|
|
50972
|
+
title?: {
|
|
50973
|
+
zh_cn?: string | undefined;
|
|
50974
|
+
en_us?: string | undefined;
|
|
50975
|
+
} | undefined;
|
|
50976
|
+
description?: {
|
|
50977
|
+
zh_cn?: string | undefined;
|
|
50978
|
+
en_us?: string | undefined;
|
|
50979
|
+
} | undefined;
|
|
50980
|
+
content?: string | undefined;
|
|
50981
|
+
ability_list?: {
|
|
50982
|
+
id: string;
|
|
50983
|
+
name?: {
|
|
50984
|
+
zh_cn?: string | undefined;
|
|
50985
|
+
en_us?: string | undefined;
|
|
50986
|
+
} | undefined;
|
|
50987
|
+
description?: {
|
|
50988
|
+
zh_cn?: string | undefined;
|
|
50989
|
+
en_us?: string | undefined;
|
|
50990
|
+
} | undefined;
|
|
50991
|
+
}[] | undefined;
|
|
50472
50992
|
}[] | undefined;
|
|
50473
50993
|
dimension_type?: number | undefined;
|
|
50474
50994
|
}[] | undefined;
|
|
@@ -51090,6 +51610,23 @@ declare abstract class Client$1 {
|
|
|
51090
51610
|
} | undefined;
|
|
51091
51611
|
}[] | undefined;
|
|
51092
51612
|
job_attribute?: number | undefined;
|
|
51613
|
+
interview_appointment_config?: {
|
|
51614
|
+
enable_interview_appointment_by_interviewer?: boolean | undefined;
|
|
51615
|
+
config?: {
|
|
51616
|
+
interview_type?: number | undefined;
|
|
51617
|
+
talent_timezone_code?: string | undefined;
|
|
51618
|
+
contact_user_id?: string | undefined;
|
|
51619
|
+
contact_mobile?: string | undefined;
|
|
51620
|
+
contact_email?: string | undefined;
|
|
51621
|
+
address_id?: string | undefined;
|
|
51622
|
+
video_type?: number | undefined;
|
|
51623
|
+
cc?: string[] | undefined;
|
|
51624
|
+
remark?: string | undefined;
|
|
51625
|
+
interview_notification_template_id?: string | undefined;
|
|
51626
|
+
appointment_notification_template_id?: string | undefined;
|
|
51627
|
+
cancel_interview_notification_template_id?: string | undefined;
|
|
51628
|
+
} | undefined;
|
|
51629
|
+
} | undefined;
|
|
51093
51630
|
} | undefined;
|
|
51094
51631
|
} | undefined;
|
|
51095
51632
|
}>;
|
|
@@ -51377,6 +51914,23 @@ declare abstract class Client$1 {
|
|
|
51377
51914
|
} | undefined;
|
|
51378
51915
|
}[] | undefined;
|
|
51379
51916
|
job_attribute?: number | undefined;
|
|
51917
|
+
interview_appointment_config?: {
|
|
51918
|
+
enable_interview_appointment_by_interviewer?: boolean | undefined;
|
|
51919
|
+
config?: {
|
|
51920
|
+
interview_type?: number | undefined;
|
|
51921
|
+
talent_timezone_code?: string | undefined;
|
|
51922
|
+
contact_user_id?: string | undefined;
|
|
51923
|
+
contact_mobile?: string | undefined;
|
|
51924
|
+
contact_email?: string | undefined;
|
|
51925
|
+
address_id?: string | undefined;
|
|
51926
|
+
video_type?: number | undefined;
|
|
51927
|
+
cc?: string[] | undefined;
|
|
51928
|
+
remark?: string | undefined;
|
|
51929
|
+
interview_notification_template_id?: string | undefined;
|
|
51930
|
+
appointment_notification_template_id?: string | undefined;
|
|
51931
|
+
cancel_interview_notification_template_id?: string | undefined;
|
|
51932
|
+
} | undefined;
|
|
51933
|
+
} | undefined;
|
|
51380
51934
|
} | undefined;
|
|
51381
51935
|
} | undefined;
|
|
51382
51936
|
}>;
|
|
@@ -51473,7 +52027,8 @@ declare abstract class Client$1 {
|
|
|
51473
52027
|
name: string;
|
|
51474
52028
|
display_progress: number;
|
|
51475
52029
|
head_count: number;
|
|
51476
|
-
recruitment_type_id
|
|
52030
|
+
recruitment_type_id?: string;
|
|
52031
|
+
employee_type_id?: string;
|
|
51477
52032
|
max_level_id?: string;
|
|
51478
52033
|
min_level_id?: string;
|
|
51479
52034
|
sequence_id?: string;
|
|
@@ -51494,6 +52049,8 @@ declare abstract class Client$1 {
|
|
|
51494
52049
|
object_id?: string;
|
|
51495
52050
|
value?: string;
|
|
51496
52051
|
}>;
|
|
52052
|
+
process_type?: number;
|
|
52053
|
+
job_type_id?: string;
|
|
51497
52054
|
};
|
|
51498
52055
|
params?: {
|
|
51499
52056
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -51516,6 +52073,13 @@ declare abstract class Client$1 {
|
|
|
51516
52073
|
en_us?: string | undefined;
|
|
51517
52074
|
} | undefined;
|
|
51518
52075
|
} | undefined;
|
|
52076
|
+
employee_type?: {
|
|
52077
|
+
id?: string | undefined;
|
|
52078
|
+
name?: {
|
|
52079
|
+
zh_cn?: string | undefined;
|
|
52080
|
+
en_us?: string | undefined;
|
|
52081
|
+
} | undefined;
|
|
52082
|
+
} | undefined;
|
|
51519
52083
|
max_level?: {
|
|
51520
52084
|
id?: string | undefined;
|
|
51521
52085
|
name?: {
|
|
@@ -51612,6 +52176,15 @@ declare abstract class Client$1 {
|
|
|
51612
52176
|
} | undefined;
|
|
51613
52177
|
}[] | undefined;
|
|
51614
52178
|
job_id_list?: string[] | undefined;
|
|
52179
|
+
process_type?: number | undefined;
|
|
52180
|
+
job_type?: {
|
|
52181
|
+
id: string;
|
|
52182
|
+
name: {
|
|
52183
|
+
zh_cn?: string;
|
|
52184
|
+
en_us?: string;
|
|
52185
|
+
};
|
|
52186
|
+
parent_id?: string | undefined;
|
|
52187
|
+
} | undefined;
|
|
51615
52188
|
} | undefined;
|
|
51616
52189
|
} | undefined;
|
|
51617
52190
|
}>;
|
|
@@ -51673,6 +52246,160 @@ declare abstract class Client$1 {
|
|
|
51673
52246
|
en_us?: string | undefined;
|
|
51674
52247
|
} | undefined;
|
|
51675
52248
|
} | undefined;
|
|
52249
|
+
employee_type?: {
|
|
52250
|
+
id?: string | undefined;
|
|
52251
|
+
name?: {
|
|
52252
|
+
zh_cn?: string | undefined;
|
|
52253
|
+
en_us?: string | undefined;
|
|
52254
|
+
} | undefined;
|
|
52255
|
+
} | undefined;
|
|
52256
|
+
max_level?: {
|
|
52257
|
+
id?: string | undefined;
|
|
52258
|
+
name?: {
|
|
52259
|
+
zh_cn?: string | undefined;
|
|
52260
|
+
en_us?: string | undefined;
|
|
52261
|
+
} | undefined;
|
|
52262
|
+
} | undefined;
|
|
52263
|
+
min_level?: {
|
|
52264
|
+
id?: string | undefined;
|
|
52265
|
+
name?: {
|
|
52266
|
+
zh_cn?: string | undefined;
|
|
52267
|
+
en_us?: string | undefined;
|
|
52268
|
+
} | undefined;
|
|
52269
|
+
} | undefined;
|
|
52270
|
+
sequence?: {
|
|
52271
|
+
id?: string | undefined;
|
|
52272
|
+
name?: {
|
|
52273
|
+
zh_cn?: string | undefined;
|
|
52274
|
+
en_us?: string | undefined;
|
|
52275
|
+
} | undefined;
|
|
52276
|
+
} | undefined;
|
|
52277
|
+
category?: number | undefined;
|
|
52278
|
+
department?: {
|
|
52279
|
+
id?: string | undefined;
|
|
52280
|
+
name?: {
|
|
52281
|
+
zh_cn?: string | undefined;
|
|
52282
|
+
en_us?: string | undefined;
|
|
52283
|
+
} | undefined;
|
|
52284
|
+
} | undefined;
|
|
52285
|
+
recruiter_list?: {
|
|
52286
|
+
id?: string | undefined;
|
|
52287
|
+
name?: {
|
|
52288
|
+
zh_cn?: string | undefined;
|
|
52289
|
+
en_us?: string | undefined;
|
|
52290
|
+
} | undefined;
|
|
52291
|
+
}[] | undefined;
|
|
52292
|
+
jr_hiring_managers?: {
|
|
52293
|
+
id?: string | undefined;
|
|
52294
|
+
name?: {
|
|
52295
|
+
zh_cn?: string | undefined;
|
|
52296
|
+
en_us?: string | undefined;
|
|
52297
|
+
} | undefined;
|
|
52298
|
+
}[] | undefined;
|
|
52299
|
+
direct_leader_list?: {
|
|
52300
|
+
id?: string | undefined;
|
|
52301
|
+
name?: {
|
|
52302
|
+
zh_cn?: string | undefined;
|
|
52303
|
+
en_us?: string | undefined;
|
|
52304
|
+
} | undefined;
|
|
52305
|
+
}[] | undefined;
|
|
52306
|
+
start_time?: string | undefined;
|
|
52307
|
+
deadline?: string | undefined;
|
|
52308
|
+
priority?: number | undefined;
|
|
52309
|
+
required_degree?: number | undefined;
|
|
52310
|
+
max_salary?: string | undefined;
|
|
52311
|
+
min_salary?: string | undefined;
|
|
52312
|
+
address?: {
|
|
52313
|
+
id?: string | undefined;
|
|
52314
|
+
name?: {
|
|
52315
|
+
zh_cn?: string | undefined;
|
|
52316
|
+
en_us?: string | undefined;
|
|
52317
|
+
} | undefined;
|
|
52318
|
+
} | undefined;
|
|
52319
|
+
description?: string | undefined;
|
|
52320
|
+
customized_data_list?: {
|
|
52321
|
+
object_id?: string | undefined;
|
|
52322
|
+
name?: {
|
|
52323
|
+
zh_cn?: string | undefined;
|
|
52324
|
+
en_us?: string | undefined;
|
|
52325
|
+
} | undefined;
|
|
52326
|
+
object_type?: number | undefined;
|
|
52327
|
+
value?: {
|
|
52328
|
+
content?: string | undefined;
|
|
52329
|
+
option?: {
|
|
52330
|
+
key?: string | undefined;
|
|
52331
|
+
name?: {
|
|
52332
|
+
zh_cn?: string | undefined;
|
|
52333
|
+
en_us?: string | undefined;
|
|
52334
|
+
} | undefined;
|
|
52335
|
+
} | undefined;
|
|
52336
|
+
option_list?: {
|
|
52337
|
+
key?: string | undefined;
|
|
52338
|
+
name?: {
|
|
52339
|
+
zh_cn?: string | undefined;
|
|
52340
|
+
en_us?: string | undefined;
|
|
52341
|
+
} | undefined;
|
|
52342
|
+
}[] | undefined;
|
|
52343
|
+
time_range?: {
|
|
52344
|
+
start_time?: string | undefined;
|
|
52345
|
+
end_time?: string | undefined;
|
|
52346
|
+
} | undefined;
|
|
52347
|
+
time?: string | undefined;
|
|
52348
|
+
number?: string | undefined;
|
|
52349
|
+
} | undefined;
|
|
52350
|
+
}[] | undefined;
|
|
52351
|
+
job_id_list?: string[] | undefined;
|
|
52352
|
+
process_type?: number | undefined;
|
|
52353
|
+
job_type?: {
|
|
52354
|
+
id: string;
|
|
52355
|
+
name: {
|
|
52356
|
+
zh_cn?: string;
|
|
52357
|
+
en_us?: string;
|
|
52358
|
+
};
|
|
52359
|
+
parent_id?: string | undefined;
|
|
52360
|
+
} | undefined;
|
|
52361
|
+
}[] | undefined;
|
|
52362
|
+
} | undefined;
|
|
52363
|
+
}>;
|
|
52364
|
+
/**
|
|
52365
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=job_requirement&apiName=list_by_id&version=v1 click to debug }
|
|
52366
|
+
*
|
|
52367
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list_by_id&project=hire&resource=job_requirement&version=v1 document }
|
|
52368
|
+
*
|
|
52369
|
+
* 获取招聘需求信息
|
|
52370
|
+
*/
|
|
52371
|
+
listById: (payload?: {
|
|
52372
|
+
data?: {
|
|
52373
|
+
id_list?: Array<string>;
|
|
52374
|
+
};
|
|
52375
|
+
params?: {
|
|
52376
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
52377
|
+
department_id_type?: "open_department_id" | "department_id";
|
|
52378
|
+
};
|
|
52379
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
52380
|
+
code?: number | undefined;
|
|
52381
|
+
msg?: string | undefined;
|
|
52382
|
+
data?: {
|
|
52383
|
+
items?: {
|
|
52384
|
+
id?: string | undefined;
|
|
52385
|
+
short_code?: string | undefined;
|
|
52386
|
+
name?: string | undefined;
|
|
52387
|
+
display_progress?: number | undefined;
|
|
52388
|
+
head_count?: number | undefined;
|
|
52389
|
+
recruitment_type?: {
|
|
52390
|
+
id?: string | undefined;
|
|
52391
|
+
name?: {
|
|
52392
|
+
zh_cn?: string | undefined;
|
|
52393
|
+
en_us?: string | undefined;
|
|
52394
|
+
} | undefined;
|
|
52395
|
+
} | undefined;
|
|
52396
|
+
employee_type?: {
|
|
52397
|
+
id?: string | undefined;
|
|
52398
|
+
name?: {
|
|
52399
|
+
zh_cn?: string | undefined;
|
|
52400
|
+
en_us?: string | undefined;
|
|
52401
|
+
} | undefined;
|
|
52402
|
+
} | undefined;
|
|
51676
52403
|
max_level?: {
|
|
51677
52404
|
id?: string | undefined;
|
|
51678
52405
|
name?: {
|
|
@@ -51769,137 +52496,15 @@ declare abstract class Client$1 {
|
|
|
51769
52496
|
} | undefined;
|
|
51770
52497
|
}[] | undefined;
|
|
51771
52498
|
job_id_list?: string[] | undefined;
|
|
51772
|
-
|
|
51773
|
-
|
|
51774
|
-
|
|
51775
|
-
|
|
51776
|
-
|
|
51777
|
-
|
|
51778
|
-
|
|
51779
|
-
|
|
51780
|
-
* 获取招聘需求信息
|
|
51781
|
-
*/
|
|
51782
|
-
listById: (payload?: {
|
|
51783
|
-
data?: {
|
|
51784
|
-
id_list?: Array<string>;
|
|
51785
|
-
};
|
|
51786
|
-
params?: {
|
|
51787
|
-
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
51788
|
-
department_id_type?: "open_department_id" | "department_id";
|
|
51789
|
-
};
|
|
51790
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
51791
|
-
code?: number | undefined;
|
|
51792
|
-
msg?: string | undefined;
|
|
51793
|
-
data?: {
|
|
51794
|
-
items?: {
|
|
51795
|
-
id?: string | undefined;
|
|
51796
|
-
short_code?: string | undefined;
|
|
51797
|
-
name?: string | undefined;
|
|
51798
|
-
display_progress?: number | undefined;
|
|
51799
|
-
head_count?: number | undefined;
|
|
51800
|
-
recruitment_type?: {
|
|
51801
|
-
id?: string | undefined;
|
|
51802
|
-
name?: {
|
|
51803
|
-
zh_cn?: string | undefined;
|
|
51804
|
-
en_us?: string | undefined;
|
|
51805
|
-
} | undefined;
|
|
51806
|
-
} | undefined;
|
|
51807
|
-
max_level?: {
|
|
51808
|
-
id?: string | undefined;
|
|
51809
|
-
name?: {
|
|
51810
|
-
zh_cn?: string | undefined;
|
|
51811
|
-
en_us?: string | undefined;
|
|
51812
|
-
} | undefined;
|
|
51813
|
-
} | undefined;
|
|
51814
|
-
min_level?: {
|
|
51815
|
-
id?: string | undefined;
|
|
51816
|
-
name?: {
|
|
51817
|
-
zh_cn?: string | undefined;
|
|
51818
|
-
en_us?: string | undefined;
|
|
51819
|
-
} | undefined;
|
|
51820
|
-
} | undefined;
|
|
51821
|
-
sequence?: {
|
|
51822
|
-
id?: string | undefined;
|
|
51823
|
-
name?: {
|
|
51824
|
-
zh_cn?: string | undefined;
|
|
51825
|
-
en_us?: string | undefined;
|
|
51826
|
-
} | undefined;
|
|
51827
|
-
} | undefined;
|
|
51828
|
-
category?: number | undefined;
|
|
51829
|
-
department?: {
|
|
51830
|
-
id?: string | undefined;
|
|
51831
|
-
name?: {
|
|
51832
|
-
zh_cn?: string | undefined;
|
|
51833
|
-
en_us?: string | undefined;
|
|
51834
|
-
} | undefined;
|
|
51835
|
-
} | undefined;
|
|
51836
|
-
recruiter_list?: {
|
|
51837
|
-
id?: string | undefined;
|
|
51838
|
-
name?: {
|
|
51839
|
-
zh_cn?: string | undefined;
|
|
51840
|
-
en_us?: string | undefined;
|
|
51841
|
-
} | undefined;
|
|
51842
|
-
}[] | undefined;
|
|
51843
|
-
jr_hiring_managers?: {
|
|
51844
|
-
id?: string | undefined;
|
|
51845
|
-
name?: {
|
|
51846
|
-
zh_cn?: string | undefined;
|
|
51847
|
-
en_us?: string | undefined;
|
|
51848
|
-
} | undefined;
|
|
51849
|
-
}[] | undefined;
|
|
51850
|
-
direct_leader_list?: {
|
|
51851
|
-
id?: string | undefined;
|
|
51852
|
-
name?: {
|
|
51853
|
-
zh_cn?: string | undefined;
|
|
51854
|
-
en_us?: string | undefined;
|
|
51855
|
-
} | undefined;
|
|
51856
|
-
}[] | undefined;
|
|
51857
|
-
start_time?: string | undefined;
|
|
51858
|
-
deadline?: string | undefined;
|
|
51859
|
-
priority?: number | undefined;
|
|
51860
|
-
required_degree?: number | undefined;
|
|
51861
|
-
max_salary?: string | undefined;
|
|
51862
|
-
min_salary?: string | undefined;
|
|
51863
|
-
address?: {
|
|
51864
|
-
id?: string | undefined;
|
|
51865
|
-
name?: {
|
|
51866
|
-
zh_cn?: string | undefined;
|
|
51867
|
-
en_us?: string | undefined;
|
|
51868
|
-
} | undefined;
|
|
52499
|
+
process_type?: number | undefined;
|
|
52500
|
+
job_type?: {
|
|
52501
|
+
id: string;
|
|
52502
|
+
name: {
|
|
52503
|
+
zh_cn?: string;
|
|
52504
|
+
en_us?: string;
|
|
52505
|
+
};
|
|
52506
|
+
parent_id?: string | undefined;
|
|
51869
52507
|
} | undefined;
|
|
51870
|
-
description?: string | undefined;
|
|
51871
|
-
customized_data_list?: {
|
|
51872
|
-
object_id?: string | undefined;
|
|
51873
|
-
name?: {
|
|
51874
|
-
zh_cn?: string | undefined;
|
|
51875
|
-
en_us?: string | undefined;
|
|
51876
|
-
} | undefined;
|
|
51877
|
-
object_type?: number | undefined;
|
|
51878
|
-
value?: {
|
|
51879
|
-
content?: string | undefined;
|
|
51880
|
-
option?: {
|
|
51881
|
-
key?: string | undefined;
|
|
51882
|
-
name?: {
|
|
51883
|
-
zh_cn?: string | undefined;
|
|
51884
|
-
en_us?: string | undefined;
|
|
51885
|
-
} | undefined;
|
|
51886
|
-
} | undefined;
|
|
51887
|
-
option_list?: {
|
|
51888
|
-
key?: string | undefined;
|
|
51889
|
-
name?: {
|
|
51890
|
-
zh_cn?: string | undefined;
|
|
51891
|
-
en_us?: string | undefined;
|
|
51892
|
-
} | undefined;
|
|
51893
|
-
}[] | undefined;
|
|
51894
|
-
time_range?: {
|
|
51895
|
-
start_time?: string | undefined;
|
|
51896
|
-
end_time?: string | undefined;
|
|
51897
|
-
} | undefined;
|
|
51898
|
-
time?: string | undefined;
|
|
51899
|
-
number?: string | undefined;
|
|
51900
|
-
} | undefined;
|
|
51901
|
-
}[] | undefined;
|
|
51902
|
-
job_id_list?: string[] | undefined;
|
|
51903
52508
|
}[] | undefined;
|
|
51904
52509
|
} | undefined;
|
|
51905
52510
|
}>;
|
|
@@ -51917,7 +52522,8 @@ declare abstract class Client$1 {
|
|
|
51917
52522
|
name: string;
|
|
51918
52523
|
display_progress: number;
|
|
51919
52524
|
head_count: number;
|
|
51920
|
-
recruitment_type_id
|
|
52525
|
+
recruitment_type_id?: string;
|
|
52526
|
+
employee_type_id?: string;
|
|
51921
52527
|
max_level_id?: string;
|
|
51922
52528
|
min_level_id?: string;
|
|
51923
52529
|
sequence_id?: string;
|
|
@@ -51938,6 +52544,8 @@ declare abstract class Client$1 {
|
|
|
51938
52544
|
object_id?: string;
|
|
51939
52545
|
value?: string;
|
|
51940
52546
|
}>;
|
|
52547
|
+
process_type?: number;
|
|
52548
|
+
job_type_id?: string;
|
|
51941
52549
|
};
|
|
51942
52550
|
params?: {
|
|
51943
52551
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -52218,6 +52826,10 @@ declare abstract class Client$1 {
|
|
|
52218
52826
|
job_level_id?: string;
|
|
52219
52827
|
probation_month?: number;
|
|
52220
52828
|
contract_year?: number;
|
|
52829
|
+
contract_period?: {
|
|
52830
|
+
period_type: number;
|
|
52831
|
+
period: number;
|
|
52832
|
+
};
|
|
52221
52833
|
expected_onboard_date?: string;
|
|
52222
52834
|
onboard_address_id?: string;
|
|
52223
52835
|
work_address_id?: string;
|
|
@@ -52230,7 +52842,7 @@ declare abstract class Client$1 {
|
|
|
52230
52842
|
operator_user_id: string;
|
|
52231
52843
|
};
|
|
52232
52844
|
salary_info?: {
|
|
52233
|
-
currency
|
|
52845
|
+
currency: string;
|
|
52234
52846
|
basic_salary?: string;
|
|
52235
52847
|
probation_salary_percentage?: string;
|
|
52236
52848
|
award_salary_multiple?: string;
|
|
@@ -52264,6 +52876,10 @@ declare abstract class Client$1 {
|
|
|
52264
52876
|
job_level_id?: string | undefined;
|
|
52265
52877
|
probation_month?: number | undefined;
|
|
52266
52878
|
contract_year?: number | undefined;
|
|
52879
|
+
contract_period?: {
|
|
52880
|
+
period_type: number;
|
|
52881
|
+
period: number;
|
|
52882
|
+
} | undefined;
|
|
52267
52883
|
expected_onboard_date?: string | undefined;
|
|
52268
52884
|
onboard_address_id?: string | undefined;
|
|
52269
52885
|
work_address_id?: string | undefined;
|
|
@@ -52276,7 +52892,7 @@ declare abstract class Client$1 {
|
|
|
52276
52892
|
operator_user_id: string;
|
|
52277
52893
|
} | undefined;
|
|
52278
52894
|
salary_info?: {
|
|
52279
|
-
currency
|
|
52895
|
+
currency: string;
|
|
52280
52896
|
basic_salary?: string | undefined;
|
|
52281
52897
|
probation_salary_percentage?: string | undefined;
|
|
52282
52898
|
award_salary_multiple?: string | undefined;
|
|
@@ -52331,6 +52947,10 @@ declare abstract class Client$1 {
|
|
|
52331
52947
|
department_id?: string | undefined;
|
|
52332
52948
|
probation_month?: number | undefined;
|
|
52333
52949
|
contract_year?: number | undefined;
|
|
52950
|
+
contract_period?: {
|
|
52951
|
+
period_type: number;
|
|
52952
|
+
period: number;
|
|
52953
|
+
} | undefined;
|
|
52334
52954
|
recruitment_type?: {
|
|
52335
52955
|
id?: string | undefined;
|
|
52336
52956
|
zh_name?: string | undefined;
|
|
@@ -52430,6 +53050,13 @@ declare abstract class Client$1 {
|
|
|
52430
53050
|
job_id?: string | undefined;
|
|
52431
53051
|
job_name?: string | undefined;
|
|
52432
53052
|
} | undefined;
|
|
53053
|
+
customized_module_list?: {
|
|
53054
|
+
ID?: string | undefined;
|
|
53055
|
+
object_list?: {
|
|
53056
|
+
object_id?: string | undefined;
|
|
53057
|
+
customize_value?: string | undefined;
|
|
53058
|
+
}[] | undefined;
|
|
53059
|
+
}[] | undefined;
|
|
52433
53060
|
} | undefined;
|
|
52434
53061
|
} | undefined;
|
|
52435
53062
|
}>;
|
|
@@ -52552,6 +53179,10 @@ declare abstract class Client$1 {
|
|
|
52552
53179
|
job_level_id?: string;
|
|
52553
53180
|
probation_month?: number;
|
|
52554
53181
|
contract_year?: number;
|
|
53182
|
+
contract_period?: {
|
|
53183
|
+
period_type: number;
|
|
53184
|
+
period: number;
|
|
53185
|
+
};
|
|
52555
53186
|
expected_onboard_date?: string;
|
|
52556
53187
|
onboard_address_id?: string;
|
|
52557
53188
|
work_address_id?: string;
|
|
@@ -52564,7 +53195,7 @@ declare abstract class Client$1 {
|
|
|
52564
53195
|
operator_user_id: string;
|
|
52565
53196
|
};
|
|
52566
53197
|
salary_info?: {
|
|
52567
|
-
currency
|
|
53198
|
+
currency: string;
|
|
52568
53199
|
basic_salary?: string;
|
|
52569
53200
|
probation_salary_percentage?: string;
|
|
52570
53201
|
award_salary_multiple?: string;
|
|
@@ -52587,7 +53218,47 @@ declare abstract class Client$1 {
|
|
|
52587
53218
|
}, options?: IRequestOptions$1) => Promise<{
|
|
52588
53219
|
code?: number | undefined;
|
|
52589
53220
|
msg?: string | undefined;
|
|
52590
|
-
data?: {
|
|
53221
|
+
data?: {
|
|
53222
|
+
offer_id?: string | undefined;
|
|
53223
|
+
schema_id?: string | undefined;
|
|
53224
|
+
basic_info?: {
|
|
53225
|
+
department_id?: string | undefined;
|
|
53226
|
+
leader_user_id?: string | undefined;
|
|
53227
|
+
employment_job_id?: string | undefined;
|
|
53228
|
+
employee_type_id?: string | undefined;
|
|
53229
|
+
job_family_id?: string | undefined;
|
|
53230
|
+
job_level_id?: string | undefined;
|
|
53231
|
+
probation_month?: number | undefined;
|
|
53232
|
+
contract_year?: number | undefined;
|
|
53233
|
+
contract_period?: {
|
|
53234
|
+
period_type: number;
|
|
53235
|
+
period: number;
|
|
53236
|
+
} | undefined;
|
|
53237
|
+
expected_onboard_date?: string | undefined;
|
|
53238
|
+
onboard_address_id?: string | undefined;
|
|
53239
|
+
work_address_id?: string | undefined;
|
|
53240
|
+
owner_user_id?: string | undefined;
|
|
53241
|
+
recommended_words?: string | undefined;
|
|
53242
|
+
job_requirement_id?: string | undefined;
|
|
53243
|
+
job_process_type_id?: number | undefined;
|
|
53244
|
+
attachment_id_list?: string[] | undefined;
|
|
53245
|
+
attachment_description?: string | undefined;
|
|
53246
|
+
operator_user_id: string;
|
|
53247
|
+
} | undefined;
|
|
53248
|
+
salary_info?: {
|
|
53249
|
+
currency: string;
|
|
53250
|
+
basic_salary?: string | undefined;
|
|
53251
|
+
probation_salary_percentage?: string | undefined;
|
|
53252
|
+
award_salary_multiple?: string | undefined;
|
|
53253
|
+
option_shares?: string | undefined;
|
|
53254
|
+
quarterly_bonus?: string | undefined;
|
|
53255
|
+
half_year_bonus?: string | undefined;
|
|
53256
|
+
} | undefined;
|
|
53257
|
+
customized_info_list?: {
|
|
53258
|
+
id?: string | undefined;
|
|
53259
|
+
value?: string | undefined;
|
|
53260
|
+
}[] | undefined;
|
|
53261
|
+
} | undefined;
|
|
52591
53262
|
}>;
|
|
52592
53263
|
};
|
|
52593
53264
|
/**
|
|
@@ -53651,6 +54322,7 @@ declare abstract class Client$1 {
|
|
|
53651
54322
|
} | undefined;
|
|
53652
54323
|
}[] | undefined;
|
|
53653
54324
|
modify_time?: string | undefined;
|
|
54325
|
+
hukou_location_code?: string | undefined;
|
|
53654
54326
|
} | undefined;
|
|
53655
54327
|
education_list?: {
|
|
53656
54328
|
id?: string | undefined;
|
|
@@ -54388,6 +55060,10 @@ declare abstract class Client$1 {
|
|
|
54388
55060
|
download_has_permission_setting?: "all_members" | "not_anyone";
|
|
54389
55061
|
message_has_permission_setting?: "all_members" | "not_anyone";
|
|
54390
55062
|
};
|
|
55063
|
+
urgent_setting?: "only_owner" | "all_members";
|
|
55064
|
+
video_conference_setting?: "only_owner" | "all_members";
|
|
55065
|
+
edit_permission?: "only_owner" | "all_members";
|
|
55066
|
+
chat_tags?: Array<string>;
|
|
54391
55067
|
};
|
|
54392
55068
|
params?: {
|
|
54393
55069
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -54409,6 +55085,8 @@ declare abstract class Client$1 {
|
|
|
54409
55085
|
} | undefined;
|
|
54410
55086
|
owner_id?: string | undefined;
|
|
54411
55087
|
owner_id_type?: string | undefined;
|
|
55088
|
+
urgent_setting?: "all_members" | "only_owner" | undefined;
|
|
55089
|
+
video_conference_setting?: "all_members" | "only_owner" | undefined;
|
|
54412
55090
|
add_member_permission?: string | undefined;
|
|
54413
55091
|
share_card_permission?: string | undefined;
|
|
54414
55092
|
at_all_permission?: string | undefined;
|
|
@@ -54509,6 +55187,8 @@ declare abstract class Client$1 {
|
|
|
54509
55187
|
download_has_permission_setting?: "all_members" | "not_anyone" | undefined;
|
|
54510
55188
|
message_has_permission_setting?: "all_members" | "not_anyone" | undefined;
|
|
54511
55189
|
} | undefined;
|
|
55190
|
+
urgent_setting?: "all_members" | "only_owner" | undefined;
|
|
55191
|
+
video_conference_setting?: "all_members" | "only_owner" | undefined;
|
|
54512
55192
|
} | undefined;
|
|
54513
55193
|
}>;
|
|
54514
55194
|
/**
|
|
@@ -54694,6 +55374,8 @@ declare abstract class Client$1 {
|
|
|
54694
55374
|
message_has_permission_setting?: "all_members" | "not_anyone";
|
|
54695
55375
|
};
|
|
54696
55376
|
chat_type?: string;
|
|
55377
|
+
urgent_setting?: "only_owner" | "all_members";
|
|
55378
|
+
video_conference_setting?: "only_owner" | "all_members";
|
|
54697
55379
|
};
|
|
54698
55380
|
params?: {
|
|
54699
55381
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -55741,7 +56423,7 @@ declare abstract class Client$1 {
|
|
|
55741
56423
|
}>;
|
|
55742
56424
|
};
|
|
55743
56425
|
/**
|
|
55744
|
-
*
|
|
56426
|
+
* 消息 - 消息卡片
|
|
55745
56427
|
*/
|
|
55746
56428
|
message: {
|
|
55747
56429
|
/**
|
|
@@ -56720,80 +57402,6 @@ declare abstract class Client$1 {
|
|
|
56720
57402
|
} | undefined;
|
|
56721
57403
|
}>;
|
|
56722
57404
|
};
|
|
56723
|
-
/**
|
|
56724
|
-
* 特别关注(灰度租户可见)
|
|
56725
|
-
*/
|
|
56726
|
-
specialFocus: {
|
|
56727
|
-
listWithIterator: (payload?: {
|
|
56728
|
-
params?: {
|
|
56729
|
-
member_id_type?: "user_id" | "union_id" | "open_id";
|
|
56730
|
-
page_size?: number;
|
|
56731
|
-
page_token?: string;
|
|
56732
|
-
};
|
|
56733
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
56734
|
-
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
56735
|
-
items?: {
|
|
56736
|
-
id: string;
|
|
56737
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
56738
|
-
}[] | undefined;
|
|
56739
|
-
} | null, void, unknown>;
|
|
56740
|
-
}>;
|
|
56741
|
-
/**
|
|
56742
|
-
* {@link https://open.feishu.cn/api-explorer?project=im&resource=special_focus&apiName=list&version=v1 click to debug }
|
|
56743
|
-
*
|
|
56744
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/special_focus/list document }
|
|
56745
|
-
*
|
|
56746
|
-
* 获取特别关注列表
|
|
56747
|
-
*
|
|
56748
|
-
* 获取用户的特别关注列表。
|
|
56749
|
-
*/
|
|
56750
|
-
list: (payload?: {
|
|
56751
|
-
params?: {
|
|
56752
|
-
member_id_type?: "user_id" | "union_id" | "open_id";
|
|
56753
|
-
page_size?: number;
|
|
56754
|
-
page_token?: string;
|
|
56755
|
-
};
|
|
56756
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
56757
|
-
code?: number | undefined;
|
|
56758
|
-
msg?: string | undefined;
|
|
56759
|
-
data?: {
|
|
56760
|
-
items?: {
|
|
56761
|
-
id: string;
|
|
56762
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
56763
|
-
}[] | undefined;
|
|
56764
|
-
page_token?: string | undefined;
|
|
56765
|
-
has_more?: boolean | undefined;
|
|
56766
|
-
} | undefined;
|
|
56767
|
-
}>;
|
|
56768
|
-
/**
|
|
56769
|
-
* {@link https://open.feishu.cn/api-explorer?project=im&resource=special_focus&apiName=unread&version=v1 click to debug }
|
|
56770
|
-
*
|
|
56771
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/special_focus/unread document }
|
|
56772
|
-
*
|
|
56773
|
-
* 获取特别关注未读信息
|
|
56774
|
-
*
|
|
56775
|
-
* 支持按单聊类型和群聊类型获取用户的特别关注未读消息数。
|
|
56776
|
-
*/
|
|
56777
|
-
unread: (payload?: {
|
|
56778
|
-
data?: {
|
|
56779
|
-
id_list?: Array<string>;
|
|
56780
|
-
chat_mode?: "group" | "p2p";
|
|
56781
|
-
};
|
|
56782
|
-
params?: {
|
|
56783
|
-
member_id_type?: "user_id" | "union_id" | "open_id" | "app_id";
|
|
56784
|
-
};
|
|
56785
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
56786
|
-
code?: number | undefined;
|
|
56787
|
-
msg?: string | undefined;
|
|
56788
|
-
data?: {
|
|
56789
|
-
special_focus_unread?: {
|
|
56790
|
-
id: string;
|
|
56791
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
56792
|
-
unread_count?: string | undefined;
|
|
56793
|
-
}[] | undefined;
|
|
56794
|
-
} | undefined;
|
|
56795
|
-
}>;
|
|
56796
|
-
};
|
|
56797
57405
|
};
|
|
56798
57406
|
/**
|
|
56799
57407
|
* 邮箱
|
|
@@ -57653,6 +58261,7 @@ declare abstract class Client$1 {
|
|
|
57653
58261
|
data?: {
|
|
57654
58262
|
email?: string;
|
|
57655
58263
|
name?: string;
|
|
58264
|
+
geo?: string;
|
|
57656
58265
|
};
|
|
57657
58266
|
}, options?: IRequestOptions$1) => Promise<{
|
|
57658
58267
|
code?: number | undefined;
|
|
@@ -57661,6 +58270,7 @@ declare abstract class Client$1 {
|
|
|
57661
58270
|
public_mailbox_id?: string | undefined;
|
|
57662
58271
|
email?: string | undefined;
|
|
57663
58272
|
name?: string | undefined;
|
|
58273
|
+
geo?: string | undefined;
|
|
57664
58274
|
} | undefined;
|
|
57665
58275
|
}>;
|
|
57666
58276
|
/**
|
|
@@ -57701,10 +58311,13 @@ declare abstract class Client$1 {
|
|
|
57701
58311
|
public_mailbox_id?: string | undefined;
|
|
57702
58312
|
email?: string | undefined;
|
|
57703
58313
|
name?: string | undefined;
|
|
58314
|
+
geo?: string | undefined;
|
|
57704
58315
|
} | undefined;
|
|
57705
58316
|
}>;
|
|
57706
58317
|
listWithIterator: (payload?: {
|
|
57707
58318
|
params?: {
|
|
58319
|
+
user_id?: string;
|
|
58320
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
57708
58321
|
page_token?: string;
|
|
57709
58322
|
page_size?: number;
|
|
57710
58323
|
};
|
|
@@ -57714,6 +58327,7 @@ declare abstract class Client$1 {
|
|
|
57714
58327
|
public_mailbox_id?: string | undefined;
|
|
57715
58328
|
email?: string | undefined;
|
|
57716
58329
|
name?: string | undefined;
|
|
58330
|
+
geo?: string | undefined;
|
|
57717
58331
|
}[] | undefined;
|
|
57718
58332
|
} | null, void, unknown>;
|
|
57719
58333
|
}>;
|
|
@@ -57728,6 +58342,8 @@ declare abstract class Client$1 {
|
|
|
57728
58342
|
*/
|
|
57729
58343
|
list: (payload?: {
|
|
57730
58344
|
params?: {
|
|
58345
|
+
user_id?: string;
|
|
58346
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
57731
58347
|
page_token?: string;
|
|
57732
58348
|
page_size?: number;
|
|
57733
58349
|
};
|
|
@@ -57741,6 +58357,7 @@ declare abstract class Client$1 {
|
|
|
57741
58357
|
public_mailbox_id?: string | undefined;
|
|
57742
58358
|
email?: string | undefined;
|
|
57743
58359
|
name?: string | undefined;
|
|
58360
|
+
geo?: string | undefined;
|
|
57744
58361
|
}[] | undefined;
|
|
57745
58362
|
} | undefined;
|
|
57746
58363
|
}>;
|
|
@@ -57757,6 +58374,7 @@ declare abstract class Client$1 {
|
|
|
57757
58374
|
data?: {
|
|
57758
58375
|
email?: string;
|
|
57759
58376
|
name?: string;
|
|
58377
|
+
geo?: string;
|
|
57760
58378
|
};
|
|
57761
58379
|
path?: {
|
|
57762
58380
|
public_mailbox_id?: string;
|
|
@@ -57768,6 +58386,7 @@ declare abstract class Client$1 {
|
|
|
57768
58386
|
public_mailbox_id?: string | undefined;
|
|
57769
58387
|
email?: string | undefined;
|
|
57770
58388
|
name?: string | undefined;
|
|
58389
|
+
geo?: string | undefined;
|
|
57771
58390
|
} | undefined;
|
|
57772
58391
|
}>;
|
|
57773
58392
|
/**
|
|
@@ -57783,6 +58402,7 @@ declare abstract class Client$1 {
|
|
|
57783
58402
|
data?: {
|
|
57784
58403
|
email?: string;
|
|
57785
58404
|
name?: string;
|
|
58405
|
+
geo?: string;
|
|
57786
58406
|
};
|
|
57787
58407
|
path?: {
|
|
57788
58408
|
public_mailbox_id?: string;
|
|
@@ -57794,6 +58414,7 @@ declare abstract class Client$1 {
|
|
|
57794
58414
|
public_mailbox_id?: string | undefined;
|
|
57795
58415
|
email?: string | undefined;
|
|
57796
58416
|
name?: string | undefined;
|
|
58417
|
+
geo?: string | undefined;
|
|
57797
58418
|
} | undefined;
|
|
57798
58419
|
}>;
|
|
57799
58420
|
};
|
|
@@ -59585,6 +60206,11 @@ declare abstract class Client$1 {
|
|
|
59585
60206
|
};
|
|
59586
60207
|
schema_id?: string;
|
|
59587
60208
|
app_id?: string;
|
|
60209
|
+
connect_type?: number;
|
|
60210
|
+
connector_param?: {
|
|
60211
|
+
callback_user_id_type?: number;
|
|
60212
|
+
callback_endpoint?: string;
|
|
60213
|
+
};
|
|
59588
60214
|
};
|
|
59589
60215
|
}, options?: IRequestOptions$1) => Promise<{
|
|
59590
60216
|
code?: number | undefined;
|
|
@@ -59613,6 +60239,11 @@ declare abstract class Client$1 {
|
|
|
59613
60239
|
} | undefined;
|
|
59614
60240
|
schema_id?: string | undefined;
|
|
59615
60241
|
app_id?: string | undefined;
|
|
60242
|
+
connect_type?: number | undefined;
|
|
60243
|
+
connector_param?: {
|
|
60244
|
+
callback_user_id_type?: number | undefined;
|
|
60245
|
+
callback_endpoint?: string | undefined;
|
|
60246
|
+
} | undefined;
|
|
59616
60247
|
} | undefined;
|
|
59617
60248
|
} | undefined;
|
|
59618
60249
|
}>;
|
|
@@ -59674,6 +60305,11 @@ declare abstract class Client$1 {
|
|
|
59674
60305
|
} | undefined;
|
|
59675
60306
|
schema_id?: string | undefined;
|
|
59676
60307
|
app_id?: string | undefined;
|
|
60308
|
+
connect_type?: number | undefined;
|
|
60309
|
+
connector_param?: {
|
|
60310
|
+
callback_user_id_type?: number | undefined;
|
|
60311
|
+
callback_endpoint?: string | undefined;
|
|
60312
|
+
} | undefined;
|
|
59677
60313
|
} | undefined;
|
|
59678
60314
|
} | undefined;
|
|
59679
60315
|
}>;
|
|
@@ -59708,6 +60344,11 @@ declare abstract class Client$1 {
|
|
|
59708
60344
|
} | undefined;
|
|
59709
60345
|
schema_id?: string | undefined;
|
|
59710
60346
|
app_id?: string | undefined;
|
|
60347
|
+
connect_type?: number | undefined;
|
|
60348
|
+
connector_param?: {
|
|
60349
|
+
callback_user_id_type?: number | undefined;
|
|
60350
|
+
callback_endpoint?: string | undefined;
|
|
60351
|
+
} | undefined;
|
|
59711
60352
|
}[] | undefined;
|
|
59712
60353
|
} | null, void, unknown>;
|
|
59713
60354
|
}>;
|
|
@@ -59755,6 +60396,11 @@ declare abstract class Client$1 {
|
|
|
59755
60396
|
} | undefined;
|
|
59756
60397
|
schema_id?: string | undefined;
|
|
59757
60398
|
app_id?: string | undefined;
|
|
60399
|
+
connect_type?: number | undefined;
|
|
60400
|
+
connector_param?: {
|
|
60401
|
+
callback_user_id_type?: number | undefined;
|
|
60402
|
+
callback_endpoint?: string | undefined;
|
|
60403
|
+
} | undefined;
|
|
59758
60404
|
}[] | undefined;
|
|
59759
60405
|
} | undefined;
|
|
59760
60406
|
}>;
|
|
@@ -59783,6 +60429,10 @@ declare abstract class Client$1 {
|
|
|
59783
60429
|
en_us?: string;
|
|
59784
60430
|
ja_jp?: string;
|
|
59785
60431
|
};
|
|
60432
|
+
connector_param?: {
|
|
60433
|
+
callback_user_id_type?: number;
|
|
60434
|
+
callback_endpoint?: string;
|
|
60435
|
+
};
|
|
59786
60436
|
};
|
|
59787
60437
|
path: {
|
|
59788
60438
|
data_source_id: string;
|
|
@@ -59814,6 +60464,11 @@ declare abstract class Client$1 {
|
|
|
59814
60464
|
} | undefined;
|
|
59815
60465
|
schema_id?: string | undefined;
|
|
59816
60466
|
app_id?: string | undefined;
|
|
60467
|
+
connect_type?: number | undefined;
|
|
60468
|
+
connector_param?: {
|
|
60469
|
+
callback_user_id_type?: number | undefined;
|
|
60470
|
+
callback_endpoint?: string | undefined;
|
|
60471
|
+
} | undefined;
|
|
59817
60472
|
} | undefined;
|
|
59818
60473
|
} | undefined;
|
|
59819
60474
|
}>;
|
|
@@ -60014,6 +60669,7 @@ declare abstract class Client$1 {
|
|
|
60014
60669
|
text: string;
|
|
60015
60670
|
}>;
|
|
60016
60671
|
enable_client_filter?: boolean;
|
|
60672
|
+
reference_datasource_id?: string;
|
|
60017
60673
|
};
|
|
60018
60674
|
}>;
|
|
60019
60675
|
display: {
|
|
@@ -60076,6 +60732,7 @@ declare abstract class Client$1 {
|
|
|
60076
60732
|
text: string;
|
|
60077
60733
|
}>;
|
|
60078
60734
|
enable_client_filter?: boolean;
|
|
60735
|
+
reference_datasource_id?: string;
|
|
60079
60736
|
};
|
|
60080
60737
|
}>;
|
|
60081
60738
|
display: {
|
|
@@ -60168,6 +60825,7 @@ declare abstract class Client$1 {
|
|
|
60168
60825
|
text: string;
|
|
60169
60826
|
}>;
|
|
60170
60827
|
enable_client_filter?: boolean;
|
|
60828
|
+
reference_datasource_id?: string;
|
|
60171
60829
|
};
|
|
60172
60830
|
}>;
|
|
60173
60831
|
display: {
|
|
@@ -60251,6 +60909,7 @@ declare abstract class Client$1 {
|
|
|
60251
60909
|
text: string;
|
|
60252
60910
|
}>;
|
|
60253
60911
|
enable_client_filter?: boolean;
|
|
60912
|
+
reference_datasource_id?: string;
|
|
60254
60913
|
};
|
|
60255
60914
|
}>;
|
|
60256
60915
|
display: {
|
|
@@ -63617,6 +64276,7 @@ declare abstract class Client$1 {
|
|
|
63617
64276
|
msg?: string | undefined;
|
|
63618
64277
|
data?: {
|
|
63619
64278
|
disable_inform?: {
|
|
64279
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63620
64280
|
if_inform: boolean;
|
|
63621
64281
|
informed_users?: {
|
|
63622
64282
|
user_id: string;
|
|
@@ -63636,6 +64296,7 @@ declare abstract class Client$1 {
|
|
|
63636
64296
|
data: {
|
|
63637
64297
|
scope_type: number;
|
|
63638
64298
|
disable_inform: {
|
|
64299
|
+
if_cover_child_scope?: boolean;
|
|
63639
64300
|
if_inform: boolean;
|
|
63640
64301
|
informed_users?: Array<{
|
|
63641
64302
|
user_id: string;
|
|
@@ -63679,6 +64340,7 @@ declare abstract class Client$1 {
|
|
|
63679
64340
|
msg?: string | undefined;
|
|
63680
64341
|
data?: {
|
|
63681
64342
|
reserve_form_config: {
|
|
64343
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63682
64344
|
reserve_form: boolean;
|
|
63683
64345
|
notified_users?: {
|
|
63684
64346
|
user_id: string;
|
|
@@ -63713,6 +64375,7 @@ declare abstract class Client$1 {
|
|
|
63713
64375
|
data: {
|
|
63714
64376
|
scope_type: number;
|
|
63715
64377
|
reserve_form_config: {
|
|
64378
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63716
64379
|
reserve_form: boolean;
|
|
63717
64380
|
notified_users?: {
|
|
63718
64381
|
user_id: string;
|
|
@@ -63774,6 +64437,7 @@ declare abstract class Client$1 {
|
|
|
63774
64437
|
}>;
|
|
63775
64438
|
};
|
|
63776
64439
|
time_config?: {
|
|
64440
|
+
if_cover_child_scope?: boolean;
|
|
63777
64441
|
time_switch: number;
|
|
63778
64442
|
days_in_advance?: number;
|
|
63779
64443
|
opening_hour?: string;
|
|
@@ -63782,6 +64446,7 @@ declare abstract class Client$1 {
|
|
|
63782
64446
|
max_duration?: number;
|
|
63783
64447
|
};
|
|
63784
64448
|
reserve_scope_config?: {
|
|
64449
|
+
if_cover_child_scope?: boolean;
|
|
63785
64450
|
allow_all_users?: number;
|
|
63786
64451
|
allow_users?: Array<{
|
|
63787
64452
|
user_id: string;
|
|
@@ -63830,6 +64495,7 @@ declare abstract class Client$1 {
|
|
|
63830
64495
|
}[] | undefined;
|
|
63831
64496
|
} | undefined;
|
|
63832
64497
|
time_config?: {
|
|
64498
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63833
64499
|
time_switch: number;
|
|
63834
64500
|
days_in_advance?: number | undefined;
|
|
63835
64501
|
opening_hour?: string | undefined;
|
|
@@ -63838,6 +64504,7 @@ declare abstract class Client$1 {
|
|
|
63838
64504
|
max_duration?: number | undefined;
|
|
63839
64505
|
} | undefined;
|
|
63840
64506
|
reserve_scope_config?: {
|
|
64507
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63841
64508
|
allow_all_users?: number | undefined;
|
|
63842
64509
|
allow_users?: {
|
|
63843
64510
|
user_id: string;
|
|
@@ -64306,6 +64973,7 @@ declare abstract class Client$1 {
|
|
|
64306
64973
|
room_background?: string | undefined;
|
|
64307
64974
|
display_background?: string | undefined;
|
|
64308
64975
|
digital_signage?: {
|
|
64976
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64309
64977
|
enable?: boolean | undefined;
|
|
64310
64978
|
mute?: boolean | undefined;
|
|
64311
64979
|
start_display?: number | undefined;
|
|
@@ -64323,6 +64991,7 @@ declare abstract class Client$1 {
|
|
|
64323
64991
|
}[] | undefined;
|
|
64324
64992
|
} | undefined;
|
|
64325
64993
|
room_box_digital_signage?: {
|
|
64994
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64326
64995
|
enable?: boolean | undefined;
|
|
64327
64996
|
mute?: boolean | undefined;
|
|
64328
64997
|
start_display?: number | undefined;
|
|
@@ -64368,6 +65037,7 @@ declare abstract class Client$1 {
|
|
|
64368
65037
|
room_background?: string;
|
|
64369
65038
|
display_background?: string;
|
|
64370
65039
|
digital_signage?: {
|
|
65040
|
+
if_cover_child_scope?: boolean;
|
|
64371
65041
|
enable?: boolean;
|
|
64372
65042
|
mute?: boolean;
|
|
64373
65043
|
start_display?: number;
|
|
@@ -64385,6 +65055,7 @@ declare abstract class Client$1 {
|
|
|
64385
65055
|
}>;
|
|
64386
65056
|
};
|
|
64387
65057
|
room_box_digital_signage?: {
|
|
65058
|
+
if_cover_child_scope?: boolean;
|
|
64388
65059
|
enable?: boolean;
|
|
64389
65060
|
mute?: boolean;
|
|
64390
65061
|
start_display?: number;
|
|
@@ -64685,6 +65356,7 @@ declare abstract class Client$1 {
|
|
|
64685
65356
|
room_background?: string;
|
|
64686
65357
|
display_background?: string;
|
|
64687
65358
|
digital_signage?: {
|
|
65359
|
+
if_cover_child_scope?: boolean;
|
|
64688
65360
|
enable?: boolean;
|
|
64689
65361
|
mute?: boolean;
|
|
64690
65362
|
start_display?: number;
|
|
@@ -64702,6 +65374,7 @@ declare abstract class Client$1 {
|
|
|
64702
65374
|
}>;
|
|
64703
65375
|
};
|
|
64704
65376
|
room_box_digital_signage?: {
|
|
65377
|
+
if_cover_child_scope?: boolean;
|
|
64705
65378
|
enable?: boolean;
|
|
64706
65379
|
mute?: boolean;
|
|
64707
65380
|
start_display?: number;
|
|
@@ -64764,6 +65437,7 @@ declare abstract class Client$1 {
|
|
|
64764
65437
|
room_background?: string | undefined;
|
|
64765
65438
|
display_background?: string | undefined;
|
|
64766
65439
|
digital_signage?: {
|
|
65440
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64767
65441
|
enable?: boolean | undefined;
|
|
64768
65442
|
mute?: boolean | undefined;
|
|
64769
65443
|
start_display?: number | undefined;
|
|
@@ -64781,6 +65455,7 @@ declare abstract class Client$1 {
|
|
|
64781
65455
|
}[] | undefined;
|
|
64782
65456
|
} | undefined;
|
|
64783
65457
|
room_box_digital_signage?: {
|
|
65458
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64784
65459
|
enable?: boolean | undefined;
|
|
64785
65460
|
mute?: boolean | undefined;
|
|
64786
65461
|
start_display?: number | undefined;
|
|
@@ -64816,6 +65491,7 @@ declare abstract class Client$1 {
|
|
|
64816
65491
|
room_background?: string | undefined;
|
|
64817
65492
|
display_background?: string | undefined;
|
|
64818
65493
|
digital_signage?: {
|
|
65494
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64819
65495
|
enable?: boolean | undefined;
|
|
64820
65496
|
mute?: boolean | undefined;
|
|
64821
65497
|
start_display?: number | undefined;
|
|
@@ -64833,6 +65509,7 @@ declare abstract class Client$1 {
|
|
|
64833
65509
|
}[] | undefined;
|
|
64834
65510
|
} | undefined;
|
|
64835
65511
|
room_box_digital_signage?: {
|
|
65512
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64836
65513
|
enable?: boolean | undefined;
|
|
64837
65514
|
mute?: boolean | undefined;
|
|
64838
65515
|
start_display?: number | undefined;
|
|
@@ -64944,6 +65621,7 @@ declare abstract class Client$1 {
|
|
|
64944
65621
|
getNode: (payload?: {
|
|
64945
65622
|
params: {
|
|
64946
65623
|
token: string;
|
|
65624
|
+
obj_type?: "doc" | "docx" | "sheet" | "mindnote" | "bitable" | "file" | "slides" | "wiki";
|
|
64947
65625
|
};
|
|
64948
65626
|
}, options?: IRequestOptions$1) => Promise<{
|
|
64949
65627
|
code?: number | undefined;
|
|
@@ -67238,6 +67916,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67238
67916
|
};
|
|
67239
67917
|
};
|
|
67240
67918
|
}>;
|
|
67919
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67241
67920
|
}>;
|
|
67242
67921
|
user_groups?: Array<{
|
|
67243
67922
|
user_group_id: string;
|
|
@@ -67375,6 +68054,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67375
68054
|
};
|
|
67376
68055
|
};
|
|
67377
68056
|
}>;
|
|
68057
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67378
68058
|
}>;
|
|
67379
68059
|
user_groups?: Array<{
|
|
67380
68060
|
user_group_id: string;
|
|
@@ -67473,6 +68153,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67473
68153
|
}>;
|
|
67474
68154
|
job_level_id?: string;
|
|
67475
68155
|
job_family_id?: string;
|
|
68156
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67476
68157
|
};
|
|
67477
68158
|
}) => Promise<any> | any;
|
|
67478
68159
|
/**
|
|
@@ -67563,6 +68244,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67563
68244
|
}>;
|
|
67564
68245
|
job_level_id?: string;
|
|
67565
68246
|
job_family_id?: string;
|
|
68247
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67566
68248
|
};
|
|
67567
68249
|
old_object?: {
|
|
67568
68250
|
department_ids?: Array<string>;
|
|
@@ -67657,6 +68339,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67657
68339
|
}>;
|
|
67658
68340
|
job_level_id?: string;
|
|
67659
68341
|
job_family_id?: string;
|
|
68342
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67660
68343
|
};
|
|
67661
68344
|
old_object?: {
|
|
67662
68345
|
open_id?: string;
|
|
@@ -67727,6 +68410,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67727
68410
|
}>;
|
|
67728
68411
|
job_level_id?: string;
|
|
67729
68412
|
job_family_id?: string;
|
|
68413
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
67730
68414
|
};
|
|
67731
68415
|
}) => Promise<any> | any;
|
|
67732
68416
|
/**
|
|
@@ -69163,6 +69847,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
69163
69847
|
root_id?: string;
|
|
69164
69848
|
parent_id?: string;
|
|
69165
69849
|
create_time: string;
|
|
69850
|
+
update_time?: string;
|
|
69166
69851
|
chat_id: string;
|
|
69167
69852
|
chat_type: string;
|
|
69168
69853
|
message_type: string;
|
|
@@ -69177,6 +69862,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
69177
69862
|
name: string;
|
|
69178
69863
|
tenant_key?: string;
|
|
69179
69864
|
}>;
|
|
69865
|
+
user_agent?: string;
|
|
69180
69866
|
};
|
|
69181
69867
|
}) => Promise<any> | any;
|
|
69182
69868
|
/**
|
|
@@ -69908,6 +70594,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
69908
70594
|
}>;
|
|
69909
70595
|
};
|
|
69910
70596
|
time_config?: {
|
|
70597
|
+
if_cover_child_scope?: boolean;
|
|
69911
70598
|
time_switch: number;
|
|
69912
70599
|
days_in_advance?: number;
|
|
69913
70600
|
opening_hour?: string;
|