@gooddata/api-client-tiger 11.36.0-alpha.2 → 11.36.0-alpha.3

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.
@@ -1,3 +1,3 @@
1
- export declare const LIB_VERSION = "11.36.0-alpha.2";
1
+ export declare const LIB_VERSION = "11.36.0-alpha.3";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
package/esm/__version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.36.0-alpha.2";
3
+ export const LIB_VERSION = "11.36.0-alpha.3";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
@@ -10504,6 +10504,7 @@ export declare interface AiMultipartContent {
10504
10504
  * Ordered multipart content fragments.
10505
10505
  */
10506
10506
  'parts': Array<AiMultipartContentPartsInner>;
10507
+ 'suggestions'?: AiSuggestions | null;
10507
10508
  }
10508
10509
 
10509
10510
  /**
@@ -10879,6 +10880,34 @@ export declare interface AiSkillResponse {
10879
10880
  'examples': Array<string>;
10880
10881
  }
10881
10882
 
10883
+ /**
10884
+ * A quick-reply action button rendered alongside the follow-up question.
10885
+ */
10886
+ export declare interface AiSuggestedAction {
10887
+ /**
10888
+ * Button display text (3-5 words).
10889
+ */
10890
+ 'label': string;
10891
+ /**
10892
+ * Exact message sent when the user clicks this action.
10893
+ */
10894
+ 'query': string;
10895
+ }
10896
+
10897
+ /**
10898
+ * Follow-up suggestions emitted by the assistant alongside its terminal multipart message. Carried on the assistant ``MultipartContent`` so suggestions are persisted in conversation history and stream on the same SSE event as the response that produced them.
10899
+ */
10900
+ export declare interface AiSuggestions {
10901
+ /**
10902
+ * Yes-answerable follow-up question recommending the next step.
10903
+ */
10904
+ 'followUpQuestion': string;
10905
+ /**
10906
+ * Quick-reply action buttons. The first action matches the follow-up question.
10907
+ */
10908
+ 'actions': Array<AiSuggestedAction>;
10909
+ }
10910
+
10882
10911
  declare interface AiSummarizeRequest {
10883
10912
  'visualizations'?: Array<string> | null;
10884
10913
  'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
@@ -645,6 +645,7 @@ export interface AiMultipartContent {
645
645
  * Ordered multipart content fragments.
646
646
  */
647
647
  'parts': Array<AiMultipartContentPartsInner>;
648
+ 'suggestions'?: AiSuggestions | null;
648
649
  }
649
650
  export type AiMultipartContentTypeEnum = 'multipart';
650
651
  /**
@@ -963,6 +964,32 @@ export interface AiSkillResponse {
963
964
  'tags': Array<string>;
964
965
  'examples': Array<string>;
965
966
  }
967
+ /**
968
+ * A quick-reply action button rendered alongside the follow-up question.
969
+ */
970
+ export interface AiSuggestedAction {
971
+ /**
972
+ * Button display text (3-5 words).
973
+ */
974
+ 'label': string;
975
+ /**
976
+ * Exact message sent when the user clicks this action.
977
+ */
978
+ 'query': string;
979
+ }
980
+ /**
981
+ * Follow-up suggestions emitted by the assistant alongside its terminal multipart message. Carried on the assistant ``MultipartContent`` so suggestions are persisted in conversation history and stream on the same SSE event as the response that produced them.
982
+ */
983
+ export interface AiSuggestions {
984
+ /**
985
+ * Yes-answerable follow-up question recommending the next step.
986
+ */
987
+ 'followUpQuestion': string;
988
+ /**
989
+ * Quick-reply action buttons. The first action matches the follow-up question.
990
+ */
991
+ 'actions': Array<AiSuggestedAction>;
992
+ }
966
993
  export interface AiSummarizeRequest {
967
994
  'visualizations'?: Array<string> | null;
968
995
  'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/api-client-tiger",
3
- "version": "11.36.0-alpha.2",
3
+ "version": "11.36.0-alpha.3",
4
4
  "description": "API Client for GoodData Cloud and GoodData.CN",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -46,7 +46,7 @@
46
46
  "axios-cache-interceptor": "^1.8.0",
47
47
  "lodash-es": "^4.17.23",
48
48
  "tslib": "2.8.1",
49
- "@gooddata/sdk-model": "11.36.0-alpha.2"
49
+ "@gooddata/sdk-model": "11.36.0-alpha.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-documenter": "^7.17.0",
@@ -75,8 +75,8 @@
75
75
  "oxlint-tsgolint": "0.11.4",
76
76
  "typescript": "5.9.3",
77
77
  "vitest": "4.1.0",
78
- "@gooddata/eslint-config": "11.36.0-alpha.2",
79
- "@gooddata/oxlint-config": "11.36.0-alpha.2"
78
+ "@gooddata/eslint-config": "11.36.0-alpha.3",
79
+ "@gooddata/oxlint-config": "11.36.0-alpha.3"
80
80
  },
81
81
  "scripts": {
82
82
  "_phase:build": "npm run build",