@gooddata/api-client-tiger 11.46.0-alpha.3 → 11.46.0-alpha.5
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1341 -429
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
- package/esm/endpoints/entitiesObjects/index.js +4 -2
- package/esm/endpoints/genAI/index.d.ts +2 -1
- package/esm/endpoints/genAI/index.d.ts.map +1 -1
- package/esm/endpoints/genAI/index.js +3 -1
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js +0 -2
- package/esm/generated/afm-rest-api/api.d.ts +366 -266
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +371 -268
- package/esm/generated/ai-json-api/api.d.ts +31 -8
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +19 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +19 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +1963 -340
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +1946 -478
- package/esm/generated/scan-json-api/api.d.ts +10 -0
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +4 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/package.json +4 -4
|
@@ -208,6 +208,45 @@ export interface AmplitudeService {
|
|
|
208
208
|
*/
|
|
209
209
|
'reportingEndpoint'?: string;
|
|
210
210
|
}
|
|
211
|
+
/**
|
|
212
|
+
* List of users who created catalog objects in the workspace hierarchy.
|
|
213
|
+
*/
|
|
214
|
+
export interface AnalyticsCatalogCreatedBy {
|
|
215
|
+
/**
|
|
216
|
+
* Distinct users who have created at least one catalog object.
|
|
217
|
+
*/
|
|
218
|
+
'users': Array<AnalyticsCatalogUser>;
|
|
219
|
+
/**
|
|
220
|
+
* Reserved for future use. Always empty string in the current implementation.
|
|
221
|
+
*/
|
|
222
|
+
'reasoning': string;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* List of distinct catalog tags aggregated across the workspace hierarchy.
|
|
226
|
+
*/
|
|
227
|
+
export interface AnalyticsCatalogTags {
|
|
228
|
+
/**
|
|
229
|
+
* Sorted, distinct tag strings found in the workspace hierarchy.
|
|
230
|
+
*/
|
|
231
|
+
'tags': Array<string>;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* A user who has created one or more catalog objects.
|
|
235
|
+
*/
|
|
236
|
+
export interface AnalyticsCatalogUser {
|
|
237
|
+
/**
|
|
238
|
+
* User identifier.
|
|
239
|
+
*/
|
|
240
|
+
'userId': string;
|
|
241
|
+
/**
|
|
242
|
+
* User first name.
|
|
243
|
+
*/
|
|
244
|
+
'firstname': string;
|
|
245
|
+
/**
|
|
246
|
+
* User last name.
|
|
247
|
+
*/
|
|
248
|
+
'lastname': string;
|
|
249
|
+
}
|
|
211
250
|
export interface AnomalyDetection {
|
|
212
251
|
'measure': LocalIdentifier;
|
|
213
252
|
/**
|
|
@@ -256,7 +295,7 @@ export interface ApiEntitlement {
|
|
|
256
295
|
'value'?: string;
|
|
257
296
|
'expiry'?: string;
|
|
258
297
|
}
|
|
259
|
-
export type ApiEntitlementNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit';
|
|
298
|
+
export type ApiEntitlementNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit' | 'AiObservability';
|
|
260
299
|
export interface ArithmeticMeasure {
|
|
261
300
|
/**
|
|
262
301
|
* Arithmetic operator. DIFFERENCE - m₁−m₂ - the difference between two metrics. CHANGE - (m₁−m₂)÷m₂ - the relative difference between two metrics.
|
|
@@ -287,6 +326,9 @@ export type ArithmeticMeasureDefinitionArithmeticMeasureOperatorEnum = 'SUM' | '
|
|
|
287
326
|
* Identifier of a user or user-group.
|
|
288
327
|
*/
|
|
289
328
|
export interface AssigneeIdentifier {
|
|
329
|
+
/**
|
|
330
|
+
* Identifier of the assignee.
|
|
331
|
+
*/
|
|
290
332
|
'id': string;
|
|
291
333
|
'type': AssigneeIdentifierTypeEnum;
|
|
292
334
|
}
|
|
@@ -1541,7 +1583,7 @@ export interface DeclarativeDataSource {
|
|
|
1541
1583
|
}
|
|
1542
1584
|
export type DeclarativeDataSourceTypeEnum = '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';
|
|
1543
1585
|
export type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
1544
|
-
export type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | '
|
|
1586
|
+
export type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
1545
1587
|
export type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
1546
1588
|
export interface DeclarativeDataSourcePermission {
|
|
1547
1589
|
/**
|
|
@@ -2404,7 +2446,7 @@ export interface DeclarativeSetting {
|
|
|
2404
2446
|
*/
|
|
2405
2447
|
'type'?: DeclarativeSettingTypeEnum;
|
|
2406
2448
|
}
|
|
2407
|
-
export type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
2449
|
+
export type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
2408
2450
|
export interface DeclarativeSingleWorkspacePermission {
|
|
2409
2451
|
/**
|
|
2410
2452
|
* Permission name.
|
|
@@ -2726,6 +2768,10 @@ export interface DeclarativeWorkspace {
|
|
|
2726
2768
|
'dataSource'?: WorkspaceDataSource;
|
|
2727
2769
|
'automations'?: Array<DeclarativeAutomation>;
|
|
2728
2770
|
'filterViews'?: Array<DeclarativeFilterView>;
|
|
2771
|
+
/**
|
|
2772
|
+
* Whether the workspace is platform-managed and read-only. Informational on export; ignored on import (the flag is server-controlled).
|
|
2773
|
+
*/
|
|
2774
|
+
'managed'?: boolean;
|
|
2729
2775
|
}
|
|
2730
2776
|
/**
|
|
2731
2777
|
* Workspace Data Filters serving the filtering of what data users can see in workspaces.
|
|
@@ -2878,7 +2924,7 @@ export interface DependentEntitiesResponse {
|
|
|
2878
2924
|
export interface EntitlementsRequest {
|
|
2879
2925
|
'entitlementsName': Array<EntitlementsRequestEntitlementsNameEnum>;
|
|
2880
2926
|
}
|
|
2881
|
-
export type EntitlementsRequestEntitlementsNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit';
|
|
2927
|
+
export type EntitlementsRequestEntitlementsNameEnum = 'CacheStrategy' | 'Contract' | 'CustomTheming' | 'ExtraCache' | 'Hipaa' | 'PdfExports' | 'UiLocalization' | 'Tier' | 'UserCount' | 'ManagedIdpUserCount' | 'UnlimitedUsers' | 'UnlimitedWorkspaces' | 'WhiteLabeling' | 'WorkspaceCount' | 'UserTelemetryDisabled' | 'AutomationCount' | 'UnlimitedAutomations' | 'AutomationRecipientCount' | 'UnlimitedAutomationRecipients' | 'DailyScheduledActionCount' | 'UnlimitedDailyScheduledActions' | 'DailyAlertActionCount' | 'UnlimitedDailyAlertActions' | 'ScheduledActionMinimumRecurrenceMinutes' | 'FederatedIdentityManagement' | 'AuditLogging' | 'ControlledFeatureRollout' | 'AiLake' | 'AiModule' | 'AiQueryLimit' | 'AiKnowledgeStorageLimit' | 'AiAgentLimit' | 'AiWorkspaceLimit' | 'AiObservability';
|
|
2882
2928
|
export interface EntityIdentifier {
|
|
2883
2929
|
/**
|
|
2884
2930
|
* Object identifier.
|
|
@@ -3142,7 +3188,7 @@ export interface IdentifierRefIdentifier {
|
|
|
3142
3188
|
'id': string;
|
|
3143
3189
|
'type': IdentifierRefIdentifierTypeEnum;
|
|
3144
3190
|
}
|
|
3145
|
-
export type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView';
|
|
3191
|
+
export type IdentifierRefIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'aggregatedFact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'exportDefinition' | 'automation' | 'automationResult' | 'memoryItem' | 'knowledgeRecommendation' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceSettings' | 'customApplicationSetting' | 'workspaceDataFilter' | 'workspaceDataFilterSetting' | 'filterView' | 'workspaceExportTemplate';
|
|
3146
3192
|
/**
|
|
3147
3193
|
* Export request object describing the export properties and metadata for image exports.
|
|
3148
3194
|
*/
|
|
@@ -4305,9 +4351,16 @@ export interface JsonApiColorPaletteIn {
|
|
|
4305
4351
|
* API identifier of an object
|
|
4306
4352
|
*/
|
|
4307
4353
|
'id': string;
|
|
4308
|
-
'attributes':
|
|
4354
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
4309
4355
|
}
|
|
4310
4356
|
export type JsonApiColorPaletteInTypeEnum = 'colorPalette';
|
|
4357
|
+
export interface JsonApiColorPaletteInAttributes {
|
|
4358
|
+
'name': string;
|
|
4359
|
+
/**
|
|
4360
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4361
|
+
*/
|
|
4362
|
+
'content': object;
|
|
4363
|
+
}
|
|
4311
4364
|
export interface JsonApiColorPaletteInDocument {
|
|
4312
4365
|
'data': JsonApiColorPaletteIn;
|
|
4313
4366
|
}
|
|
@@ -4323,16 +4376,9 @@ export interface JsonApiColorPaletteOut {
|
|
|
4323
4376
|
* API identifier of an object
|
|
4324
4377
|
*/
|
|
4325
4378
|
'id': string;
|
|
4326
|
-
'attributes':
|
|
4379
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
4327
4380
|
}
|
|
4328
4381
|
export type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
|
|
4329
|
-
export interface JsonApiColorPaletteOutAttributes {
|
|
4330
|
-
'name': string;
|
|
4331
|
-
/**
|
|
4332
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
4333
|
-
*/
|
|
4334
|
-
'content': object;
|
|
4335
|
-
}
|
|
4336
4382
|
export interface JsonApiColorPaletteOutDocument {
|
|
4337
4383
|
'data': JsonApiColorPaletteOut;
|
|
4338
4384
|
'links'?: ObjectLinks;
|
|
@@ -4354,7 +4400,7 @@ export interface JsonApiColorPaletteOutWithLinks {
|
|
|
4354
4400
|
* API identifier of an object
|
|
4355
4401
|
*/
|
|
4356
4402
|
'id': string;
|
|
4357
|
-
'attributes':
|
|
4403
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
4358
4404
|
'links'?: ObjectLinks;
|
|
4359
4405
|
}
|
|
4360
4406
|
export type JsonApiColorPaletteOutWithLinksTypeEnum = 'colorPalette';
|
|
@@ -4395,16 +4441,9 @@ export interface JsonApiCookieSecurityConfigurationIn {
|
|
|
4395
4441
|
* API identifier of an object
|
|
4396
4442
|
*/
|
|
4397
4443
|
'id': string;
|
|
4398
|
-
'attributes'?:
|
|
4444
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4399
4445
|
}
|
|
4400
4446
|
export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
|
|
4401
|
-
export interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
4402
|
-
'lastRotation'?: string;
|
|
4403
|
-
/**
|
|
4404
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4405
|
-
*/
|
|
4406
|
-
'rotationInterval'?: string;
|
|
4407
|
-
}
|
|
4408
4447
|
export interface JsonApiCookieSecurityConfigurationInDocument {
|
|
4409
4448
|
'data': JsonApiCookieSecurityConfigurationIn;
|
|
4410
4449
|
}
|
|
@@ -4420,9 +4459,16 @@ export interface JsonApiCookieSecurityConfigurationOut {
|
|
|
4420
4459
|
* API identifier of an object
|
|
4421
4460
|
*/
|
|
4422
4461
|
'id': string;
|
|
4423
|
-
'attributes'?:
|
|
4462
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4424
4463
|
}
|
|
4425
4464
|
export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
|
|
4465
|
+
export interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
4466
|
+
'lastRotation'?: string;
|
|
4467
|
+
/**
|
|
4468
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
4469
|
+
*/
|
|
4470
|
+
'rotationInterval'?: string;
|
|
4471
|
+
}
|
|
4426
4472
|
export interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
4427
4473
|
'data': JsonApiCookieSecurityConfigurationOut;
|
|
4428
4474
|
'links'?: ObjectLinks;
|
|
@@ -4439,7 +4485,7 @@ export interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
4439
4485
|
* API identifier of an object
|
|
4440
4486
|
*/
|
|
4441
4487
|
'id': string;
|
|
4442
|
-
'attributes'?:
|
|
4488
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
4443
4489
|
}
|
|
4444
4490
|
export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
|
|
4445
4491
|
export interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -5064,11 +5110,15 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
5064
5110
|
/**
|
|
5065
5111
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5066
5112
|
*/
|
|
5067
|
-
'parameters'?: Array<
|
|
5113
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5068
5114
|
/**
|
|
5069
5115
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5070
5116
|
*/
|
|
5071
5117
|
'cacheStrategy'?: JsonApiDataSourceInAttributesCacheStrategyEnum | null;
|
|
5118
|
+
/**
|
|
5119
|
+
* Type of authentication used to connect to the database.
|
|
5120
|
+
*/
|
|
5121
|
+
'authenticationType'?: JsonApiDataSourceInAttributesAuthenticationTypeEnum | null;
|
|
5072
5122
|
/**
|
|
5073
5123
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
5074
5124
|
*/
|
|
@@ -5080,7 +5130,12 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
5080
5130
|
}
|
|
5081
5131
|
export 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';
|
|
5082
5132
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
5133
|
+
export type JsonApiDataSourceInAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
5083
5134
|
export type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
5135
|
+
export interface JsonApiDataSourceInAttributesParametersInner {
|
|
5136
|
+
'name': string;
|
|
5137
|
+
'value': string;
|
|
5138
|
+
}
|
|
5084
5139
|
export interface JsonApiDataSourceInDocument {
|
|
5085
5140
|
'data': JsonApiDataSourceIn;
|
|
5086
5141
|
}
|
|
@@ -5128,11 +5183,11 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
5128
5183
|
/**
|
|
5129
5184
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5130
5185
|
*/
|
|
5131
|
-
'parameters'?: Array<
|
|
5186
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5132
5187
|
/**
|
|
5133
5188
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
5134
5189
|
*/
|
|
5135
|
-
'decodedParameters'?: Array<
|
|
5190
|
+
'decodedParameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5136
5191
|
/**
|
|
5137
5192
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5138
5193
|
*/
|
|
@@ -5149,15 +5204,15 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
5149
5204
|
* Determines how datetime values are interpreted in data sources without native support for specifying this. Only StarRocks and AI Lakehouse data sources currently support this.
|
|
5150
5205
|
*/
|
|
5151
5206
|
'dateTimeSemantics'?: JsonApiDataSourceOutAttributesDateTimeSemanticsEnum | null;
|
|
5207
|
+
/**
|
|
5208
|
+
* Whether the object is platform-managed and read-only.
|
|
5209
|
+
*/
|
|
5210
|
+
'managed'?: boolean;
|
|
5152
5211
|
}
|
|
5153
5212
|
export 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';
|
|
5154
5213
|
export type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
5155
|
-
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | '
|
|
5214
|
+
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
5156
5215
|
export type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
5157
|
-
export interface JsonApiDataSourceOutAttributesParametersInner {
|
|
5158
|
-
'name': string;
|
|
5159
|
-
'value': string;
|
|
5160
|
-
}
|
|
5161
5216
|
export interface JsonApiDataSourceOutDocument {
|
|
5162
5217
|
'data': JsonApiDataSourceOut;
|
|
5163
5218
|
'links'?: ObjectLinks;
|
|
@@ -5247,11 +5302,15 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
5247
5302
|
/**
|
|
5248
5303
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
5249
5304
|
*/
|
|
5250
|
-
'parameters'?: Array<
|
|
5305
|
+
'parameters'?: Array<JsonApiDataSourceInAttributesParametersInner> | null;
|
|
5251
5306
|
/**
|
|
5252
5307
|
* Determines how the results coming from a particular datasource should be cached.
|
|
5253
5308
|
*/
|
|
5254
5309
|
'cacheStrategy'?: JsonApiDataSourcePatchAttributesCacheStrategyEnum | null;
|
|
5310
|
+
/**
|
|
5311
|
+
* Type of authentication used to connect to the database.
|
|
5312
|
+
*/
|
|
5313
|
+
'authenticationType'?: JsonApiDataSourcePatchAttributesAuthenticationTypeEnum | null;
|
|
5255
5314
|
/**
|
|
5256
5315
|
* Alternative data source ID. It is a weak reference meaning data source does not have to exist. All the entities (e.g. tables) from the data source must be available also in the alternative data source. It must be present in the same organization as the data source.
|
|
5257
5316
|
*/
|
|
@@ -5263,6 +5322,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
5263
5322
|
}
|
|
5264
5323
|
export type JsonApiDataSourcePatchAttributesTypeEnum = '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';
|
|
5265
5324
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
5325
|
+
export type JsonApiDataSourcePatchAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
5266
5326
|
export type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
5267
5327
|
export interface JsonApiDataSourcePatchDocument {
|
|
5268
5328
|
'data': JsonApiDataSourcePatch;
|
|
@@ -6927,28 +6987,10 @@ export interface JsonApiLlmProviderIn {
|
|
|
6927
6987
|
* API identifier of an object
|
|
6928
6988
|
*/
|
|
6929
6989
|
'id': string;
|
|
6930
|
-
'attributes'?:
|
|
6990
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
6931
6991
|
}
|
|
6932
6992
|
export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
6933
|
-
export interface
|
|
6934
|
-
'data': JsonApiLlmProviderIn;
|
|
6935
|
-
}
|
|
6936
|
-
/**
|
|
6937
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
6938
|
-
*/
|
|
6939
|
-
export interface JsonApiLlmProviderOut {
|
|
6940
|
-
/**
|
|
6941
|
-
* Object type
|
|
6942
|
-
*/
|
|
6943
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
6944
|
-
/**
|
|
6945
|
-
* API identifier of an object
|
|
6946
|
-
*/
|
|
6947
|
-
'id': string;
|
|
6948
|
-
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
6949
|
-
}
|
|
6950
|
-
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6951
|
-
export interface JsonApiLlmProviderOutAttributes {
|
|
6993
|
+
export interface JsonApiLlmProviderInAttributes {
|
|
6952
6994
|
'name'?: string | null;
|
|
6953
6995
|
/**
|
|
6954
6996
|
* Description of the LLM Provider.
|
|
@@ -6958,16 +7000,16 @@ export interface JsonApiLlmProviderOutAttributes {
|
|
|
6958
7000
|
* Required ID of the default model to use from the models list.
|
|
6959
7001
|
*/
|
|
6960
7002
|
'defaultModelId'?: string | null;
|
|
6961
|
-
'providerConfig'?:
|
|
7003
|
+
'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
|
|
6962
7004
|
/**
|
|
6963
7005
|
* List of LLM models available for this provider.
|
|
6964
7006
|
*/
|
|
6965
|
-
'models'?: Array<
|
|
7007
|
+
'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
|
|
6966
7008
|
}
|
|
6967
7009
|
/**
|
|
6968
7010
|
* LLM Model configuration (id, family) within a provider.
|
|
6969
7011
|
*/
|
|
6970
|
-
export interface
|
|
7012
|
+
export interface JsonApiLlmProviderInAttributesModelsInner {
|
|
6971
7013
|
/**
|
|
6972
7014
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
6973
7015
|
*/
|
|
@@ -6975,14 +7017,32 @@ export interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
|
6975
7017
|
/**
|
|
6976
7018
|
* Family of LLM models.
|
|
6977
7019
|
*/
|
|
6978
|
-
'family':
|
|
7020
|
+
'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
|
|
6979
7021
|
}
|
|
6980
|
-
export type
|
|
7022
|
+
export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
6981
7023
|
/**
|
|
6982
|
-
* @type
|
|
7024
|
+
* @type JsonApiLlmProviderInAttributesProviderConfig
|
|
6983
7025
|
* Provider-specific configuration including authentication.
|
|
6984
7026
|
*/
|
|
6985
|
-
export type
|
|
7027
|
+
export type JsonApiLlmProviderInAttributesProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
7028
|
+
export interface JsonApiLlmProviderInDocument {
|
|
7029
|
+
'data': JsonApiLlmProviderIn;
|
|
7030
|
+
}
|
|
7031
|
+
/**
|
|
7032
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
7033
|
+
*/
|
|
7034
|
+
export interface JsonApiLlmProviderOut {
|
|
7035
|
+
/**
|
|
7036
|
+
* Object type
|
|
7037
|
+
*/
|
|
7038
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
7039
|
+
/**
|
|
7040
|
+
* API identifier of an object
|
|
7041
|
+
*/
|
|
7042
|
+
'id': string;
|
|
7043
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
7044
|
+
}
|
|
7045
|
+
export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
6986
7046
|
export interface JsonApiLlmProviderOutDocument {
|
|
6987
7047
|
'data': JsonApiLlmProviderOut;
|
|
6988
7048
|
'links'?: ObjectLinks;
|
|
@@ -7004,7 +7064,7 @@ export interface JsonApiLlmProviderOutWithLinks {
|
|
|
7004
7064
|
* API identifier of an object
|
|
7005
7065
|
*/
|
|
7006
7066
|
'id': string;
|
|
7007
|
-
'attributes'?:
|
|
7067
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
7008
7068
|
'links'?: ObjectLinks;
|
|
7009
7069
|
}
|
|
7010
7070
|
export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
|
|
@@ -7020,7 +7080,7 @@ export interface JsonApiLlmProviderPatch {
|
|
|
7020
7080
|
* API identifier of an object
|
|
7021
7081
|
*/
|
|
7022
7082
|
'id': string;
|
|
7023
|
-
'attributes'?:
|
|
7083
|
+
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
7024
7084
|
}
|
|
7025
7085
|
export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
|
|
7026
7086
|
export interface JsonApiLlmProviderPatchDocument {
|
|
@@ -7930,7 +7990,7 @@ export interface JsonApiOrganizationSettingInAttributes {
|
|
|
7930
7990
|
'content'?: object;
|
|
7931
7991
|
'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
|
|
7932
7992
|
}
|
|
7933
|
-
export type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
7993
|
+
export type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
7934
7994
|
export interface JsonApiOrganizationSettingInDocument {
|
|
7935
7995
|
'data': JsonApiOrganizationSettingIn;
|
|
7936
7996
|
}
|
|
@@ -8155,7 +8215,7 @@ export interface JsonApiThemeIn {
|
|
|
8155
8215
|
* API identifier of an object
|
|
8156
8216
|
*/
|
|
8157
8217
|
'id': string;
|
|
8158
|
-
'attributes':
|
|
8218
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
8159
8219
|
}
|
|
8160
8220
|
export type JsonApiThemeInTypeEnum = 'theme';
|
|
8161
8221
|
export interface JsonApiThemeInDocument {
|
|
@@ -8173,7 +8233,7 @@ export interface JsonApiThemeOut {
|
|
|
8173
8233
|
* API identifier of an object
|
|
8174
8234
|
*/
|
|
8175
8235
|
'id': string;
|
|
8176
|
-
'attributes':
|
|
8236
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
8177
8237
|
}
|
|
8178
8238
|
export type JsonApiThemeOutTypeEnum = 'theme';
|
|
8179
8239
|
export interface JsonApiThemeOutDocument {
|
|
@@ -8197,7 +8257,7 @@ export interface JsonApiThemeOutWithLinks {
|
|
|
8197
8257
|
* API identifier of an object
|
|
8198
8258
|
*/
|
|
8199
8259
|
'id': string;
|
|
8200
|
-
'attributes':
|
|
8260
|
+
'attributes': JsonApiColorPaletteInAttributes;
|
|
8201
8261
|
'links'?: ObjectLinks;
|
|
8202
8262
|
}
|
|
8203
8263
|
export type JsonApiThemeOutWithLinksTypeEnum = 'theme';
|
|
@@ -9258,6 +9318,143 @@ export type JsonApiWorkspaceDataFilterSettingPatchTypeEnum = 'workspaceDataFilte
|
|
|
9258
9318
|
export interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
9259
9319
|
'data': JsonApiWorkspaceDataFilterSettingPatch;
|
|
9260
9320
|
}
|
|
9321
|
+
/**
|
|
9322
|
+
* JSON:API representation of workspaceExportTemplate entity.
|
|
9323
|
+
*/
|
|
9324
|
+
export interface JsonApiWorkspaceExportTemplateIn {
|
|
9325
|
+
/**
|
|
9326
|
+
* Object type
|
|
9327
|
+
*/
|
|
9328
|
+
'type': JsonApiWorkspaceExportTemplateInTypeEnum;
|
|
9329
|
+
/**
|
|
9330
|
+
* API identifier of an object
|
|
9331
|
+
*/
|
|
9332
|
+
'id': string;
|
|
9333
|
+
'attributes': JsonApiWorkspaceExportTemplatePostOptionalIdAttributes;
|
|
9334
|
+
}
|
|
9335
|
+
export type JsonApiWorkspaceExportTemplateInTypeEnum = 'workspaceExportTemplate';
|
|
9336
|
+
export interface JsonApiWorkspaceExportTemplateInDocument {
|
|
9337
|
+
'data': JsonApiWorkspaceExportTemplateIn;
|
|
9338
|
+
}
|
|
9339
|
+
/**
|
|
9340
|
+
* JSON:API representation of workspaceExportTemplate entity.
|
|
9341
|
+
*/
|
|
9342
|
+
export interface JsonApiWorkspaceExportTemplateOut {
|
|
9343
|
+
/**
|
|
9344
|
+
* Object type
|
|
9345
|
+
*/
|
|
9346
|
+
'type': JsonApiWorkspaceExportTemplateOutTypeEnum;
|
|
9347
|
+
/**
|
|
9348
|
+
* API identifier of an object
|
|
9349
|
+
*/
|
|
9350
|
+
'id': string;
|
|
9351
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9352
|
+
'attributes': JsonApiWorkspaceExportTemplatePostOptionalIdAttributes;
|
|
9353
|
+
}
|
|
9354
|
+
export type JsonApiWorkspaceExportTemplateOutTypeEnum = 'workspaceExportTemplate';
|
|
9355
|
+
export interface JsonApiWorkspaceExportTemplateOutDocument {
|
|
9356
|
+
'data': JsonApiWorkspaceExportTemplateOut;
|
|
9357
|
+
'links'?: ObjectLinks;
|
|
9358
|
+
}
|
|
9359
|
+
/**
|
|
9360
|
+
* A JSON:API document with a list of resources
|
|
9361
|
+
*/
|
|
9362
|
+
export interface JsonApiWorkspaceExportTemplateOutList {
|
|
9363
|
+
'data': Array<JsonApiWorkspaceExportTemplateOutWithLinks>;
|
|
9364
|
+
'links'?: ListLinks;
|
|
9365
|
+
'meta'?: JsonApiAgentOutListMeta;
|
|
9366
|
+
}
|
|
9367
|
+
export interface JsonApiWorkspaceExportTemplateOutWithLinks {
|
|
9368
|
+
/**
|
|
9369
|
+
* Object type
|
|
9370
|
+
*/
|
|
9371
|
+
'type': JsonApiWorkspaceExportTemplateOutWithLinksTypeEnum;
|
|
9372
|
+
/**
|
|
9373
|
+
* API identifier of an object
|
|
9374
|
+
*/
|
|
9375
|
+
'id': string;
|
|
9376
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
9377
|
+
'attributes': JsonApiWorkspaceExportTemplatePostOptionalIdAttributes;
|
|
9378
|
+
'links'?: ObjectLinks;
|
|
9379
|
+
}
|
|
9380
|
+
export type JsonApiWorkspaceExportTemplateOutWithLinksTypeEnum = 'workspaceExportTemplate';
|
|
9381
|
+
/**
|
|
9382
|
+
* JSON:API representation of patching workspaceExportTemplate entity.
|
|
9383
|
+
*/
|
|
9384
|
+
export interface JsonApiWorkspaceExportTemplatePatch {
|
|
9385
|
+
/**
|
|
9386
|
+
* Object type
|
|
9387
|
+
*/
|
|
9388
|
+
'type': JsonApiWorkspaceExportTemplatePatchTypeEnum;
|
|
9389
|
+
/**
|
|
9390
|
+
* API identifier of an object
|
|
9391
|
+
*/
|
|
9392
|
+
'id': string;
|
|
9393
|
+
'attributes': JsonApiWorkspaceExportTemplatePatchAttributes;
|
|
9394
|
+
}
|
|
9395
|
+
export type JsonApiWorkspaceExportTemplatePatchTypeEnum = 'workspaceExportTemplate';
|
|
9396
|
+
export interface JsonApiWorkspaceExportTemplatePatchAttributes {
|
|
9397
|
+
/**
|
|
9398
|
+
* User-facing name of the Slides template.
|
|
9399
|
+
*/
|
|
9400
|
+
'name'?: string;
|
|
9401
|
+
'dashboardSlidesTemplate'?: JsonApiWorkspaceExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
9402
|
+
'widgetSlidesTemplate'?: JsonApiWorkspaceExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
9403
|
+
}
|
|
9404
|
+
export interface JsonApiWorkspaceExportTemplatePatchDocument {
|
|
9405
|
+
'data': JsonApiWorkspaceExportTemplatePatch;
|
|
9406
|
+
}
|
|
9407
|
+
/**
|
|
9408
|
+
* JSON:API representation of workspaceExportTemplate entity.
|
|
9409
|
+
*/
|
|
9410
|
+
export interface JsonApiWorkspaceExportTemplatePostOptionalId {
|
|
9411
|
+
/**
|
|
9412
|
+
* Object type
|
|
9413
|
+
*/
|
|
9414
|
+
'type': JsonApiWorkspaceExportTemplatePostOptionalIdTypeEnum;
|
|
9415
|
+
/**
|
|
9416
|
+
* API identifier of an object
|
|
9417
|
+
*/
|
|
9418
|
+
'id'?: string;
|
|
9419
|
+
'attributes': JsonApiWorkspaceExportTemplatePostOptionalIdAttributes;
|
|
9420
|
+
}
|
|
9421
|
+
export type JsonApiWorkspaceExportTemplatePostOptionalIdTypeEnum = 'workspaceExportTemplate';
|
|
9422
|
+
export interface JsonApiWorkspaceExportTemplatePostOptionalIdAttributes {
|
|
9423
|
+
/**
|
|
9424
|
+
* User-facing name of the Slides template.
|
|
9425
|
+
*/
|
|
9426
|
+
'name': string;
|
|
9427
|
+
'dashboardSlidesTemplate'?: JsonApiWorkspaceExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
9428
|
+
'widgetSlidesTemplate'?: JsonApiWorkspaceExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
9429
|
+
}
|
|
9430
|
+
/**
|
|
9431
|
+
* Template for workspace dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
9432
|
+
*/
|
|
9433
|
+
export interface JsonApiWorkspaceExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
9434
|
+
/**
|
|
9435
|
+
* Export types this template applies to.
|
|
9436
|
+
*/
|
|
9437
|
+
'appliedOn': Array<JsonApiWorkspaceExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
9438
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
9439
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
9440
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
9441
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
9442
|
+
}
|
|
9443
|
+
export type JsonApiWorkspaceExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
9444
|
+
/**
|
|
9445
|
+
* Template for workspace widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
9446
|
+
*/
|
|
9447
|
+
export interface JsonApiWorkspaceExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
9448
|
+
/**
|
|
9449
|
+
* Export types this template applies to.
|
|
9450
|
+
*/
|
|
9451
|
+
'appliedOn': Array<JsonApiWorkspaceExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
9452
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
9453
|
+
}
|
|
9454
|
+
export type JsonApiWorkspaceExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
9455
|
+
export interface JsonApiWorkspaceExportTemplatePostOptionalIdDocument {
|
|
9456
|
+
'data': JsonApiWorkspaceExportTemplatePostOptionalId;
|
|
9457
|
+
}
|
|
9261
9458
|
/**
|
|
9262
9459
|
* JSON:API representation of workspace entity.
|
|
9263
9460
|
*/
|
|
@@ -9270,10 +9467,29 @@ export interface JsonApiWorkspaceIn {
|
|
|
9270
9467
|
* API identifier of an object
|
|
9271
9468
|
*/
|
|
9272
9469
|
'id': string;
|
|
9273
|
-
'attributes'?:
|
|
9470
|
+
'attributes'?: JsonApiWorkspaceInAttributes;
|
|
9274
9471
|
'relationships'?: JsonApiWorkspaceOutRelationships;
|
|
9275
9472
|
}
|
|
9276
9473
|
export type JsonApiWorkspaceInTypeEnum = 'workspace';
|
|
9474
|
+
export interface JsonApiWorkspaceInAttributes {
|
|
9475
|
+
'name'?: string | null;
|
|
9476
|
+
/**
|
|
9477
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
9478
|
+
* @deprecated
|
|
9479
|
+
*/
|
|
9480
|
+
'earlyAccess'?: string | null;
|
|
9481
|
+
/**
|
|
9482
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
9483
|
+
*/
|
|
9484
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
9485
|
+
'description'?: string | null;
|
|
9486
|
+
/**
|
|
9487
|
+
* Custom prefix of entity identifiers in workspace
|
|
9488
|
+
*/
|
|
9489
|
+
'prefix'?: string | null;
|
|
9490
|
+
'cacheExtraLimit'?: number;
|
|
9491
|
+
'dataSource'?: JsonApiWorkspaceOutAttributesDataSource;
|
|
9492
|
+
}
|
|
9277
9493
|
export interface JsonApiWorkspaceInDocument {
|
|
9278
9494
|
'data': JsonApiWorkspaceIn;
|
|
9279
9495
|
}
|
|
@@ -9320,6 +9536,10 @@ export interface JsonApiWorkspaceOutAttributes {
|
|
|
9320
9536
|
'prefix'?: string | null;
|
|
9321
9537
|
'cacheExtraLimit'?: number;
|
|
9322
9538
|
'dataSource'?: JsonApiWorkspaceOutAttributesDataSource;
|
|
9539
|
+
/**
|
|
9540
|
+
* Whether the object is platform-managed and read-only.
|
|
9541
|
+
*/
|
|
9542
|
+
'managed'?: boolean;
|
|
9323
9543
|
}
|
|
9324
9544
|
/**
|
|
9325
9545
|
* The data source used for the particular workspace instead of the one defined in the LDM inherited from its parent workspace. Such data source cannot be defined for a single or a top-parent workspace.
|
|
@@ -9423,7 +9643,7 @@ export interface JsonApiWorkspacePatch {
|
|
|
9423
9643
|
* API identifier of an object
|
|
9424
9644
|
*/
|
|
9425
9645
|
'id': string;
|
|
9426
|
-
'attributes'?:
|
|
9646
|
+
'attributes'?: JsonApiWorkspaceInAttributes;
|
|
9427
9647
|
'relationships'?: JsonApiWorkspaceOutRelationships;
|
|
9428
9648
|
}
|
|
9429
9649
|
export type JsonApiWorkspacePatchTypeEnum = 'workspace';
|
|
@@ -10310,7 +10530,7 @@ export interface ResolvedSetting {
|
|
|
10310
10530
|
*/
|
|
10311
10531
|
'type'?: ResolvedSettingTypeEnum;
|
|
10312
10532
|
}
|
|
10313
|
-
export type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
10533
|
+
export type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'DEFAULT_EXPORT_TEMPLATE' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
10314
10534
|
export interface RsaSpecification {
|
|
10315
10535
|
'kty': RsaSpecificationKtyEnum;
|
|
10316
10536
|
'alg': RsaSpecificationAlgEnum;
|
|
@@ -10622,6 +10842,20 @@ export interface TableStatisticsEntry {
|
|
|
10622
10842
|
'dataSize'?: number;
|
|
10623
10843
|
'columns': Array<ColumnStatisticsEntry>;
|
|
10624
10844
|
}
|
|
10845
|
+
/**
|
|
10846
|
+
* A single pre-executed layer in a multi-layer tabular export.
|
|
10847
|
+
*/
|
|
10848
|
+
export interface TabularExportExecution {
|
|
10849
|
+
/**
|
|
10850
|
+
* Execution result identifier for this layer.
|
|
10851
|
+
*/
|
|
10852
|
+
'executionResult': string;
|
|
10853
|
+
/**
|
|
10854
|
+
* Layer title used for the exported sheet or file name.
|
|
10855
|
+
*/
|
|
10856
|
+
'title'?: string;
|
|
10857
|
+
'customOverride'?: CustomOverride;
|
|
10858
|
+
}
|
|
10625
10859
|
/**
|
|
10626
10860
|
* Export request object describing the export properties and overrides for tabular exports.
|
|
10627
10861
|
*/
|
|
@@ -10660,6 +10894,10 @@ export interface TabularExportRequest {
|
|
|
10660
10894
|
* Free-form JSON object
|
|
10661
10895
|
*/
|
|
10662
10896
|
'metadata'?: object | null;
|
|
10897
|
+
/**
|
|
10898
|
+
* Pre-executed layers for multi-layer geo visualizations. When provided, this is the canonical source of the exported layers and takes precedence over the top-level executionResult and customOverride, which are ignored. Index 0 is the main layer; each layer carries its own executionResult and customOverride.
|
|
10899
|
+
*/
|
|
10900
|
+
'executions'?: Array<TabularExportExecution>;
|
|
10663
10901
|
}
|
|
10664
10902
|
export type TabularExportRequestFormatEnum = 'CSV' | 'XLSX' | 'HTML' | 'PDF';
|
|
10665
10903
|
/**
|
|
@@ -11176,23 +11414,6 @@ export declare function AIApiAxiosParamCreator_GetEntityMemoryItems(workspaceId:
|
|
|
11176
11414
|
* @throws {RequiredError}
|
|
11177
11415
|
*/
|
|
11178
11416
|
export declare function AIApiAxiosParamCreator_GetEntityOrgMemoryItems(id: string, filter?: string, include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11179
|
-
/**
|
|
11180
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11181
|
-
* @summary (BETA) Sync Metadata to other services
|
|
11182
|
-
* @param {string} workspaceId
|
|
11183
|
-
* @param {*} [options] Override http request option.
|
|
11184
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
11185
|
-
* @throws {RequiredError}
|
|
11186
|
-
*/
|
|
11187
|
-
export declare function AIApiAxiosParamCreator_MetadataSync(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11188
|
-
/**
|
|
11189
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
11190
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
11191
|
-
* @param {*} [options] Override http request option.
|
|
11192
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
11193
|
-
* @throws {RequiredError}
|
|
11194
|
-
*/
|
|
11195
|
-
export declare function AIApiAxiosParamCreator_MetadataSyncOrganization(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
11196
11417
|
/**
|
|
11197
11418
|
*
|
|
11198
11419
|
* @summary Patch a Knowledge Recommendation
|
|
@@ -11425,27 +11646,6 @@ export declare function AIApi_GetEntityMemoryItems(axios: AxiosInstance, basePat
|
|
|
11425
11646
|
* @throws {RequiredError}
|
|
11426
11647
|
*/
|
|
11427
11648
|
export declare function AIApi_GetEntityOrgMemoryItems(axios: AxiosInstance, basePath: string, requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11428
|
-
/**
|
|
11429
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11430
|
-
* @summary (BETA) Sync Metadata to other services
|
|
11431
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
11432
|
-
* @param {string} basePath Base path.
|
|
11433
|
-
* @param {AIApiMetadataSyncRequest} requestParameters Request parameters.
|
|
11434
|
-
* @param {*} [options] Override http request option.
|
|
11435
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
11436
|
-
* @throws {RequiredError}
|
|
11437
|
-
*/
|
|
11438
|
-
export declare function AIApi_MetadataSync(axios: AxiosInstance, basePath: string, requestParameters: AIApiMetadataSyncRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
11439
|
-
/**
|
|
11440
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
11441
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
11442
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
11443
|
-
* @param {string} basePath Base path.
|
|
11444
|
-
* @param {*} [options] Override http request option.
|
|
11445
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
11446
|
-
* @throws {RequiredError}
|
|
11447
|
-
*/
|
|
11448
|
-
export declare function AIApi_MetadataSyncOrganization(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
11449
11649
|
/**
|
|
11450
11650
|
*
|
|
11451
11651
|
* @summary Patch a Knowledge Recommendation
|
|
@@ -11648,23 +11848,6 @@ export interface AIApiInterface {
|
|
|
11648
11848
|
* @memberof AIApiInterface
|
|
11649
11849
|
*/
|
|
11650
11850
|
getEntityOrgMemoryItems(requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
11651
|
-
/**
|
|
11652
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
11653
|
-
* @summary (BETA) Sync Metadata to other services
|
|
11654
|
-
* @param {AIApiMetadataSyncRequest} requestParameters Request parameters.
|
|
11655
|
-
* @param {*} [options] Override http request option.
|
|
11656
|
-
* @throws {RequiredError}
|
|
11657
|
-
* @memberof AIApiInterface
|
|
11658
|
-
*/
|
|
11659
|
-
metadataSync(requestParameters: AIApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11660
|
-
/**
|
|
11661
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
11662
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
11663
|
-
* @param {*} [options] Override http request option.
|
|
11664
|
-
* @throws {RequiredError}
|
|
11665
|
-
* @memberof AIApiInterface
|
|
11666
|
-
*/
|
|
11667
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11668
11851
|
/**
|
|
11669
11852
|
*
|
|
11670
11853
|
* @summary Patch a Knowledge Recommendation
|
|
@@ -12146,19 +12329,6 @@ export interface AIApiGetEntityOrgMemoryItemsRequest {
|
|
|
12146
12329
|
*/
|
|
12147
12330
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
12148
12331
|
}
|
|
12149
|
-
/**
|
|
12150
|
-
* Request parameters for metadataSync operation in AIApi.
|
|
12151
|
-
* @export
|
|
12152
|
-
* @interface AIApiMetadataSyncRequest
|
|
12153
|
-
*/
|
|
12154
|
-
export interface AIApiMetadataSyncRequest {
|
|
12155
|
-
/**
|
|
12156
|
-
*
|
|
12157
|
-
* @type {string}
|
|
12158
|
-
* @memberof AIApiMetadataSync
|
|
12159
|
-
*/
|
|
12160
|
-
readonly workspaceId: string;
|
|
12161
|
-
}
|
|
12162
12332
|
/**
|
|
12163
12333
|
* Request parameters for patchEntityKnowledgeRecommendations operation in AIApi.
|
|
12164
12334
|
* @export
|
|
@@ -12546,23 +12716,6 @@ export declare class AIApi extends BaseAPI implements AIApiInterface {
|
|
|
12546
12716
|
* @memberof AIApi
|
|
12547
12717
|
*/
|
|
12548
12718
|
getEntityOrgMemoryItems(requestParameters: AIApiGetEntityOrgMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiOrgMemoryItemOutDocument>;
|
|
12549
|
-
/**
|
|
12550
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
12551
|
-
* @summary (BETA) Sync Metadata to other services
|
|
12552
|
-
* @param {AIApiMetadataSyncRequest} requestParameters Request parameters.
|
|
12553
|
-
* @param {*} [options] Override http request option.
|
|
12554
|
-
* @throws {RequiredError}
|
|
12555
|
-
* @memberof AIApi
|
|
12556
|
-
*/
|
|
12557
|
-
metadataSync(requestParameters: AIApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12558
|
-
/**
|
|
12559
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
12560
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
12561
|
-
* @param {*} [options] Override http request option.
|
|
12562
|
-
* @throws {RequiredError}
|
|
12563
|
-
* @memberof AIApi
|
|
12564
|
-
*/
|
|
12565
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
12566
12719
|
/**
|
|
12567
12720
|
*
|
|
12568
12721
|
* @summary Patch a Knowledge Recommendation
|
|
@@ -13055,6 +13208,55 @@ export declare class AIAgentsApi extends BaseAPI implements AIAgentsApiInterface
|
|
|
13055
13208
|
*/
|
|
13056
13209
|
updateEntityAgents(requestParameters: AIAgentsApiUpdateEntityAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiAgentOutDocument>;
|
|
13057
13210
|
}
|
|
13211
|
+
/**
|
|
13212
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
13213
|
+
* @summary Reload the managed AI observability layout
|
|
13214
|
+
* @param {*} [options] Override http request option.
|
|
13215
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
13216
|
+
* @throws {RequiredError}
|
|
13217
|
+
*/
|
|
13218
|
+
export declare function AIObservabilityApiAxiosParamCreator_ReloadObservabilityLayout(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13219
|
+
/**
|
|
13220
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
13221
|
+
* @summary Reload the managed AI observability layout
|
|
13222
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
13223
|
+
* @param {string} basePath Base path.
|
|
13224
|
+
* @param {*} [options] Override http request option.
|
|
13225
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
13226
|
+
* @throws {RequiredError}
|
|
13227
|
+
*/
|
|
13228
|
+
export declare function AIObservabilityApi_ReloadObservabilityLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
13229
|
+
/**
|
|
13230
|
+
* AIObservabilityApi - interface
|
|
13231
|
+
* @export
|
|
13232
|
+
* @interface AIObservabilityApi
|
|
13233
|
+
*/
|
|
13234
|
+
export interface AIObservabilityApiInterface {
|
|
13235
|
+
/**
|
|
13236
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
13237
|
+
* @summary Reload the managed AI observability layout
|
|
13238
|
+
* @param {*} [options] Override http request option.
|
|
13239
|
+
* @throws {RequiredError}
|
|
13240
|
+
* @memberof AIObservabilityApiInterface
|
|
13241
|
+
*/
|
|
13242
|
+
reloadObservabilityLayout(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13243
|
+
}
|
|
13244
|
+
/**
|
|
13245
|
+
* AIObservabilityApi - object-oriented interface
|
|
13246
|
+
* @export
|
|
13247
|
+
* @class AIObservabilityApi
|
|
13248
|
+
* @extends {BaseAPI}
|
|
13249
|
+
*/
|
|
13250
|
+
export declare class AIObservabilityApi extends BaseAPI implements AIObservabilityApiInterface {
|
|
13251
|
+
/**
|
|
13252
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
13253
|
+
* @summary Reload the managed AI observability layout
|
|
13254
|
+
* @param {*} [options] Override http request option.
|
|
13255
|
+
* @throws {RequiredError}
|
|
13256
|
+
* @memberof AIObservabilityApi
|
|
13257
|
+
*/
|
|
13258
|
+
reloadObservabilityLayout(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
13259
|
+
}
|
|
13058
13260
|
/**
|
|
13059
13261
|
*
|
|
13060
13262
|
* @summary Post a new API token for the user
|
|
@@ -13395,6 +13597,15 @@ export declare function ActionsApiAxiosParamCreator_CheckEntityOverrides(workspa
|
|
|
13395
13597
|
* @throws {RequiredError}
|
|
13396
13598
|
*/
|
|
13397
13599
|
export declare function ActionsApiAxiosParamCreator_CleanTranslations(workspaceId: string, localeRequest: LocaleRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13600
|
+
/**
|
|
13601
|
+
* Returns a list of Users who created any object for this workspace
|
|
13602
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
13603
|
+
* @param {string} workspaceId
|
|
13604
|
+
* @param {*} [options] Override http request option.
|
|
13605
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
13606
|
+
* @throws {RequiredError}
|
|
13607
|
+
*/
|
|
13608
|
+
export declare function ActionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13398
13609
|
/**
|
|
13399
13610
|
*
|
|
13400
13611
|
* @summary Get Dashboard Permissions
|
|
@@ -13595,23 +13806,6 @@ export declare function ActionsApiAxiosParamCreator_ManageOrganizationPermission
|
|
|
13595
13806
|
* @throws {RequiredError}
|
|
13596
13807
|
*/
|
|
13597
13808
|
export declare function ActionsApiAxiosParamCreator_ManageWorkspacePermissions(workspaceId: string, workspacePermissionAssignment: Array<WorkspacePermissionAssignment>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13598
|
-
/**
|
|
13599
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
13600
|
-
* @summary (BETA) Sync Metadata to other services
|
|
13601
|
-
* @param {string} workspaceId
|
|
13602
|
-
* @param {*} [options] Override http request option.
|
|
13603
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
13604
|
-
* @throws {RequiredError}
|
|
13605
|
-
*/
|
|
13606
|
-
export declare function ActionsApiAxiosParamCreator_MetadataSync(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13607
|
-
/**
|
|
13608
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
13609
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
13610
|
-
* @param {*} [options] Override http request option.
|
|
13611
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
13612
|
-
* @throws {RequiredError}
|
|
13613
|
-
*/
|
|
13614
|
-
export declare function ActionsApiAxiosParamCreator_MetadataSyncOrganization(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13615
13809
|
/**
|
|
13616
13810
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
13617
13811
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
@@ -13667,6 +13861,14 @@ export declare function ActionsApiAxiosParamCreator_RegisterUploadNotification(d
|
|
|
13667
13861
|
* @throws {RequiredError}
|
|
13668
13862
|
*/
|
|
13669
13863
|
export declare function ActionsApiAxiosParamCreator_RegisterWorkspaceUploadNotification(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13864
|
+
/**
|
|
13865
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
13866
|
+
* @summary Reload the managed AI observability layout
|
|
13867
|
+
* @param {*} [options] Override http request option.
|
|
13868
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
13869
|
+
* @throws {RequiredError}
|
|
13870
|
+
*/
|
|
13871
|
+
export declare function ActionsApiAxiosParamCreator_ReloadObservabilityLayout(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13670
13872
|
/**
|
|
13671
13873
|
*
|
|
13672
13874
|
* @summary Remove targets from IP allowlist policy
|
|
@@ -13752,6 +13954,15 @@ export declare function ActionsApiAxiosParamCreator_SetTranslations(workspaceId:
|
|
|
13752
13954
|
* @throws {RequiredError}
|
|
13753
13955
|
*/
|
|
13754
13956
|
export declare function ActionsApiAxiosParamCreator_SwitchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13957
|
+
/**
|
|
13958
|
+
* Returns a list of tags for this workspace
|
|
13959
|
+
* @summary Get Analytics Catalog Tags
|
|
13960
|
+
* @param {string} workspaceId
|
|
13961
|
+
* @param {*} [options] Override http request option.
|
|
13962
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
13963
|
+
* @throws {RequiredError}
|
|
13964
|
+
*/
|
|
13965
|
+
export declare function ActionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
13755
13966
|
/**
|
|
13756
13967
|
*
|
|
13757
13968
|
* @summary Unpause selected automations across all workspaces
|
|
@@ -13903,6 +14114,17 @@ export declare function ActionsApi_CheckEntityOverrides(axios: AxiosInstance, ba
|
|
|
13903
14114
|
* @throws {RequiredError}
|
|
13904
14115
|
*/
|
|
13905
14116
|
export declare function ActionsApi_CleanTranslations(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCleanTranslationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14117
|
+
/**
|
|
14118
|
+
* Returns a list of Users who created any object for this workspace
|
|
14119
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
14120
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
14121
|
+
* @param {string} basePath Base path.
|
|
14122
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
14123
|
+
* @param {*} [options] Override http request option.
|
|
14124
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
14125
|
+
* @throws {RequiredError}
|
|
14126
|
+
*/
|
|
14127
|
+
export declare function ActionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
13906
14128
|
/**
|
|
13907
14129
|
*
|
|
13908
14130
|
* @summary Get Dashboard Permissions
|
|
@@ -14121,27 +14343,6 @@ export declare function ActionsApi_ManageOrganizationPermissions(axios: AxiosIns
|
|
|
14121
14343
|
* @throws {RequiredError}
|
|
14122
14344
|
*/
|
|
14123
14345
|
export declare function ActionsApi_ManageWorkspacePermissions(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiManageWorkspacePermissionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14124
|
-
/**
|
|
14125
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
14126
|
-
* @summary (BETA) Sync Metadata to other services
|
|
14127
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
14128
|
-
* @param {string} basePath Base path.
|
|
14129
|
-
* @param {ActionsApiMetadataSyncRequest} requestParameters Request parameters.
|
|
14130
|
-
* @param {*} [options] Override http request option.
|
|
14131
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
14132
|
-
* @throws {RequiredError}
|
|
14133
|
-
*/
|
|
14134
|
-
export declare function ActionsApi_MetadataSync(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiMetadataSyncRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14135
|
-
/**
|
|
14136
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
14137
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
14138
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
14139
|
-
* @param {string} basePath Base path.
|
|
14140
|
-
* @param {*} [options] Override http request option.
|
|
14141
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
14142
|
-
* @throws {RequiredError}
|
|
14143
|
-
*/
|
|
14144
|
-
export declare function ActionsApi_MetadataSyncOrganization(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14145
14346
|
/**
|
|
14146
14347
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
14147
14348
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
@@ -14208,6 +14409,16 @@ export declare function ActionsApi_RegisterUploadNotification(axios: AxiosInstan
|
|
|
14208
14409
|
* @throws {RequiredError}
|
|
14209
14410
|
*/
|
|
14210
14411
|
export declare function ActionsApi_RegisterWorkspaceUploadNotification(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14412
|
+
/**
|
|
14413
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
14414
|
+
* @summary Reload the managed AI observability layout
|
|
14415
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
14416
|
+
* @param {string} basePath Base path.
|
|
14417
|
+
* @param {*} [options] Override http request option.
|
|
14418
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
14419
|
+
* @throws {RequiredError}
|
|
14420
|
+
*/
|
|
14421
|
+
export declare function ActionsApi_ReloadObservabilityLayout(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14211
14422
|
/**
|
|
14212
14423
|
*
|
|
14213
14424
|
* @summary Remove targets from IP allowlist policy
|
|
@@ -14306,6 +14517,17 @@ export declare function ActionsApi_SetTranslations(axios: AxiosInstance, basePat
|
|
|
14306
14517
|
* @throws {RequiredError}
|
|
14307
14518
|
*/
|
|
14308
14519
|
export declare function ActionsApi_SwitchActiveIdentityProvider(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
14520
|
+
/**
|
|
14521
|
+
* Returns a list of tags for this workspace
|
|
14522
|
+
* @summary Get Analytics Catalog Tags
|
|
14523
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
14524
|
+
* @param {string} basePath Base path.
|
|
14525
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
14526
|
+
* @param {*} [options] Override http request option.
|
|
14527
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
14528
|
+
* @throws {RequiredError}
|
|
14529
|
+
*/
|
|
14530
|
+
export declare function ActionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
|
|
14309
14531
|
/**
|
|
14310
14532
|
*
|
|
14311
14533
|
* @summary Unpause selected automations across all workspaces
|
|
@@ -14463,6 +14685,15 @@ export interface ActionsApiInterface {
|
|
|
14463
14685
|
* @memberof ActionsApiInterface
|
|
14464
14686
|
*/
|
|
14465
14687
|
cleanTranslations(requestParameters: ActionsApiCleanTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14688
|
+
/**
|
|
14689
|
+
* Returns a list of Users who created any object for this workspace
|
|
14690
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
14691
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
14692
|
+
* @param {*} [options] Override http request option.
|
|
14693
|
+
* @throws {RequiredError}
|
|
14694
|
+
* @memberof ActionsApiInterface
|
|
14695
|
+
*/
|
|
14696
|
+
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
14466
14697
|
/**
|
|
14467
14698
|
*
|
|
14468
14699
|
* @summary Get Dashboard Permissions
|
|
@@ -14641,23 +14872,6 @@ export interface ActionsApiInterface {
|
|
|
14641
14872
|
* @memberof ActionsApiInterface
|
|
14642
14873
|
*/
|
|
14643
14874
|
manageWorkspacePermissions(requestParameters: ActionsApiManageWorkspacePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14644
|
-
/**
|
|
14645
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
14646
|
-
* @summary (BETA) Sync Metadata to other services
|
|
14647
|
-
* @param {ActionsApiMetadataSyncRequest} requestParameters Request parameters.
|
|
14648
|
-
* @param {*} [options] Override http request option.
|
|
14649
|
-
* @throws {RequiredError}
|
|
14650
|
-
* @memberof ActionsApiInterface
|
|
14651
|
-
*/
|
|
14652
|
-
metadataSync(requestParameters: ActionsApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14653
|
-
/**
|
|
14654
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
14655
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
14656
|
-
* @param {*} [options] Override http request option.
|
|
14657
|
-
* @throws {RequiredError}
|
|
14658
|
-
* @memberof ActionsApiInterface
|
|
14659
|
-
*/
|
|
14660
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14661
14875
|
/**
|
|
14662
14876
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
14663
14877
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
@@ -14712,6 +14926,14 @@ export interface ActionsApiInterface {
|
|
|
14712
14926
|
* @memberof ActionsApiInterface
|
|
14713
14927
|
*/
|
|
14714
14928
|
registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14929
|
+
/**
|
|
14930
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
14931
|
+
* @summary Reload the managed AI observability layout
|
|
14932
|
+
* @param {*} [options] Override http request option.
|
|
14933
|
+
* @throws {RequiredError}
|
|
14934
|
+
* @memberof ActionsApiInterface
|
|
14935
|
+
*/
|
|
14936
|
+
reloadObservabilityLayout(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
14715
14937
|
/**
|
|
14716
14938
|
*
|
|
14717
14939
|
* @summary Remove targets from IP allowlist policy
|
|
@@ -14792,6 +15014,15 @@ export interface ActionsApiInterface {
|
|
|
14792
15014
|
* @memberof ActionsApiInterface
|
|
14793
15015
|
*/
|
|
14794
15016
|
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15017
|
+
/**
|
|
15018
|
+
* Returns a list of tags for this workspace
|
|
15019
|
+
* @summary Get Analytics Catalog Tags
|
|
15020
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
15021
|
+
* @param {*} [options] Override http request option.
|
|
15022
|
+
* @throws {RequiredError}
|
|
15023
|
+
* @memberof ActionsApiInterface
|
|
15024
|
+
*/
|
|
15025
|
+
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
14795
15026
|
/**
|
|
14796
15027
|
*
|
|
14797
15028
|
* @summary Unpause selected automations across all workspaces
|
|
@@ -14968,6 +15199,19 @@ export interface ActionsApiCleanTranslationsRequest {
|
|
|
14968
15199
|
*/
|
|
14969
15200
|
readonly localeRequest: LocaleRequest;
|
|
14970
15201
|
}
|
|
15202
|
+
/**
|
|
15203
|
+
* Request parameters for createdBy operation in ActionsApi.
|
|
15204
|
+
* @export
|
|
15205
|
+
* @interface ActionsApiCreatedByRequest
|
|
15206
|
+
*/
|
|
15207
|
+
export interface ActionsApiCreatedByRequest {
|
|
15208
|
+
/**
|
|
15209
|
+
*
|
|
15210
|
+
* @type {string}
|
|
15211
|
+
* @memberof ActionsApiCreatedBy
|
|
15212
|
+
*/
|
|
15213
|
+
readonly workspaceId: string;
|
|
15214
|
+
}
|
|
14971
15215
|
/**
|
|
14972
15216
|
* Request parameters for dashboardPermissions operation in ActionsApi.
|
|
14973
15217
|
* @export
|
|
@@ -15360,19 +15604,6 @@ export interface ActionsApiManageWorkspacePermissionsRequest {
|
|
|
15360
15604
|
*/
|
|
15361
15605
|
readonly workspacePermissionAssignment: Array<WorkspacePermissionAssignment>;
|
|
15362
15606
|
}
|
|
15363
|
-
/**
|
|
15364
|
-
* Request parameters for metadataSync operation in ActionsApi.
|
|
15365
|
-
* @export
|
|
15366
|
-
* @interface ActionsApiMetadataSyncRequest
|
|
15367
|
-
*/
|
|
15368
|
-
export interface ActionsApiMetadataSyncRequest {
|
|
15369
|
-
/**
|
|
15370
|
-
*
|
|
15371
|
-
* @type {string}
|
|
15372
|
-
* @memberof ActionsApiMetadataSync
|
|
15373
|
-
*/
|
|
15374
|
-
readonly workspaceId: string;
|
|
15375
|
-
}
|
|
15376
15607
|
/**
|
|
15377
15608
|
* Request parameters for overriddenChildEntities operation in ActionsApi.
|
|
15378
15609
|
* @export
|
|
@@ -15591,6 +15822,19 @@ export interface ActionsApiSwitchActiveIdentityProviderRequest {
|
|
|
15591
15822
|
*/
|
|
15592
15823
|
readonly switchIdentityProviderRequest: SwitchIdentityProviderRequest;
|
|
15593
15824
|
}
|
|
15825
|
+
/**
|
|
15826
|
+
* Request parameters for tags operation in ActionsApi.
|
|
15827
|
+
* @export
|
|
15828
|
+
* @interface ActionsApiTagsRequest
|
|
15829
|
+
*/
|
|
15830
|
+
export interface ActionsApiTagsRequest {
|
|
15831
|
+
/**
|
|
15832
|
+
*
|
|
15833
|
+
* @type {string}
|
|
15834
|
+
* @memberof ActionsApiTags
|
|
15835
|
+
*/
|
|
15836
|
+
readonly workspaceId: string;
|
|
15837
|
+
}
|
|
15594
15838
|
/**
|
|
15595
15839
|
* Request parameters for unpauseOrganizationAutomations operation in ActionsApi.
|
|
15596
15840
|
* @export
|
|
@@ -15791,6 +16035,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
15791
16035
|
* @memberof ActionsApi
|
|
15792
16036
|
*/
|
|
15793
16037
|
cleanTranslations(requestParameters: ActionsApiCleanTranslationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16038
|
+
/**
|
|
16039
|
+
* Returns a list of Users who created any object for this workspace
|
|
16040
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
16041
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
16042
|
+
* @param {*} [options] Override http request option.
|
|
16043
|
+
* @throws {RequiredError}
|
|
16044
|
+
* @memberof ActionsApi
|
|
16045
|
+
*/
|
|
16046
|
+
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
15794
16047
|
/**
|
|
15795
16048
|
*
|
|
15796
16049
|
* @summary Get Dashboard Permissions
|
|
@@ -15969,23 +16222,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
15969
16222
|
* @memberof ActionsApi
|
|
15970
16223
|
*/
|
|
15971
16224
|
manageWorkspacePermissions(requestParameters: ActionsApiManageWorkspacePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15972
|
-
/**
|
|
15973
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
15974
|
-
* @summary (BETA) Sync Metadata to other services
|
|
15975
|
-
* @param {ActionsApiMetadataSyncRequest} requestParameters Request parameters.
|
|
15976
|
-
* @param {*} [options] Override http request option.
|
|
15977
|
-
* @throws {RequiredError}
|
|
15978
|
-
* @memberof ActionsApi
|
|
15979
|
-
*/
|
|
15980
|
-
metadataSync(requestParameters: ActionsApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15981
|
-
/**
|
|
15982
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
15983
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
15984
|
-
* @param {*} [options] Override http request option.
|
|
15985
|
-
* @throws {RequiredError}
|
|
15986
|
-
* @memberof ActionsApi
|
|
15987
|
-
*/
|
|
15988
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
15989
16225
|
/**
|
|
15990
16226
|
* Finds API identifier overrides in given workspace hierarchy.
|
|
15991
16227
|
* @summary Finds identifier overrides in workspace hierarchy.
|
|
@@ -16040,6 +16276,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
16040
16276
|
* @memberof ActionsApi
|
|
16041
16277
|
*/
|
|
16042
16278
|
registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16279
|
+
/**
|
|
16280
|
+
* Re-applies the latest GoodData-managed AI observability layout to the organization. Requires the AI_OBSERVABILITY entitlement and organization MANAGE permission. Idempotent; customer-authored content is left untouched.
|
|
16281
|
+
* @summary Reload the managed AI observability layout
|
|
16282
|
+
* @param {*} [options] Override http request option.
|
|
16283
|
+
* @throws {RequiredError}
|
|
16284
|
+
* @memberof ActionsApi
|
|
16285
|
+
*/
|
|
16286
|
+
reloadObservabilityLayout(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16043
16287
|
/**
|
|
16044
16288
|
*
|
|
16045
16289
|
* @summary Remove targets from IP allowlist policy
|
|
@@ -16120,6 +16364,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
16120
16364
|
* @memberof ActionsApi
|
|
16121
16365
|
*/
|
|
16122
16366
|
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
16367
|
+
/**
|
|
16368
|
+
* Returns a list of tags for this workspace
|
|
16369
|
+
* @summary Get Analytics Catalog Tags
|
|
16370
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
16371
|
+
* @param {*} [options] Override http request option.
|
|
16372
|
+
* @throws {RequiredError}
|
|
16373
|
+
* @memberof ActionsApi
|
|
16374
|
+
*/
|
|
16375
|
+
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
16123
16376
|
/**
|
|
16124
16377
|
*
|
|
16125
16378
|
* @summary Unpause selected automations across all workspaces
|
|
@@ -31174,6 +31427,17 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceDataFi
|
|
|
31174
31427
|
* @throws {RequiredError}
|
|
31175
31428
|
*/
|
|
31176
31429
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceDataFilters(workspaceId: string, jsonApiWorkspaceDataFilterInDocument: JsonApiWorkspaceDataFilterInDocument, include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31430
|
+
/**
|
|
31431
|
+
*
|
|
31432
|
+
* @summary Post Workspace Export Template
|
|
31433
|
+
* @param {string} workspaceId
|
|
31434
|
+
* @param {JsonApiWorkspaceExportTemplatePostOptionalIdDocument} jsonApiWorkspaceExportTemplatePostOptionalIdDocument
|
|
31435
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
31436
|
+
* @param {*} [options] Override http request option.
|
|
31437
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
31438
|
+
* @throws {RequiredError}
|
|
31439
|
+
*/
|
|
31440
|
+
export declare function EntitiesApiAxiosParamCreator_CreateEntityWorkspaceExportTemplates(workspaceId: string, jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31177
31441
|
/**
|
|
31178
31442
|
*
|
|
31179
31443
|
* @summary Post Settings for Workspaces
|
|
@@ -31539,6 +31803,16 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFi
|
|
|
31539
31803
|
* @throws {RequiredError}
|
|
31540
31804
|
*/
|
|
31541
31805
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceDataFilters(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31806
|
+
/**
|
|
31807
|
+
*
|
|
31808
|
+
* @summary Delete a Workspace Export Template
|
|
31809
|
+
* @param {string} workspaceId
|
|
31810
|
+
* @param {string} objectId
|
|
31811
|
+
* @param {*} [options] Override http request option.
|
|
31812
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
31813
|
+
* @throws {RequiredError}
|
|
31814
|
+
*/
|
|
31815
|
+
export declare function EntitiesApiAxiosParamCreator_DeleteEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
31542
31816
|
/**
|
|
31543
31817
|
*
|
|
31544
31818
|
* @summary Delete a Setting for Workspace
|
|
@@ -32243,6 +32517,22 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceData
|
|
|
32243
32517
|
* @throws {RequiredError}
|
|
32244
32518
|
*/
|
|
32245
32519
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceDataFilters(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32520
|
+
/**
|
|
32521
|
+
*
|
|
32522
|
+
* @summary Get all Workspace Export Templates
|
|
32523
|
+
* @param {string} workspaceId
|
|
32524
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
32525
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
32526
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
32527
|
+
* @param {number} [size] The size of the page to be returned
|
|
32528
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
32529
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
32530
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
32531
|
+
* @param {*} [options] Override http request option.
|
|
32532
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
32533
|
+
* @throws {RequiredError}
|
|
32534
|
+
*/
|
|
32535
|
+
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesWorkspaceExportTemplates(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32246
32536
|
/**
|
|
32247
32537
|
*
|
|
32248
32538
|
* @summary Get all Setting for Workspaces
|
|
@@ -32852,6 +33142,19 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceDataFilte
|
|
|
32852
33142
|
* @throws {RequiredError}
|
|
32853
33143
|
*/
|
|
32854
33144
|
export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceDataFilters(workspaceId: string, objectId: string, filter?: string, include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33145
|
+
/**
|
|
33146
|
+
*
|
|
33147
|
+
* @summary Get a Workspace Export Template
|
|
33148
|
+
* @param {string} workspaceId
|
|
33149
|
+
* @param {string} objectId
|
|
33150
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33151
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
33152
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
33153
|
+
* @param {*} [options] Override http request option.
|
|
33154
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33155
|
+
* @throws {RequiredError}
|
|
33156
|
+
*/
|
|
33157
|
+
export declare function EntitiesApiAxiosParamCreator_GetEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
32855
33158
|
/**
|
|
32856
33159
|
*
|
|
32857
33160
|
* @summary Get a Setting for Workspace
|
|
@@ -33346,6 +33649,18 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceDataFil
|
|
|
33346
33649
|
* @throws {RequiredError}
|
|
33347
33650
|
*/
|
|
33348
33651
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceDataFilters(workspaceId: string, objectId: string, jsonApiWorkspaceDataFilterPatchDocument: JsonApiWorkspaceDataFilterPatchDocument, filter?: string, include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33652
|
+
/**
|
|
33653
|
+
*
|
|
33654
|
+
* @summary Patch a Workspace Export Template
|
|
33655
|
+
* @param {string} workspaceId
|
|
33656
|
+
* @param {string} objectId
|
|
33657
|
+
* @param {JsonApiWorkspaceExportTemplatePatchDocument} jsonApiWorkspaceExportTemplatePatchDocument
|
|
33658
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33659
|
+
* @param {*} [options] Override http request option.
|
|
33660
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
33661
|
+
* @throws {RequiredError}
|
|
33662
|
+
*/
|
|
33663
|
+
export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
33349
33664
|
/**
|
|
33350
33665
|
*
|
|
33351
33666
|
* @summary Patch a Setting for Workspace
|
|
@@ -34090,6 +34405,18 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceDataFi
|
|
|
34090
34405
|
* @throws {RequiredError}
|
|
34091
34406
|
*/
|
|
34092
34407
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceDataFilters(workspaceId: string, objectId: string, jsonApiWorkspaceDataFilterInDocument: JsonApiWorkspaceDataFilterInDocument, filter?: string, include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34408
|
+
/**
|
|
34409
|
+
*
|
|
34410
|
+
* @summary Put a Workspace Export Template
|
|
34411
|
+
* @param {string} workspaceId
|
|
34412
|
+
* @param {string} objectId
|
|
34413
|
+
* @param {JsonApiWorkspaceExportTemplateInDocument} jsonApiWorkspaceExportTemplateInDocument
|
|
34414
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
34415
|
+
* @param {*} [options] Override http request option.
|
|
34416
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34417
|
+
* @throws {RequiredError}
|
|
34418
|
+
*/
|
|
34419
|
+
export declare function EntitiesApiAxiosParamCreator_UpdateEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
34093
34420
|
/**
|
|
34094
34421
|
*
|
|
34095
34422
|
* @summary Put a Setting for a Workspace
|
|
@@ -34509,6 +34836,17 @@ export declare function EntitiesApi_CreateEntityWorkspaceDataFilterSettings(axio
|
|
|
34509
34836
|
* @throws {RequiredError}
|
|
34510
34837
|
*/
|
|
34511
34838
|
export declare function EntitiesApi_CreateEntityWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
34839
|
+
/**
|
|
34840
|
+
*
|
|
34841
|
+
* @summary Post Workspace Export Template
|
|
34842
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
34843
|
+
* @param {string} basePath Base path.
|
|
34844
|
+
* @param {EntitiesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
34845
|
+
* @param {*} [options] Override http request option.
|
|
34846
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
34847
|
+
* @throws {RequiredError}
|
|
34848
|
+
*/
|
|
34849
|
+
export declare function EntitiesApi_CreateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
34512
34850
|
/**
|
|
34513
34851
|
*
|
|
34514
34852
|
* @summary Post Settings for Workspaces
|
|
@@ -34927,6 +35265,17 @@ export declare function EntitiesApi_DeleteEntityWorkspaceDataFilterSettings(axio
|
|
|
34927
35265
|
* @throws {RequiredError}
|
|
34928
35266
|
*/
|
|
34929
35267
|
export declare function EntitiesApi_DeleteEntityWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
35268
|
+
/**
|
|
35269
|
+
*
|
|
35270
|
+
* @summary Delete a Workspace Export Template
|
|
35271
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
35272
|
+
* @param {string} basePath Base path.
|
|
35273
|
+
* @param {EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
35274
|
+
* @param {*} [options] Override http request option.
|
|
35275
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35276
|
+
* @throws {RequiredError}
|
|
35277
|
+
*/
|
|
35278
|
+
export declare function EntitiesApi_DeleteEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
34930
35279
|
/**
|
|
34931
35280
|
*
|
|
34932
35281
|
* @summary Delete a Setting for Workspace
|
|
@@ -35454,6 +35803,17 @@ export declare function EntitiesApi_GetAllEntitiesWorkspaceDataFilterSettings(ax
|
|
|
35454
35803
|
* @throws {RequiredError}
|
|
35455
35804
|
*/
|
|
35456
35805
|
export declare function EntitiesApi_GetAllEntitiesWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceDataFilterOutList>;
|
|
35806
|
+
/**
|
|
35807
|
+
*
|
|
35808
|
+
* @summary Get all Workspace Export Templates
|
|
35809
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
35810
|
+
* @param {string} basePath Base path.
|
|
35811
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
35812
|
+
* @param {*} [options] Override http request option.
|
|
35813
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
35814
|
+
* @throws {RequiredError}
|
|
35815
|
+
*/
|
|
35816
|
+
export declare function EntitiesApi_GetAllEntitiesWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
35457
35817
|
/**
|
|
35458
35818
|
*
|
|
35459
35819
|
* @summary Get all Setting for Workspaces
|
|
@@ -36015,6 +36375,17 @@ export declare function EntitiesApi_GetEntityWorkspaceDataFilterSettings(axios:
|
|
|
36015
36375
|
* @throws {RequiredError}
|
|
36016
36376
|
*/
|
|
36017
36377
|
export declare function EntitiesApi_GetEntityWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
36378
|
+
/**
|
|
36379
|
+
*
|
|
36380
|
+
* @summary Get a Workspace Export Template
|
|
36381
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36382
|
+
* @param {string} basePath Base path.
|
|
36383
|
+
* @param {EntitiesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
36384
|
+
* @param {*} [options] Override http request option.
|
|
36385
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36386
|
+
* @throws {RequiredError}
|
|
36387
|
+
*/
|
|
36388
|
+
export declare function EntitiesApi_GetEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
36018
36389
|
/**
|
|
36019
36390
|
*
|
|
36020
36391
|
* @summary Get a Setting for Workspace
|
|
@@ -36466,6 +36837,17 @@ export declare function EntitiesApi_PatchEntityWorkspaceDataFilterSettings(axios
|
|
|
36466
36837
|
* @throws {RequiredError}
|
|
36467
36838
|
*/
|
|
36468
36839
|
export declare function EntitiesApi_PatchEntityWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
36840
|
+
/**
|
|
36841
|
+
*
|
|
36842
|
+
* @summary Patch a Workspace Export Template
|
|
36843
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
36844
|
+
* @param {string} basePath Base path.
|
|
36845
|
+
* @param {EntitiesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
36846
|
+
* @param {*} [options] Override http request option.
|
|
36847
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
36848
|
+
* @throws {RequiredError}
|
|
36849
|
+
*/
|
|
36850
|
+
export declare function EntitiesApi_PatchEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
36469
36851
|
/**
|
|
36470
36852
|
*
|
|
36471
36853
|
* @summary Patch a Setting for Workspace
|
|
@@ -37148,6 +37530,17 @@ export declare function EntitiesApi_UpdateEntityWorkspaceDataFilterSettings(axio
|
|
|
37148
37530
|
* @throws {RequiredError}
|
|
37149
37531
|
*/
|
|
37150
37532
|
export declare function EntitiesApi_UpdateEntityWorkspaceDataFilters(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
37533
|
+
/**
|
|
37534
|
+
*
|
|
37535
|
+
* @summary Put a Workspace Export Template
|
|
37536
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
37537
|
+
* @param {string} basePath Base path.
|
|
37538
|
+
* @param {EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
37539
|
+
* @param {*} [options] Override http request option.
|
|
37540
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
37541
|
+
* @throws {RequiredError}
|
|
37542
|
+
*/
|
|
37543
|
+
export declare function EntitiesApi_UpdateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
37151
37544
|
/**
|
|
37152
37545
|
*
|
|
37153
37546
|
* @summary Put a Setting for a Workspace
|
|
@@ -37500,6 +37893,15 @@ export interface EntitiesApiInterface {
|
|
|
37500
37893
|
* @memberof EntitiesApiInterface
|
|
37501
37894
|
*/
|
|
37502
37895
|
createEntityWorkspaceDataFilters(requestParameters: EntitiesApiCreateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
37896
|
+
/**
|
|
37897
|
+
*
|
|
37898
|
+
* @summary Post Workspace Export Template
|
|
37899
|
+
* @param {EntitiesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
37900
|
+
* @param {*} [options] Override http request option.
|
|
37901
|
+
* @throws {RequiredError}
|
|
37902
|
+
* @memberof EntitiesApiInterface
|
|
37903
|
+
*/
|
|
37904
|
+
createEntityWorkspaceExportTemplates(requestParameters: EntitiesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
37503
37905
|
/**
|
|
37504
37906
|
*
|
|
37505
37907
|
* @summary Post Settings for Workspaces
|
|
@@ -37843,6 +38245,15 @@ export interface EntitiesApiInterface {
|
|
|
37843
38245
|
* @memberof EntitiesApiInterface
|
|
37844
38246
|
*/
|
|
37845
38247
|
deleteEntityWorkspaceDataFilters(requestParameters: EntitiesApiDeleteEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
38248
|
+
/**
|
|
38249
|
+
*
|
|
38250
|
+
* @summary Delete a Workspace Export Template
|
|
38251
|
+
* @param {EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
38252
|
+
* @param {*} [options] Override http request option.
|
|
38253
|
+
* @throws {RequiredError}
|
|
38254
|
+
* @memberof EntitiesApiInterface
|
|
38255
|
+
*/
|
|
38256
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
37846
38257
|
/**
|
|
37847
38258
|
*
|
|
37848
38259
|
* @summary Delete a Setting for Workspace
|
|
@@ -38275,6 +38686,15 @@ export interface EntitiesApiInterface {
|
|
|
38275
38686
|
* @memberof EntitiesApiInterface
|
|
38276
38687
|
*/
|
|
38277
38688
|
getAllEntitiesWorkspaceDataFilters(requestParameters: EntitiesApiGetAllEntitiesWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutList>;
|
|
38689
|
+
/**
|
|
38690
|
+
*
|
|
38691
|
+
* @summary Get all Workspace Export Templates
|
|
38692
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
38693
|
+
* @param {*} [options] Override http request option.
|
|
38694
|
+
* @throws {RequiredError}
|
|
38695
|
+
* @memberof EntitiesApiInterface
|
|
38696
|
+
*/
|
|
38697
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
38278
38698
|
/**
|
|
38279
38699
|
*
|
|
38280
38700
|
* @summary Get all Setting for Workspaces
|
|
@@ -38735,6 +39155,15 @@ export interface EntitiesApiInterface {
|
|
|
38735
39155
|
* @memberof EntitiesApiInterface
|
|
38736
39156
|
*/
|
|
38737
39157
|
getEntityWorkspaceDataFilters(requestParameters: EntitiesApiGetEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
39158
|
+
/**
|
|
39159
|
+
*
|
|
39160
|
+
* @summary Get a Workspace Export Template
|
|
39161
|
+
* @param {EntitiesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
39162
|
+
* @param {*} [options] Override http request option.
|
|
39163
|
+
* @throws {RequiredError}
|
|
39164
|
+
* @memberof EntitiesApiInterface
|
|
39165
|
+
*/
|
|
39166
|
+
getEntityWorkspaceExportTemplates(requestParameters: EntitiesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
38738
39167
|
/**
|
|
38739
39168
|
*
|
|
38740
39169
|
* @summary Get a Setting for Workspace
|
|
@@ -39105,6 +39534,15 @@ export interface EntitiesApiInterface {
|
|
|
39105
39534
|
* @memberof EntitiesApiInterface
|
|
39106
39535
|
*/
|
|
39107
39536
|
patchEntityWorkspaceDataFilters(requestParameters: EntitiesApiPatchEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
39537
|
+
/**
|
|
39538
|
+
*
|
|
39539
|
+
* @summary Patch a Workspace Export Template
|
|
39540
|
+
* @param {EntitiesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
39541
|
+
* @param {*} [options] Override http request option.
|
|
39542
|
+
* @throws {RequiredError}
|
|
39543
|
+
* @memberof EntitiesApiInterface
|
|
39544
|
+
*/
|
|
39545
|
+
patchEntityWorkspaceExportTemplates(requestParameters: EntitiesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
39108
39546
|
/**
|
|
39109
39547
|
*
|
|
39110
39548
|
* @summary Patch a Setting for Workspace
|
|
@@ -39664,6 +40102,15 @@ export interface EntitiesApiInterface {
|
|
|
39664
40102
|
* @memberof EntitiesApiInterface
|
|
39665
40103
|
*/
|
|
39666
40104
|
updateEntityWorkspaceDataFilters(requestParameters: EntitiesApiUpdateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
40105
|
+
/**
|
|
40106
|
+
*
|
|
40107
|
+
* @summary Put a Workspace Export Template
|
|
40108
|
+
* @param {EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
40109
|
+
* @param {*} [options] Override http request option.
|
|
40110
|
+
* @throws {RequiredError}
|
|
40111
|
+
* @memberof EntitiesApiInterface
|
|
40112
|
+
*/
|
|
40113
|
+
updateEntityWorkspaceExportTemplates(requestParameters: EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
39667
40114
|
/**
|
|
39668
40115
|
*
|
|
39669
40116
|
* @summary Put a Setting for a Workspace
|
|
@@ -40468,6 +40915,31 @@ export interface EntitiesApiCreateEntityWorkspaceDataFiltersRequest {
|
|
|
40468
40915
|
*/
|
|
40469
40916
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
40470
40917
|
}
|
|
40918
|
+
/**
|
|
40919
|
+
* Request parameters for createEntityWorkspaceExportTemplates operation in EntitiesApi.
|
|
40920
|
+
* @export
|
|
40921
|
+
* @interface EntitiesApiCreateEntityWorkspaceExportTemplatesRequest
|
|
40922
|
+
*/
|
|
40923
|
+
export interface EntitiesApiCreateEntityWorkspaceExportTemplatesRequest {
|
|
40924
|
+
/**
|
|
40925
|
+
*
|
|
40926
|
+
* @type {string}
|
|
40927
|
+
* @memberof EntitiesApiCreateEntityWorkspaceExportTemplates
|
|
40928
|
+
*/
|
|
40929
|
+
readonly workspaceId: string;
|
|
40930
|
+
/**
|
|
40931
|
+
*
|
|
40932
|
+
* @type {JsonApiWorkspaceExportTemplatePostOptionalIdDocument}
|
|
40933
|
+
* @memberof EntitiesApiCreateEntityWorkspaceExportTemplates
|
|
40934
|
+
*/
|
|
40935
|
+
readonly jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument;
|
|
40936
|
+
/**
|
|
40937
|
+
* Include Meta objects.
|
|
40938
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
40939
|
+
* @memberof EntitiesApiCreateEntityWorkspaceExportTemplates
|
|
40940
|
+
*/
|
|
40941
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
40942
|
+
}
|
|
40471
40943
|
/**
|
|
40472
40944
|
* Request parameters for createEntityWorkspaceSettings operation in EntitiesApi.
|
|
40473
40945
|
* @export
|
|
@@ -41100,6 +41572,25 @@ export interface EntitiesApiDeleteEntityWorkspaceDataFiltersRequest {
|
|
|
41100
41572
|
*/
|
|
41101
41573
|
readonly objectId: string;
|
|
41102
41574
|
}
|
|
41575
|
+
/**
|
|
41576
|
+
* Request parameters for deleteEntityWorkspaceExportTemplates operation in EntitiesApi.
|
|
41577
|
+
* @export
|
|
41578
|
+
* @interface EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest
|
|
41579
|
+
*/
|
|
41580
|
+
export interface EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest {
|
|
41581
|
+
/**
|
|
41582
|
+
*
|
|
41583
|
+
* @type {string}
|
|
41584
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceExportTemplates
|
|
41585
|
+
*/
|
|
41586
|
+
readonly workspaceId: string;
|
|
41587
|
+
/**
|
|
41588
|
+
*
|
|
41589
|
+
* @type {string}
|
|
41590
|
+
* @memberof EntitiesApiDeleteEntityWorkspaceExportTemplates
|
|
41591
|
+
*/
|
|
41592
|
+
readonly objectId: string;
|
|
41593
|
+
}
|
|
41103
41594
|
/**
|
|
41104
41595
|
* Request parameters for deleteEntityWorkspaceSettings operation in EntitiesApi.
|
|
41105
41596
|
* @export
|
|
@@ -43349,6 +43840,61 @@ export interface EntitiesApiGetAllEntitiesWorkspaceDataFiltersRequest {
|
|
|
43349
43840
|
*/
|
|
43350
43841
|
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
43351
43842
|
}
|
|
43843
|
+
/**
|
|
43844
|
+
* Request parameters for getAllEntitiesWorkspaceExportTemplates operation in EntitiesApi.
|
|
43845
|
+
* @export
|
|
43846
|
+
* @interface EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest
|
|
43847
|
+
*/
|
|
43848
|
+
export interface EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest {
|
|
43849
|
+
/**
|
|
43850
|
+
*
|
|
43851
|
+
* @type {string}
|
|
43852
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43853
|
+
*/
|
|
43854
|
+
readonly workspaceId: string;
|
|
43855
|
+
/**
|
|
43856
|
+
*
|
|
43857
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
43858
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43859
|
+
*/
|
|
43860
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
43861
|
+
/**
|
|
43862
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
43863
|
+
* @type {string}
|
|
43864
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43865
|
+
*/
|
|
43866
|
+
readonly filter?: string;
|
|
43867
|
+
/**
|
|
43868
|
+
* Zero-based page index (0..N)
|
|
43869
|
+
* @type {number}
|
|
43870
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43871
|
+
*/
|
|
43872
|
+
readonly page?: number;
|
|
43873
|
+
/**
|
|
43874
|
+
* The size of the page to be returned
|
|
43875
|
+
* @type {number}
|
|
43876
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43877
|
+
*/
|
|
43878
|
+
readonly size?: number;
|
|
43879
|
+
/**
|
|
43880
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
43881
|
+
* @type {Array<string>}
|
|
43882
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43883
|
+
*/
|
|
43884
|
+
readonly sort?: Array<string>;
|
|
43885
|
+
/**
|
|
43886
|
+
*
|
|
43887
|
+
* @type {boolean}
|
|
43888
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43889
|
+
*/
|
|
43890
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
43891
|
+
/**
|
|
43892
|
+
* Include Meta objects.
|
|
43893
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
43894
|
+
* @memberof EntitiesApiGetAllEntitiesWorkspaceExportTemplates
|
|
43895
|
+
*/
|
|
43896
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
43897
|
+
}
|
|
43352
43898
|
/**
|
|
43353
43899
|
* Request parameters for getAllEntitiesWorkspaceSettings operation in EntitiesApi.
|
|
43354
43900
|
* @export
|
|
@@ -44898,6 +45444,43 @@ export interface EntitiesApiGetEntityWorkspaceDataFiltersRequest {
|
|
|
44898
45444
|
*/
|
|
44899
45445
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
44900
45446
|
}
|
|
45447
|
+
/**
|
|
45448
|
+
* Request parameters for getEntityWorkspaceExportTemplates operation in EntitiesApi.
|
|
45449
|
+
* @export
|
|
45450
|
+
* @interface EntitiesApiGetEntityWorkspaceExportTemplatesRequest
|
|
45451
|
+
*/
|
|
45452
|
+
export interface EntitiesApiGetEntityWorkspaceExportTemplatesRequest {
|
|
45453
|
+
/**
|
|
45454
|
+
*
|
|
45455
|
+
* @type {string}
|
|
45456
|
+
* @memberof EntitiesApiGetEntityWorkspaceExportTemplates
|
|
45457
|
+
*/
|
|
45458
|
+
readonly workspaceId: string;
|
|
45459
|
+
/**
|
|
45460
|
+
*
|
|
45461
|
+
* @type {string}
|
|
45462
|
+
* @memberof EntitiesApiGetEntityWorkspaceExportTemplates
|
|
45463
|
+
*/
|
|
45464
|
+
readonly objectId: string;
|
|
45465
|
+
/**
|
|
45466
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
45467
|
+
* @type {string}
|
|
45468
|
+
* @memberof EntitiesApiGetEntityWorkspaceExportTemplates
|
|
45469
|
+
*/
|
|
45470
|
+
readonly filter?: string;
|
|
45471
|
+
/**
|
|
45472
|
+
*
|
|
45473
|
+
* @type {boolean}
|
|
45474
|
+
* @memberof EntitiesApiGetEntityWorkspaceExportTemplates
|
|
45475
|
+
*/
|
|
45476
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
45477
|
+
/**
|
|
45478
|
+
* Include Meta objects.
|
|
45479
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
45480
|
+
* @memberof EntitiesApiGetEntityWorkspaceExportTemplates
|
|
45481
|
+
*/
|
|
45482
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
45483
|
+
}
|
|
44901
45484
|
/**
|
|
44902
45485
|
* Request parameters for getEntityWorkspaceSettings operation in EntitiesApi.
|
|
44903
45486
|
* @export
|
|
@@ -46181,6 +46764,37 @@ export interface EntitiesApiPatchEntityWorkspaceDataFiltersRequest {
|
|
|
46181
46764
|
*/
|
|
46182
46765
|
readonly include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>;
|
|
46183
46766
|
}
|
|
46767
|
+
/**
|
|
46768
|
+
* Request parameters for patchEntityWorkspaceExportTemplates operation in EntitiesApi.
|
|
46769
|
+
* @export
|
|
46770
|
+
* @interface EntitiesApiPatchEntityWorkspaceExportTemplatesRequest
|
|
46771
|
+
*/
|
|
46772
|
+
export interface EntitiesApiPatchEntityWorkspaceExportTemplatesRequest {
|
|
46773
|
+
/**
|
|
46774
|
+
*
|
|
46775
|
+
* @type {string}
|
|
46776
|
+
* @memberof EntitiesApiPatchEntityWorkspaceExportTemplates
|
|
46777
|
+
*/
|
|
46778
|
+
readonly workspaceId: string;
|
|
46779
|
+
/**
|
|
46780
|
+
*
|
|
46781
|
+
* @type {string}
|
|
46782
|
+
* @memberof EntitiesApiPatchEntityWorkspaceExportTemplates
|
|
46783
|
+
*/
|
|
46784
|
+
readonly objectId: string;
|
|
46785
|
+
/**
|
|
46786
|
+
*
|
|
46787
|
+
* @type {JsonApiWorkspaceExportTemplatePatchDocument}
|
|
46788
|
+
* @memberof EntitiesApiPatchEntityWorkspaceExportTemplates
|
|
46789
|
+
*/
|
|
46790
|
+
readonly jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument;
|
|
46791
|
+
/**
|
|
46792
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
46793
|
+
* @type {string}
|
|
46794
|
+
* @memberof EntitiesApiPatchEntityWorkspaceExportTemplates
|
|
46795
|
+
*/
|
|
46796
|
+
readonly filter?: string;
|
|
46797
|
+
}
|
|
46184
46798
|
/**
|
|
46185
46799
|
* Request parameters for patchEntityWorkspaceSettings operation in EntitiesApi.
|
|
46186
46800
|
* @export
|
|
@@ -48103,6 +48717,37 @@ export interface EntitiesApiUpdateEntityWorkspaceDataFiltersRequest {
|
|
|
48103
48717
|
*/
|
|
48104
48718
|
readonly include?: Array<'workspaceDataFilterSettings' | 'filterSettings' | 'ALL'>;
|
|
48105
48719
|
}
|
|
48720
|
+
/**
|
|
48721
|
+
* Request parameters for updateEntityWorkspaceExportTemplates operation in EntitiesApi.
|
|
48722
|
+
* @export
|
|
48723
|
+
* @interface EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest
|
|
48724
|
+
*/
|
|
48725
|
+
export interface EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest {
|
|
48726
|
+
/**
|
|
48727
|
+
*
|
|
48728
|
+
* @type {string}
|
|
48729
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceExportTemplates
|
|
48730
|
+
*/
|
|
48731
|
+
readonly workspaceId: string;
|
|
48732
|
+
/**
|
|
48733
|
+
*
|
|
48734
|
+
* @type {string}
|
|
48735
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceExportTemplates
|
|
48736
|
+
*/
|
|
48737
|
+
readonly objectId: string;
|
|
48738
|
+
/**
|
|
48739
|
+
*
|
|
48740
|
+
* @type {JsonApiWorkspaceExportTemplateInDocument}
|
|
48741
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceExportTemplates
|
|
48742
|
+
*/
|
|
48743
|
+
readonly jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument;
|
|
48744
|
+
/**
|
|
48745
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
48746
|
+
* @type {string}
|
|
48747
|
+
* @memberof EntitiesApiUpdateEntityWorkspaceExportTemplates
|
|
48748
|
+
*/
|
|
48749
|
+
readonly filter?: string;
|
|
48750
|
+
}
|
|
48106
48751
|
/**
|
|
48107
48752
|
* Request parameters for updateEntityWorkspaceSettings operation in EntitiesApi.
|
|
48108
48753
|
* @export
|
|
@@ -48496,6 +49141,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
48496
49141
|
* @memberof EntitiesApi
|
|
48497
49142
|
*/
|
|
48498
49143
|
createEntityWorkspaceDataFilters(requestParameters: EntitiesApiCreateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
49144
|
+
/**
|
|
49145
|
+
*
|
|
49146
|
+
* @summary Post Workspace Export Template
|
|
49147
|
+
* @param {EntitiesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
49148
|
+
* @param {*} [options] Override http request option.
|
|
49149
|
+
* @throws {RequiredError}
|
|
49150
|
+
* @memberof EntitiesApi
|
|
49151
|
+
*/
|
|
49152
|
+
createEntityWorkspaceExportTemplates(requestParameters: EntitiesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
48499
49153
|
/**
|
|
48500
49154
|
*
|
|
48501
49155
|
* @summary Post Settings for Workspaces
|
|
@@ -48839,6 +49493,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
48839
49493
|
* @memberof EntitiesApi
|
|
48840
49494
|
*/
|
|
48841
49495
|
deleteEntityWorkspaceDataFilters(requestParameters: EntitiesApiDeleteEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
49496
|
+
/**
|
|
49497
|
+
*
|
|
49498
|
+
* @summary Delete a Workspace Export Template
|
|
49499
|
+
* @param {EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
49500
|
+
* @param {*} [options] Override http request option.
|
|
49501
|
+
* @throws {RequiredError}
|
|
49502
|
+
* @memberof EntitiesApi
|
|
49503
|
+
*/
|
|
49504
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: EntitiesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
48842
49505
|
/**
|
|
48843
49506
|
*
|
|
48844
49507
|
* @summary Delete a Setting for Workspace
|
|
@@ -49271,6 +49934,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49271
49934
|
* @memberof EntitiesApi
|
|
49272
49935
|
*/
|
|
49273
49936
|
getAllEntitiesWorkspaceDataFilters(requestParameters: EntitiesApiGetAllEntitiesWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutList>;
|
|
49937
|
+
/**
|
|
49938
|
+
*
|
|
49939
|
+
* @summary Get all Workspace Export Templates
|
|
49940
|
+
* @param {EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
49941
|
+
* @param {*} [options] Override http request option.
|
|
49942
|
+
* @throws {RequiredError}
|
|
49943
|
+
* @memberof EntitiesApi
|
|
49944
|
+
*/
|
|
49945
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: EntitiesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
49274
49946
|
/**
|
|
49275
49947
|
*
|
|
49276
49948
|
* @summary Get all Setting for Workspaces
|
|
@@ -49731,6 +50403,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
49731
50403
|
* @memberof EntitiesApi
|
|
49732
50404
|
*/
|
|
49733
50405
|
getEntityWorkspaceDataFilters(requestParameters: EntitiesApiGetEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
50406
|
+
/**
|
|
50407
|
+
*
|
|
50408
|
+
* @summary Get a Workspace Export Template
|
|
50409
|
+
* @param {EntitiesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
50410
|
+
* @param {*} [options] Override http request option.
|
|
50411
|
+
* @throws {RequiredError}
|
|
50412
|
+
* @memberof EntitiesApi
|
|
50413
|
+
*/
|
|
50414
|
+
getEntityWorkspaceExportTemplates(requestParameters: EntitiesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
49734
50415
|
/**
|
|
49735
50416
|
*
|
|
49736
50417
|
* @summary Get a Setting for Workspace
|
|
@@ -50101,6 +50782,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50101
50782
|
* @memberof EntitiesApi
|
|
50102
50783
|
*/
|
|
50103
50784
|
patchEntityWorkspaceDataFilters(requestParameters: EntitiesApiPatchEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
50785
|
+
/**
|
|
50786
|
+
*
|
|
50787
|
+
* @summary Patch a Workspace Export Template
|
|
50788
|
+
* @param {EntitiesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
50789
|
+
* @param {*} [options] Override http request option.
|
|
50790
|
+
* @throws {RequiredError}
|
|
50791
|
+
* @memberof EntitiesApi
|
|
50792
|
+
*/
|
|
50793
|
+
patchEntityWorkspaceExportTemplates(requestParameters: EntitiesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
50104
50794
|
/**
|
|
50105
50795
|
*
|
|
50106
50796
|
* @summary Patch a Setting for Workspace
|
|
@@ -50660,6 +51350,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
|
|
|
50660
51350
|
* @memberof EntitiesApi
|
|
50661
51351
|
*/
|
|
50662
51352
|
updateEntityWorkspaceDataFilters(requestParameters: EntitiesApiUpdateEntityWorkspaceDataFiltersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterOutDocument>;
|
|
51353
|
+
/**
|
|
51354
|
+
*
|
|
51355
|
+
* @summary Put a Workspace Export Template
|
|
51356
|
+
* @param {EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
51357
|
+
* @param {*} [options] Override http request option.
|
|
51358
|
+
* @throws {RequiredError}
|
|
51359
|
+
* @memberof EntitiesApi
|
|
51360
|
+
*/
|
|
51361
|
+
updateEntityWorkspaceExportTemplates(requestParameters: EntitiesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
50663
51362
|
/**
|
|
50664
51363
|
*
|
|
50665
51364
|
* @summary Put a Setting for a Workspace
|
|
@@ -52597,6 +53296,17 @@ export declare class ExportTemplateControllerApi extends BaseAPI implements Expo
|
|
|
52597
53296
|
* @throws {RequiredError}
|
|
52598
53297
|
*/
|
|
52599
53298
|
export declare function ExportTemplatesApiAxiosParamCreator_CreateEntityExportTemplates(jsonApiExportTemplatePostOptionalIdDocument: JsonApiExportTemplatePostOptionalIdDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53299
|
+
/**
|
|
53300
|
+
*
|
|
53301
|
+
* @summary Post Workspace Export Template
|
|
53302
|
+
* @param {string} workspaceId
|
|
53303
|
+
* @param {JsonApiWorkspaceExportTemplatePostOptionalIdDocument} jsonApiWorkspaceExportTemplatePostOptionalIdDocument
|
|
53304
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
53305
|
+
* @param {*} [options] Override http request option.
|
|
53306
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53307
|
+
* @throws {RequiredError}
|
|
53308
|
+
*/
|
|
53309
|
+
export declare function ExportTemplatesApiAxiosParamCreator_CreateEntityWorkspaceExportTemplates(workspaceId: string, jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52600
53310
|
/**
|
|
52601
53311
|
*
|
|
52602
53312
|
* @summary Delete Export Template entity
|
|
@@ -52606,6 +53316,16 @@ export declare function ExportTemplatesApiAxiosParamCreator_CreateEntityExportTe
|
|
|
52606
53316
|
* @throws {RequiredError}
|
|
52607
53317
|
*/
|
|
52608
53318
|
export declare function ExportTemplatesApiAxiosParamCreator_DeleteEntityExportTemplates(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53319
|
+
/**
|
|
53320
|
+
*
|
|
53321
|
+
* @summary Delete a Workspace Export Template
|
|
53322
|
+
* @param {string} workspaceId
|
|
53323
|
+
* @param {string} objectId
|
|
53324
|
+
* @param {*} [options] Override http request option.
|
|
53325
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53326
|
+
* @throws {RequiredError}
|
|
53327
|
+
*/
|
|
53328
|
+
export declare function ExportTemplatesApiAxiosParamCreator_DeleteEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52609
53329
|
/**
|
|
52610
53330
|
*
|
|
52611
53331
|
* @summary GET all Export Template entities
|
|
@@ -52619,6 +53339,22 @@ export declare function ExportTemplatesApiAxiosParamCreator_DeleteEntityExportTe
|
|
|
52619
53339
|
* @throws {RequiredError}
|
|
52620
53340
|
*/
|
|
52621
53341
|
export declare function ExportTemplatesApiAxiosParamCreator_GetAllEntitiesExportTemplates(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53342
|
+
/**
|
|
53343
|
+
*
|
|
53344
|
+
* @summary Get all Workspace Export Templates
|
|
53345
|
+
* @param {string} workspaceId
|
|
53346
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
53347
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53348
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
53349
|
+
* @param {number} [size] The size of the page to be returned
|
|
53350
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
53351
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53352
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
53353
|
+
* @param {*} [options] Override http request option.
|
|
53354
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53355
|
+
* @throws {RequiredError}
|
|
53356
|
+
*/
|
|
53357
|
+
export declare function ExportTemplatesApiAxiosParamCreator_GetAllEntitiesWorkspaceExportTemplates(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52622
53358
|
/**
|
|
52623
53359
|
*
|
|
52624
53360
|
* @summary GET Export Template entity
|
|
@@ -52629,6 +53365,19 @@ export declare function ExportTemplatesApiAxiosParamCreator_GetAllEntitiesExport
|
|
|
52629
53365
|
* @throws {RequiredError}
|
|
52630
53366
|
*/
|
|
52631
53367
|
export declare function ExportTemplatesApiAxiosParamCreator_GetEntityExportTemplates(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53368
|
+
/**
|
|
53369
|
+
*
|
|
53370
|
+
* @summary Get a Workspace Export Template
|
|
53371
|
+
* @param {string} workspaceId
|
|
53372
|
+
* @param {string} objectId
|
|
53373
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53374
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
53375
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
53376
|
+
* @param {*} [options] Override http request option.
|
|
53377
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53378
|
+
* @throws {RequiredError}
|
|
53379
|
+
*/
|
|
53380
|
+
export declare function ExportTemplatesApiAxiosParamCreator_GetEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52632
53381
|
/**
|
|
52633
53382
|
*
|
|
52634
53383
|
* @summary Patch Export Template entity
|
|
@@ -52640,6 +53389,18 @@ export declare function ExportTemplatesApiAxiosParamCreator_GetEntityExportTempl
|
|
|
52640
53389
|
* @throws {RequiredError}
|
|
52641
53390
|
*/
|
|
52642
53391
|
export declare function ExportTemplatesApiAxiosParamCreator_PatchEntityExportTemplates(id: string, jsonApiExportTemplatePatchDocument: JsonApiExportTemplatePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53392
|
+
/**
|
|
53393
|
+
*
|
|
53394
|
+
* @summary Patch a Workspace Export Template
|
|
53395
|
+
* @param {string} workspaceId
|
|
53396
|
+
* @param {string} objectId
|
|
53397
|
+
* @param {JsonApiWorkspaceExportTemplatePatchDocument} jsonApiWorkspaceExportTemplatePatchDocument
|
|
53398
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53399
|
+
* @param {*} [options] Override http request option.
|
|
53400
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53401
|
+
* @throws {RequiredError}
|
|
53402
|
+
*/
|
|
53403
|
+
export declare function ExportTemplatesApiAxiosParamCreator_PatchEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52643
53404
|
/**
|
|
52644
53405
|
*
|
|
52645
53406
|
* @summary PUT Export Template entity
|
|
@@ -52651,6 +53412,18 @@ export declare function ExportTemplatesApiAxiosParamCreator_PatchEntityExportTem
|
|
|
52651
53412
|
* @throws {RequiredError}
|
|
52652
53413
|
*/
|
|
52653
53414
|
export declare function ExportTemplatesApiAxiosParamCreator_UpdateEntityExportTemplates(id: string, jsonApiExportTemplateInDocument: JsonApiExportTemplateInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
53415
|
+
/**
|
|
53416
|
+
*
|
|
53417
|
+
* @summary Put a Workspace Export Template
|
|
53418
|
+
* @param {string} workspaceId
|
|
53419
|
+
* @param {string} objectId
|
|
53420
|
+
* @param {JsonApiWorkspaceExportTemplateInDocument} jsonApiWorkspaceExportTemplateInDocument
|
|
53421
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53422
|
+
* @param {*} [options] Override http request option.
|
|
53423
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53424
|
+
* @throws {RequiredError}
|
|
53425
|
+
*/
|
|
53426
|
+
export declare function ExportTemplatesApiAxiosParamCreator_UpdateEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
52654
53427
|
/**
|
|
52655
53428
|
*
|
|
52656
53429
|
* @summary Post Export Template entities
|
|
@@ -52662,6 +53435,17 @@ export declare function ExportTemplatesApiAxiosParamCreator_UpdateEntityExportTe
|
|
|
52662
53435
|
* @throws {RequiredError}
|
|
52663
53436
|
*/
|
|
52664
53437
|
export declare function ExportTemplatesApi_CreateEntityExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiCreateEntityExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53438
|
+
/**
|
|
53439
|
+
*
|
|
53440
|
+
* @summary Post Workspace Export Template
|
|
53441
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53442
|
+
* @param {string} basePath Base path.
|
|
53443
|
+
* @param {ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53444
|
+
* @param {*} [options] Override http request option.
|
|
53445
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53446
|
+
* @throws {RequiredError}
|
|
53447
|
+
*/
|
|
53448
|
+
export declare function ExportTemplatesApi_CreateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52665
53449
|
/**
|
|
52666
53450
|
*
|
|
52667
53451
|
* @summary Delete Export Template entity
|
|
@@ -52673,6 +53457,17 @@ export declare function ExportTemplatesApi_CreateEntityExportTemplates(axios: Ax
|
|
|
52673
53457
|
* @throws {RequiredError}
|
|
52674
53458
|
*/
|
|
52675
53459
|
export declare function ExportTemplatesApi_DeleteEntityExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiDeleteEntityExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
53460
|
+
/**
|
|
53461
|
+
*
|
|
53462
|
+
* @summary Delete a Workspace Export Template
|
|
53463
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53464
|
+
* @param {string} basePath Base path.
|
|
53465
|
+
* @param {ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53466
|
+
* @param {*} [options] Override http request option.
|
|
53467
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53468
|
+
* @throws {RequiredError}
|
|
53469
|
+
*/
|
|
53470
|
+
export declare function ExportTemplatesApi_DeleteEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
52676
53471
|
/**
|
|
52677
53472
|
*
|
|
52678
53473
|
* @summary GET all Export Template entities
|
|
@@ -52684,6 +53479,17 @@ export declare function ExportTemplatesApi_DeleteEntityExportTemplates(axios: Ax
|
|
|
52684
53479
|
* @throws {RequiredError}
|
|
52685
53480
|
*/
|
|
52686
53481
|
export declare function ExportTemplatesApi_GetAllEntitiesExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiGetAllEntitiesExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiExportTemplateOutList>;
|
|
53482
|
+
/**
|
|
53483
|
+
*
|
|
53484
|
+
* @summary Get all Workspace Export Templates
|
|
53485
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53486
|
+
* @param {string} basePath Base path.
|
|
53487
|
+
* @param {ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53488
|
+
* @param {*} [options] Override http request option.
|
|
53489
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53490
|
+
* @throws {RequiredError}
|
|
53491
|
+
*/
|
|
53492
|
+
export declare function ExportTemplatesApi_GetAllEntitiesWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
52687
53493
|
/**
|
|
52688
53494
|
*
|
|
52689
53495
|
* @summary GET Export Template entity
|
|
@@ -52695,6 +53501,17 @@ export declare function ExportTemplatesApi_GetAllEntitiesExportTemplates(axios:
|
|
|
52695
53501
|
* @throws {RequiredError}
|
|
52696
53502
|
*/
|
|
52697
53503
|
export declare function ExportTemplatesApi_GetEntityExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiGetEntityExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53504
|
+
/**
|
|
53505
|
+
*
|
|
53506
|
+
* @summary Get a Workspace Export Template
|
|
53507
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53508
|
+
* @param {string} basePath Base path.
|
|
53509
|
+
* @param {ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53510
|
+
* @param {*} [options] Override http request option.
|
|
53511
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53512
|
+
* @throws {RequiredError}
|
|
53513
|
+
*/
|
|
53514
|
+
export declare function ExportTemplatesApi_GetEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52698
53515
|
/**
|
|
52699
53516
|
*
|
|
52700
53517
|
* @summary Patch Export Template entity
|
|
@@ -52706,6 +53523,17 @@ export declare function ExportTemplatesApi_GetEntityExportTemplates(axios: Axios
|
|
|
52706
53523
|
* @throws {RequiredError}
|
|
52707
53524
|
*/
|
|
52708
53525
|
export declare function ExportTemplatesApi_PatchEntityExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiPatchEntityExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53526
|
+
/**
|
|
53527
|
+
*
|
|
53528
|
+
* @summary Patch a Workspace Export Template
|
|
53529
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53530
|
+
* @param {string} basePath Base path.
|
|
53531
|
+
* @param {ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53532
|
+
* @param {*} [options] Override http request option.
|
|
53533
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53534
|
+
* @throws {RequiredError}
|
|
53535
|
+
*/
|
|
53536
|
+
export declare function ExportTemplatesApi_PatchEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52709
53537
|
/**
|
|
52710
53538
|
*
|
|
52711
53539
|
* @summary PUT Export Template entity
|
|
@@ -52717,6 +53545,17 @@ export declare function ExportTemplatesApi_PatchEntityExportTemplates(axios: Axi
|
|
|
52717
53545
|
* @throws {RequiredError}
|
|
52718
53546
|
*/
|
|
52719
53547
|
export declare function ExportTemplatesApi_UpdateEntityExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiUpdateEntityExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53548
|
+
/**
|
|
53549
|
+
*
|
|
53550
|
+
* @summary Put a Workspace Export Template
|
|
53551
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
53552
|
+
* @param {string} basePath Base path.
|
|
53553
|
+
* @param {ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53554
|
+
* @param {*} [options] Override http request option.
|
|
53555
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
53556
|
+
* @throws {RequiredError}
|
|
53557
|
+
*/
|
|
53558
|
+
export declare function ExportTemplatesApi_UpdateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52720
53559
|
/**
|
|
52721
53560
|
* ExportTemplatesApi - interface
|
|
52722
53561
|
* @export
|
|
@@ -52732,6 +53571,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52732
53571
|
* @memberof ExportTemplatesApiInterface
|
|
52733
53572
|
*/
|
|
52734
53573
|
createEntityExportTemplates(requestParameters: ExportTemplatesApiCreateEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53574
|
+
/**
|
|
53575
|
+
*
|
|
53576
|
+
* @summary Post Workspace Export Template
|
|
53577
|
+
* @param {ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53578
|
+
* @param {*} [options] Override http request option.
|
|
53579
|
+
* @throws {RequiredError}
|
|
53580
|
+
* @memberof ExportTemplatesApiInterface
|
|
53581
|
+
*/
|
|
53582
|
+
createEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52735
53583
|
/**
|
|
52736
53584
|
*
|
|
52737
53585
|
* @summary Delete Export Template entity
|
|
@@ -52741,6 +53589,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52741
53589
|
* @memberof ExportTemplatesApiInterface
|
|
52742
53590
|
*/
|
|
52743
53591
|
deleteEntityExportTemplates(requestParameters: ExportTemplatesApiDeleteEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
53592
|
+
/**
|
|
53593
|
+
*
|
|
53594
|
+
* @summary Delete a Workspace Export Template
|
|
53595
|
+
* @param {ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53596
|
+
* @param {*} [options] Override http request option.
|
|
53597
|
+
* @throws {RequiredError}
|
|
53598
|
+
* @memberof ExportTemplatesApiInterface
|
|
53599
|
+
*/
|
|
53600
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
52744
53601
|
/**
|
|
52745
53602
|
*
|
|
52746
53603
|
* @summary GET all Export Template entities
|
|
@@ -52750,6 +53607,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52750
53607
|
* @memberof ExportTemplatesApiInterface
|
|
52751
53608
|
*/
|
|
52752
53609
|
getAllEntitiesExportTemplates(requestParameters: ExportTemplatesApiGetAllEntitiesExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutList>;
|
|
53610
|
+
/**
|
|
53611
|
+
*
|
|
53612
|
+
* @summary Get all Workspace Export Templates
|
|
53613
|
+
* @param {ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53614
|
+
* @param {*} [options] Override http request option.
|
|
53615
|
+
* @throws {RequiredError}
|
|
53616
|
+
* @memberof ExportTemplatesApiInterface
|
|
53617
|
+
*/
|
|
53618
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
52753
53619
|
/**
|
|
52754
53620
|
*
|
|
52755
53621
|
* @summary GET Export Template entity
|
|
@@ -52759,6 +53625,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52759
53625
|
* @memberof ExportTemplatesApiInterface
|
|
52760
53626
|
*/
|
|
52761
53627
|
getEntityExportTemplates(requestParameters: ExportTemplatesApiGetEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53628
|
+
/**
|
|
53629
|
+
*
|
|
53630
|
+
* @summary Get a Workspace Export Template
|
|
53631
|
+
* @param {ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53632
|
+
* @param {*} [options] Override http request option.
|
|
53633
|
+
* @throws {RequiredError}
|
|
53634
|
+
* @memberof ExportTemplatesApiInterface
|
|
53635
|
+
*/
|
|
53636
|
+
getEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52762
53637
|
/**
|
|
52763
53638
|
*
|
|
52764
53639
|
* @summary Patch Export Template entity
|
|
@@ -52768,6 +53643,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52768
53643
|
* @memberof ExportTemplatesApiInterface
|
|
52769
53644
|
*/
|
|
52770
53645
|
patchEntityExportTemplates(requestParameters: ExportTemplatesApiPatchEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53646
|
+
/**
|
|
53647
|
+
*
|
|
53648
|
+
* @summary Patch a Workspace Export Template
|
|
53649
|
+
* @param {ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53650
|
+
* @param {*} [options] Override http request option.
|
|
53651
|
+
* @throws {RequiredError}
|
|
53652
|
+
* @memberof ExportTemplatesApiInterface
|
|
53653
|
+
*/
|
|
53654
|
+
patchEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52771
53655
|
/**
|
|
52772
53656
|
*
|
|
52773
53657
|
* @summary PUT Export Template entity
|
|
@@ -52777,6 +53661,15 @@ export interface ExportTemplatesApiInterface {
|
|
|
52777
53661
|
* @memberof ExportTemplatesApiInterface
|
|
52778
53662
|
*/
|
|
52779
53663
|
updateEntityExportTemplates(requestParameters: ExportTemplatesApiUpdateEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
53664
|
+
/**
|
|
53665
|
+
*
|
|
53666
|
+
* @summary Put a Workspace Export Template
|
|
53667
|
+
* @param {ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
53668
|
+
* @param {*} [options] Override http request option.
|
|
53669
|
+
* @throws {RequiredError}
|
|
53670
|
+
* @memberof ExportTemplatesApiInterface
|
|
53671
|
+
*/
|
|
53672
|
+
updateEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52780
53673
|
}
|
|
52781
53674
|
/**
|
|
52782
53675
|
* Request parameters for createEntityExportTemplates operation in ExportTemplatesApi.
|
|
@@ -52791,6 +53684,31 @@ export interface ExportTemplatesApiCreateEntityExportTemplatesRequest {
|
|
|
52791
53684
|
*/
|
|
52792
53685
|
readonly jsonApiExportTemplatePostOptionalIdDocument: JsonApiExportTemplatePostOptionalIdDocument;
|
|
52793
53686
|
}
|
|
53687
|
+
/**
|
|
53688
|
+
* Request parameters for createEntityWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53689
|
+
* @export
|
|
53690
|
+
* @interface ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest
|
|
53691
|
+
*/
|
|
53692
|
+
export interface ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest {
|
|
53693
|
+
/**
|
|
53694
|
+
*
|
|
53695
|
+
* @type {string}
|
|
53696
|
+
* @memberof ExportTemplatesApiCreateEntityWorkspaceExportTemplates
|
|
53697
|
+
*/
|
|
53698
|
+
readonly workspaceId: string;
|
|
53699
|
+
/**
|
|
53700
|
+
*
|
|
53701
|
+
* @type {JsonApiWorkspaceExportTemplatePostOptionalIdDocument}
|
|
53702
|
+
* @memberof ExportTemplatesApiCreateEntityWorkspaceExportTemplates
|
|
53703
|
+
*/
|
|
53704
|
+
readonly jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument;
|
|
53705
|
+
/**
|
|
53706
|
+
* Include Meta objects.
|
|
53707
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
53708
|
+
* @memberof ExportTemplatesApiCreateEntityWorkspaceExportTemplates
|
|
53709
|
+
*/
|
|
53710
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
53711
|
+
}
|
|
52794
53712
|
/**
|
|
52795
53713
|
* Request parameters for deleteEntityExportTemplates operation in ExportTemplatesApi.
|
|
52796
53714
|
* @export
|
|
@@ -52804,6 +53722,25 @@ export interface ExportTemplatesApiDeleteEntityExportTemplatesRequest {
|
|
|
52804
53722
|
*/
|
|
52805
53723
|
readonly id: string;
|
|
52806
53724
|
}
|
|
53725
|
+
/**
|
|
53726
|
+
* Request parameters for deleteEntityWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53727
|
+
* @export
|
|
53728
|
+
* @interface ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest
|
|
53729
|
+
*/
|
|
53730
|
+
export interface ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest {
|
|
53731
|
+
/**
|
|
53732
|
+
*
|
|
53733
|
+
* @type {string}
|
|
53734
|
+
* @memberof ExportTemplatesApiDeleteEntityWorkspaceExportTemplates
|
|
53735
|
+
*/
|
|
53736
|
+
readonly workspaceId: string;
|
|
53737
|
+
/**
|
|
53738
|
+
*
|
|
53739
|
+
* @type {string}
|
|
53740
|
+
* @memberof ExportTemplatesApiDeleteEntityWorkspaceExportTemplates
|
|
53741
|
+
*/
|
|
53742
|
+
readonly objectId: string;
|
|
53743
|
+
}
|
|
52807
53744
|
/**
|
|
52808
53745
|
* Request parameters for getAllEntitiesExportTemplates operation in ExportTemplatesApi.
|
|
52809
53746
|
* @export
|
|
@@ -52841,6 +53778,61 @@ export interface ExportTemplatesApiGetAllEntitiesExportTemplatesRequest {
|
|
|
52841
53778
|
*/
|
|
52842
53779
|
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
52843
53780
|
}
|
|
53781
|
+
/**
|
|
53782
|
+
* Request parameters for getAllEntitiesWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53783
|
+
* @export
|
|
53784
|
+
* @interface ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest
|
|
53785
|
+
*/
|
|
53786
|
+
export interface ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest {
|
|
53787
|
+
/**
|
|
53788
|
+
*
|
|
53789
|
+
* @type {string}
|
|
53790
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53791
|
+
*/
|
|
53792
|
+
readonly workspaceId: string;
|
|
53793
|
+
/**
|
|
53794
|
+
*
|
|
53795
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
53796
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53797
|
+
*/
|
|
53798
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
53799
|
+
/**
|
|
53800
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53801
|
+
* @type {string}
|
|
53802
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53803
|
+
*/
|
|
53804
|
+
readonly filter?: string;
|
|
53805
|
+
/**
|
|
53806
|
+
* Zero-based page index (0..N)
|
|
53807
|
+
* @type {number}
|
|
53808
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53809
|
+
*/
|
|
53810
|
+
readonly page?: number;
|
|
53811
|
+
/**
|
|
53812
|
+
* The size of the page to be returned
|
|
53813
|
+
* @type {number}
|
|
53814
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53815
|
+
*/
|
|
53816
|
+
readonly size?: number;
|
|
53817
|
+
/**
|
|
53818
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
53819
|
+
* @type {Array<string>}
|
|
53820
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53821
|
+
*/
|
|
53822
|
+
readonly sort?: Array<string>;
|
|
53823
|
+
/**
|
|
53824
|
+
*
|
|
53825
|
+
* @type {boolean}
|
|
53826
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53827
|
+
*/
|
|
53828
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
53829
|
+
/**
|
|
53830
|
+
* Include Meta objects.
|
|
53831
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
53832
|
+
* @memberof ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplates
|
|
53833
|
+
*/
|
|
53834
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
53835
|
+
}
|
|
52844
53836
|
/**
|
|
52845
53837
|
* Request parameters for getEntityExportTemplates operation in ExportTemplatesApi.
|
|
52846
53838
|
* @export
|
|
@@ -52860,6 +53852,43 @@ export interface ExportTemplatesApiGetEntityExportTemplatesRequest {
|
|
|
52860
53852
|
*/
|
|
52861
53853
|
readonly filter?: string;
|
|
52862
53854
|
}
|
|
53855
|
+
/**
|
|
53856
|
+
* Request parameters for getEntityWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53857
|
+
* @export
|
|
53858
|
+
* @interface ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest
|
|
53859
|
+
*/
|
|
53860
|
+
export interface ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest {
|
|
53861
|
+
/**
|
|
53862
|
+
*
|
|
53863
|
+
* @type {string}
|
|
53864
|
+
* @memberof ExportTemplatesApiGetEntityWorkspaceExportTemplates
|
|
53865
|
+
*/
|
|
53866
|
+
readonly workspaceId: string;
|
|
53867
|
+
/**
|
|
53868
|
+
*
|
|
53869
|
+
* @type {string}
|
|
53870
|
+
* @memberof ExportTemplatesApiGetEntityWorkspaceExportTemplates
|
|
53871
|
+
*/
|
|
53872
|
+
readonly objectId: string;
|
|
53873
|
+
/**
|
|
53874
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53875
|
+
* @type {string}
|
|
53876
|
+
* @memberof ExportTemplatesApiGetEntityWorkspaceExportTemplates
|
|
53877
|
+
*/
|
|
53878
|
+
readonly filter?: string;
|
|
53879
|
+
/**
|
|
53880
|
+
*
|
|
53881
|
+
* @type {boolean}
|
|
53882
|
+
* @memberof ExportTemplatesApiGetEntityWorkspaceExportTemplates
|
|
53883
|
+
*/
|
|
53884
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
53885
|
+
/**
|
|
53886
|
+
* Include Meta objects.
|
|
53887
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
53888
|
+
* @memberof ExportTemplatesApiGetEntityWorkspaceExportTemplates
|
|
53889
|
+
*/
|
|
53890
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
53891
|
+
}
|
|
52863
53892
|
/**
|
|
52864
53893
|
* Request parameters for patchEntityExportTemplates operation in ExportTemplatesApi.
|
|
52865
53894
|
* @export
|
|
@@ -52885,6 +53914,37 @@ export interface ExportTemplatesApiPatchEntityExportTemplatesRequest {
|
|
|
52885
53914
|
*/
|
|
52886
53915
|
readonly filter?: string;
|
|
52887
53916
|
}
|
|
53917
|
+
/**
|
|
53918
|
+
* Request parameters for patchEntityWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53919
|
+
* @export
|
|
53920
|
+
* @interface ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest
|
|
53921
|
+
*/
|
|
53922
|
+
export interface ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest {
|
|
53923
|
+
/**
|
|
53924
|
+
*
|
|
53925
|
+
* @type {string}
|
|
53926
|
+
* @memberof ExportTemplatesApiPatchEntityWorkspaceExportTemplates
|
|
53927
|
+
*/
|
|
53928
|
+
readonly workspaceId: string;
|
|
53929
|
+
/**
|
|
53930
|
+
*
|
|
53931
|
+
* @type {string}
|
|
53932
|
+
* @memberof ExportTemplatesApiPatchEntityWorkspaceExportTemplates
|
|
53933
|
+
*/
|
|
53934
|
+
readonly objectId: string;
|
|
53935
|
+
/**
|
|
53936
|
+
*
|
|
53937
|
+
* @type {JsonApiWorkspaceExportTemplatePatchDocument}
|
|
53938
|
+
* @memberof ExportTemplatesApiPatchEntityWorkspaceExportTemplates
|
|
53939
|
+
*/
|
|
53940
|
+
readonly jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument;
|
|
53941
|
+
/**
|
|
53942
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53943
|
+
* @type {string}
|
|
53944
|
+
* @memberof ExportTemplatesApiPatchEntityWorkspaceExportTemplates
|
|
53945
|
+
*/
|
|
53946
|
+
readonly filter?: string;
|
|
53947
|
+
}
|
|
52888
53948
|
/**
|
|
52889
53949
|
* Request parameters for updateEntityExportTemplates operation in ExportTemplatesApi.
|
|
52890
53950
|
* @export
|
|
@@ -52910,6 +53970,37 @@ export interface ExportTemplatesApiUpdateEntityExportTemplatesRequest {
|
|
|
52910
53970
|
*/
|
|
52911
53971
|
readonly filter?: string;
|
|
52912
53972
|
}
|
|
53973
|
+
/**
|
|
53974
|
+
* Request parameters for updateEntityWorkspaceExportTemplates operation in ExportTemplatesApi.
|
|
53975
|
+
* @export
|
|
53976
|
+
* @interface ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest
|
|
53977
|
+
*/
|
|
53978
|
+
export interface ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest {
|
|
53979
|
+
/**
|
|
53980
|
+
*
|
|
53981
|
+
* @type {string}
|
|
53982
|
+
* @memberof ExportTemplatesApiUpdateEntityWorkspaceExportTemplates
|
|
53983
|
+
*/
|
|
53984
|
+
readonly workspaceId: string;
|
|
53985
|
+
/**
|
|
53986
|
+
*
|
|
53987
|
+
* @type {string}
|
|
53988
|
+
* @memberof ExportTemplatesApiUpdateEntityWorkspaceExportTemplates
|
|
53989
|
+
*/
|
|
53990
|
+
readonly objectId: string;
|
|
53991
|
+
/**
|
|
53992
|
+
*
|
|
53993
|
+
* @type {JsonApiWorkspaceExportTemplateInDocument}
|
|
53994
|
+
* @memberof ExportTemplatesApiUpdateEntityWorkspaceExportTemplates
|
|
53995
|
+
*/
|
|
53996
|
+
readonly jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument;
|
|
53997
|
+
/**
|
|
53998
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
53999
|
+
* @type {string}
|
|
54000
|
+
* @memberof ExportTemplatesApiUpdateEntityWorkspaceExportTemplates
|
|
54001
|
+
*/
|
|
54002
|
+
readonly filter?: string;
|
|
54003
|
+
}
|
|
52913
54004
|
/**
|
|
52914
54005
|
* ExportTemplatesApi - object-oriented interface
|
|
52915
54006
|
* @export
|
|
@@ -52926,6 +54017,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52926
54017
|
* @memberof ExportTemplatesApi
|
|
52927
54018
|
*/
|
|
52928
54019
|
createEntityExportTemplates(requestParameters: ExportTemplatesApiCreateEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
54020
|
+
/**
|
|
54021
|
+
*
|
|
54022
|
+
* @summary Post Workspace Export Template
|
|
54023
|
+
* @param {ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54024
|
+
* @param {*} [options] Override http request option.
|
|
54025
|
+
* @throws {RequiredError}
|
|
54026
|
+
* @memberof ExportTemplatesApi
|
|
54027
|
+
*/
|
|
54028
|
+
createEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52929
54029
|
/**
|
|
52930
54030
|
*
|
|
52931
54031
|
* @summary Delete Export Template entity
|
|
@@ -52935,6 +54035,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52935
54035
|
* @memberof ExportTemplatesApi
|
|
52936
54036
|
*/
|
|
52937
54037
|
deleteEntityExportTemplates(requestParameters: ExportTemplatesApiDeleteEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
54038
|
+
/**
|
|
54039
|
+
*
|
|
54040
|
+
* @summary Delete a Workspace Export Template
|
|
54041
|
+
* @param {ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54042
|
+
* @param {*} [options] Override http request option.
|
|
54043
|
+
* @throws {RequiredError}
|
|
54044
|
+
* @memberof ExportTemplatesApi
|
|
54045
|
+
*/
|
|
54046
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
52938
54047
|
/**
|
|
52939
54048
|
*
|
|
52940
54049
|
* @summary GET all Export Template entities
|
|
@@ -52944,6 +54053,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52944
54053
|
* @memberof ExportTemplatesApi
|
|
52945
54054
|
*/
|
|
52946
54055
|
getAllEntitiesExportTemplates(requestParameters?: ExportTemplatesApiGetAllEntitiesExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutList>;
|
|
54056
|
+
/**
|
|
54057
|
+
*
|
|
54058
|
+
* @summary Get all Workspace Export Templates
|
|
54059
|
+
* @param {ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54060
|
+
* @param {*} [options] Override http request option.
|
|
54061
|
+
* @throws {RequiredError}
|
|
54062
|
+
* @memberof ExportTemplatesApi
|
|
54063
|
+
*/
|
|
54064
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: ExportTemplatesApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
52947
54065
|
/**
|
|
52948
54066
|
*
|
|
52949
54067
|
* @summary GET Export Template entity
|
|
@@ -52953,6 +54071,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52953
54071
|
* @memberof ExportTemplatesApi
|
|
52954
54072
|
*/
|
|
52955
54073
|
getEntityExportTemplates(requestParameters: ExportTemplatesApiGetEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
54074
|
+
/**
|
|
54075
|
+
*
|
|
54076
|
+
* @summary Get a Workspace Export Template
|
|
54077
|
+
* @param {ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54078
|
+
* @param {*} [options] Override http request option.
|
|
54079
|
+
* @throws {RequiredError}
|
|
54080
|
+
* @memberof ExportTemplatesApi
|
|
54081
|
+
*/
|
|
54082
|
+
getEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52956
54083
|
/**
|
|
52957
54084
|
*
|
|
52958
54085
|
* @summary Patch Export Template entity
|
|
@@ -52962,6 +54089,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52962
54089
|
* @memberof ExportTemplatesApi
|
|
52963
54090
|
*/
|
|
52964
54091
|
patchEntityExportTemplates(requestParameters: ExportTemplatesApiPatchEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
54092
|
+
/**
|
|
54093
|
+
*
|
|
54094
|
+
* @summary Patch a Workspace Export Template
|
|
54095
|
+
* @param {ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54096
|
+
* @param {*} [options] Override http request option.
|
|
54097
|
+
* @throws {RequiredError}
|
|
54098
|
+
* @memberof ExportTemplatesApi
|
|
54099
|
+
*/
|
|
54100
|
+
patchEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52965
54101
|
/**
|
|
52966
54102
|
*
|
|
52967
54103
|
* @summary PUT Export Template entity
|
|
@@ -52971,6 +54107,15 @@ export declare class ExportTemplatesApi extends BaseAPI implements ExportTemplat
|
|
|
52971
54107
|
* @memberof ExportTemplatesApi
|
|
52972
54108
|
*/
|
|
52973
54109
|
updateEntityExportTemplates(requestParameters: ExportTemplatesApiUpdateEntityExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiExportTemplateOutDocument>;
|
|
54110
|
+
/**
|
|
54111
|
+
*
|
|
54112
|
+
* @summary Put a Workspace Export Template
|
|
54113
|
+
* @param {ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
54114
|
+
* @param {*} [options] Override http request option.
|
|
54115
|
+
* @throws {RequiredError}
|
|
54116
|
+
* @memberof ExportTemplatesApi
|
|
54117
|
+
*/
|
|
54118
|
+
updateEntityWorkspaceExportTemplates(requestParameters: ExportTemplatesApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
52974
54119
|
}
|
|
52975
54120
|
/**
|
|
52976
54121
|
*
|
|
@@ -64821,106 +65966,6 @@ export declare class MemoryItemControllerApi extends BaseAPI implements MemoryIt
|
|
|
64821
65966
|
*/
|
|
64822
65967
|
updateEntityMemoryItems(requestParameters: MemoryItemControllerApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
64823
65968
|
}
|
|
64824
|
-
/**
|
|
64825
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
64826
|
-
* @summary (BETA) Sync Metadata to other services
|
|
64827
|
-
* @param {string} workspaceId
|
|
64828
|
-
* @param {*} [options] Override http request option.
|
|
64829
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
64830
|
-
* @throws {RequiredError}
|
|
64831
|
-
*/
|
|
64832
|
-
export declare function MetadataSyncApiAxiosParamCreator_MetadataSync(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
64833
|
-
/**
|
|
64834
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
64835
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
64836
|
-
* @param {*} [options] Override http request option.
|
|
64837
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
64838
|
-
* @throws {RequiredError}
|
|
64839
|
-
*/
|
|
64840
|
-
export declare function MetadataSyncApiAxiosParamCreator_MetadataSyncOrganization(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
64841
|
-
/**
|
|
64842
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
64843
|
-
* @summary (BETA) Sync Metadata to other services
|
|
64844
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
64845
|
-
* @param {string} basePath Base path.
|
|
64846
|
-
* @param {MetadataSyncApiMetadataSyncRequest} requestParameters Request parameters.
|
|
64847
|
-
* @param {*} [options] Override http request option.
|
|
64848
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
64849
|
-
* @throws {RequiredError}
|
|
64850
|
-
*/
|
|
64851
|
-
export declare function MetadataSyncApi_MetadataSync(axios: AxiosInstance, basePath: string, requestParameters: MetadataSyncApiMetadataSyncRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
64852
|
-
/**
|
|
64853
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
64854
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
64855
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
64856
|
-
* @param {string} basePath Base path.
|
|
64857
|
-
* @param {*} [options] Override http request option.
|
|
64858
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
64859
|
-
* @throws {RequiredError}
|
|
64860
|
-
*/
|
|
64861
|
-
export declare function MetadataSyncApi_MetadataSyncOrganization(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
64862
|
-
/**
|
|
64863
|
-
* MetadataSyncApi - interface
|
|
64864
|
-
* @export
|
|
64865
|
-
* @interface MetadataSyncApi
|
|
64866
|
-
*/
|
|
64867
|
-
export interface MetadataSyncApiInterface {
|
|
64868
|
-
/**
|
|
64869
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
64870
|
-
* @summary (BETA) Sync Metadata to other services
|
|
64871
|
-
* @param {MetadataSyncApiMetadataSyncRequest} requestParameters Request parameters.
|
|
64872
|
-
* @param {*} [options] Override http request option.
|
|
64873
|
-
* @throws {RequiredError}
|
|
64874
|
-
* @memberof MetadataSyncApiInterface
|
|
64875
|
-
*/
|
|
64876
|
-
metadataSync(requestParameters: MetadataSyncApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
64877
|
-
/**
|
|
64878
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
64879
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
64880
|
-
* @param {*} [options] Override http request option.
|
|
64881
|
-
* @throws {RequiredError}
|
|
64882
|
-
* @memberof MetadataSyncApiInterface
|
|
64883
|
-
*/
|
|
64884
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
64885
|
-
}
|
|
64886
|
-
/**
|
|
64887
|
-
* Request parameters for metadataSync operation in MetadataSyncApi.
|
|
64888
|
-
* @export
|
|
64889
|
-
* @interface MetadataSyncApiMetadataSyncRequest
|
|
64890
|
-
*/
|
|
64891
|
-
export interface MetadataSyncApiMetadataSyncRequest {
|
|
64892
|
-
/**
|
|
64893
|
-
*
|
|
64894
|
-
* @type {string}
|
|
64895
|
-
* @memberof MetadataSyncApiMetadataSync
|
|
64896
|
-
*/
|
|
64897
|
-
readonly workspaceId: string;
|
|
64898
|
-
}
|
|
64899
|
-
/**
|
|
64900
|
-
* MetadataSyncApi - object-oriented interface
|
|
64901
|
-
* @export
|
|
64902
|
-
* @class MetadataSyncApi
|
|
64903
|
-
* @extends {BaseAPI}
|
|
64904
|
-
*/
|
|
64905
|
-
export declare class MetadataSyncApi extends BaseAPI implements MetadataSyncApiInterface {
|
|
64906
|
-
/**
|
|
64907
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger it in its scope only.
|
|
64908
|
-
* @summary (BETA) Sync Metadata to other services
|
|
64909
|
-
* @param {MetadataSyncApiMetadataSyncRequest} requestParameters Request parameters.
|
|
64910
|
-
* @param {*} [options] Override http request option.
|
|
64911
|
-
* @throws {RequiredError}
|
|
64912
|
-
* @memberof MetadataSyncApi
|
|
64913
|
-
*/
|
|
64914
|
-
metadataSync(requestParameters: MetadataSyncApiMetadataSyncRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
64915
|
-
/**
|
|
64916
|
-
* (BETA) Temporary solution. Later relevant metadata actions will trigger sync in their scope only.
|
|
64917
|
-
* @summary (BETA) Sync organization scope Metadata to other services
|
|
64918
|
-
* @param {*} [options] Override http request option.
|
|
64919
|
-
* @throws {RequiredError}
|
|
64920
|
-
* @memberof MetadataSyncApi
|
|
64921
|
-
*/
|
|
64922
|
-
metadataSyncOrganization(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
64923
|
-
}
|
|
64924
65969
|
/**
|
|
64925
65970
|
*
|
|
64926
65971
|
* @summary Post Metrics
|
|
@@ -72725,6 +73770,123 @@ export declare class ReportingSettingsApi extends BaseAPI implements ReportingSe
|
|
|
72725
73770
|
*/
|
|
72726
73771
|
resolveSettingsWithoutWorkspace(requestParameters: ReportingSettingsApiResolveSettingsWithoutWorkspaceRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedSetting[]>;
|
|
72727
73772
|
}
|
|
73773
|
+
/**
|
|
73774
|
+
* Returns a list of Users who created any object for this workspace
|
|
73775
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
73776
|
+
* @param {string} workspaceId
|
|
73777
|
+
* @param {*} [options] Override http request option.
|
|
73778
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73779
|
+
* @throws {RequiredError}
|
|
73780
|
+
*/
|
|
73781
|
+
export declare function SmartFunctionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
73782
|
+
/**
|
|
73783
|
+
* Returns a list of tags for this workspace
|
|
73784
|
+
* @summary Get Analytics Catalog Tags
|
|
73785
|
+
* @param {string} workspaceId
|
|
73786
|
+
* @param {*} [options] Override http request option.
|
|
73787
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73788
|
+
* @throws {RequiredError}
|
|
73789
|
+
*/
|
|
73790
|
+
export declare function SmartFunctionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
73791
|
+
/**
|
|
73792
|
+
* Returns a list of Users who created any object for this workspace
|
|
73793
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
73794
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
73795
|
+
* @param {string} basePath Base path.
|
|
73796
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
73797
|
+
* @param {*} [options] Override http request option.
|
|
73798
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73799
|
+
* @throws {RequiredError}
|
|
73800
|
+
*/
|
|
73801
|
+
export declare function SmartFunctionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
73802
|
+
/**
|
|
73803
|
+
* Returns a list of tags for this workspace
|
|
73804
|
+
* @summary Get Analytics Catalog Tags
|
|
73805
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
73806
|
+
* @param {string} basePath Base path.
|
|
73807
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
73808
|
+
* @param {*} [options] Override http request option.
|
|
73809
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
73810
|
+
* @throws {RequiredError}
|
|
73811
|
+
*/
|
|
73812
|
+
export declare function SmartFunctionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
|
|
73813
|
+
/**
|
|
73814
|
+
* SmartFunctionsApi - interface
|
|
73815
|
+
* @export
|
|
73816
|
+
* @interface SmartFunctionsApi
|
|
73817
|
+
*/
|
|
73818
|
+
export interface SmartFunctionsApiInterface {
|
|
73819
|
+
/**
|
|
73820
|
+
* Returns a list of Users who created any object for this workspace
|
|
73821
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
73822
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
73823
|
+
* @param {*} [options] Override http request option.
|
|
73824
|
+
* @throws {RequiredError}
|
|
73825
|
+
* @memberof SmartFunctionsApiInterface
|
|
73826
|
+
*/
|
|
73827
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
73828
|
+
/**
|
|
73829
|
+
* Returns a list of tags for this workspace
|
|
73830
|
+
* @summary Get Analytics Catalog Tags
|
|
73831
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
73832
|
+
* @param {*} [options] Override http request option.
|
|
73833
|
+
* @throws {RequiredError}
|
|
73834
|
+
* @memberof SmartFunctionsApiInterface
|
|
73835
|
+
*/
|
|
73836
|
+
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
73837
|
+
}
|
|
73838
|
+
/**
|
|
73839
|
+
* Request parameters for createdBy operation in SmartFunctionsApi.
|
|
73840
|
+
* @export
|
|
73841
|
+
* @interface SmartFunctionsApiCreatedByRequest
|
|
73842
|
+
*/
|
|
73843
|
+
export interface SmartFunctionsApiCreatedByRequest {
|
|
73844
|
+
/**
|
|
73845
|
+
*
|
|
73846
|
+
* @type {string}
|
|
73847
|
+
* @memberof SmartFunctionsApiCreatedBy
|
|
73848
|
+
*/
|
|
73849
|
+
readonly workspaceId: string;
|
|
73850
|
+
}
|
|
73851
|
+
/**
|
|
73852
|
+
* Request parameters for tags operation in SmartFunctionsApi.
|
|
73853
|
+
* @export
|
|
73854
|
+
* @interface SmartFunctionsApiTagsRequest
|
|
73855
|
+
*/
|
|
73856
|
+
export interface SmartFunctionsApiTagsRequest {
|
|
73857
|
+
/**
|
|
73858
|
+
*
|
|
73859
|
+
* @type {string}
|
|
73860
|
+
* @memberof SmartFunctionsApiTags
|
|
73861
|
+
*/
|
|
73862
|
+
readonly workspaceId: string;
|
|
73863
|
+
}
|
|
73864
|
+
/**
|
|
73865
|
+
* SmartFunctionsApi - object-oriented interface
|
|
73866
|
+
* @export
|
|
73867
|
+
* @class SmartFunctionsApi
|
|
73868
|
+
* @extends {BaseAPI}
|
|
73869
|
+
*/
|
|
73870
|
+
export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctionsApiInterface {
|
|
73871
|
+
/**
|
|
73872
|
+
* Returns a list of Users who created any object for this workspace
|
|
73873
|
+
* @summary Get Analytics Catalog CreatedBy Users
|
|
73874
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
73875
|
+
* @param {*} [options] Override http request option.
|
|
73876
|
+
* @throws {RequiredError}
|
|
73877
|
+
* @memberof SmartFunctionsApi
|
|
73878
|
+
*/
|
|
73879
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
73880
|
+
/**
|
|
73881
|
+
* Returns a list of tags for this workspace
|
|
73882
|
+
* @summary Get Analytics Catalog Tags
|
|
73883
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
73884
|
+
* @param {*} [options] Override http request option.
|
|
73885
|
+
* @throws {RequiredError}
|
|
73886
|
+
* @memberof SmartFunctionsApi
|
|
73887
|
+
*/
|
|
73888
|
+
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
73889
|
+
}
|
|
72728
73890
|
/**
|
|
72729
73891
|
*
|
|
72730
73892
|
* @summary Post Theming
|
|
@@ -81027,6 +82189,467 @@ export declare class WorkspaceDataFilterSettingControllerApi extends BaseAPI imp
|
|
|
81027
82189
|
*/
|
|
81028
82190
|
updateEntityWorkspaceDataFilterSettings(requestParameters: WorkspaceDataFilterSettingControllerApiUpdateEntityWorkspaceDataFilterSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceDataFilterSettingOutDocument>;
|
|
81029
82191
|
}
|
|
82192
|
+
/**
|
|
82193
|
+
*
|
|
82194
|
+
* @summary Post Workspace Export Template
|
|
82195
|
+
* @param {string} workspaceId
|
|
82196
|
+
* @param {JsonApiWorkspaceExportTemplatePostOptionalIdDocument} jsonApiWorkspaceExportTemplatePostOptionalIdDocument
|
|
82197
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82198
|
+
* @param {*} [options] Override http request option.
|
|
82199
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82200
|
+
* @throws {RequiredError}
|
|
82201
|
+
*/
|
|
82202
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_CreateEntityWorkspaceExportTemplates(workspaceId: string, jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82203
|
+
/**
|
|
82204
|
+
*
|
|
82205
|
+
* @summary Delete a Workspace Export Template
|
|
82206
|
+
* @param {string} workspaceId
|
|
82207
|
+
* @param {string} objectId
|
|
82208
|
+
* @param {*} [options] Override http request option.
|
|
82209
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82210
|
+
* @throws {RequiredError}
|
|
82211
|
+
*/
|
|
82212
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_DeleteEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82213
|
+
/**
|
|
82214
|
+
*
|
|
82215
|
+
* @summary Get all Workspace Export Templates
|
|
82216
|
+
* @param {string} workspaceId
|
|
82217
|
+
* @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
|
|
82218
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82219
|
+
* @param {number} [page] Zero-based page index (0..N)
|
|
82220
|
+
* @param {number} [size] The size of the page to be returned
|
|
82221
|
+
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82222
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
82223
|
+
* @param {Array<'origin' | 'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82224
|
+
* @param {*} [options] Override http request option.
|
|
82225
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82226
|
+
* @throws {RequiredError}
|
|
82227
|
+
*/
|
|
82228
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_GetAllEntitiesWorkspaceExportTemplates(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82229
|
+
/**
|
|
82230
|
+
*
|
|
82231
|
+
* @summary Get a Workspace Export Template
|
|
82232
|
+
* @param {string} workspaceId
|
|
82233
|
+
* @param {string} objectId
|
|
82234
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82235
|
+
* @param {boolean} [xGDCVALIDATERELATIONS]
|
|
82236
|
+
* @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
82237
|
+
* @param {*} [options] Override http request option.
|
|
82238
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82239
|
+
* @throws {RequiredError}
|
|
82240
|
+
*/
|
|
82241
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_GetEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, filter?: string, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82242
|
+
/**
|
|
82243
|
+
*
|
|
82244
|
+
* @summary Patch a Workspace Export Template
|
|
82245
|
+
* @param {string} workspaceId
|
|
82246
|
+
* @param {string} objectId
|
|
82247
|
+
* @param {JsonApiWorkspaceExportTemplatePatchDocument} jsonApiWorkspaceExportTemplatePatchDocument
|
|
82248
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82249
|
+
* @param {*} [options] Override http request option.
|
|
82250
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82251
|
+
* @throws {RequiredError}
|
|
82252
|
+
*/
|
|
82253
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_PatchEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82254
|
+
/**
|
|
82255
|
+
*
|
|
82256
|
+
* @summary Put a Workspace Export Template
|
|
82257
|
+
* @param {string} workspaceId
|
|
82258
|
+
* @param {string} objectId
|
|
82259
|
+
* @param {JsonApiWorkspaceExportTemplateInDocument} jsonApiWorkspaceExportTemplateInDocument
|
|
82260
|
+
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82261
|
+
* @param {*} [options] Override http request option.
|
|
82262
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82263
|
+
* @throws {RequiredError}
|
|
82264
|
+
*/
|
|
82265
|
+
export declare function WorkspaceExportTemplateControllerApiAxiosParamCreator_UpdateEntityWorkspaceExportTemplates(workspaceId: string, objectId: string, jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
82266
|
+
/**
|
|
82267
|
+
*
|
|
82268
|
+
* @summary Post Workspace Export Template
|
|
82269
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82270
|
+
* @param {string} basePath Base path.
|
|
82271
|
+
* @param {WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82272
|
+
* @param {*} [options] Override http request option.
|
|
82273
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82274
|
+
* @throws {RequiredError}
|
|
82275
|
+
*/
|
|
82276
|
+
export declare function WorkspaceExportTemplateControllerApi_CreateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82277
|
+
/**
|
|
82278
|
+
*
|
|
82279
|
+
* @summary Delete a Workspace Export Template
|
|
82280
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82281
|
+
* @param {string} basePath Base path.
|
|
82282
|
+
* @param {WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82283
|
+
* @param {*} [options] Override http request option.
|
|
82284
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82285
|
+
* @throws {RequiredError}
|
|
82286
|
+
*/
|
|
82287
|
+
export declare function WorkspaceExportTemplateControllerApi_DeleteEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
82288
|
+
/**
|
|
82289
|
+
*
|
|
82290
|
+
* @summary Get all Workspace Export Templates
|
|
82291
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82292
|
+
* @param {string} basePath Base path.
|
|
82293
|
+
* @param {WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82294
|
+
* @param {*} [options] Override http request option.
|
|
82295
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82296
|
+
* @throws {RequiredError}
|
|
82297
|
+
*/
|
|
82298
|
+
export declare function WorkspaceExportTemplateControllerApi_GetAllEntitiesWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
82299
|
+
/**
|
|
82300
|
+
*
|
|
82301
|
+
* @summary Get a Workspace Export Template
|
|
82302
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82303
|
+
* @param {string} basePath Base path.
|
|
82304
|
+
* @param {WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82305
|
+
* @param {*} [options] Override http request option.
|
|
82306
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82307
|
+
* @throws {RequiredError}
|
|
82308
|
+
*/
|
|
82309
|
+
export declare function WorkspaceExportTemplateControllerApi_GetEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82310
|
+
/**
|
|
82311
|
+
*
|
|
82312
|
+
* @summary Patch a Workspace Export Template
|
|
82313
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82314
|
+
* @param {string} basePath Base path.
|
|
82315
|
+
* @param {WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82316
|
+
* @param {*} [options] Override http request option.
|
|
82317
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82318
|
+
* @throws {RequiredError}
|
|
82319
|
+
*/
|
|
82320
|
+
export declare function WorkspaceExportTemplateControllerApi_PatchEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82321
|
+
/**
|
|
82322
|
+
*
|
|
82323
|
+
* @summary Put a Workspace Export Template
|
|
82324
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
82325
|
+
* @param {string} basePath Base path.
|
|
82326
|
+
* @param {WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82327
|
+
* @param {*} [options] Override http request option.
|
|
82328
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
82329
|
+
* @throws {RequiredError}
|
|
82330
|
+
*/
|
|
82331
|
+
export declare function WorkspaceExportTemplateControllerApi_UpdateEntityWorkspaceExportTemplates(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82332
|
+
/**
|
|
82333
|
+
* WorkspaceExportTemplateControllerApi - interface
|
|
82334
|
+
* @export
|
|
82335
|
+
* @interface WorkspaceExportTemplateControllerApi
|
|
82336
|
+
*/
|
|
82337
|
+
export interface WorkspaceExportTemplateControllerApiInterface {
|
|
82338
|
+
/**
|
|
82339
|
+
*
|
|
82340
|
+
* @summary Post Workspace Export Template
|
|
82341
|
+
* @param {WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82342
|
+
* @param {*} [options] Override http request option.
|
|
82343
|
+
* @throws {RequiredError}
|
|
82344
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82345
|
+
*/
|
|
82346
|
+
createEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82347
|
+
/**
|
|
82348
|
+
*
|
|
82349
|
+
* @summary Delete a Workspace Export Template
|
|
82350
|
+
* @param {WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82351
|
+
* @param {*} [options] Override http request option.
|
|
82352
|
+
* @throws {RequiredError}
|
|
82353
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82354
|
+
*/
|
|
82355
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
82356
|
+
/**
|
|
82357
|
+
*
|
|
82358
|
+
* @summary Get all Workspace Export Templates
|
|
82359
|
+
* @param {WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82360
|
+
* @param {*} [options] Override http request option.
|
|
82361
|
+
* @throws {RequiredError}
|
|
82362
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82363
|
+
*/
|
|
82364
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
82365
|
+
/**
|
|
82366
|
+
*
|
|
82367
|
+
* @summary Get a Workspace Export Template
|
|
82368
|
+
* @param {WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82369
|
+
* @param {*} [options] Override http request option.
|
|
82370
|
+
* @throws {RequiredError}
|
|
82371
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82372
|
+
*/
|
|
82373
|
+
getEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82374
|
+
/**
|
|
82375
|
+
*
|
|
82376
|
+
* @summary Patch a Workspace Export Template
|
|
82377
|
+
* @param {WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82378
|
+
* @param {*} [options] Override http request option.
|
|
82379
|
+
* @throws {RequiredError}
|
|
82380
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82381
|
+
*/
|
|
82382
|
+
patchEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82383
|
+
/**
|
|
82384
|
+
*
|
|
82385
|
+
* @summary Put a Workspace Export Template
|
|
82386
|
+
* @param {WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82387
|
+
* @param {*} [options] Override http request option.
|
|
82388
|
+
* @throws {RequiredError}
|
|
82389
|
+
* @memberof WorkspaceExportTemplateControllerApiInterface
|
|
82390
|
+
*/
|
|
82391
|
+
updateEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82392
|
+
}
|
|
82393
|
+
/**
|
|
82394
|
+
* Request parameters for createEntityWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82395
|
+
* @export
|
|
82396
|
+
* @interface WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest
|
|
82397
|
+
*/
|
|
82398
|
+
export interface WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest {
|
|
82399
|
+
/**
|
|
82400
|
+
*
|
|
82401
|
+
* @type {string}
|
|
82402
|
+
* @memberof WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplates
|
|
82403
|
+
*/
|
|
82404
|
+
readonly workspaceId: string;
|
|
82405
|
+
/**
|
|
82406
|
+
*
|
|
82407
|
+
* @type {JsonApiWorkspaceExportTemplatePostOptionalIdDocument}
|
|
82408
|
+
* @memberof WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplates
|
|
82409
|
+
*/
|
|
82410
|
+
readonly jsonApiWorkspaceExportTemplatePostOptionalIdDocument: JsonApiWorkspaceExportTemplatePostOptionalIdDocument;
|
|
82411
|
+
/**
|
|
82412
|
+
* Include Meta objects.
|
|
82413
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
82414
|
+
* @memberof WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplates
|
|
82415
|
+
*/
|
|
82416
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
82417
|
+
}
|
|
82418
|
+
/**
|
|
82419
|
+
* Request parameters for deleteEntityWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82420
|
+
* @export
|
|
82421
|
+
* @interface WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest
|
|
82422
|
+
*/
|
|
82423
|
+
export interface WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest {
|
|
82424
|
+
/**
|
|
82425
|
+
*
|
|
82426
|
+
* @type {string}
|
|
82427
|
+
* @memberof WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplates
|
|
82428
|
+
*/
|
|
82429
|
+
readonly workspaceId: string;
|
|
82430
|
+
/**
|
|
82431
|
+
*
|
|
82432
|
+
* @type {string}
|
|
82433
|
+
* @memberof WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplates
|
|
82434
|
+
*/
|
|
82435
|
+
readonly objectId: string;
|
|
82436
|
+
}
|
|
82437
|
+
/**
|
|
82438
|
+
* Request parameters for getAllEntitiesWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82439
|
+
* @export
|
|
82440
|
+
* @interface WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest
|
|
82441
|
+
*/
|
|
82442
|
+
export interface WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest {
|
|
82443
|
+
/**
|
|
82444
|
+
*
|
|
82445
|
+
* @type {string}
|
|
82446
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82447
|
+
*/
|
|
82448
|
+
readonly workspaceId: string;
|
|
82449
|
+
/**
|
|
82450
|
+
*
|
|
82451
|
+
* @type {'ALL' | 'PARENTS' | 'NATIVE'}
|
|
82452
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82453
|
+
*/
|
|
82454
|
+
readonly origin?: 'ALL' | 'PARENTS' | 'NATIVE';
|
|
82455
|
+
/**
|
|
82456
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82457
|
+
* @type {string}
|
|
82458
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82459
|
+
*/
|
|
82460
|
+
readonly filter?: string;
|
|
82461
|
+
/**
|
|
82462
|
+
* Zero-based page index (0..N)
|
|
82463
|
+
* @type {number}
|
|
82464
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82465
|
+
*/
|
|
82466
|
+
readonly page?: number;
|
|
82467
|
+
/**
|
|
82468
|
+
* The size of the page to be returned
|
|
82469
|
+
* @type {number}
|
|
82470
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82471
|
+
*/
|
|
82472
|
+
readonly size?: number;
|
|
82473
|
+
/**
|
|
82474
|
+
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
82475
|
+
* @type {Array<string>}
|
|
82476
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82477
|
+
*/
|
|
82478
|
+
readonly sort?: Array<string>;
|
|
82479
|
+
/**
|
|
82480
|
+
*
|
|
82481
|
+
* @type {boolean}
|
|
82482
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82483
|
+
*/
|
|
82484
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
82485
|
+
/**
|
|
82486
|
+
* Include Meta objects.
|
|
82487
|
+
* @type {Array<'origin' | 'page' | 'all' | 'ALL'>}
|
|
82488
|
+
* @memberof WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplates
|
|
82489
|
+
*/
|
|
82490
|
+
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
82491
|
+
}
|
|
82492
|
+
/**
|
|
82493
|
+
* Request parameters for getEntityWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82494
|
+
* @export
|
|
82495
|
+
* @interface WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest
|
|
82496
|
+
*/
|
|
82497
|
+
export interface WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest {
|
|
82498
|
+
/**
|
|
82499
|
+
*
|
|
82500
|
+
* @type {string}
|
|
82501
|
+
* @memberof WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplates
|
|
82502
|
+
*/
|
|
82503
|
+
readonly workspaceId: string;
|
|
82504
|
+
/**
|
|
82505
|
+
*
|
|
82506
|
+
* @type {string}
|
|
82507
|
+
* @memberof WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplates
|
|
82508
|
+
*/
|
|
82509
|
+
readonly objectId: string;
|
|
82510
|
+
/**
|
|
82511
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82512
|
+
* @type {string}
|
|
82513
|
+
* @memberof WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplates
|
|
82514
|
+
*/
|
|
82515
|
+
readonly filter?: string;
|
|
82516
|
+
/**
|
|
82517
|
+
*
|
|
82518
|
+
* @type {boolean}
|
|
82519
|
+
* @memberof WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplates
|
|
82520
|
+
*/
|
|
82521
|
+
readonly xGDCVALIDATERELATIONS?: boolean;
|
|
82522
|
+
/**
|
|
82523
|
+
* Include Meta objects.
|
|
82524
|
+
* @type {Array<'origin' | 'all' | 'ALL'>}
|
|
82525
|
+
* @memberof WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplates
|
|
82526
|
+
*/
|
|
82527
|
+
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
82528
|
+
}
|
|
82529
|
+
/**
|
|
82530
|
+
* Request parameters for patchEntityWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82531
|
+
* @export
|
|
82532
|
+
* @interface WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest
|
|
82533
|
+
*/
|
|
82534
|
+
export interface WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest {
|
|
82535
|
+
/**
|
|
82536
|
+
*
|
|
82537
|
+
* @type {string}
|
|
82538
|
+
* @memberof WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplates
|
|
82539
|
+
*/
|
|
82540
|
+
readonly workspaceId: string;
|
|
82541
|
+
/**
|
|
82542
|
+
*
|
|
82543
|
+
* @type {string}
|
|
82544
|
+
* @memberof WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplates
|
|
82545
|
+
*/
|
|
82546
|
+
readonly objectId: string;
|
|
82547
|
+
/**
|
|
82548
|
+
*
|
|
82549
|
+
* @type {JsonApiWorkspaceExportTemplatePatchDocument}
|
|
82550
|
+
* @memberof WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplates
|
|
82551
|
+
*/
|
|
82552
|
+
readonly jsonApiWorkspaceExportTemplatePatchDocument: JsonApiWorkspaceExportTemplatePatchDocument;
|
|
82553
|
+
/**
|
|
82554
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82555
|
+
* @type {string}
|
|
82556
|
+
* @memberof WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplates
|
|
82557
|
+
*/
|
|
82558
|
+
readonly filter?: string;
|
|
82559
|
+
}
|
|
82560
|
+
/**
|
|
82561
|
+
* Request parameters for updateEntityWorkspaceExportTemplates operation in WorkspaceExportTemplateControllerApi.
|
|
82562
|
+
* @export
|
|
82563
|
+
* @interface WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest
|
|
82564
|
+
*/
|
|
82565
|
+
export interface WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest {
|
|
82566
|
+
/**
|
|
82567
|
+
*
|
|
82568
|
+
* @type {string}
|
|
82569
|
+
* @memberof WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplates
|
|
82570
|
+
*/
|
|
82571
|
+
readonly workspaceId: string;
|
|
82572
|
+
/**
|
|
82573
|
+
*
|
|
82574
|
+
* @type {string}
|
|
82575
|
+
* @memberof WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplates
|
|
82576
|
+
*/
|
|
82577
|
+
readonly objectId: string;
|
|
82578
|
+
/**
|
|
82579
|
+
*
|
|
82580
|
+
* @type {JsonApiWorkspaceExportTemplateInDocument}
|
|
82581
|
+
* @memberof WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplates
|
|
82582
|
+
*/
|
|
82583
|
+
readonly jsonApiWorkspaceExportTemplateInDocument: JsonApiWorkspaceExportTemplateInDocument;
|
|
82584
|
+
/**
|
|
82585
|
+
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
82586
|
+
* @type {string}
|
|
82587
|
+
* @memberof WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplates
|
|
82588
|
+
*/
|
|
82589
|
+
readonly filter?: string;
|
|
82590
|
+
}
|
|
82591
|
+
/**
|
|
82592
|
+
* WorkspaceExportTemplateControllerApi - object-oriented interface
|
|
82593
|
+
* @export
|
|
82594
|
+
* @class WorkspaceExportTemplateControllerApi
|
|
82595
|
+
* @extends {BaseAPI}
|
|
82596
|
+
*/
|
|
82597
|
+
export declare class WorkspaceExportTemplateControllerApi extends BaseAPI implements WorkspaceExportTemplateControllerApiInterface {
|
|
82598
|
+
/**
|
|
82599
|
+
*
|
|
82600
|
+
* @summary Post Workspace Export Template
|
|
82601
|
+
* @param {WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82602
|
+
* @param {*} [options] Override http request option.
|
|
82603
|
+
* @throws {RequiredError}
|
|
82604
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82605
|
+
*/
|
|
82606
|
+
createEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiCreateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82607
|
+
/**
|
|
82608
|
+
*
|
|
82609
|
+
* @summary Delete a Workspace Export Template
|
|
82610
|
+
* @param {WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82611
|
+
* @param {*} [options] Override http request option.
|
|
82612
|
+
* @throws {RequiredError}
|
|
82613
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82614
|
+
*/
|
|
82615
|
+
deleteEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiDeleteEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
82616
|
+
/**
|
|
82617
|
+
*
|
|
82618
|
+
* @summary Get all Workspace Export Templates
|
|
82619
|
+
* @param {WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82620
|
+
* @param {*} [options] Override http request option.
|
|
82621
|
+
* @throws {RequiredError}
|
|
82622
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82623
|
+
*/
|
|
82624
|
+
getAllEntitiesWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiGetAllEntitiesWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutList>;
|
|
82625
|
+
/**
|
|
82626
|
+
*
|
|
82627
|
+
* @summary Get a Workspace Export Template
|
|
82628
|
+
* @param {WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82629
|
+
* @param {*} [options] Override http request option.
|
|
82630
|
+
* @throws {RequiredError}
|
|
82631
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82632
|
+
*/
|
|
82633
|
+
getEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiGetEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82634
|
+
/**
|
|
82635
|
+
*
|
|
82636
|
+
* @summary Patch a Workspace Export Template
|
|
82637
|
+
* @param {WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82638
|
+
* @param {*} [options] Override http request option.
|
|
82639
|
+
* @throws {RequiredError}
|
|
82640
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82641
|
+
*/
|
|
82642
|
+
patchEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiPatchEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82643
|
+
/**
|
|
82644
|
+
*
|
|
82645
|
+
* @summary Put a Workspace Export Template
|
|
82646
|
+
* @param {WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest} requestParameters Request parameters.
|
|
82647
|
+
* @param {*} [options] Override http request option.
|
|
82648
|
+
* @throws {RequiredError}
|
|
82649
|
+
* @memberof WorkspaceExportTemplateControllerApi
|
|
82650
|
+
*/
|
|
82651
|
+
updateEntityWorkspaceExportTemplates(requestParameters: WorkspaceExportTemplateControllerApiUpdateEntityWorkspaceExportTemplatesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceExportTemplateOutDocument>;
|
|
82652
|
+
}
|
|
81030
82653
|
/**
|
|
81031
82654
|
*
|
|
81032
82655
|
* @summary Post Settings for Workspaces
|