@gooddata/api-client-tiger 11.8.0-alpha.1 → 11.8.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.
@@ -1403,6 +1403,38 @@
1403
1403
  }
1404
1404
  }
1405
1405
  },
1406
+ "/api/v1/actions/workspaces/{workspaceId}/ai/memory/createdBy": {
1407
+ "get": {
1408
+ "tags": ["Smart Functions", "actions"],
1409
+ "summary": "Get AI Memory CreatedBy Users",
1410
+ "description": "Returns a list of Users who created any memory item for this workspace",
1411
+ "operationId": "memoryCreatedByUsers",
1412
+ "parameters": [
1413
+ {
1414
+ "name": "workspaceId",
1415
+ "in": "path",
1416
+ "description": "Workspace identifier",
1417
+ "required": true,
1418
+ "schema": {
1419
+ "pattern": "^(?!\\.)[.A-Za-z0-9_-]{1,255}$",
1420
+ "type": "string"
1421
+ }
1422
+ }
1423
+ ],
1424
+ "responses": {
1425
+ "200": {
1426
+ "description": "OK",
1427
+ "content": {
1428
+ "application/json": {
1429
+ "schema": {
1430
+ "$ref": "#/components/schemas/MemoryItemCreatedByUsers"
1431
+ }
1432
+ }
1433
+ }
1434
+ }
1435
+ }
1436
+ }
1437
+ },
1406
1438
  "/api/v1/actions/workspaces/{workspaceId}/ai/issues/status/{processId}": {
1407
1439
  "get": {
1408
1440
  "tags": ["Smart Functions", "actions"],
@@ -1542,7 +1574,7 @@
1542
1574
  "/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy": {
1543
1575
  "get": {
1544
1576
  "tags": ["Smart Functions", "actions"],
1545
- "summary": "Get Analytics Catalog CreatedBy",
1577
+ "summary": "Get Analytics Catalog CreatedBy Users",
1546
1578
  "description": "Returns a list of Users who created any object for this workspace",
1547
1579
  "operationId": "createdBy",
1548
1580
  "parameters": [
@@ -2327,7 +2359,15 @@
2327
2359
  },
2328
2360
  "valueType": {
2329
2361
  "type": "string",
2330
- "enum": ["TEXT", "HYPERLINK", "GEO", "GEO_LONGITUDE", "GEO_LATITUDE", "IMAGE"]
2362
+ "enum": [
2363
+ "TEXT",
2364
+ "HYPERLINK",
2365
+ "GEO",
2366
+ "GEO_LONGITUDE",
2367
+ "GEO_LATITUDE",
2368
+ "GEO_AREA",
2369
+ "IMAGE"
2370
+ ]
2331
2371
  }
2332
2372
  }
2333
2373
  },
@@ -3297,7 +3337,15 @@
3297
3337
  "valueType": {
3298
3338
  "type": "string",
3299
3339
  "description": "Attribute value type.",
3300
- "enum": ["TEXT", "HYPERLINK", "GEO", "GEO_LONGITUDE", "GEO_LATITUDE", "IMAGE"]
3340
+ "enum": [
3341
+ "TEXT",
3342
+ "HYPERLINK",
3343
+ "GEO",
3344
+ "GEO_LONGITUDE",
3345
+ "GEO_LATITUDE",
3346
+ "GEO_AREA",
3347
+ "IMAGE"
3348
+ ]
3301
3349
  }
3302
3350
  }
3303
3351
  }
@@ -3797,6 +3845,10 @@
3797
3845
  "NO_RESULTS",
3798
3846
  "OUT_OF_TOPIC"
3799
3847
  ]
3848
+ },
3849
+ "userTextFeedback": {
3850
+ "type": "string",
3851
+ "description": "User text feedback for the interaction."
3800
3852
  }
3801
3853
  }
3802
3854
  },
@@ -3861,6 +3913,63 @@
3861
3913
  }
