@gooddata/sdk-code-schemas 11.29.0-alpha.5 → 11.29.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 +567 -59
- package/esm/v1/metadata.d.ts +185 -42
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +325 -4
- package/esm/v1/schema.d.ts +325 -2
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +4 -4
package/esm/v1/schema.d.ts
CHANGED
|
@@ -2991,6 +2991,236 @@ export declare const metadata_v1: {
|
|
|
2991
2991
|
mode: string;
|
|
2992
2992
|
};
|
|
2993
2993
|
};
|
|
2994
|
+
dashboardTextFilter: {
|
|
2995
|
+
type: string;
|
|
2996
|
+
title: string;
|
|
2997
|
+
description: string;
|
|
2998
|
+
additionalProperties: boolean;
|
|
2999
|
+
properties: {
|
|
3000
|
+
title: {
|
|
3001
|
+
type: string;
|
|
3002
|
+
description: string;
|
|
3003
|
+
};
|
|
3004
|
+
using: {
|
|
3005
|
+
description: string;
|
|
3006
|
+
oneOf: {
|
|
3007
|
+
$ref: string;
|
|
3008
|
+
}[];
|
|
3009
|
+
$semantic: {
|
|
3010
|
+
type: string;
|
|
3011
|
+
};
|
|
3012
|
+
};
|
|
3013
|
+
case_sensitive: {
|
|
3014
|
+
type: string;
|
|
3015
|
+
};
|
|
3016
|
+
display_as: {
|
|
3017
|
+
type: string;
|
|
3018
|
+
description: string;
|
|
3019
|
+
$ref: string;
|
|
3020
|
+
};
|
|
3021
|
+
mode: {
|
|
3022
|
+
type: string;
|
|
3023
|
+
enum: string[];
|
|
3024
|
+
description: string;
|
|
3025
|
+
};
|
|
3026
|
+
parents: {
|
|
3027
|
+
type: string;
|
|
3028
|
+
description: string;
|
|
3029
|
+
uniqueItems: boolean;
|
|
3030
|
+
items: {
|
|
3031
|
+
oneOf: ({
|
|
3032
|
+
properties?: undefined;
|
|
3033
|
+
required?: undefined;
|
|
3034
|
+
type: string;
|
|
3035
|
+
title: string;
|
|
3036
|
+
description: string;
|
|
3037
|
+
$semantic: {
|
|
3038
|
+
type: string;
|
|
3039
|
+
sources: string[];
|
|
3040
|
+
};
|
|
3041
|
+
} | {
|
|
3042
|
+
$semantic?: undefined;
|
|
3043
|
+
description?: undefined;
|
|
3044
|
+
type: string;
|
|
3045
|
+
title: string;
|
|
3046
|
+
properties: {
|
|
3047
|
+
using: {
|
|
3048
|
+
type: string;
|
|
3049
|
+
description: string;
|
|
3050
|
+
$semantic: {
|
|
3051
|
+
type: string;
|
|
3052
|
+
source: string;
|
|
3053
|
+
};
|
|
3054
|
+
};
|
|
3055
|
+
common: {
|
|
3056
|
+
type: string;
|
|
3057
|
+
description: string;
|
|
3058
|
+
};
|
|
3059
|
+
};
|
|
3060
|
+
required: string[];
|
|
3061
|
+
})[];
|
|
3062
|
+
};
|
|
3063
|
+
};
|
|
3064
|
+
metric_filters: {
|
|
3065
|
+
type: string;
|
|
3066
|
+
description: string;
|
|
3067
|
+
uniqueItems: boolean;
|
|
3068
|
+
items: {
|
|
3069
|
+
type: string;
|
|
3070
|
+
$semantic: {
|
|
3071
|
+
type: string;
|
|
3072
|
+
sources: string[];
|
|
3073
|
+
typePrefix: boolean;
|
|
3074
|
+
};
|
|
3075
|
+
};
|
|
3076
|
+
};
|
|
3077
|
+
};
|
|
3078
|
+
oneOf: ({
|
|
3079
|
+
properties: {
|
|
3080
|
+
title: {
|
|
3081
|
+
type: string;
|
|
3082
|
+
description: string;
|
|
3083
|
+
};
|
|
3084
|
+
type: {
|
|
3085
|
+
type: string;
|
|
3086
|
+
enum: string[];
|
|
3087
|
+
};
|
|
3088
|
+
using: {
|
|
3089
|
+
description: string;
|
|
3090
|
+
oneOf: {
|
|
3091
|
+
$ref: string;
|
|
3092
|
+
}[];
|
|
3093
|
+
$semantic: {
|
|
3094
|
+
type: string;
|
|
3095
|
+
};
|
|
3096
|
+
};
|
|
3097
|
+
condition: {
|
|
3098
|
+
enum: string[];
|
|
3099
|
+
};
|
|
3100
|
+
values: {
|
|
3101
|
+
type: string;
|
|
3102
|
+
items: {
|
|
3103
|
+
type: string[];
|
|
3104
|
+
};
|
|
3105
|
+
};
|
|
3106
|
+
case_sensitive: {
|
|
3107
|
+
type: string;
|
|
3108
|
+
};
|
|
3109
|
+
display_as: {
|
|
3110
|
+
type: string;
|
|
3111
|
+
description: string;
|
|
3112
|
+
$ref: string;
|
|
3113
|
+
};
|
|
3114
|
+
mode: {
|
|
3115
|
+
type: string;
|
|
3116
|
+
enum: string[];
|
|
3117
|
+
description: string;
|
|
3118
|
+
};
|
|
3119
|
+
parents: {
|
|
3120
|
+
type: string;
|
|
3121
|
+
description: string;
|
|
3122
|
+
uniqueItems: boolean;
|
|
3123
|
+
items: {
|
|
3124
|
+
oneOf: ({
|
|
3125
|
+
properties?: undefined;
|
|
3126
|
+
required?: undefined;
|
|
3127
|
+
type: string;
|
|
3128
|
+
title: string;
|
|
3129
|
+
description: string;
|
|
3130
|
+
$semantic: {
|
|
3131
|
+
type: string;
|
|
3132
|
+
sources: string[];
|
|
3133
|
+
};
|
|
3134
|
+
} | {
|
|
3135
|
+
$semantic?: undefined;
|
|
3136
|
+
description?: undefined;
|
|
3137
|
+
type: string;
|
|
3138
|
+
title: string;
|
|
3139
|
+
properties: {
|
|
3140
|
+
using: {
|
|
3141
|
+
type: string;
|
|
3142
|
+
description: string;
|
|
3143
|
+
$semantic: {
|
|
3144
|
+
type: string;
|
|
3145
|
+
source: string;
|
|
3146
|
+
};
|
|
3147
|
+
};
|
|
3148
|
+
common: {
|
|
3149
|
+
type: string;
|
|
3150
|
+
description: string;
|
|
3151
|
+
};
|
|
3152
|
+
};
|
|
3153
|
+
required: string[];
|
|
3154
|
+
})[];
|
|
3155
|
+
};
|
|
3156
|
+
};
|
|
3157
|
+
metric_filters: {
|
|
3158
|
+
type: string;
|
|
3159
|
+
description: string;
|
|
3160
|
+
uniqueItems: boolean;
|
|
3161
|
+
items: {
|
|
3162
|
+
type: string;
|
|
3163
|
+
$semantic: {
|
|
3164
|
+
type: string;
|
|
3165
|
+
sources: string[];
|
|
3166
|
+
typePrefix: boolean;
|
|
3167
|
+
};
|
|
3168
|
+
};
|
|
3169
|
+
};
|
|
3170
|
+
value?: undefined;
|
|
3171
|
+
};
|
|
3172
|
+
required: string[];
|
|
3173
|
+
} | {
|
|
3174
|
+
properties: {
|
|
3175
|
+
values?: undefined;
|
|
3176
|
+
parents?: undefined;
|
|
3177
|
+
metric_filters?: undefined;
|
|
3178
|
+
title: {
|
|
3179
|
+
type: string;
|
|
3180
|
+
description: string;
|
|
3181
|
+
};
|
|
3182
|
+
type: {
|
|
3183
|
+
type: string;
|
|
3184
|
+
enum: string[];
|
|
3185
|
+
};
|
|
3186
|
+
using: {
|
|
3187
|
+
description: string;
|
|
3188
|
+
oneOf: {
|
|
3189
|
+
$ref: string;
|
|
3190
|
+
}[];
|
|
3191
|
+
$semantic: {
|
|
3192
|
+
type: string;
|
|
3193
|
+
};
|
|
3194
|
+
};
|
|
3195
|
+
condition: {
|
|
3196
|
+
enum: string[];
|
|
3197
|
+
};
|
|
3198
|
+
value: {
|
|
3199
|
+
type: string;
|
|
3200
|
+
};
|
|
3201
|
+
case_sensitive: {
|
|
3202
|
+
type: string;
|
|
3203
|
+
};
|
|
3204
|
+
display_as: {
|
|
3205
|
+
type: string;
|
|
3206
|
+
description: string;
|
|
3207
|
+
$ref: string;
|
|
3208
|
+
};
|
|
3209
|
+
mode: {
|
|
3210
|
+
type: string;
|
|
3211
|
+
enum: string[];
|
|
3212
|
+
description: string;
|
|
3213
|
+
};
|
|
3214
|
+
};
|
|
3215
|
+
required: string[];
|
|
3216
|
+
})[];
|
|
3217
|
+
required: string[];
|
|
3218
|
+
$semantic: {
|
|
3219
|
+
type: string;
|
|
3220
|
+
source: string;
|
|
3221
|
+
mode: string;
|
|
3222
|
+
};
|
|
3223
|
+
};
|
|
2994
3224
|
dashboardFilterGroup: {
|
|
2995
3225
|
type: string;
|
|
2996
3226
|
title: string;
|
|
@@ -3364,6 +3594,99 @@ export declare const metadata_v1: {
|
|
|
3364
3594
|
mode: string;
|
|
3365
3595
|
}[];
|
|
3366
3596
|
};
|
|
3597
|
+
queryTextFilter: {
|
|
3598
|
+
title: string;
|
|
3599
|
+
type: string;
|
|
3600
|
+
additionalProperties: boolean;
|
|
3601
|
+
properties: {
|
|
3602
|
+
type: {
|
|
3603
|
+
type: string;
|
|
3604
|
+
enum: string[];
|
|
3605
|
+
};
|
|
3606
|
+
using: {
|
|
3607
|
+
description: string;
|
|
3608
|
+
oneOf: {
|
|
3609
|
+
$ref: string;
|
|
3610
|
+
}[];
|
|
3611
|
+
};
|
|
3612
|
+
case_sensitive: {
|
|
3613
|
+
type: string;
|
|
3614
|
+
};
|
|
3615
|
+
display_as: {
|
|
3616
|
+
type: string;
|
|
3617
|
+
description: string;
|
|
3618
|
+
$ref: string;
|
|
3619
|
+
};
|
|
3620
|
+
};
|
|
3621
|
+
oneOf: ({
|
|
3622
|
+
properties: {
|
|
3623
|
+
value?: undefined;
|
|
3624
|
+
type: {
|
|
3625
|
+
type: string;
|
|
3626
|
+
enum: string[];
|
|
3627
|
+
};
|
|
3628
|
+
using: {
|
|
3629
|
+
description: string;
|
|
3630
|
+
oneOf: {
|
|
3631
|
+
$ref: string;
|
|
3632
|
+
}[];
|
|
3633
|
+
};
|
|
3634
|
+
condition: {
|
|
3635
|
+
enum: string[];
|
|
3636
|
+
};
|
|
3637
|
+
values: {
|
|
3638
|
+
type: string;
|
|
3639
|
+
items: {
|
|
3640
|
+
type: string[];
|
|
3641
|
+
};
|
|
3642
|
+
};
|
|
3643
|
+
case_sensitive: {
|
|
3644
|
+
type: string;
|
|
3645
|
+
};
|
|
3646
|
+
display_as: {
|
|
3647
|
+
type: string;
|
|
3648
|
+
description: string;
|
|
3649
|
+
$ref: string;
|
|
3650
|
+
};
|
|
3651
|
+
};
|
|
3652
|
+
required: string[];
|
|
3653
|
+
} | {
|
|
3654
|
+
properties: {
|
|
3655
|
+
values?: undefined;
|
|
3656
|
+
type: {
|
|
3657
|
+
type: string;
|
|
3658
|
+
enum: string[];
|
|
3659
|
+
};
|
|
3660
|
+
using: {
|
|
3661
|
+
description: string;
|
|
3662
|
+
oneOf: {
|
|
3663
|
+
$ref: string;
|
|
3664
|
+
}[];
|
|
3665
|
+
};
|
|
3666
|
+
condition: {
|
|
3667
|
+
enum: string[];
|
|
3668
|
+
};
|
|
3669
|
+
value: {
|
|
3670
|
+
type: string;
|
|
3671
|
+
};
|
|
3672
|
+
case_sensitive: {
|
|
3673
|
+
type: string;
|
|
3674
|
+
};
|
|
3675
|
+
display_as: {
|
|
3676
|
+
type: string;
|
|
3677
|
+
description: string;
|
|
3678
|
+
$ref: string;
|
|
3679
|
+
};
|
|
3680
|
+
};
|
|
3681
|
+
required: string[];
|
|
3682
|
+
})[];
|
|
3683
|
+
required: string[];
|
|
3684
|
+
$semantic: {
|
|
3685
|
+
type: string;
|
|
3686
|
+
source: string;
|
|
3687
|
+
mode: string;
|
|
3688
|
+
}[];
|
|
3689
|
+
};
|
|
3367
3690
|
queryMetricValueFilter: {
|
|
3368
3691
|
title: string;
|
|
3369
3692
|
type: string;
|
|
@@ -3403,6 +3726,7 @@ export declare const metadata_v1: {
|
|
|
3403
3726
|
properties: {
|
|
3404
3727
|
from?: undefined;
|
|
3405
3728
|
to?: undefined;
|
|
3729
|
+
value?: undefined;
|
|
3406
3730
|
type: {
|
|
3407
3731
|
type: string;
|
|
3408
3732
|
enum: string[];
|
|
@@ -3452,7 +3776,6 @@ export declare const metadata_v1: {
|
|
|
3452
3776
|
})[];
|
|
3453
3777
|
};
|
|
3454
3778
|
};
|
|
3455
|
-
value?: undefined;
|
|
3456
3779
|
condition?: undefined;
|
|
3457
3780
|
};
|
|
3458
3781
|
required: string[];
|
|
@@ -3545,8 +3868,8 @@ export declare const metadata_v1: {
|
|
|
3545
3868
|
then: {
|
|
3546
3869
|
additionalProperties: boolean;
|
|
3547
3870
|
properties: {
|
|
3548
|
-
conditions?: undefined;
|
|
3549
3871
|
value?: undefined;
|
|
3872
|
+
conditions?: undefined;
|
|
3550
3873
|
type: {
|
|
3551
3874
|
type: string;
|
|
3552
3875
|
enum: 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.29.0-alpha.
|
|
3
|
+
"version": "11.29.0-alpha.7",
|
|
4
4
|
"description": "GoodData AAC JSON Schema types and compiled schemas",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@typescript-eslint/eslint-plugin": "8.58.0",
|
|
34
34
|
"@typescript-eslint/parser": "8.58.0",
|
|
35
35
|
"@typescript/native-preview": "7.0.0-dev.20260202.1",
|
|
36
|
-
"dependency-cruiser": "
|
|
36
|
+
"dependency-cruiser": "17.3.10",
|
|
37
37
|
"eslint": "^9.39.2",
|
|
38
38
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
39
39
|
"eslint-plugin-headers": "1.3.3",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"readdirp": "^4.0.0",
|
|
53
53
|
"typescript": "5.9.3",
|
|
54
54
|
"vitest": "4.1.0",
|
|
55
|
-
"@gooddata/
|
|
56
|
-
"@gooddata/
|
|
55
|
+
"@gooddata/eslint-config": "11.29.0-alpha.7",
|
|
56
|
+
"@gooddata/oxlint-config": "11.29.0-alpha.7"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"_phase:build": "npm run build",
|