@gooddata/api-client-tiger 10.28.0-alpha.7 → 10.28.0-alpha.71

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.
Files changed (32) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.d.ts.map +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/__version.js.map +1 -1
  5. package/esm/api-client-tiger.d.ts +1458 -884
  6. package/esm/generated/afm-rest-api/api.d.ts +129 -0
  7. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  8. package/esm/generated/afm-rest-api/api.js +136 -0
  9. package/esm/generated/afm-rest-api/api.js.map +1 -1
  10. package/esm/generated/afm-rest-api/openapi-spec.json +48 -0
  11. package/esm/generated/automation-json-api/api.d.ts +84 -0
  12. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  13. package/esm/generated/automation-json-api/api.js +3 -0
  14. package/esm/generated/automation-json-api/api.js.map +1 -1
  15. package/esm/generated/automation-json-api/openapi-spec.json +69 -0
  16. package/esm/generated/export-json-api/api.d.ts +278 -11
  17. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  18. package/esm/generated/export-json-api/api.js +54 -0
  19. package/esm/generated/export-json-api/api.js.map +1 -1
  20. package/esm/generated/export-json-api/openapi-spec.json +215 -102
  21. package/esm/generated/metadata-json-api/api.d.ts +936 -857
  22. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  23. package/esm/generated/metadata-json-api/api.js +31 -22
  24. package/esm/generated/metadata-json-api/api.js.map +1 -1
  25. package/esm/generated/metadata-json-api/openapi-spec.json +8343 -8256
  26. package/esm/index.d.ts +2 -2
  27. package/esm/index.d.ts.map +1 -1
  28. package/esm/index.js.map +1 -1
  29. package/esm/metadataUtilities.d.ts +2 -1
  30. package/esm/metadataUtilities.d.ts.map +1 -1
  31. package/esm/metadataUtilities.js.map +1 -1
  32. package/package.json +4 -3
@@ -2064,7 +2064,41 @@
2064
2064
  "description": "Export request object describing the export properties and metadata for image exports."
2065
2065
  },
2066
2066
  "AttributeElements": {
2067
- "type": "object"
2067
+ "type": "object",
2068
+ "oneOf": [
2069
+ {
2070
+ "$ref": "#/components/schemas/AttributeElementsByRef"
2071
+ },
2072
+ {
2073
+ "$ref": "#/components/schemas/AttributeElementsByValue"
2074
+ }
2075
+ ]
2076
+ },
2077
+ "AttributeElementsByRef": {
2078
+ "required": ["uris"],
2079
+ "type": "object",
2080
+ "properties": {
2081
+ "uris": {
2082
+ "type": "array",
2083
+ "description": "List of attribute elements by reference",
2084
+ "items": {
2085
+ "type": "string"
2086
+ }
2087
+ }
2088
+ }
2089
+ },
2090
+ "AttributeElementsByValue": {
2091
+ "required": ["values"],
2092
+ "type": "object",
2093
+ "properties": {
2094
+ "values": {
2095
+ "type": "array",
2096
+ "description": "List of attribute elements by value",
2097
+ "items": {
2098
+ "type": "string"
2099
+ }
2100
+ }
2101
+ }
2068
2102
  },