3862
3914
  ]
3863
3915
  },
3916
+ "ChangeAnalysisParams": {
3917
+ "required": [
3918
+ "analyzedPeriod",
3919
+ "attributes",
3920
+ "dateAttribute",
3921
+ "filters",
3922
+ "measure",
3923
+ "referencePeriod",
3924
+ "useSmartAttributeSelection"
3925
+ ],
3926
+ "type": "object",
3927
+ "properties": {
3928
+ "measure": {
3929
+ "$ref": "#/components/schemas/MeasureItem"
3930
+ },
3931
+ "dateAttribute": {
3932
+ "$ref": "#/components/schemas/AttributeItem"
3933
+ },
3934
+ "referencePeriod": {
3935
+ "type": "string",
3936
+ "description": "The reference time period"
3937
+ },
3938
+ "analyzedPeriod": {
3939
+ "type": "string",
3940
+ "description": "The analyzed time period"
3941
+ },
3942
+ "attributes": {
3943
+ "type": "array",
3944
+ "description": "Attributes to analyze for significant changes",
3945
+ "items": {
3946
+ "$ref": "#/components/schemas/AttributeItem"
3947
+ }
3948
+ },
3949
+ "filters": {
3950
+ "type": "array",
3951
+ "description": "Optional filters to apply",
3952
+ "items": {
3953
+ "oneOf": [
3954
+ {
3955
+ "$ref": "#/components/schemas/AbstractMeasureValueFilter"
3956
+ },
3957
+ {
3958
+ "$ref": "#/components/schemas/FilterDefinitionForSimpleMeasure"
3959
+ },
3960
+ {
3961
+ "$ref": "#/components/schemas/InlineFilterDefinition"
3962
+ }
3963
+ ]
3964
+ }
3965
+ },
3966
+ "useSmartAttributeSelection": {
3967
+ "type": "boolean",
3968
+ "description": "Whether to use smart attribute selection"
3969
+ }
3970
+ },
3971
+ "description": "Change analysis specification."
3972
+ },
3864
3973
  "ChatHistoryInteraction": {
3865
3974
  "required": ["chatHistoryInteractionId", "interactionFinished", "question", "routing"],
3866
3975
  "type": "object",
@@ -3899,6 +4008,9 @@
3899
4008
  "createdVisualizations": {
3900
4009
  "$ref": "#/components/schemas/CreatedVisualizations"
3901
4010
  },
4011
+ "changeAnalysisParams": {
4012
+ "$ref": "#/components/schemas/ChangeAnalysisParams"
4013
+ },
3902
4014
  "userFeedback": {
3903
4015
  "type": "string",
3904
4016
  "description": "User feedback.",
@@ -4181,7 +4293,8 @@
4181
4293
  "SEARCH",
4182
4294
  "CREATE_VISUALIZATION",
4183
4295
  "EXTEND_VISUALIZATION",
4184
- "HOWTO"
4296
+ "HOWTO",
4297
+ "CHANGE_ANALYSIS"
4185
4298
  ]
4186
4299
  },
