@botpress/cognitive 0.3.13 → 0.3.14
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/.turbo/turbo-build.log +5 -5
- package/dist/index.d.ts +85 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
|
|
2
|
-
> @botpress/cognitive@0.3.
|
|
2
|
+
> @botpress/cognitive@0.3.14 build /home/runner/work/botpress/botpress/packages/cognitive
|
|
3
3
|
> pnpm build:type && pnpm build:neutral && size-limit
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @botpress/cognitive@0.3.
|
|
6
|
+
> @botpress/cognitive@0.3.14 build:type /home/runner/work/botpress/botpress/packages/cognitive
|
|
7
7
|
> tsup --tsconfig tsconfig.build.json ./src/index.ts --dts-resolve --dts-only --clean
|
|
8
8
|
|
|
9
9
|
CLI Building entry: ./src/index.ts
|
|
10
10
|
CLI Using tsconfig: tsconfig.build.json
|
|
11
11
|
CLI tsup v8.0.2
|
|
12
12
|
DTS Build start
|
|
13
|
-
DTS ⚡️ Build success in
|
|
14
|
-
DTS dist/index.d.ts
|
|
13
|
+
DTS ⚡️ Build success in 7162ms
|
|
14
|
+
DTS dist/index.d.ts 670.76 KB
|
|
15
15
|
|
|
16
|
-
> @botpress/cognitive@0.3.
|
|
16
|
+
> @botpress/cognitive@0.3.14 build:neutral /home/runner/work/botpress/botpress/packages/cognitive
|
|
17
17
|
> ts-node -T ./build.ts --neutral
|
|
18
18
|
|
|
19
19
|
Done
|
package/dist/index.d.ts
CHANGED
|
@@ -1715,6 +1715,12 @@ interface ListParticipantsResponse {
|
|
|
1715
1715
|
* Picture URL of the [User](#schema_user)
|
|
1716
1716
|
*/
|
|
1717
1717
|
pictureUrl?: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* Optional attributes
|
|
1720
|
+
*/
|
|
1721
|
+
attributes?: {
|
|
1722
|
+
[k: string]: string;
|
|
1723
|
+
};
|
|
1718
1724
|
}[];
|
|
1719
1725
|
meta: {
|
|
1720
1726
|
/**
|
|
@@ -1769,6 +1775,12 @@ interface AddParticipantResponse {
|
|
|
1769
1775
|
* Picture URL of the [User](#schema_user)
|
|
1770
1776
|
*/
|
|
1771
1777
|
pictureUrl?: string;
|
|
1778
|
+
/**
|
|
1779
|
+
* Optional attributes
|
|
1780
|
+
*/
|
|
1781
|
+
attributes?: {
|
|
1782
|
+
[k: string]: string;
|
|
1783
|
+
};
|
|
1772
1784
|
};
|
|
1773
1785
|
}
|
|
1774
1786
|
|
|
@@ -1814,6 +1826,12 @@ interface GetParticipantResponse {
|
|
|
1814
1826
|
* Picture URL of the [User](#schema_user)
|
|
1815
1827
|
*/
|
|
1816
1828
|
pictureUrl?: string;
|
|
1829
|
+
/**
|
|
1830
|
+
* Optional attributes
|
|
1831
|
+
*/
|
|
1832
|
+
attributes?: {
|
|
1833
|
+
[k: string]: string;
|
|
1834
|
+
};
|
|
1817
1835
|
};
|
|
1818
1836
|
}
|
|
1819
1837
|
|
|
@@ -2500,6 +2518,12 @@ interface InitializeIncomingMessageRequestBody {
|
|
|
2500
2518
|
* URI of the user picture
|
|
2501
2519
|
*/
|
|
2502
2520
|
pictureUrl?: string;
|
|
2521
|
+
/**
|
|
2522
|
+
* Optional attributes
|
|
2523
|
+
*/
|
|
2524
|
+
attributes?: {
|
|
2525
|
+
[k: string]: string;
|
|
2526
|
+
};
|
|
2503
2527
|
/**
|
|
2504
2528
|
* Optional list of tag names to use for strict matching when looking up existing messages. If provided, all specified tags must match exactly for a message to be considered a match. For example, with an existing message whose tags are {"foo": "a", "bar": "b", baz: "c"}: Without this parameter, ALL tags must match exactly. With ["bar","baz"], all listed tags must match their values, and other tags are not considered.
|
|
2505
2529
|
*/
|
|
@@ -2583,6 +2607,12 @@ interface InitializeIncomingMessageResponse {
|
|
|
2583
2607
|
* Picture URL of the [User](#schema_user)
|
|
2584
2608
|
*/
|
|
2585
2609
|
pictureUrl?: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* Optional attributes
|
|
2612
|
+
*/
|
|
2613
|
+
attributes?: {
|
|
2614
|
+
[k: string]: string;
|
|
2615
|
+
};
|
|
2586
2616
|
};
|
|
2587
2617
|
/**
|
|
2588
2618
|
* The [Conversation](#schema_conversation) object represents an exchange of messages between one or more users. A [Conversation](#schema_conversation) is always linked to an integration's channels. For example, a Slack channel represents a conversation.
|
|
@@ -2795,6 +2825,12 @@ interface CreateUserRequestBody {
|
|
|
2795
2825
|
* URI of the user picture
|
|
2796
2826
|
*/
|
|
2797
2827
|
pictureUrl?: string;
|
|
2828
|
+
/**
|
|
2829
|
+
* Optional attributes
|
|
2830
|
+
*/
|
|
2831
|
+
attributes?: {
|
|
2832
|
+
[k: string]: string;
|
|
2833
|
+
};
|
|
2798
2834
|
}
|
|
2799
2835
|
type CreateUserInput = CreateUserRequestBody & CreateUserRequestHeaders & CreateUserRequestQuery & CreateUserRequestParams;
|
|
2800
2836
|
interface CreateUserResponse {
|
|
@@ -2828,6 +2864,12 @@ interface CreateUserResponse {
|
|
|
2828
2864
|
* Picture URL of the [User](#schema_user)
|
|
2829
2865
|
*/
|
|
2830
2866
|
pictureUrl?: string;
|
|
2867
|
+
/**
|
|
2868
|
+
* Optional attributes
|
|
2869
|
+
*/
|
|
2870
|
+
attributes?: {
|
|
2871
|
+
[k: string]: string;
|
|
2872
|
+
};
|
|
2831
2873
|
};
|
|
2832
2874
|
}
|
|
2833
2875
|
|
|
@@ -2872,6 +2914,12 @@ interface GetUserResponse {
|
|
|
2872
2914
|
* Picture URL of the [User](#schema_user)
|
|
2873
2915
|
*/
|
|
2874
2916
|
pictureUrl?: string;
|
|
2917
|
+
/**
|
|
2918
|
+
* Optional attributes
|
|
2919
|
+
*/
|
|
2920
|
+
attributes?: {
|
|
2921
|
+
[k: string]: string;
|
|
2922
|
+
};
|
|
2875
2923
|
};
|
|
2876
2924
|
}
|
|
2877
2925
|
|
|
@@ -2922,6 +2970,12 @@ interface ListUsersResponse {
|
|
|
2922
2970
|
* Picture URL of the [User](#schema_user)
|
|
2923
2971
|
*/
|
|
2924
2972
|
pictureUrl?: string;
|
|
2973
|
+
/**
|
|
2974
|
+
* Optional attributes
|
|
2975
|
+
*/
|
|
2976
|
+
attributes?: {
|
|
2977
|
+
[k: string]: string;
|
|
2978
|
+
};
|
|
2925
2979
|
}[];
|
|
2926
2980
|
meta: {
|
|
2927
2981
|
/**
|
|
@@ -2957,6 +3011,12 @@ interface GetOrCreateUserRequestBody {
|
|
|
2957
3011
|
* URI of the user picture
|
|
2958
3012
|
*/
|
|
2959
3013
|
pictureUrl?: string;
|
|
3014
|
+
/**
|
|
3015
|
+
* Optional attributes
|
|
3016
|
+
*/
|
|
3017
|
+
attributes?: {
|
|
3018
|
+
[k: string]: string;
|
|
3019
|
+
};
|
|
2960
3020
|
/**
|
|
2961
3021
|
* Optional list of tag names to use for strict matching when looking up existing users. If provided, all specified tags must match exactly for a user to be considered a match. For example, with an existing user whose tags are {"foo": "a", "bar": "b", baz: "c"}: Without this parameter, ALL tags must match exactly. With ["bar","baz"], all listed tags must match their values, and other tags are not considered.
|
|
2962
3022
|
*/
|
|
@@ -2994,6 +3054,12 @@ interface GetOrCreateUserResponse {
|
|
|
2994
3054
|
* Picture URL of the [User](#schema_user)
|
|
2995
3055
|
*/
|
|
2996
3056
|
pictureUrl?: string;
|
|
3057
|
+
/**
|
|
3058
|
+
* Optional attributes
|
|
3059
|
+
*/
|
|
3060
|
+
attributes?: {
|
|
3061
|
+
[k: string]: string;
|
|
3062
|
+
};
|
|
2997
3063
|
};
|
|
2998
3064
|
}
|
|
2999
3065
|
|
|
@@ -3019,6 +3085,12 @@ interface UpdateUserRequestBody {
|
|
|
3019
3085
|
* URI of the user picture
|
|
3020
3086
|
*/
|
|
3021
3087
|
pictureUrl?: string | null;
|
|
3088
|
+
/**
|
|
3089
|
+
* Optional attributes. Set attributes to null to remove them
|
|
3090
|
+
*/
|
|
3091
|
+
attributes?: {
|
|
3092
|
+
[k: string]: string | null;
|
|
3093
|
+
};
|
|
3022
3094
|
}
|
|
3023
3095
|
type UpdateUserInput = UpdateUserRequestBody & UpdateUserRequestHeaders & UpdateUserRequestQuery & UpdateUserRequestParams;
|
|
3024
3096
|
interface UpdateUserResponse {
|
|
@@ -3052,6 +3124,12 @@ interface UpdateUserResponse {
|
|
|
3052
3124
|
* Picture URL of the [User](#schema_user)
|
|
3053
3125
|
*/
|
|
3054
3126
|
pictureUrl?: string;
|
|
3127
|
+
/**
|
|
3128
|
+
* Optional attributes
|
|
3129
|
+
*/
|
|
3130
|
+
attributes?: {
|
|
3131
|
+
[k: string]: string;
|
|
3132
|
+
};
|
|
3055
3133
|
};
|
|
3056
3134
|
}
|
|
3057
3135
|
|
|
@@ -9624,7 +9702,7 @@ interface GetAuditRecordsResponse {
|
|
|
9624
9702
|
resourceId: string | null;
|
|
9625
9703
|
resourceName?: string | null;
|
|
9626
9704
|
value?: string | null;
|
|
9627
|
-
action: "UNKNOWN" | "ADD_WORKSPACE_MEMBER" | "REMOVE_WORKSPACE_MEMBER" | "UPDATE_WORKSPACE_MEMBER" | "CLOSE_WORKSPACE" | "CREATE_BOT" | "CREATE_WORKSPACE" | "DELETE_BOT" | "DEPLOY_BOT" | "TRANSFER_BOT" | "DOWNLOAD_BOT_ARCHIVE" | "UPDATE_BOT" | "UPDATE_BOT_CHANNEL" | "UPDATE_BOT_CONFIG" | "UPDATE_PAYMENT_METHOD" | "UPDATE_WORKSPACE" | "SET_SPENDING_LIMIT" | "SET_AI_SPENDING_LIMIT" | "UPDATE_WORKSPACE_BILLING_READONLY" | "EXECUTE_AUTO_RECHARGE_SUCCESS" | "EXECUTE_AUTO_RECHARGE_FAILED";
|
|
9705
|
+
action: "UNKNOWN" | "ADD_WORKSPACE_MEMBER" | "REMOVE_WORKSPACE_MEMBER" | "UPDATE_WORKSPACE_MEMBER" | "CLOSE_WORKSPACE" | "CREATE_BOT" | "CREATE_WORKSPACE" | "DELETE_BOT" | "DEPLOY_BOT" | "TRANSFER_BOT" | "DOWNLOAD_BOT_ARCHIVE" | "UPDATE_BOT" | "UPDATE_BOT_CHANNEL" | "UPDATE_BOT_CONFIG" | "UPDATE_PAYMENT_METHOD" | "UPDATE_WORKSPACE" | "SET_SPENDING_LIMIT" | "SET_AI_SPENDING_LIMIT" | "UPDATE_WORKSPACE_BILLING_READONLY" | "UPDATE_WORKSPACE_PLAN_READONLY" | "UPDATE_WORKSPACE_ADDONS_READONLY" | "EXECUTE_AUTO_RECHARGE_SUCCESS" | "EXECUTE_AUTO_RECHARGE_FAILED";
|
|
9628
9706
|
}[];
|
|
9629
9707
|
meta: {
|
|
9630
9708
|
/**
|
|
@@ -18869,6 +18947,9 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18869
18947
|
};
|
|
18870
18948
|
name?: string;
|
|
18871
18949
|
pictureUrl?: string;
|
|
18950
|
+
attributes?: {
|
|
18951
|
+
[k: string]: string;
|
|
18952
|
+
};
|
|
18872
18953
|
}>;
|
|
18873
18954
|
events: (props: {
|
|
18874
18955
|
status?: "pending" | "ignored" | "processed" | "failed" | "scheduled" | undefined;
|
|
@@ -18932,6 +19013,9 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18932
19013
|
};
|
|
18933
19014
|
name?: string;
|
|
18934
19015
|
pictureUrl?: string;
|
|
19016
|
+
attributes?: {
|
|
19017
|
+
[k: string]: string;
|
|
19018
|
+
};
|
|
18935
19019
|
}>;
|
|
18936
19020
|
tasks: (props: {
|
|
18937
19021
|
status?: ("timeout" | "pending" | "failed" | "in_progress" | "completed" | "blocked" | "paused" | "cancelled")[] | undefined;
|