@gooddata/sdk-code-schemas 11.56.0-alpha.6 → 11.56.0-alpha.7
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/sdk-code-schemas.d.ts +340 -47
- package/esm/v1/metadata.d.ts +163 -39
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +208 -32
- package/esm/v1/schema.d.ts +131 -8
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
package/esm/v1/schema.d.ts
CHANGED
|
@@ -383,10 +383,41 @@ export declare const metadata_v1: {
|
|
|
383
383
|
type: string;
|
|
384
384
|
};
|
|
385
385
|
};
|
|
386
|
-
|
|
386
|
+
format: {
|
|
387
|
+
type: string;
|
|
388
|
+
description: string;
|
|
389
|
+
};
|
|
390
|
+
metric_type: {
|
|
391
|
+
type: string;
|
|
392
|
+
enum: string[];
|
|
393
|
+
description: string;
|
|
394
|
+
};
|
|
395
|
+
data_type: {
|
|
396
|
+
type: string;
|
|
397
|
+
enum: string[];
|
|
398
|
+
description: string;
|
|
399
|
+
};
|
|
400
|
+
value_type: {
|
|
401
|
+
type: string;
|
|
402
|
+
enum: string[];
|
|
403
|
+
description: string;
|
|
404
|
+
};
|
|
405
|
+
is_nullable: {
|
|
406
|
+
type: string;
|
|
407
|
+
description: string;
|
|
408
|
+
};
|
|
409
|
+
null_value_join_replacement: {
|
|
410
|
+
type: string;
|
|
411
|
+
description: string;
|
|
412
|
+
};
|
|
413
|
+
show_in_ai_results: {
|
|
387
414
|
type: string;
|
|
388
415
|
description: string;
|
|
389
416
|
};
|
|
417
|
+
locale: {
|
|
418
|
+
$ref: string;
|
|
419
|
+
description: string;
|
|
420
|
+
};
|
|
390
421
|
};
|
|
391
422
|
$semantic: {
|
|
392
423
|
type: string;
|
|
@@ -1924,6 +1955,12 @@ export declare const metadata_v1: {
|
|
|
1924
1955
|
typePrefix: boolean;
|
|
1925
1956
|
};
|
|
1926
1957
|
};
|
|
1958
|
+
locale: {
|
|
1959
|
+
title: string;
|
|
1960
|
+
type: string;
|
|
1961
|
+
pattern: string;
|
|
1962
|
+
description: string;
|
|
1963
|
+
};
|
|
1927
1964
|
dashboardFilters: {
|
|
1928
1965
|
title: string;
|
|
1929
1966
|
type: string;
|
|
@@ -2030,6 +2067,17 @@ export declare const metadata_v1: {
|
|
|
2030
2067
|
typePrefix: boolean;
|
|
2031
2068
|
};
|
|
2032
2069
|
};
|
|
2070
|
+
computedAttributeIdentifier: {
|
|
2071
|
+
title: string;
|
|
2072
|
+
description: string;
|
|
2073
|
+
type: string;
|
|
2074
|
+
pattern: string;
|
|
2075
|
+
$semantic: {
|
|
2076
|
+
type: string;
|
|
2077
|
+
source: string;
|
|
2078
|
+
typePrefix: boolean;
|
|
2079
|
+
};
|
|
2080
|
+
};
|
|
2033
2081
|
queryFilters: {
|
|
2034
2082
|
title: string;
|
|
2035
2083
|
type: string;
|
|
@@ -2877,6 +2925,17 @@ export declare const metadata_v1: {
|
|
|
2877
2925
|
typePrefix: boolean;
|
|
2878
2926
|
};
|
|
2879
2927
|
};
|
|
2928
|
+
computedAttributeIdentifier: {
|
|
2929
|
+
title: string;
|
|
2930
|
+
description: string;
|
|
2931
|
+
type: string;
|
|
2932
|
+
pattern: string;
|
|
2933
|
+
$semantic: {
|
|
2934
|
+
type: string;
|
|
2935
|
+
source: string;
|
|
2936
|
+
typePrefix: boolean;
|
|
2937
|
+
};
|
|
2938
|
+
};
|
|
2880
2939
|
displayAsLabelIdentifier: {
|
|
2881
2940
|
title: string;
|
|
2882
2941
|
description: string;
|
|
@@ -3694,7 +3753,9 @@ export declare const metadata_v1: {
|
|
|
3694
3753
|
type: string;
|
|
3695
3754
|
description: string;
|
|
3696
3755
|
items: {
|
|
3697
|
-
|
|
3756
|
+
oneOf: {
|
|
3757
|
+
$ref: string;
|
|
3758
|
+
}[];
|
|
3698
3759
|
};
|
|
3699
3760
|
};
|
|
3700
3761
|
null_values_as_zero: {
|
|
@@ -4687,10 +4748,41 @@ export declare const metadata_v1: {
|
|
|
4687
4748
|
type: string;
|
|
4688
4749
|
};
|
|
4689
4750
|
};
|
|
4690
|
-
|
|
4751
|
+
format: {
|
|
4752
|
+
type: string;
|
|
4753
|
+
description: string;
|
|
4754
|
+
};
|
|
4755
|
+
metric_type: {
|
|
4756
|
+
type: string;
|
|
4757
|
+
enum: string[];
|
|
4758
|
+
description: string;
|
|
4759
|
+
};
|
|
4760
|
+
data_type: {
|
|
4761
|
+
type: string;
|
|
4762
|
+
enum: string[];
|
|
4763
|
+
description: string;
|
|
4764
|
+
};
|
|
4765
|
+
value_type: {
|
|
4766
|
+
type: string;
|
|
4767
|
+
enum: string[];
|
|
4768
|
+
description: string;
|
|
4769
|
+
};
|
|
4770
|
+
is_nullable: {
|
|
4771
|
+
type: string;
|
|
4772
|
+
description: string;
|
|
4773
|
+
};
|
|
4774
|
+
null_value_join_replacement: {
|
|
4775
|
+
type: string;
|
|
4776
|
+
description: string;
|
|
4777
|
+
};
|
|
4778
|
+
show_in_ai_results: {
|
|
4691
4779
|
type: string;
|
|
4692
4780
|
description: string;
|
|
4693
4781
|
};
|
|
4782
|
+
locale: {
|
|
4783
|
+
$ref: string;
|
|
4784
|
+
description: string;
|
|
4785
|
+
};
|
|
4694
4786
|
};
|
|
4695
4787
|
$semantic: {
|
|
4696
4788
|
type: string;
|
|
@@ -6346,11 +6438,6 @@ export declare const metadata_v1: {
|
|
|
6346
6438
|
code: string;
|
|
6347
6439
|
};
|
|
6348
6440
|
};
|
|
6349
|
-
locale: {
|
|
6350
|
-
type: string;
|
|
6351
|
-
pattern: string;
|
|
6352
|
-
description: string;
|
|
6353
|
-
};
|
|
6354
6441
|
label: {
|
|
6355
6442
|
title: string;
|
|
6356
6443
|
type: string;
|
|
@@ -6672,6 +6759,42 @@ export declare const metadata_v1: {
|
|
|
6672
6759
|
type: string;
|
|
6673
6760
|
};
|
|
6674
6761
|
};
|
|
6762
|
+
numberParameterDefinition: {
|
|
6763
|
+
title: string;
|
|
6764
|
+
description: string;
|
|
6765
|
+
type: string;
|
|
6766
|
+
additionalProperties: boolean;
|
|
6767
|
+
properties: {
|
|
6768
|
+
type: {
|
|
6769
|
+
type: string;
|
|
6770
|
+
enum: string[];
|
|
6771
|
+
};
|
|
6772
|
+
defaultValue: {
|
|
6773
|
+
type: string;
|
|
6774
|
+
description: string;
|
|
6775
|
+
};
|
|
6776
|
+
constraints: {
|
|
6777
|
+
title: string;
|
|
6778
|
+
type: string;
|
|
6779
|
+
additionalProperties: boolean;
|
|
6780
|
+
description: string;
|
|
6781
|
+
properties: {
|
|
6782
|
+
min: {
|
|
6783
|
+
type: string;
|
|
6784
|
+
description: string;
|
|
6785
|
+
};
|
|
6786
|
+
max: {
|
|
6787
|
+
type: string;
|
|
6788
|
+
description: string;
|
|
6789
|
+
};
|
|
6790
|
+
};
|
|
6791
|
+
};
|
|
6792
|
+
};
|
|
6793
|
+
required: string[];
|
|
6794
|
+
$semantic: {
|
|
6795
|
+
type: string;
|
|
6796
|
+
};
|
|
6797
|
+
};
|
|
6675
6798
|
parameterAllowedValue: {
|
|
6676
6799
|
title: string;
|
|
6677
6800
|
type: string;
|
package/esm/v1/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/v1/schema.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/v1/schema.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-code-schemas",
|
|
3
|
-
"version": "11.56.0-alpha.
|
|
3
|
+
"version": "11.56.0-alpha.7",
|
|
4
4
|
"description": "GoodData AAC JSON Schema types and compiled schemas",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"readdirp": "4.1.2",
|
|
49
49
|
"typescript": "7.0.2",
|
|
50
50
|
"vitest": "4.1.8",
|
|
51
|
-
"@gooddata/eslint-config": "11.56.0-alpha.
|
|
52
|
-
"@gooddata/oxlint-config": "11.56.0-alpha.
|
|
51
|
+
"@gooddata/eslint-config": "11.56.0-alpha.7",
|
|
52
|
+
"@gooddata/oxlint-config": "11.56.0-alpha.7"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"_phase:build": "npm run build",
|