4187
4300
  "reasoning": {
@@ -4226,6 +4339,9 @@
4226
4339
  "createdVisualizations": {
4227
4340
  "$ref": "#/components/schemas/CreatedVisualizations"
4228
4341
  },
4342
+ "changeAnalysisParams": {
4343
+ "$ref": "#/components/schemas/ChangeAnalysisParams"
4344
+ },
4229
4345
  "threadIdSuffix": {
4230
4346
  "type": "string",
4231
4347
  "description": "Chat History thread suffix appended to ID generated by backend. Enables more chat windows."
@@ -4448,7 +4564,9 @@
4448
4564
  "metricValueDelta",
4449
4565
  "metricValueDeltaAbs",
4450
4566
  "metricValueInAnalyzedPeriod",
4451
- "metricValueInReferencePeriod"
4567
+ "metricValueInReferencePeriod",
4568
+ "overallMetricValueInAnalyzedPeriod",
4569
+ "overallMetricValueInReferencePeriod"
4452
4570
  ],
4453
4571
  "type": "object",
4454
4572
  "properties": {
@@ -4493,6 +4611,16 @@
4493
4611
  "isSignificantChange": {
4494
4612
  "type": "boolean",
4495
4613
  "description": "Whether the change is statistically significant"
4614
+ },
4615
+ "overallMetricValueInAnalyzedPeriod": {
4616
+ "type": "number",
4617
+ "description": "The overall metric value in the analyzed period",
4618
+ "format": "double"
4619
+ },
4620
+ "overallMetricValueInReferencePeriod": {
4621
+ "type": "number",
4622
+ "description": "The overall metric value in the reference period",
4623
+ "format": "double"
4496
4624
  }
4497
4625
  },
4498
4626
  "description": "Individual change analysis data item"
@@ -4794,6 +4922,42 @@
4794
4922
  }
4795
4923
  }
4796
4924
  },
