@gooddata/sdk-code-schemas 11.43.0-alpha.2 → 11.43.0-alpha.4
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 +1518 -0
- package/esm/v1/metadata.d.ts +1403 -0
- package/esm/v1/metadata.d.ts.map +1 -1
- package/esm/v1/metadata.json +128 -1
- package/esm/v1/schema.d.ts +115 -0
- package/esm/v1/schema.d.ts.map +1 -1
- package/package.json +3 -3
package/esm/v1/metadata.json
CHANGED
|
@@ -2761,7 +2761,134 @@
|
|
|
2761
2761
|
"description": "Enable accessibility features for tables."
|
|
2762
2762
|
},
|
|
2763
2763
|
"line_style_control_metrics": { "type": "array", "items": { "type": "string" } },
|
|
2764
|
-
"line_style_excluded_metrics": { "type": "array", "items": { "type": "string" } }
|
|
2764
|
+
"line_style_excluded_metrics": { "type": "array", "items": { "type": "string" } },
|
|
2765
|
+
"conditional_formatting": {
|
|
2766
|
+
"type": "object",
|
|
2767
|
+
"description": "Conditional formatting rules that color cells or rows based on their values.",
|
|
2768
|
+
"additionalProperties": false,
|
|
2769
|
+
"properties": {
|
|
2770
|
+
"version": {
|
|
2771
|
+
"type": "string",
|
|
2772
|
+
"description": "Conditional-formatting model version. \"1\" (default if omitted) — initial shape: discrete rules, one column per rule with stacked conditions. Readers must tolerate omission (treat as \"1\") and evolve under the same backward-compat contract as the dashboard model version, so server-side consumers (e.g. XLSX export) stay forward-compatible."
|
|
2773
|
+
},
|
|
2774
|
+
"enabled": {
|
|
2775
|
+
"type": "boolean",
|
|
2776
|
+
"description": "Master toggle for all conditional formatting rules."
|
|
2777
|
+
},
|
|
2778
|
+
"rules": {
|
|
2779
|
+
"type": "array",
|
|
2780
|
+
"description": "Ordered list of rules; the first matching rule wins.",
|
|
2781
|
+
"items": {
|
|
2782
|
+
"type": "object",
|
|
2783
|
+
"additionalProperties": false,
|
|
2784
|
+
"required": ["id", "target", "conditions"],
|
|
2785
|
+
"properties": {
|
|
2786
|
+
"id": {
|
|
2787
|
+
"type": "string",
|
|
2788
|
+
"description": "Stable, table-unique rule id."
|
|
2789
|
+
},
|
|
2790
|
+
"target": {
|
|
2791
|
+
"type": "object",
|
|
2792
|
+
"description": "The measure or attribute the rule targets — exactly one of measure/attribute.",
|
|
2793
|
+
"oneOf": [
|
|
2794
|
+
{
|
|
2795
|
+
"type": "object",
|
|
2796
|
+
"additionalProperties": false,
|
|
2797
|
+
"required": ["measure"],
|
|
2798
|
+
"properties": {
|
|
2799
|
+
"measure": {
|
|
2800
|
+
"type": "string",
|
|
2801
|
+
"description": "Local identifier of the targeted measure."
|
|
2802
|
+
}
|
|
2803
|
+
}
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"type": "object",
|
|
2807
|
+
"additionalProperties": false,
|
|
2808
|
+
"required": ["attribute"],
|
|
2809
|
+
"properties": {
|
|
2810
|
+
"attribute": {
|
|
2811
|
+
"type": "string",
|
|
2812
|
+
"description": "Local identifier of the targeted attribute."
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
}
|
|
2816
|
+
]
|
|
2817
|
+
},
|
|
2818
|
+
"conditions": {
|
|
2819
|
+
"type": "array",
|
|
2820
|
+
"description": "Stacked conditions; the first matching condition wins.",
|
|
2821
|
+
"items": {
|
|
2822
|
+
"type": "object",
|
|
2823
|
+
"additionalProperties": false,
|
|
2824
|
+
"required": ["id", "operator", "format"],
|
|
2825
|
+
"properties": {
|
|
2826
|
+
"id": { "type": "string" },
|
|
2827
|
+
"operator": {
|
|
2828
|
+
"type": "string",
|
|
2829
|
+
"enum": [
|
|
2830
|
+
"all",
|
|
2831
|
+
"equal_to",
|
|
2832
|
+
"not_equal_to",
|
|
2833
|
+
"less_than",
|
|
2834
|
+
"less_than_or_equal_to",
|
|
2835
|
+
"greater_than",
|
|
2836
|
+
"greater_than_or_equal_to",
|
|
2837
|
+
"between",
|
|
2838
|
+
"not_between",
|
|
2839
|
+
"contains",
|
|
2840
|
+
"not_contains",
|
|
2841
|
+
"starts_with",
|
|
2842
|
+
"not_starts_with",
|
|
2843
|
+
"ends_with",
|
|
2844
|
+
"not_ends_with",
|
|
2845
|
+
"is_empty",
|
|
2846
|
+
"is_not_empty"
|
|
2847
|
+
]
|
|
2848
|
+
},
|
|
2849
|
+
"value": {
|
|
2850
|
+
"description": "Literal (number or string); a {from,to} range for between/not_between; omitted for all/is_empty/is_not_empty.",
|
|
2851
|
+
"oneOf": [
|
|
2852
|
+
{ "type": "number" },
|
|
2853
|
+
{ "type": "string" },
|
|
2854
|
+
{
|
|
2855
|
+
"type": "object",
|
|
2856
|
+
"additionalProperties": false,
|
|
2857
|
+
"required": ["from", "to"],
|
|
2858
|
+
"properties": {
|
|
2859
|
+
"from": { "type": "number" },
|
|
2860
|
+
"to": { "type": "number" }
|
|
2861
|
+
}
|
|
2862
|
+
}
|
|
2863
|
+
]
|
|
2864
|
+
},
|
|
2865
|
+
"format": {
|
|
2866
|
+
"type": "object",
|
|
2867
|
+
"additionalProperties": false,
|
|
2868
|
+
"required": ["scope"],
|
|
2869
|
+
"properties": {
|
|
2870
|
+
"text": {
|
|
2871
|
+
"type": "string",
|
|
2872
|
+
"description": "Text color as hex (e.g. #FFFFFF)."
|
|
2873
|
+
},
|
|
2874
|
+
"fill": {
|
|
2875
|
+
"type": "string",
|
|
2876
|
+
"description": "Background color as hex (e.g. #E54D40)."
|
|
2877
|
+
},
|
|
2878
|
+
"scope": {
|
|
2879
|
+
"type": "string",
|
|
2880
|
+
"enum": ["cell", "row"]
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
}
|
|
2884
|
+
}
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2887
|
+
}
|
|
2888
|
+
}
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2765
2892
|
},
|
|
2766
2893
|
"$defs": {}
|
|
2767
2894
|
}
|
package/esm/v1/schema.d.ts
CHANGED
|
@@ -2449,6 +2449,121 @@ export declare const metadata_v1: {
|
|
|
2449
2449
|
type: string;
|
|
2450
2450
|
};
|
|
2451
2451
|
};
|
|
2452
|
+
conditional_formatting: {
|
|
2453
|
+
type: string;
|
|
2454
|
+
description: string;
|
|
2455
|
+
additionalProperties: boolean;
|
|
2456
|
+
properties: {
|
|
2457
|
+
version: {
|
|
2458
|
+
type: string;
|
|
2459
|
+
description: string;
|
|
2460
|
+
};
|
|
2461
|
+
enabled: {
|
|
2462
|
+
type: string;
|
|
2463
|
+
description: string;
|
|
2464
|
+
};
|
|
2465
|
+
rules: {
|
|
2466
|
+
type: string;
|
|
2467
|
+
description: string;
|
|
2468
|
+
items: {
|
|
2469
|
+
type: string;
|
|
2470
|
+
additionalProperties: boolean;
|
|
2471
|
+
required: string[];
|
|
2472
|
+
properties: {
|
|
2473
|
+
id: {
|
|
2474
|
+
type: string;
|
|
2475
|
+
description: string;
|
|
2476
|
+
};
|
|
2477
|
+
target: {
|
|
2478
|
+
type: string;
|
|
2479
|
+
description: string;
|
|
2480
|
+
oneOf: ({
|
|
2481
|
+
type: string;
|
|
2482
|
+
additionalProperties: boolean;
|
|
2483
|
+
required: string[];
|
|
2484
|
+
properties: {
|
|
2485
|
+
measure: {
|
|
2486
|
+
type: string;
|
|
2487
|
+
description: string;
|
|
2488
|
+
};
|
|
2489
|
+
attribute?: undefined;
|
|
2490
|
+
};
|
|
2491
|
+
} | {
|
|
2492
|
+
type: string;
|
|
2493
|
+
additionalProperties: boolean;
|
|
2494
|
+
required: string[];
|
|
2495
|
+
properties: {
|
|
2496
|
+
measure?: undefined;
|
|
2497
|
+
attribute: {
|
|
2498
|
+
type: string;
|
|
2499
|
+
description: string;
|
|
2500
|
+
};
|
|
2501
|
+
};
|
|
2502
|
+
})[];
|
|
2503
|
+
};
|
|
2504
|
+
conditions: {
|
|
2505
|
+
type: string;
|
|
2506
|
+
description: string;
|
|
2507
|
+
items: {
|
|
2508
|
+
type: string;
|
|
2509
|
+
additionalProperties: boolean;
|
|
2510
|
+
required: string[];
|
|
2511
|
+
properties: {
|
|
2512
|
+
id: {
|
|
2513
|
+
type: string;
|
|
2514
|
+
};
|
|
2515
|
+
operator: {
|
|
2516
|
+
type: string;
|
|
2517
|
+
enum: string[];
|
|
2518
|
+
};
|
|
2519
|
+
value: {
|
|
2520
|
+
description: string;
|
|
2521
|
+
oneOf: ({
|
|
2522
|
+
properties?: undefined;
|
|
2523
|
+
required?: undefined;
|
|
2524
|
+
additionalProperties?: undefined;
|
|
2525
|
+
type: string;
|
|
2526
|
+
} | {
|
|
2527
|
+
type: string;
|
|
2528
|
+
additionalProperties: boolean;
|
|
2529
|
+
required: string[];
|
|
2530
|
+
properties: {
|
|
2531
|
+
from: {
|
|
2532
|
+
type: string;
|
|
2533
|
+
};
|
|
2534
|
+
to: {
|
|
2535
|
+
type: string;
|
|
2536
|
+
};
|
|
2537
|
+
};
|
|
2538
|
+
})[];
|
|
2539
|
+
};
|
|
2540
|
+
format: {
|
|
2541
|
+
type: string;
|
|
2542
|
+
additionalProperties: boolean;
|
|
2543
|
+
required: string[];
|
|
2544
|
+
properties: {
|
|
2545
|
+
text: {
|
|
2546
|
+
type: string;
|
|
2547
|
+
description: string;
|
|
2548
|
+
};
|
|
2549
|
+
fill: {
|
|
2550
|
+
type: string;
|
|
2551
|
+
description: string;
|
|
2552
|
+
};
|
|
2553
|
+
scope: {
|
|
2554
|
+
type: string;
|
|
2555
|
+
enum: string[];
|
|
2556
|
+
};
|
|
2557
|
+
};
|
|
2558
|
+
};
|
|
2559
|
+
};
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
};
|
|
2563
|
+
};
|
|
2564
|
+
};
|
|
2565
|
+
};
|
|
2566
|
+
};
|
|
2452
2567
|
};
|
|
2453
2568
|
$defs: {};
|
|
2454
2569
|
};
|
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.43.0-alpha.
|
|
3
|
+
"version": "11.43.0-alpha.4",
|
|
4
4
|
"description": "GoodData AAC JSON Schema types and compiled schemas",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"readdirp": "4.1.2",
|
|
52
52
|
"typescript": "5.9.3",
|
|
53
53
|
"vitest": "4.1.8",
|
|
54
|
-
"@gooddata/eslint-config": "11.43.0-alpha.
|
|
55
|
-
"@gooddata/oxlint-config": "11.43.0-alpha.
|
|
54
|
+
"@gooddata/eslint-config": "11.43.0-alpha.4",
|
|
55
|
+
"@gooddata/oxlint-config": "11.43.0-alpha.4"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"_phase:build": "npm run build",
|