2069
2103
  "AttributeFilterByDate": {
2070
2104
  "required": ["filterLocalIdentifier", "isCommonDate"],
@@ -2097,50 +2131,45 @@
2097
2131
  "attributeFilter": {
2098
2132
  "required": ["attributeElements", "displayForm", "negativeSelection"],
2099
2133
  "type": "object",
2100
- "allOf": [
2101
- {
2102
- "$ref": "#/components/schemas/DashboardFilter"
2134
+ "properties": {
2135
+ "displayForm": {
2136
+ "$ref": "#/components/schemas/IdentifierRef"
2103
2137
  },
2104
- {
2105
- "type": "object",
2106
- "properties": {
2107
- "displayForm": {
2108
- "type": "string"
2109
- },
2110
- "negativeSelection": {
2111
- "type": "boolean"
2112
- },
2113
- "attributeElements": {
2114
- "$ref": "#/components/schemas/AttributeElements"
2115
- },
2116
- "filterElementsBy": {
2117
- "type": "array",
2118
- "items": {
2119
- "$ref": "#/components/schemas/AttributeFilterParent"
2120
- }
2121
- },
2122
- "filterElementsByDate": {
2123
- "type": "array",
2124
- "items": {
2125
- "$ref": "#/components/schemas/AttributeFilterByDate"
2126
- }
2127
- },
2128
- "validateElementsBy": {
2129
- "type": "array",
2130
- "items": {
2131
- "type": "string"
2132
- }
2133
- },
2134
- "title": {
2135
- "type": "string"
2136
- },
2137
- "selectionMode": {
2138
- "type": "string",
2139
- "enum": ["single", "multi"]
2140
- }
2138
+ "negativeSelection": {
2139
+ "type": "boolean"
2140
+ },
2141
+ "attributeElements": {
2142
+ "$ref": "#/components/schemas/AttributeElements"
2143
+ },
2144
+ "filterElementsBy": {
2145
+ "type": "array",
2146
+ "items": {
2147
+ "$ref": "#/components/schemas/AttributeFilterParent"
2141
2148
  }
2149
+ },
2150
+ "filterElementsByDate": {
2151
+ "type": "array",
2152
+ "items": {
2153
+ "$ref": "#/components/schemas/AttributeFilterByDate"
2154
+ }
2155
+ },
2156
+ "validateElementsBy": {
2157
+ "type": "array",
2158
+ "items": {
2159
+ "$ref": "#/components/schemas/IdentifierRef"
2160
+ }
2161
+ },
2162
+ "title": {
2163
+ "type": "string"
2164
+ },
2165
+ "selectionMode": {
2166
+ "type": "string",
2167
+ "enum": ["single", "multi"]
2168
+ },
2169
+ "localIdentifier": {
2170
+ "type": "string"
2142
2171
  }
2143
- ]
2172
+ }
2144
2173
  }
2145
2174
  }
2146
2175
  },
@@ -2151,70 +2180,102 @@
2151
2180
  "dateFilter": {
2152
2181
  "required": ["granularity", "type"],
2153
2182
  "type": "object",
2154
- "allOf": [
2155
- {
2156
- "$ref": "#/components/schemas/DashboardFilter"
2183
+ "properties": {
2184
+ "type": {
2185
+ "type": "string",
2186
+ "enum": ["relative", "absolute"]
2157
2187
  },
2158
- {
2159
- "type": "object",
2160
- "properties": {
2161
- "type": {
2162
- "type": "string",
2163
- "enum": ["relative", "absolute"]
2164
- },
2165
- "granularity": {
2166
- "type": "string",
2167
- "enum": [
2168
- "ALL_TIME_GRANULARITY",
2169
- "GDC.time.year",
2170
- "GDC.time.week_us",
2171
- "GDC.time.week_in_year",
2172
- "GDC.time.week_in_quarter",
2173
- "GDC.time.week",
2174
- "GDC.time.euweek_in_year",
2175
- "GDC.time.euweek_in_quarter",
2176
- "GDC.time.quarter",
2177
- "GDC.time.quarter_in_year",
2178
- "GDC.time.month",
2179
- "GDC.time.month_in_quarter",
2180
- "GDC.time.month_in_year",
2181
- "GDC.time.day_in_year",
2182
- "GDC.time.day_in_quarter",
2183
- "GDC.time.day_in_month",
2184
- "GDC.time.day_in_week",
2185
- "GDC.time.day_in_euweek",
2186
- "GDC.time.date",
2187
- "GDC.time.hour",
2188
- "GDC.time.hour_in_day",
2189
- "GDC.time.minute",
2190
- "GDC.time.minute_in_hour"
2191
- ]
2192
- },
2193
- "from": {
2194
- "type": "string"
2195
- },
2196
- "to": {
2188
+ "granularity": {
2189
+ "type": "string",
2190
+ "enum": [
2191
+ "ALL_TIME_GRANULARITY",
2192
+ "GDC.time.year",
2193
+ "GDC.time.week_us",
2194
+ "GDC.time.week_in_year",
2195
+ "GDC.time.week_in_quarter",
2196
+ "GDC.time.week",
2197
+ "GDC.time.euweek_in_year",
2198
+ "GDC.time.euweek_in_quarter",
2199
+ "GDC.time.quarter",
2200
+ "GDC.time.quarter_in_year",
2201
+ "GDC.time.month",
2202
+ "GDC.time.month_in_quarter",
2203
+ "GDC.time.month_in_year",
2204
+ "GDC.time.day_in_year",
2205
+ "GDC.time.day_in_quarter",
2206
+ "GDC.time.day_in_month",
2207
+ "GDC.time.day_in_week",
2208
+ "GDC.time.day_in_euweek",
2209
+ "GDC.time.date",
2210
+ "GDC.time.hour",
2211
+ "GDC.time.hour_in_day",
2212
+ "GDC.time.minute",
2213
+ "GDC.time.minute_in_hour"
2214
+ ]
2215
+ },
2216
+ "from": {
2217
+ "oneOf": [
2218
+ {
2197
2219
  "type": "string"
2198
2220
  },
2199
- "dataSet": {
2221
+ {
2222
+ "type": "integer",
2223
+ "format": "int32"
2224
+ }
2225
+ ]
2226
+ },
2227
+ "to": {
2228
+ "oneOf": [
2229
+ {
2200
2230
  "type": "string"
2201
2231
  },
2202
- "attribute": {
2203
- "type": "string"
2232
+ {
2233
+ "type": "integer",
2234
+ "format": "int32"
2204
2235
  }
2205
- }
2236
+ ]
2237
+ },
2238
+ "dataSet": {
2239
+ "$ref": "#/components/schemas/IdentifierRef"
2240
+ },
2241
+ "attribute": {
2242
+ "$ref": "#/components/schemas/IdentifierRef"
2243
+ },
2244
+ "localIdentifier": {
2245
+ "type": "string"
2206
2246
  }
2207
- ]
2247
+ }
2208
2248
  }
2209
2249
  }
2210
2250
  },
2211
- "DashboardFilter": {
2251
+ "DashboardExportSettings": {
2212
2252
  "type": "object",
2213
2253
  "properties": {
2214
- "localIdentifier": {
2215
- "type": "string"
2254
+ "exportInfo": {
2255
+ "type": "boolean",
2256
+ "description": "If true, the export will contain the information about the exported date and dashboard filters.",
2257
+ "example": true,
2258
+ "default": false
2259
+ },
2260
+ "mergeHeaders": {
2261
+ "type": "boolean",
2262
+ "description": "Merge equal headers in neighbouring cells. Used for [XLSX] format only.",
2263
+ "example": true,
2264
+ "default": false
2216
2265
  }
2217
- }
2266
+ },
2267
+ "description": "Additional settings."
2268
+ },
2269
+ "DashboardFilter": {
2270
+ "type": "object",
2271
+ "oneOf": [
2272
+ {
2273
+ "$ref": "#/components/schemas/DashboardAttributeFilter"
2274
+ },
2275
+ {
2276
+ "$ref": "#/components/schemas/DashboardDateFilter"
2277
+ }
2278
+ ]
2218
2279
  },
2219
2280
  "DashboardTabularExportRequest": {
2220
2281
  "required": ["fileName", "format"],
@@ -2235,19 +2296,71 @@
2235
2296
  "type": "array",
2236
2297
  "description": "List of filters that will be used instead of the default dashboard filters.",
2237
2298
  "items": {
2238
- "oneOf": [
2239
- {
2240
- "$ref": "#/components/schemas/DashboardAttributeFilter"
2241
- },
2242
- {
2243
- "$ref": "#/components/schemas/DashboardDateFilter"
2244
- }
2245
- ]
2299
+ "$ref": "#/components/schemas/DashboardFilter"
2246
2300
  }
2301
+ },
2302
+ "widgetIds": {
2303
+ "maxItems": 1,
2304
+ "uniqueItems": true,
2305
+ "type": "array",
2306
+ "description": "List of widget identifiers to be exported. Note that only one widget is currently supported.",
2307
+ "items": {
2308
+ "type": "string"
2309
+ }
2310
+ },
2311
+ "settings": {
2312
+ "$ref": "#/components/schemas/DashboardExportSettings"
2247
2313
  }
2248
2314
  },
2249
2315
  "description": "Export request object describing the export properties for dashboard tabular exports."
2250
2316
  },
2317
+ "DateValue": {
2318
+ "required": ["value"],
2319
+ "type": "object",
2320
+ "properties": {
2321
+ "value": {
2322
+ "type": "string"
2323
+ }
2324
+ }
2325
+ },
2326
+ "IdentifierRef": {
2327
+ "type": "object",
2328
+ "properties": {
2329
+ "identifier": {
2330
+ "required": ["id", "type"],
2331
+ "type": "object",
2332
+ "properties": {
2333
+ "id": {
2334
+ "type": "string"
2335
+ },
2336
+ "type": {
2337
+ "type": "string",
2338
+ "enum": [
2339
+ "analyticalDashboard",
2340
+ "attribute",
2341
+ "attributeHierarchy",
2342
+ "dashboardPlugin",
2343
+ "dataset",
2344
+ "fact",
2345
+ "label",
2346
+ "metric",
2347
+ "userDataFilter",
2348
+ "exportDefinition",
2349
+ "automation",
2350
+ "prompt",
2351
+ "visualizationObject",
2352
+ "filterContext",
2353
+ "workspaceSettings",
2354
+ "customApplicationSetting",
2355
+ "workspaceDataFilter",
2356
+ "workspaceDataFilterSetting",
2357
+ "filterView"
2358
+ ]
2359
+ }
2360
+ }
2361
+ }
2362
+ }
2363
+ },
2251
2364
  "Over": {
2252
2365
  "required": ["attributes"],
2253
2366
  "type": "object",
@@ -2255,7 +2368,7 @@
2255
2368
  "attributes": {
2256
2369
  "type": "array",
2257
2370
  "items": {
2258
- "type": "string"
2371
+ "$ref": "#/components/schemas/IdentifierRef"
2259
2372
  }
2260
2373
  }
2261
2374
  }