feat(web-api): add webapi response changes as of 2026-08-21 (#2696) · slackapi/node-slack-sdk@bff3398 · GitHub
Skip to content

Commit bff3398

Browse files
authored
feat(web-api): add webapi response changes as of 2026-08-21 (#2696)
1 parent 614ed94 commit bff3398

199 files changed

Lines changed: 3626 additions & 235 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 12 additions & 0 deletions

packages/web-api/src/types/response/AdminAppsActivitiesListResponse.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export type AdminAppsActivitiesListResponse = WebAPICallResult & {
1515
ok?: boolean;
1616
provided?: string;
1717
response_metadata?: ResponseMetadata;
18+
warning?: string;
1819
};
1920

2021
export interface Activity {
@@ -35,24 +36,37 @@ export interface Activity {
3536
export interface Payload {
3637
action?: string;
3738
actor?: string;
39+
app_id?: string;
3840
billing_reason?: string[];
3941
bot_user_id?: string;
4042
bundle_size_kb?: number;
4143
channel_id?: string;
44+
code?: string;
4245
current_step?: number;
4346
datastore_name?: string;
4447
details?: string;
48+
elapsed_ms?: number;
4549
error?: string;
50+
error_stage?: string;
4651
exec_outcome?: string;
52+
extra_message?: string;
4753
function_execution_id?: string;
4854
function_id?: string;
4955
function_name?: string;
5056
function_type?: string;
57+
http_status_code?: number;
5158
inputs?: Inputs;
5259
is_billing_excluded?: boolean;
5360
log?: string;
61+
message?: string;
62+
outputs?: Outputs;
63+
provider_key?: string;
5464
request_type?: string;
65+
server_name?: string;
5566
team_id?: string;
67+
tokens_checked?: number;
68+
tool_count?: number;
69+
tool_name?: string;
5670
total_steps?: number;
5771
trigger?: Trigger;
5872
type?: string;
@@ -62,6 +76,11 @@ export interface Payload {
6276

6377
export type Inputs = {};
6478

79+
export interface Outputs {
80+
channel_id?: string;
81+
message_ts?: string;
82+
}
83+
6584
export interface Trigger {
6685
config?: Config;
6786
id?: string;

packages/web-api/src/types/response/AdminAppsConfigLookupResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export type AdminAppsConfigLookupResponse = WebAPICallResult & {
1515
ok?: boolean;
1616
provided?: string;
1717
response_metadata?: ResponseMetadata;
18+
warning?: string;
1819
};
1920

2021
export interface Config {

packages/web-api/src/types/response/AdminAppsConfigSetResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ export type AdminAppsConfigSetResponse = WebAPICallResult & {
1313
needed?: string;
1414
ok?: boolean;
1515
provided?: string;
16+
warning?: string;
1617
};

packages/web-api/src/types/response/AdminAppsRequestsCancelResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export type AdminAppsRequestsCancelResponse = WebAPICallResult & {
1414
ok?: boolean;
1515
provided?: string;
1616
response_metadata?: ResponseMetadata;
17+
warning?: string;
1718
};
1819

1920
export interface ResponseMetadata {

packages/web-api/src/types/response/AdminAuthPolicyAssignEntitiesResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ export type AdminAuthPolicyAssignEntitiesResponse = WebAPICallResult & {
1414
needed?: string;
1515
ok?: boolean;
1616
provided?: string;
17+
warning?: string;
1718
};

packages/web-api/src/types/response/AdminAuthPolicyGetEntitiesResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export type AdminAuthPolicyGetEntitiesResponse = WebAPICallResult & {
1515
needed?: string;
1616
ok?: boolean;
1717
provided?: string;
18+
warning?: string;
1819
};
1920

2021
export interface Entity {

packages/web-api/src/types/response/AdminAuthPolicyRemoveEntitiesResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ export type AdminAuthPolicyRemoveEntitiesResponse = WebAPICallResult & {
1414
needed?: string;
1515
ok?: boolean;
1616
provided?: string;
17+
warning?: string;
1718
};

packages/web-api/src/types/response/AdminBarriersCreateResponse.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export type AdminBarriersCreateResponse = WebAPICallResult & {
1515
ok?: boolean;
1616
provided?: string;
1717
response_metadata?: ResponseMetadata;
18+
warning?: string;
1819
};
1920

2021
export interface Barrier {

packages/web-api/src/types/response/AdminBarriersDeleteResponse.ts

Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)