4925
+ "MemoryItemCreatedByUsers": {
4926
+ "required": ["reasoning", "users"],
4927
+ "type": "object",
4928
+ "properties": {
4929
+ "users": {
4930
+ "type": "array",
4931
+ "description": "Users who created memory item",
4932
+ "items": {
4933
+ "$ref": "#/components/schemas/MemoryItemUser"
4934
+ }
4935
+ },
4936
+ "reasoning": {
4937
+ "type": "string",
4938
+ "description": "Reasoning for error states"
4939
+ }
4940
+ }
4941
+ },
4942
+ "MemoryItemUser": {
4943
+ "required": ["firstname", "lastname", "userId"],
4944
+ "type": "object",
4945
+ "properties": {
4946
+ "userId": {
4947
+ "type": "string",
4948
+ "description": "User ID of the user who created memory item"
4949
+ },
4950
+ "firstname": {
4951
+ "type": "string",
4952
+ "description": "First name of the user who created memory item"
4953
+ },
4954
+ "lastname": {
4955
+ "type": "string",
4956
+ "description": "Last name of the user who created memory item"
4957
+ }
4958
+ },
4959
+ "description": "Users who created memory item"
4960
+ },
4797
4961
  "QualityIssue": {
4798
4962
  "required": ["code", "detail", "id", "objects", "severity"],
4799
4963
  "type": "object",
@@ -453,6 +453,7 @@ export declare const ColumnOverrideLabelTypeEnum: {
453
453
  readonly GEO: "GEO";
454
454
  readonly GEO_LONGITUDE: "GEO_LONGITUDE";
455
455
  readonly GEO_LATITUDE: "GEO_LATITUDE";
456
+ readonly GEO_AREA: "GEO_AREA";
456
457
  readonly IMAGE: "IMAGE";
457
458
  };
458
459
  export type ColumnOverrideLabelTypeEnum = (typeof ColumnOverrideLabelTypeEnum)[keyof typeof ColumnOverrideLabelTypeEnum];
@@ -1800,6 +1801,7 @@ export interface DeclarativeLabel {
1800
1801
  * Determines if the label is hidden from AI features.
1801
1802
  */
1802
1803
  isHidden?: boolean;
1804
+ geoAreaConfig?: GeoAreaConfig;
1803
1805
  }
1804
1806
  export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
1805
1807
  readonly INT: "INT";
@@ -1817,6 +1819,7 @@ export declare const DeclarativeLabelValueTypeEnum: {
1817
1819
  readonly GEO: "GEO";
1818
1820
  readonly GEO_LONGITUDE: "GEO_LONGITUDE";
1819
1821
  readonly GEO_LATITUDE: "GEO_LATITUDE";
1822
+ readonly GEO_AREA: "GEO_AREA";
1820
1823
  readonly IMAGE: "IMAGE";
1821
1824
  };
1822
1825
  export type DeclarativeLabelValueTypeEnum = (typeof DeclarativeLabelValueTypeEnum)[keyof typeof DeclarativeLabelValueTypeEnum];
@@ -2203,6 +2206,7 @@ export declare const DeclarativeSettingTypeEnum: {
2203
2206
  readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
2204
2207
  readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
2205
2208
  readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
2209
+ readonly DATA_LOCALE: "DATA_LOCALE";
2206
2210
  };
2207
2211
  export type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
2208
2212
  export interface DeclarativeSingleWorkspacePermission {
@@ -2906,6 +2910,16 @@ export interface GenerateLdmRequest {
2906
2910
  */
2907
2911
  workspaceId?: string;
2908
2912
  }
2913
+ /**
2914
+ * Configuration specific to geo area labels.
2915
+ */
2916
+ export interface GeoAreaConfig {
2917
+ collection: GeoCollection;
2918
+ }
2919
+ export interface GeoCollection {
2920
+ id: string;
2921
+ matchingProperty?: string;
2922
+ }
2909
2923
  /**
2910
2924
  * A grain identifier.
2911
2925
  */
@@ -6422,6 +6436,7 @@ export interface JsonApiLabelOutAttributes {
6422
6436
  sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
6423
6437
  valueType?: JsonApiLabelOutAttributesValueTypeEnum;
6424
6438
  isHidden?: boolean;
6439
+ geoAreaConfig?: JsonApiLabelOutAttributesGeoAreaConfig;
6425
6440
  areRelationsValid?: boolean;
6426
6441
  }
6427
6442
  export declare const JsonApiLabelOutAttributesSourceColumnDataTypeEnum: {
@@ -6440,9 +6455,16 @@ export declare const JsonApiLabelOutAttributesValueTypeEnum: {
6440
6455
  readonly GEO: "GEO";
6441
6456
  readonly GEO_LONGITUDE: "GEO_LONGITUDE";
6442
6457
  readonly GEO_LATITUDE: "GEO_LATITUDE";
6458
+ readonly GEO_AREA: "GEO_AREA";
6443
6459
  readonly IMAGE: "IMAGE";
6444
6460
  };
6445
6461
  export type JsonApiLabelOutAttributesValueTypeEnum = (typeof JsonApiLabelOutAttributesValueTypeEnum)[keyof typeof JsonApiLabelOutAttributesValueTypeEnum];
6462
+ /**
6463
+ * Configuration specific to geo area labels.
6464
+ */
6465
+ export interface JsonApiLabelOutAttributesGeoAreaConfig {
6466
+ collection: GeoCollection;
6467
+ }
6446
6468
  export interface JsonApiLabelOutDocument {
6447
6469
  data: JsonApiLabelOut;
6448
6470
  links?: ObjectLinks;
@@ -7473,7 +7495,7 @@ export interface JsonApiOrganizationSettingIn {
7473
7495
  * API identifier of an object
7474
7496
  */
7475
7497
  id: string;
7476
- attributes?: JsonApiOrganizationSettingOutAttributes;
7498
+ attributes?: JsonApiUserSettingInAttributes;
7477
7499
  }
7478
7500
  export declare const JsonApiOrganizationSettingInTypeEnum: {
7479
7501
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7494,54 +7516,12 @@ export interface JsonApiOrganizationSettingOut {
7494
7516
  * API identifier of an object
7495
7517
  */
7496
7518
  id: string;
7497
- attributes?: JsonApiOrganizationSettingOutAttributes;
7519
+ attributes?: JsonApiUserSettingInAttributes;
7498
7520
  }
7499
7521
  export declare const JsonApiOrganizationSettingOutTypeEnum: {
7500
7522
  readonly ORGANIZATION_SETTING: "organizationSetting";
7501
7523
  };
7502
7524
  export type JsonApiOrganizationSettingOutTypeEnum = (typeof JsonApiOrganizationSettingOutTypeEnum)[keyof typeof JsonApiOrganizationSettingOutTypeEnum];
7503
- export interface JsonApiOrganizationSettingOutAttributes {
7504
- /**
7505
- * Free-form JSON content. Maximum supported length is 15000 characters.
7506
- */
7507
- content?: object;
7508
- type?: JsonApiOrganizationSettingOutAttributesTypeEnum;
7509
- }
7510
- export declare const JsonApiOrganizationSettingOutAttributesTypeEnum: {
7511
- readonly TIMEZONE: "TIMEZONE";
7512
- readonly ACTIVE_THEME: "ACTIVE_THEME";
7513
- readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
7514
- readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
7515
- readonly WHITE_LABELING: "WHITE_LABELING";
7516
- readonly LOCALE: "LOCALE";
7517
- readonly METADATA_LOCALE: "METADATA_LOCALE";
7518
- readonly FORMAT_LOCALE: "FORMAT_LOCALE";
7519
- readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
7520
- readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
7521
- readonly WEEK_START: "WEEK_START";
7522
- readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
7523
- readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
7524
- readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
7525
- readonly OPENAI_CONFIG: "OPENAI_CONFIG";
7526
- readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
7527
- readonly ALERT: "ALERT";
7528
- readonly SEPARATORS: "SEPARATORS";
7529
- readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
7530
- readonly JIT_PROVISIONING: "JIT_PROVISIONING";
7531
- readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
7532
- readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
7533
- readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
7534
- readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
7535
- readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
7536
- readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
7537
- readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
7538
- readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
7539
- readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
7540
- readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
7541
- readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
7542
- readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
7543
- };
7544
- export type JsonApiOrganizationSettingOutAttributesTypeEnum = (typeof JsonApiOrganizationSettingOutAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingOutAttributesTypeEnum];
7545
7525
  export interface JsonApiOrganizationSettingOutDocument {
7546
7526
  data: JsonApiOrganizationSettingOut;
7547
7527
  links?: ObjectLinks;
@@ -7563,7 +7543,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
7563
7543
  * API identifier of an object
7564
7544
  */
7565
7545
  id: string;
7566
- attributes?: JsonApiOrganizationSettingOutAttributes;
7546
+ attributes?: JsonApiUserSettingInAttributes;
7567
7547
  links?: ObjectLinks;
7568
7548
  }
7569
7549
  export declare const JsonApiOrganizationSettingOutWithLinksTypeEnum: {
@@ -7582,7 +7562,7 @@ export interface JsonApiOrganizationSettingPatch {
7582
7562
  * API identifier of an object
7583
7563
  */
7584
7564
  id: string;
7585
- attributes?: JsonApiOrganizationSettingOutAttributes;
7565
+ attributes?: JsonApiUserSettingInAttributes;
7586
7566
  }
7587
7567
  export declare const JsonApiOrganizationSettingPatchTypeEnum: {
7588
7568
  readonly ORGANIZATION_SETTING: "organizationSetting";
@@ -7910,13 +7890,7 @@ export interface JsonApiUserGroupOutList {
7910
7890
  included?: Array<JsonApiUserGroupOutWithLinks>;
7911
7891
  }
7912
7892
  export interface JsonApiUserGroupOutRelationships {
7913
- parents?: JsonApiUserGroupOutRelationshipsParents;
7914
- }
7915
- export interface JsonApiUserGroupOutRelationshipsParents {
7916
- /**
7917
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
7918
- */
7919
- data: Array<JsonApiUserGroupLinkage>;
7893
+ parents?: JsonApiUserOutRelationshipsUserGroups;
7920
7894
  }
7921
7895
  export interface JsonApiUserGroupOutWithLinks {
7922
7896
  /**
@@ -8098,7 +8072,13 @@ export interface JsonApiUserOutList {
8098
8072
  included?: Array<JsonApiUserGroupOutWithLinks>;
8099
8073
  }
8100
8074
  export interface JsonApiUserOutRelationships {
8101
- userGroups?: JsonApiUserGroupOutRelationshipsParents;
8075
+ userGroups?: JsonApiUserOutRelationshipsUserGroups;
8076
+ }
8077
+ export interface JsonApiUserOutRelationshipsUserGroups {
8078
+ /**
8079
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
8080
+ */
8081
+ data: Array<JsonApiUserGroupLinkage>;
8102
8082
  }
8103
8083
  export interface JsonApiUserOutWithLinks {
8104
8084
  /**
@@ -8151,12 +8131,55 @@ export interface JsonApiUserSettingIn {
8151
8131
  * API identifier of an object
8152
8132
  */
8153
8133
  id: string;
8154
- attributes?: JsonApiOrganizationSettingOutAttributes;
8134
+ attributes?: JsonApiUserSettingInAttributes;
8155
8135
  }
8156
8136
  export declare const JsonApiUserSettingInTypeEnum: {
8157
8137
  readonly USER_SETTING: "userSetting";
8158
8138
  };
8159
8139
  export type JsonApiUserSettingInTypeEnum = (typeof JsonApiUserSettingInTypeEnum)[keyof typeof JsonApiUserSettingInTypeEnum];
8140
+ export interface JsonApiUserSettingInAttributes {
8141
+ /**
8142
+ * Free-form JSON content. Maximum supported length is 15000 characters.
8143
+ */
8144
+ content?: object;
8145
+ type?: JsonApiUserSettingInAttributesTypeEnum;
8146
+ }
8147
+ export declare const JsonApiUserSettingInAttributesTypeEnum: {
8148
+ readonly TIMEZONE: "TIMEZONE";
8149
+ readonly ACTIVE_THEME: "ACTIVE_THEME";
8150
+ readonly ACTIVE_COLOR_PALETTE: "ACTIVE_COLOR_PALETTE";
8151
+ readonly ACTIVE_LLM_ENDPOINT: "ACTIVE_LLM_ENDPOINT";
8152
+ readonly WHITE_LABELING: "WHITE_LABELING";
8153
+ readonly LOCALE: "LOCALE";
8154
+ readonly METADATA_LOCALE: "METADATA_LOCALE";
8155
+ readonly FORMAT_LOCALE: "FORMAT_LOCALE";
8156
+ readonly MAPBOX_TOKEN: "MAPBOX_TOKEN";
8157
+ readonly AG_GRID_TOKEN: "AG_GRID_TOKEN";
8158
+ readonly WEEK_START: "WEEK_START";
8159
+ readonly SHOW_HIDDEN_CATALOG_ITEMS: "SHOW_HIDDEN_CATALOG_ITEMS";
8160
+ readonly OPERATOR_OVERRIDES: "OPERATOR_OVERRIDES";
8161
+ readonly TIMEZONE_VALIDATION_ENABLED: "TIMEZONE_VALIDATION_ENABLED";
8162
+ readonly OPENAI_CONFIG: "OPENAI_CONFIG";
8163
+ readonly ENABLE_FILE_ANALYTICS: "ENABLE_FILE_ANALYTICS";
8164
+ readonly ALERT: "ALERT";
8165
+ readonly SEPARATORS: "SEPARATORS";
8166
+ readonly DATE_FILTER_CONFIG: "DATE_FILTER_CONFIG";
8167
+ readonly JIT_PROVISIONING: "JIT_PROVISIONING";
8168
+ readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
8169
+ readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
8170
+ readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
8171
+ readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
8172
+ readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
8173
+ readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
8174
+ readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
8175
+ readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
8176
+ readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
8177
+ readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
8178
+ readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
8179
+ readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
8180
+ readonly DATA_LOCALE: "DATA_LOCALE";
8181
+ };
8182
+ export type JsonApiUserSettingInAttributesTypeEnum = (typeof JsonApiUserSettingInAttributesTypeEnum)[keyof typeof JsonApiUserSettingInAttributesTypeEnum];
8160
8183
  export interface JsonApiUserSettingInDocument {
8161
8184
  data: JsonApiUserSettingIn;
8162
8185
  }
@@ -8172,7 +8195,7 @@ export interface JsonApiUserSettingOut {
8172
8195
  * API identifier of an object
8173
8196
  */
8174
8197
  id: string;
8175
- attributes?: JsonApiOrganizationSettingOutAttributes;
8198
+ attributes?: JsonApiUserSettingInAttributes;
8176
8199
  }
8177
8200
  export declare const JsonApiUserSettingOutTypeEnum: {
8178
8201
  readonly USER_SETTING: "userSetting";
@@ -8199,7 +8222,7 @@ export interface JsonApiUserSettingOutWithLinks {
8199
8222
  * API identifier of an object
8200
8223
  */
8201
8224
  id: string;
8202
- attributes?: JsonApiOrganizationSettingOutAttributes;
8225
+ attributes?: JsonApiUserSettingInAttributes;
8203
8226
  links?: ObjectLinks;
8204
8227
  }
8205
8228
  export declare const JsonApiUserSettingOutWithLinksTypeEnum: {
@@ -8956,7 +8979,7 @@ export interface JsonApiWorkspaceSettingIn {
8956
8979
  * API identifier of an object
8957
8980
  */
8958
8981
  id: string;
8959
- attributes?: JsonApiOrganizationSettingOutAttributes;
8982
+ attributes?: JsonApiUserSettingInAttributes;
8960
8983
  }
8961
8984
  export declare const JsonApiWorkspaceSettingInTypeEnum: {
8962
8985
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -8978,7 +9001,7 @@ export interface JsonApiWorkspaceSettingOut {
8978
9001
  */
8979
9002
  id: string;
8980
9003
  meta?: JsonApiVisualizationObjectOutMeta;
8981
- attributes?: JsonApiOrganizationSettingOutAttributes;
9004
+ attributes?: JsonApiUserSettingInAttributes;
8982
9005
  }
8983
9006
  export declare const JsonApiWorkspaceSettingOutTypeEnum: {
8984
9007
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9006,7 +9029,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
9006
9029
  */
9007
9030
  id: string;
9008
9031
  meta?: JsonApiVisualizationObjectOutMeta;
9009
- attributes?: JsonApiOrganizationSettingOutAttributes;
9032
+ attributes?: JsonApiUserSettingInAttributes;
9010
9033
  links?: ObjectLinks;
9011
9034
  }
9012
9035
  export declare const JsonApiWorkspaceSettingOutWithLinksTypeEnum: {
@@ -9025,7 +9048,7 @@ export interface JsonApiWorkspaceSettingPatch {
9025
9048
  * API identifier of an object
9026
9049
  */
9027
9050
  id: string;
9028
- attributes?: JsonApiOrganizationSettingOutAttributes;
9051
+ attributes?: JsonApiUserSettingInAttributes;
9029
9052
  }
9030
9053
  export declare const JsonApiWorkspaceSettingPatchTypeEnum: {
9031
9054
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9046,7 +9069,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
9046
9069
  * API identifier of an object
9047
9070
  */
9048
9071
  id?: string;
9049
- attributes?: JsonApiOrganizationSettingOutAttributes;
9072
+ attributes?: JsonApiUserSettingInAttributes;
9050
9073
  }
9051
9074
  export declare const JsonApiWorkspaceSettingPostOptionalIdTypeEnum: {
9052
9075
  readonly WORKSPACE_SETTING: "workspaceSetting";
@@ -9737,6 +9760,7 @@ export declare const ResolvedSettingTypeEnum: {
9737
9760
  readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
9738
9761
  readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
9739
9762
  readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
9763
+ readonly DATA_LOCALE: "DATA_LOCALE";
9740
9764
  };
9741
9765
  export type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
9742
9766
  export interface RsaSpecification {