@gooddata/api-client-tiger 11.41.0-alpha.2 → 11.41.0-alpha.4

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.
@@ -8139,6 +8139,81 @@ export declare interface AgentControllerApiUpdateEntityAgentsRequest {
8139
8139
  readonly include?: Array<'userIdentifiers' | 'userGroups' | 'createdBy' | 'modifiedBy' | 'ALL'>;
8140
8140
  }
8141
8141
 
8142
+ /**
8143
+ * AgentsAi - object-oriented interface
8144
+ * @export
8145
+ * @class AgentsAi
8146
+ * @extends {BaseAPI}
8147
+ */
8148
+ export declare class AgentsAi extends AiBaseAPI implements AgentsAiInterface {
8149
+ /**
8150
+ * List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
8151
+ * @summary List agents available to the current user in a workspace
8152
+ * @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
8153
+ * @param {*} [options] Override http request option.
8154
+ * @throws {RequiredError}
8155
+ * @memberof AgentsAi
8156
+ */
8157
+ listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
8158
+ }
8159
+
8160
+ /**
8161
+ * List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
8162
+ * @summary List agents available to the current user in a workspace
8163
+ * @param {AxiosInstance} axios Axios instance.
8164
+ * @param {string} basePath Base path.
8165
+ * @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
8166
+ * @param {*} [options] Override http request option.
8167
+ * @param {Configuration} [configuration] Optional configuration.
8168
+ * @throws {RequiredError}
8169
+ */
8170
+ declare function AgentsAi_ListAgents(axios: AxiosInstance, basePath: string, requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiAgentListResponse>;
8171
+ export { AgentsAi_ListAgents }
8172
+ export { AgentsAi_ListAgents as GenAiApi_ListAgents }
8173
+
8174
+ /**
8175
+ * List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
8176
+ * @summary List agents available to the current user in a workspace
8177
+ * @param {string} workspaceId
8178
+ * @param {*} [options] Override http request option.
8179
+ * @param {Configuration} [configuration] Optional configuration.
8180
+ * @throws {RequiredError}
8181
+ */
8182
+ export declare function AgentsAiAxiosParamCreator_ListAgents(workspaceId: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
8183
+
8184
+ /**
8185
+ * AgentsAi - interface
8186
+ * @export
8187
+ * @interface AgentsAi
8188
+ */
8189
+ export declare interface AgentsAiInterface {
8190
+ /**
8191
+ * List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
8192
+ * @summary List agents available to the current user in a workspace
8193
+ * @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
8194
+ * @param {*} [options] Override http request option.
8195
+ * @throws {RequiredError}
8196
+ * @memberof AgentsAiInterface
8197
+ */
8198
+ listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
8199
+ }
8200
+
8201
+ /**
8202
+ * Request parameters for listAgents operation in AgentsAi.
8203
+ * @export
8204
+ * @interface AgentsAiListAgentsRequest
8205
+ */
8206
+ declare interface AgentsAiListAgentsRequest {
8207
+ /**
8208
+ *
8209
+ * @type {string}
8210
+ * @memberof AgentsAiListAgents
8211
+ */
8212
+ readonly workspaceId: string;
8213
+ }
8214
+ export { AgentsAiListAgentsRequest }
8215
+ export { AgentsAiListAgentsRequest as GenAiApiListAgentsRequest }
8216
+
8142
8217
  /**
8143
8218
  * AggregatedFactControllerApi - object-oriented interface
8144
8219
  * @export
@@ -8468,6 +8543,29 @@ export declare interface AiAfmObjectIdentifierBody {
8468
8543
  'type': string;
8469
8544
  }
8470
8545
 
8546
+ /**
8547
+ * A single agent visible to the calling user in the workspace.
8548
+ */
8549
+ declare interface AiAgentListItemResponse {
8550
+ 'id': string;
8551
+ 'name': string;
8552
+ 'description'?: string | null;
8553
+ 'isAvailableToAll': boolean;
8554
+ 'modifiedAt'?: string | null;
8555
+ 'lastUsedAt'?: string | null;
8556
+ }
8557
+ export { AiAgentListItemResponse }
8558
+ export { AiAgentListItemResponse as GenAiApiAgentListItemResponse }
8559
+
8560
+ /**
8561
+ * List of agents accessible to the calling user.
8562
+ */
8563
+ declare interface AiAgentListResponse {
8564
+ 'agents': Array<AiAgentListItemResponse>;
8565
+ }
8566
+ export { AiAgentListResponse }
8567
+ export { AiAgentListResponse as GenAiApiAgentListResponse }
8568
+
8471
8569
  /**
8472
8570
  * AIAgentsApi - object-oriented interface
8473
8571
  * @export
@@ -10482,9 +10580,16 @@ export declare interface AiConversationItemResponse {
10482
10580
  'responseId'?: string | null;
10483
10581
  'replyTo'?: string | null;
10484
10582
  'taskId'?: string | null;
10583
+ 'agentId'?: string | null;
10584
+ 'oldAgentId'?: string | null;
10585
+ 'newAgentId'?: string | null;
10586
+ 'actorUserId'?: string | null;
10587
+ 'trigger'?: AiConversationItemResponseTriggerEnum | null;
10485
10588
  }
10486
10589
 
10487
- export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool';
10590
+ export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool' | 'system';
10591
+
10592
+ export declare type AiConversationItemResponseTriggerEnum = 'agent_switched' | 'agent_updated';
10488
10593
 
10489
10594
  export declare interface AiConversationListMeta {
10490
10595
  'page': AiConversationListPageMeta;
@@ -10581,6 +10686,13 @@ export declare interface AiConversationUpdateRequest {
10581
10686
  'pinned'?: boolean | null;
10582
10687
  }
10583
10688
 
10689
+ /**
10690
+ * POST /conversations body.
10691
+ */
10692
+ export declare interface AiCreateConversationRequest {
10693
+ 'agentId'?: string | null;
10694
+ }
10695
+
10584
10696
  export declare interface AiDateFilterAbsolute {
10585
10697
  'type': AiDateFilterAbsoluteTypeEnum;
10586
10698
  'using': string;
@@ -10652,14 +10764,6 @@ export declare interface AiDeleteDocumentResponse {
10652
10764
  'message': string;
10653
10765
  }
10654
10766
 
10655
- export declare const AiDirection: {
10656
- readonly INCREASED: "INCREASED";
10657
- readonly DECREASED: "DECREASED";
10658
- readonly NO_CHANGE: "NO_CHANGE";
10659
- };
10660
-
10661
- export declare type AiDirection = typeof AiDirection[keyof typeof AiDirection];
10662
-
10663
10767
  /**
10664
10768
  * Document metadata returned by GET /documents/{document_id} and list.
10665
10769
  */
@@ -10928,8 +11032,7 @@ declare interface AiMetricUsageResponse {
10928
11032
  'type': AiObservabilityMetricType;
10929
11033
  'currentValue': number;
10930
11034
  'previousValue': number;
10931
- 'direction': AiDirection;
10932
- 'changePercentage': number;
11035
+ 'total'?: number | null;
10933
11036
  }
10934
11037
  export { AiMetricUsageResponse }
10935
11038
  export { AiMetricUsageResponse as GenAiApiMetricUsageResponse }
@@ -11019,7 +11122,7 @@ export declare type AiObjectType = typeof AiObjectType[keyof typeof AiObjectType
11019
11122
  */
11020
11123
  export declare class AIObservabilityAi extends AiBaseAPI implements AIObservabilityAiInterface {
11021
11124
  /**
11022
- * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value and a direction indicator. Backed by the ai_usage_counters table populated by the metering pipeline.
11125
+ * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
11023
11126
  * @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
11024
11127
  * @param {*} [options] Override http request option.
11025
11128
  * @throws {RequiredError}
@@ -11029,7 +11132,7 @@ export declare class AIObservabilityAi extends AiBaseAPI implements AIObservabil
11029
11132
  }
11030
11133
 
11031
11134
  /**
11032
- * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value and a direction indicator. Backed by the ai_usage_counters table populated by the metering pipeline.
11135
+ * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
11033
11136
  * @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
11034
11137
  * @param {AxiosInstance} axios Axios instance.
11035
11138
  * @param {string} basePath Base path.
@@ -11042,7 +11145,7 @@ export { AIObservabilityAi_GetObservabilityOverview }
11042
11145
  export { AIObservabilityAi_GetObservabilityOverview as GenAiApi_GetObservabilityOverview }
11043
11146
 
11044
11147
  /**
11045
- * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value and a direction indicator. Backed by the ai_usage_counters table populated by the metering pipeline.
11148
+ * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
11046
11149
  * @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
11047
11150
  * @param {*} [options] Override http request option.
11048
11151
  * @param {Configuration} [configuration] Optional configuration.
@@ -11057,7 +11160,7 @@ export declare function AIObservabilityAiAxiosParamCreator_GetObservabilityOverv
11057
11160
  */
11058
11161
  export declare interface AIObservabilityAiInterface {
11059
11162
  /**
11060
- * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value and a direction indicator. Backed by the ai_usage_counters table populated by the metering pipeline.
11163
+ * Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
11061
11164
  * @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
11062
11165
  * @param {*} [options] Override http request option.
11063
11166
  * @throws {RequiredError}
@@ -11071,6 +11174,8 @@ export declare interface AIObservabilityAiInterface {
11071
11174
  */
11072
11175
  declare const AiObservabilityMetricType: {
11073
11176
  readonly AI_QUERIES: "AI_QUERIES";
11177
+ readonly AI_WORKSPACES: "AI_WORKSPACES";
11178
+ readonly AI_USERS: "AI_USERS";
11074
11179
  };
11075
11180
 
11076
11181
  declare type AiObservabilityMetricType = typeof AiObservabilityMetricType[keyof typeof AiObservabilityMetricType];
@@ -11469,6 +11574,13 @@ export { AiSummarizeResponse as GenAiApiSummarizeResponse }
11469
11574
  */
11470
11575
  export declare type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
11471
11576
 
11577
+ /**
11578
+ * POST /conversations/{conversationId}/switchAgent body.
11579
+ */
11580
+ export declare interface AiSwitchAgentRequest {
11581
+ 'agentId': string;
11582
+ }
11583
+
11472
11584
  export declare interface AiTextFilterValue {
11473
11585
  'type': AiTextFilterValueTypeEnum;
11474
11586
  'using': string;
@@ -21988,6 +22100,15 @@ export declare class ConversationsAi extends AiBaseAPI implements ConversationsA
21988
22100
  * @memberof ConversationsAi
21989
22101
  */
21990
22102
  postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
22103
+ /**
22104
+ *
22105
+ * @summary Switch the active agent on an existing conversation
22106
+ * @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
22107
+ * @param {*} [options] Override http request option.
22108
+ * @throws {RequiredError}
22109
+ * @memberof ConversationsAi
22110
+ */
22111
+ switchAgent(requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
21991
22112
  }
21992
22113
 
21993
22114
  /**
@@ -22074,6 +22195,20 @@ declare function ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesW
22074
22195
  export { ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost }
22075
22196
  export { ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost as GenAiApi_PostGenerateConversationTitle }
22076
22197
 
22198
+ /**
22199
+ *
22200
+ * @summary Switch the active agent on an existing conversation
22201
+ * @param {AxiosInstance} axios Axios instance.
22202
+ * @param {string} basePath Base path.
22203
+ * @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
22204
+ * @param {*} [options] Override http request option.
22205
+ * @param {Configuration} [configuration] Optional configuration.
22206
+ * @throws {RequiredError}
22207
+ */
22208
+ declare function ConversationsAi_SwitchAgent(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiConversationResponse>;
22209
+ export { ConversationsAi_SwitchAgent }
22210
+ export { ConversationsAi_SwitchAgent as GenAiApi_SwitchAgent }
22211
+
22077
22212
  /**
22078
22213
  *
22079
22214
  * @summary Delete Conversation
@@ -22126,11 +22261,12 @@ export declare function ConversationsAiAxiosParamCreator_PatchConversationApiV1A
22126
22261
  * @summary Post Conversations
22127
22262
  * @param {string} workspaceId
22128
22263
  * @param {boolean} [isPreview]
22264
+ * @param {AiCreateConversationRequest} [aiCreateConversationRequest]
22129
22265
  * @param {*} [options] Override http request option.
22130
22266
  * @param {Configuration} [configuration] Optional configuration.
22131
22267
  * @throws {RequiredError}
22132
22268
  */
22133
- export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, isPreview?: boolean, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
22269
+ export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, isPreview?: boolean, aiCreateConversationRequest?: AiCreateConversationRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
22134
22270
 
22135
22271
  /**
22136
22272
  *
@@ -22143,6 +22279,18 @@ export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1A
22143
22279
  */
22144
22280
  export declare function ConversationsAiAxiosParamCreator_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
22145
22281
 
22282
+ /**
22283
+ *
22284
+ * @summary Switch the active agent on an existing conversation
22285
+ * @param {string} workspaceId
22286
+ * @param {string} conversationId
22287
+ * @param {AiSwitchAgentRequest} aiSwitchAgentRequest
22288
+ * @param {*} [options] Override http request option.
22289
+ * @param {Configuration} [configuration] Optional configuration.
22290
+ * @throws {RequiredError}
22291
+ */
22292
+ export declare function ConversationsAiAxiosParamCreator_SwitchAgent(workspaceId: string, conversationId: string, aiSwitchAgentRequest: AiSwitchAgentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
22293
+
22146
22294
  /**
22147
22295
  * Request parameters for deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete operation in ConversationsAi.
22148
22296
  * @export
@@ -22281,6 +22429,15 @@ export declare interface ConversationsAiInterface {
22281
22429
  * @memberof ConversationsAiInterface
22282
22430
  */
22283
22431
  postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
22432
+ /**
22433
+ *
22434
+ * @summary Switch the active agent on an existing conversation
22435
+ * @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
22436
+ * @param {*} [options] Override http request option.
22437
+ * @throws {RequiredError}
22438
+ * @memberof ConversationsAiInterface
22439
+ */
22440
+ switchAgent(requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
22284
22441
  }
22285
22442
 
22286
22443
  /**
@@ -22329,6 +22486,12 @@ declare interface ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdCh
22329
22486
  * @memberof ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost
22330
22487
  */
22331
22488
  readonly isPreview?: boolean;
22489
+ /**
22490
+ *
22491
+ * @type {AiCreateConversationRequest}
22492
+ * @memberof ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost
22493
+ */
22494
+ readonly aiCreateConversationRequest?: AiCreateConversationRequest;
22332
22495
  }
22333
22496
  export { ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest }
22334
22497
  export { ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest as GenAiApiPostConversationsRequest }
@@ -22355,6 +22518,34 @@ declare interface ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesW
22355
22518
  export { ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest }
22356
22519
  export { ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest as GenAiApiPostGenerateConversationTitleRequest }
22357
22520
 
22521
+ /**
22522
+ * Request parameters for switchAgent operation in ConversationsAi.
22523
+ * @export
22524
+ * @interface ConversationsAiSwitchAgentRequest
22525
+ */
22526
+ declare interface ConversationsAiSwitchAgentRequest {
22527
+ /**
22528
+ *
22529
+ * @type {string}
22530
+ * @memberof ConversationsAiSwitchAgent
22531
+ */
22532
+ readonly workspaceId: string;
22533
+ /**
22534
+ *
22535
+ * @type {string}
22536
+ * @memberof ConversationsAiSwitchAgent
22537
+ */
22538
+ readonly conversationId: string;
22539
+ /**
22540
+ *
22541
+ * @type {AiSwitchAgentRequest}
22542
+ * @memberof ConversationsAiSwitchAgent
22543
+ */
22544
+ readonly aiSwitchAgentRequest: AiSwitchAgentRequest;
22545
+ }
22546
+ export { ConversationsAiSwitchAgentRequest }
22547
+ export { ConversationsAiSwitchAgentRequest as GenAiApiSwitchAgentRequest }
22548
+
22358
22549
  /**
22359
22550
  * Request to convert a geo file to GeoParquet format.
22360
22551
  */
@@ -65435,7 +65626,7 @@ export declare interface JsonApiAutomationInRelationships {
65435
65626
  'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
65436
65627
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
65437
65628
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
65438
- 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
65629
+ 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
65439
65630
  }
65440
65631
 
65441
65632
  export declare type JsonApiAutomationInTypeEnum = 'automation';
@@ -65544,7 +65735,7 @@ export declare interface JsonApiAutomationOutRelationships {
65544
65735
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
65545
65736
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
65546
65737
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
65547
- 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
65738
+ 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
65548
65739
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
65549
65740
  }
65550
65741
 
@@ -65681,15 +65872,7 @@ export declare interface JsonApiColorPaletteIn {
65681
65872
  * API identifier of an object
65682
65873
  */
65683
65874
  'id': string;
65684
- 'attributes': JsonApiColorPaletteInAttributes;
65685
- }
65686
-
65687
- export declare interface JsonApiColorPaletteInAttributes {
65688
- 'name': string;
65689
- /**
65690
- * Free-form JSON content. Maximum supported length is 15000 characters.
65691
- */
65692
- 'content': object;
65875
+ 'attributes': JsonApiColorPaletteOutAttributes;
65693
65876
  }
65694
65877
 
65695
65878
  export declare interface JsonApiColorPaletteInDocument {
@@ -65710,7 +65893,15 @@ export declare interface JsonApiColorPaletteOut {
65710
65893
  * API identifier of an object
65711
65894
  */
65712
65895
  'id': string;
65713
- 'attributes': JsonApiColorPaletteInAttributes;
65896
+ 'attributes': JsonApiColorPaletteOutAttributes;
65897
+ }
65898
+
65899
+ export declare interface JsonApiColorPaletteOutAttributes {
65900
+ 'name': string;
65901
+ /**
65902
+ * Free-form JSON content. Maximum supported length is 15000 characters.
65903
+ */
65904
+ 'content': object;
65714
65905
  }
65715
65906
 
65716
65907
  export declare interface JsonApiColorPaletteOutDocument {
@@ -65738,7 +65929,7 @@ export declare interface JsonApiColorPaletteOutWithLinks {
65738
65929
  * API identifier of an object
65739
65930
  */
65740
65931
  'id': string;
65741
- 'attributes': JsonApiColorPaletteInAttributes;
65932
+ 'attributes': JsonApiColorPaletteOutAttributes;
65742
65933
  'links'?: ObjectLinks;
65743
65934
  }
65744
65935
 
@@ -65785,7 +65976,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
65785
65976
  * API identifier of an object
65786
65977
  */
65787
65978
  'id': string;
65788
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
65979
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
65789
65980
  }
65790
65981
 
65791
65982
  export declare interface JsonApiCookieSecurityConfigurationInDocument {
@@ -65806,15 +65997,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
65806
65997
  * API identifier of an object
65807
65998
  */
65808
65999
  'id': string;
65809
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
65810
- }
65811
-
65812
- export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
65813
- 'lastRotation'?: string;
65814
- /**
65815
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
65816
- */
65817
- 'rotationInterval'?: string;
66000
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
65818
66001
  }
65819
66002
 
65820
66003
  export declare interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -65836,7 +66019,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
65836
66019
  * API identifier of an object
65837
66020
  */
65838
66021
  'id': string;
65839
- 'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
66022
+ 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
66023
+ }
66024
+
66025
+ export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
66026
+ 'lastRotation'?: string;
66027
+ /**
66028
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
66029
+ */
66030
+ 'rotationInterval'?: string;
65840
66031
  }
65841
66032
 
65842
66033
  export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
@@ -65953,7 +66144,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
65953
66144
  * API identifier of an object
65954
66145
  */
65955
66146
  'id': string;
65956
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
66147
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
65957
66148
  }
65958
66149
 
65959
66150
  export declare interface JsonApiCustomApplicationSettingInDocument {
@@ -65975,15 +66166,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
65975
66166
  */
65976
66167
  'id': string;
65977
66168
  'meta'?: JsonApiExportDefinitionOutMeta;
65978
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
65979
- }
65980
-
65981
- export declare interface JsonApiCustomApplicationSettingOutAttributes {
65982
- 'applicationName': string;
65983
- /**
65984
- * Free-form JSON content. Maximum supported length is 250000 characters.
65985
- */
65986
- 'content': object;
66169
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
65987
66170
  }
65988
66171
 
65989
66172
  export declare interface JsonApiCustomApplicationSettingOutDocument {
@@ -66012,7 +66195,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
66012
66195
  */
66013
66196
  'id': string;
66014
66197
  'meta'?: JsonApiExportDefinitionOutMeta;
66015
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
66198
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
66016
66199
  'links'?: ObjectLinks;
66017
66200
  }
66018
66201
 
@@ -66059,7 +66242,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
66059
66242
  * API identifier of an object
66060
66243
  */
66061
66244
  'id'?: string;
66062
- 'attributes': JsonApiCustomApplicationSettingOutAttributes;
66245
+ 'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
66246
+ }
66247
+
66248
+ export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
66249
+ 'applicationName': string;
66250
+ /**
66251
+ * Free-form JSON content. Maximum supported length is 250000 characters.
66252
+ */
66253
+ 'content': object;
66063
66254
  }
66064
66255
 
66065
66256
  export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
@@ -66080,7 +66271,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
66080
66271
  * API identifier of an object
66081
66272
  */
66082
66273
  'id': string;
66083
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
66274
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
66275
+ }
66276
+
66277
+ export declare interface JsonApiCustomGeoCollectionInAttributes {
66278
+ 'name'?: string | null;
66279
+ 'description'?: string | null;
66084
66280
  }
66085
66281
 
66086
66282
  export declare interface JsonApiCustomGeoCollectionInDocument {
@@ -66101,12 +66297,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
66101
66297
  * API identifier of an object
66102
66298
  */
66103
66299
  'id': string;
66104
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
66105
- }
66106
-
66107
- export declare interface JsonApiCustomGeoCollectionOutAttributes {
66108
- 'name'?: string | null;
66109
- 'description'?: string | null;
66300
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
66110
66301
  }
66111
66302
 
66112
66303
  export declare interface JsonApiCustomGeoCollectionOutDocument {
@@ -66134,7 +66325,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
66134
66325
  * API identifier of an object
66135
66326
  */
66136
66327
  'id': string;
66137
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
66328
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
66138
66329
  'links'?: ObjectLinks;
66139
66330
  }
66140
66331
 
@@ -66152,7 +66343,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
66152
66343
  * API identifier of an object
66153
66344
  */
66154
66345
  'id': string;
66155
- 'attributes'?: JsonApiCustomGeoCollectionOutAttributes;
66346
+ 'attributes'?: JsonApiCustomGeoCollectionInAttributes;
66156
66347
  }
66157
66348
 
66158
66349
  export declare interface JsonApiCustomGeoCollectionPatchDocument {
@@ -66173,7 +66364,7 @@ export declare interface JsonApiCustomUserApplicationSettingIn {
66173
66364
  * API identifier of an object
66174
66365
  */
66175
66366
  'id': string;
66176
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
66367
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
66177
66368
  }
66178
66369
 
66179
66370
  export declare interface JsonApiCustomUserApplicationSettingInDocument {
@@ -66194,19 +66385,7 @@ export declare interface JsonApiCustomUserApplicationSettingOut {
66194
66385
  * API identifier of an object
66195
66386
  */
66196
66387
  'id': string;
66197
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
66198
- }
66199
-
66200
- export declare interface JsonApiCustomUserApplicationSettingOutAttributes {
66201
- 'applicationName': string;
66202
- /**
66203
- * Free-form JSON content. Maximum supported length is 250000 characters.
66204
- */
66205
- 'content': object;
66206
- /**
66207
- * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
66208
- */
66209
- 'workspaceId'?: string | null;
66388
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
66210
66389
  }
66211
66390
 
66212
66391
  export declare interface JsonApiCustomUserApplicationSettingOutDocument {
@@ -66234,7 +66413,7 @@ export declare interface JsonApiCustomUserApplicationSettingOutWithLinks {
66234
66413
  * API identifier of an object
66235
66414
  */
66236
66415
  'id': string;
66237
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
66416
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
66238
66417
  'links'?: ObjectLinks;
66239
66418
  }
66240
66419
 
@@ -66252,7 +66431,19 @@ export declare interface JsonApiCustomUserApplicationSettingPostOptionalId {
66252
66431
  * API identifier of an object
66253
66432
  */
66254
66433
  'id'?: string;
66255
- 'attributes': JsonApiCustomUserApplicationSettingOutAttributes;
66434
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
66435
+ }
66436
+
66437
+ export declare interface JsonApiCustomUserApplicationSettingPostOptionalIdAttributes {
66438
+ 'applicationName': string;
66439
+ /**
66440
+ * Free-form JSON content. Maximum supported length is 250000 characters.
66441
+ */
66442
+ 'content': object;
66443
+ /**
66444
+ * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
66445
+ */
66446
+ 'workspaceId'?: string | null;
66256
66447
  }
66257
66448
 
66258
66449
  export declare interface JsonApiCustomUserApplicationSettingPostOptionalIdDocument {
@@ -66746,7 +66937,7 @@ export declare interface JsonApiDataSourceInAttributes {
66746
66937
  /**
66747
66938
  * Additional parameters to be used when connecting to the database providing the data for the data source.
66748
66939
  */
66749
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
66940
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
66750
66941
  /**
66751
66942
  * Determines how the results coming from a particular datasource should be cached.
66752
66943
  */
@@ -66765,11 +66956,6 @@ export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' |
66765
66956
 
66766
66957
  export declare type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
66767
66958
 
66768
- export declare interface JsonApiDataSourceInAttributesParametersInner {
66769
- 'name': string;
66770
- 'value': string;
66771
- }
66772
-
66773
66959
  export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
66774
66960
 
66775
66961
  export declare interface JsonApiDataSourceInDocument {
@@ -66822,11 +67008,11 @@ export declare interface JsonApiDataSourceOutAttributes {
66822
67008
  /**
66823
67009
  * Additional parameters to be used when connecting to the database providing the data for the data source.
66824
67010
  */
66825
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
67011
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
66826
67012
  /**
66827
67013
  * Decoded parameters to be used when connecting to the database providing the data for the data source.
66828
67014
  */
66829
- 'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
67015
+ 'decodedParameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
66830
67016
  /**
66831
67017
  * Determines how the results coming from a particular datasource should be cached.
66832
67018
  */
@@ -66851,6 +67037,11 @@ export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' |
66851
67037
 
66852
67038
  export declare type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
66853
67039
 
67040
+ export declare interface JsonApiDataSourceOutAttributesParametersInner {
67041
+ 'name': string;
67042
+ 'value': string;
67043
+ }
67044
+
66854
67045
  export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
66855
67046
 
66856
67047
  export declare interface JsonApiDataSourceOutDocument {
@@ -66948,7 +67139,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
66948
67139
  /**
66949
67140
  * Additional parameters to be used when connecting to the database providing the data for the data source.
66950
67141
  */
66951
- 'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
67142
+ 'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
66952
67143
  /**
66953
67144
  * Determines how the results coming from a particular datasource should be cached.
66954
67145
  */
@@ -67659,14 +67850,34 @@ export declare interface JsonApiFilterViewIn {
67659
67850
  * API identifier of an object
67660
67851
  */
67661
67852
  'id': string;
67662
- 'attributes': JsonApiFilterViewOutAttributes;
67663
- 'relationships'?: JsonApiFilterViewOutRelationships;
67853
+ 'attributes': JsonApiFilterViewInAttributes;
67854
+ 'relationships'?: JsonApiFilterViewInRelationships;
67855
+ }
67856
+
67857
+ export declare interface JsonApiFilterViewInAttributes {
67858
+ 'title': string;
67859
+ 'description'?: string;
67860
+ 'tags'?: Array<string>;
67861
+ 'areRelationsValid'?: boolean;
67862
+ /**
67863
+ * Indicator whether the filter view should by applied by default.
67864
+ */
67865
+ 'isDefault'?: boolean;
67866
+ /**
67867
+ * The respective filter context.
67868
+ */
67869
+ 'content': object;
67664
67870
  }
67665
67871
 
67666
67872
  export declare interface JsonApiFilterViewInDocument {
67667
67873
  'data': JsonApiFilterViewIn;
67668
67874
  }
67669
67875
 
67876
+ export declare interface JsonApiFilterViewInRelationships {
67877
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
67878
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
67879
+ }
67880
+
67670
67881
  export declare type JsonApiFilterViewInTypeEnum = 'filterView';
67671
67882
 
67672
67883
  /**
@@ -67681,23 +67892,8 @@ export declare interface JsonApiFilterViewOut {
67681
67892
  * API identifier of an object
67682
67893
  */
67683
67894
  'id': string;
67684
- 'attributes': JsonApiFilterViewOutAttributes;
67685
- 'relationships'?: JsonApiFilterViewOutRelationships;
67686
- }
67687
-
67688
- export declare interface JsonApiFilterViewOutAttributes {
67689
- 'title': string;
67690
- 'description'?: string;
67691
- 'tags'?: Array<string>;
67692
- 'areRelationsValid'?: boolean;
67693
- /**
67694
- * Indicator whether the filter view should by applied by default.
67695
- */
67696
- 'isDefault'?: boolean;
67697
- /**
67698
- * The respective filter context.
67699
- */
67700
- 'content': object;
67895
+ 'attributes': JsonApiFilterViewInAttributes;
67896
+ 'relationships'?: JsonApiFilterViewInRelationships;
67701
67897
  }
67702
67898
 
67703
67899
  export declare interface JsonApiFilterViewOutDocument {
@@ -67727,11 +67923,6 @@ export declare interface JsonApiFilterViewOutList {
67727
67923
  'included'?: Array<JsonApiFilterViewOutIncludes>;
67728
67924
  }
67729
67925
 
67730
- export declare interface JsonApiFilterViewOutRelationships {
67731
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
67732
- 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
67733
- }
67734
-
67735
67926
  export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
67736
67927
 
67737
67928
  export declare interface JsonApiFilterViewOutWithLinks {
@@ -67743,8 +67934,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
67743
67934
  * API identifier of an object
67744
67935
  */
67745
67936
  'id': string;
67746
- 'attributes': JsonApiFilterViewOutAttributes;
67747
- 'relationships'?: JsonApiFilterViewOutRelationships;
67937
+ 'attributes': JsonApiFilterViewInAttributes;
67938
+ 'relationships'?: JsonApiFilterViewInRelationships;
67748
67939
  'links'?: ObjectLinks;
67749
67940
  }
67750
67941
 
@@ -67763,7 +67954,7 @@ export declare interface JsonApiFilterViewPatch {
67763
67954
  */
67764
67955
  'id': string;
67765
67956
  'attributes': JsonApiFilterViewPatchAttributes;
67766
- 'relationships'?: JsonApiFilterViewOutRelationships;
67957
+ 'relationships'?: JsonApiFilterViewInRelationships;
67767
67958
  }
67768
67959
 
67769
67960
  export declare interface JsonApiFilterViewPatchAttributes {
@@ -68004,14 +68195,33 @@ export declare interface JsonApiIpAllowlistPolicyIn {
68004
68195
  * API identifier of an object
68005
68196
  */
68006
68197
  'id': string;
68007
- 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
68008
- 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
68198
+ 'attributes': JsonApiIpAllowlistPolicyInAttributes;
68199
+ 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
68200
+ }
68201
+
68202
+ export declare interface JsonApiIpAllowlistPolicyInAttributes {
68203
+ /**
68204
+ * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
68205
+ */
68206
+ 'allowedSources': Array<string> | null;
68009
68207
  }
68010
68208
 
68011
68209
  export declare interface JsonApiIpAllowlistPolicyInDocument {
68012
68210
  'data': JsonApiIpAllowlistPolicyIn;
68013
68211
  }
68014
68212
 
68213
+ export declare interface JsonApiIpAllowlistPolicyInRelationships {
68214
+ 'users'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
68215
+ 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
68216
+ }
68217
+
68218
+ export declare interface JsonApiIpAllowlistPolicyInRelationshipsUsers {
68219
+ /**
68220
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
68221
+ */
68222
+ 'data': Array<JsonApiUserLinkage>;
68223
+ }
68224
+
68015
68225
  export declare type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
68016
68226
 
68017
68227
  /**
@@ -68026,15 +68236,8 @@ export declare interface JsonApiIpAllowlistPolicyOut {
68026
68236
  * API identifier of an object
68027
68237
  */
68028
68238
  'id': string;
68029
- 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
68030
- 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
68031
- }
68032
-
68033
- export declare interface JsonApiIpAllowlistPolicyOutAttributes {
68034
- /**
68035
- * Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
68036
- */
68037
- 'allowedSources': Array<string> | null;
68239
+ 'attributes': JsonApiIpAllowlistPolicyInAttributes;
68240
+ 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
68038
68241
  }
68039
68242
 
68040
68243
  export declare interface JsonApiIpAllowlistPolicyOutDocument {
@@ -68064,18 +68267,6 @@ export declare interface JsonApiIpAllowlistPolicyOutList {
68064
68267
  'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
68065
68268
  }
68066
68269
 
68067
- export declare interface JsonApiIpAllowlistPolicyOutRelationships {
68068
- 'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
68069
- 'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
68070
- }
68071
-
68072
- export declare interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
68073
- /**
68074
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
68075
- */
68076
- 'data': Array<JsonApiUserLinkage>;
68077
- }
68078
-
68079
68270
  export declare type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
68080
68271
 
68081
68272
  export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
@@ -68087,8 +68278,8 @@ export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
68087
68278
  * API identifier of an object
68088
68279
  */
68089
68280
  'id': string;
68090
- 'attributes': JsonApiIpAllowlistPolicyOutAttributes;
68091
- 'relationships'?: JsonApiIpAllowlistPolicyOutRelationships;
68281
+ 'attributes': JsonApiIpAllowlistPolicyInAttributes;
68282
+ 'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
68092
68283
  'links'?: ObjectLinks;
68093
68284
  }
68094
68285
 
@@ -68106,7 +68297,11 @@ export declare interface JsonApiJwkIn {
68106
68297
  * API identifier of an object
68107
68298
  */
68108
68299
  'id': string;
68109
- 'attributes'?: JsonApiJwkOutAttributes;
68300
+ 'attributes'?: JsonApiJwkInAttributes;
68301
+ }
68302
+
68303
+ export declare interface JsonApiJwkInAttributes {
68304
+ 'content'?: RsaSpecification;
68110
68305
  }
68111
68306
 
68112
68307
  export declare interface JsonApiJwkInDocument {
@@ -68127,11 +68322,7 @@ export declare interface JsonApiJwkOut {
68127
68322
  * API identifier of an object
68128
68323
  */
68129
68324
  'id': string;
68130
- 'attributes'?: JsonApiJwkOutAttributes;
68131
- }
68132
-
68133
- export declare interface JsonApiJwkOutAttributes {
68134
- 'content'?: RsaSpecification;
68325
+ 'attributes'?: JsonApiJwkInAttributes;
68135
68326
  }
68136
68327
 
68137
68328
  export declare interface JsonApiJwkOutDocument {
@@ -68159,7 +68350,7 @@ export declare interface JsonApiJwkOutWithLinks {
68159
68350
  * API identifier of an object
68160
68351
  */
68161
68352
  'id': string;
68162
- 'attributes'?: JsonApiJwkOutAttributes;
68353
+ 'attributes'?: JsonApiJwkInAttributes;
68163
68354
  'links'?: ObjectLinks;
68164
68355
  }
68165
68356
 
@@ -68177,7 +68368,7 @@ export declare interface JsonApiJwkPatch {
68177
68368
  * API identifier of an object
68178
68369
  */
68179
68370
  'id': string;
68180
- 'attributes'?: JsonApiJwkOutAttributes;
68371
+ 'attributes'?: JsonApiJwkInAttributes;
68181
68372
  }
68182
68373
 
68183
68374
  export declare interface JsonApiJwkPatchDocument {
@@ -68323,10 +68514,14 @@ export declare interface JsonApiKnowledgeRecommendationOutList {
68323
68514
  }
68324
68515
 
68325
68516
  export declare interface JsonApiKnowledgeRecommendationOutRelationships {
68326
- 'metric'?: JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
68517
+ 'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
68327
68518
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
68328
68519
  }
68329
68520
 
68521
+ export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
68522
+ 'data': JsonApiMetricLinkage | null;
68523
+ }
68524
+
68330
68525
  export declare type JsonApiKnowledgeRecommendationOutTypeEnum = 'knowledgeRecommendation';
68331
68526
 
68332
68527
  export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
@@ -68527,14 +68722,10 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
68527
68722
  }
68528
68723
 
68529
68724
  export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
68530
- 'metric': JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric;
68725
+ 'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
68531
68726
  'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
68532
68727
  }
68533
68728
 
68534
- export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationshipsMetric {
68535
- 'data': JsonApiMetricLinkage | null;
68536
- }
68537
-
68538
68729
  export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
68539
68730
 
68540
68731
  /**
@@ -69317,7 +69508,7 @@ export declare interface JsonApiNotificationChannelOut {
69317
69508
  export declare interface JsonApiNotificationChannelOutAttributes {
69318
69509
  'name'?: string | null;
69319
69510
  'description'?: string | null;
69320
- 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
69511
+ 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
69321
69512
  'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
69322
69513
  /**
69323
69514
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
@@ -69345,12 +69536,6 @@ export declare type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum
69345
69536
 
69346
69537
  export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
69347
69538
 
69348
- /**
69349
- * @type JsonApiNotificationChannelOutAttributesDestination
69350
- * The destination where the notifications are to be sent.
69351
- */
69352
- export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
69353
-
69354
69539
  export declare type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
69355
69540
 
69356
69541
  export declare type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
@@ -69425,7 +69610,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
69425
69610
  export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
69426
69611
  'name'?: string | null;
69427
69612
  'description'?: string | null;
69428
- 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
69613
+ 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
69429
69614
  /**
69430
69615
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
69431
69616
  */
@@ -69452,6 +69637,12 @@ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRec
69452
69637
 
69453
69638
  export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
69454
69639
 
69640
+ /**
69641
+ * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
69642
+ * The destination where the notifications are to be sent.
69643
+ */
69644
+ export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
69645
+
69455
69646
  export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
69456
69647
 
69457
69648
  export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
@@ -69556,7 +69747,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
69556
69747
  export declare interface JsonApiOrganizationOutRelationships {
69557
69748
  'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
69558
69749
  'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
69559
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
69750
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
69560
69751
  }
69561
69752
 
69562
69753
  export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
@@ -69567,6 +69758,10 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
69567
69758
  'data': JsonApiUserGroupLinkage | null;
69568
69759
  }
69569
69760
 
69761
+ export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
69762
+ 'data': JsonApiIdentityProviderLinkage | null;
69763
+ }
69764
+
69570
69765
  export declare type JsonApiOrganizationOutTypeEnum = 'organization';
69571
69766
 
69572
69767
  /**
@@ -69605,11 +69800,7 @@ export declare interface JsonApiOrganizationPatchDocument {
69605
69800
  }
69606
69801
 
69607
69802
  export declare interface JsonApiOrganizationPatchRelationships {
69608
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
69609
- }
69610
-
69611
- export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
69612
- 'data': JsonApiIdentityProviderLinkage | null;
69803
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
69613
69804
  }
69614
69805
 
69615
69806
  export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
@@ -69892,7 +70083,7 @@ export declare interface JsonApiThemeIn {
69892
70083
  * API identifier of an object
69893
70084
  */
69894
70085
  'id': string;
69895
- 'attributes': JsonApiColorPaletteInAttributes;
70086
+ 'attributes': JsonApiColorPaletteOutAttributes;
69896
70087
  }
69897
70088
 
69898
70089
  export declare interface JsonApiThemeInDocument {
@@ -69913,7 +70104,7 @@ export declare interface JsonApiThemeOut {
69913
70104
  * API identifier of an object
69914
70105
  */
69915
70106
  'id': string;
69916
- 'attributes': JsonApiColorPaletteInAttributes;
70107
+ 'attributes': JsonApiColorPaletteOutAttributes;
69917
70108
  }
69918
70109
 
69919
70110
  export declare interface JsonApiThemeOutDocument {
@@ -69941,7 +70132,7 @@ export declare interface JsonApiThemeOutWithLinks {
69941
70132
  * API identifier of an object
69942
70133
  */
69943
70134
  'id': string;
69944
- 'attributes': JsonApiColorPaletteInAttributes;
70135
+ 'attributes': JsonApiColorPaletteOutAttributes;
69945
70136
  'links'?: ObjectLinks;
69946
70137
  }
69947
70138
 
@@ -70864,7 +71055,7 @@ export declare interface JsonApiWorkspaceAutomationOutRelationships {
70864
71055
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
70865
71056
  'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
70866
71057
  'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
70867
- 'recipients'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
71058
+ 'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
70868
71059
  'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
70869
71060
  }
70870
71061