@gooddata/sdk-code-schemas 11.50.0-alpha.2 → 11.50.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.
@@ -5085,6 +5085,58 @@ export declare const metadata_v1: {
5085
5085
  to: {
5086
5086
  type: string;
5087
5087
  };
5088
+ absolute?: undefined;
5089
+ relative?: undefined;
5090
+ };
5091
+ } | {
5092
+ type: string;
5093
+ additionalProperties: boolean;
5094
+ required: string[];
5095
+ properties: {
5096
+ from?: undefined;
5097
+ to?: undefined;
5098
+ absolute: {
5099
+ type: string;
5100
+ description: string;
5101
+ additionalProperties: boolean;
5102
+ required: string[];
5103
+ properties: {
5104
+ from: {
5105
+ type: string;
5106
+ };
5107
+ to: {
5108
+ type: string;
5109
+ };
5110
+ };
5111
+ };
5112
+ relative?: undefined;
5113
+ };
5114
+ } | {
5115
+ type: string;
5116
+ additionalProperties: boolean;
5117
+ required: string[];
5118
+ properties: {
5119
+ from?: undefined;
5120
+ to?: undefined;
5121
+ absolute?: undefined;
5122
+ relative: {
5123
+ type: string;
5124
+ description: string;
5125
+ additionalProperties: boolean;
5126
+ required: string[];
5127
+ properties: {
5128
+ granularity: {
5129
+ type: string;
5130
+ enum: string[];
5131
+ };
5132
+ from: {
5133
+ type: string;
5134
+ };
5135
+ to: {
5136
+ type: string;
5137
+ };
5138
+ };
5139
+ };
5088
5140
  };
5089
5141
  })[];
5090
5142
  };
@@ -11914,11 +11966,28 @@ declare interface VisualisationConfig {
11914
11966
  id: string;
11915
11967
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
11916
11968
  /**
11917
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
11969
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
11918
11970
  */
11919
11971
  value?: number | string | {
11920
11972
  from: number;
11921
11973
  to: number;
11974
+ } | {
11975
+ /**
11976
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
11977
+ */
11978
+ absolute: {
11979
+ from: string;
11980
+ to: string;
11981
+ };
11982
+ } | {
11983
+ /**
11984
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
11985
+ */
11986
+ relative: {
11987
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
11988
+ from: number;
11989
+ to: number;
11990
+ };
11922
11991
  };
11923
11992
  format: {
11924
11993
  /**
@@ -12169,11 +12238,28 @@ declare interface VisualisationConfig1 {
12169
12238
  id: string;
12170
12239
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
12171
12240
  /**
12172
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
12241
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
12173
12242
  */
12174
12243
  value?: number | string | {
12175
12244
  from: number;
12176
12245
  to: number;
12246
+ } | {
12247
+ /**
12248
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
12249
+ */
12250
+ absolute: {
12251
+ from: string;
12252
+ to: string;
12253
+ };
12254
+ } | {
12255
+ /**
12256
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
12257
+ */
12258
+ relative: {
12259
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
12260
+ from: number;
12261
+ to: number;
12262
+ };
12177
12263
  };
12178
12264
  format: {
12179
12265
  /**
@@ -12424,11 +12510,28 @@ declare interface VisualisationConfig10 {
12424
12510
  id: string;
12425
12511
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
12426
12512
  /**
12427
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
12513
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
12428
12514
  */
12429
12515
  value?: number | string | {
12430
12516
  from: number;
12431
12517
  to: number;
12518
+ } | {
12519
+ /**
12520
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
12521
+ */
12522
+ absolute: {
12523
+ from: string;
12524
+ to: string;
12525
+ };
12526
+ } | {
12527
+ /**
12528
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
12529
+ */
12530
+ relative: {
12531
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
12532
+ from: number;
12533
+ to: number;
12534
+ };
12432
12535
  };
12433
12536
  format: {
12434
12537
  /**
@@ -12679,11 +12782,28 @@ declare interface VisualisationConfig11 {
12679
12782
  id: string;
12680
12783
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
12681
12784
  /**
12682
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
12785
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
12683
12786
  */
12684
12787
  value?: number | string | {
12685
12788
  from: number;
12686
12789
  to: number;
12790
+ } | {
12791
+ /**
12792
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
12793
+ */
12794
+ absolute: {
12795
+ from: string;
12796
+ to: string;
12797
+ };
12798
+ } | {
12799
+ /**
12800
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
12801
+ */
12802
+ relative: {
12803
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
12804
+ from: number;
12805
+ to: number;
12806
+ };
12687
12807
  };
12688
12808
  format: {
12689
12809
  /**
@@ -12934,11 +13054,28 @@ declare interface VisualisationConfig12 {
12934
13054
  id: string;
12935
13055
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
12936
13056
  /**
12937
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
13057
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
12938
13058
  */
12939
13059
  value?: number | string | {
12940
13060
  from: number;
12941
13061
  to: number;
13062
+ } | {
13063
+ /**
13064
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
13065
+ */
13066
+ absolute: {
13067
+ from: string;
13068
+ to: string;
13069
+ };
13070
+ } | {
13071
+ /**
13072
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
13073
+ */
13074
+ relative: {
13075
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
13076
+ from: number;
13077
+ to: number;
13078
+ };
12942
13079
  };
12943
13080
  format: {
12944
13081
  /**
@@ -13189,11 +13326,28 @@ declare interface VisualisationConfig13 {
13189
13326
  id: string;
13190
13327
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
13191
13328
  /**
13192
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
13329
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
13193
13330
  */
13194
13331
  value?: number | string | {
13195
13332
  from: number;
13196
13333
  to: number;
13334
+ } | {
13335
+ /**
13336
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
13337
+ */
13338
+ absolute: {
13339
+ from: string;
13340
+ to: string;
13341
+ };
13342
+ } | {
13343
+ /**
13344
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
13345
+ */
13346
+ relative: {
13347
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
13348
+ from: number;
13349
+ to: number;
13350
+ };
13197
13351
  };
13198
13352
  format: {
13199
13353
  /**
@@ -13444,11 +13598,28 @@ declare interface VisualisationConfig14 {
13444
13598
  id: string;
13445
13599
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
13446
13600
  /**
13447
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
13601
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
13448
13602
  */
13449
13603
  value?: number | string | {
13450
13604
  from: number;
13451
13605
  to: number;
13606
+ } | {
13607
+ /**
13608
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
13609
+ */
13610
+ absolute: {
13611
+ from: string;
13612
+ to: string;
13613
+ };
13614
+ } | {
13615
+ /**
13616
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
13617
+ */
13618
+ relative: {
13619
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
13620
+ from: number;
13621
+ to: number;
13622
+ };
13452
13623
  };
13453
13624
  format: {
13454
13625
  /**
@@ -13699,11 +13870,28 @@ declare interface VisualisationConfig15 {
13699
13870
  id: string;
13700
13871
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
13701
13872
  /**
13702
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
13873
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
13703
13874
  */
13704
13875
  value?: number | string | {
13705
13876
  from: number;
13706
13877
  to: number;
13878
+ } | {
13879
+ /**
13880
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
13881
+ */
13882
+ absolute: {
13883
+ from: string;
13884
+ to: string;
13885
+ };
13886
+ } | {
13887
+ /**
13888
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
13889
+ */
13890
+ relative: {
13891
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
13892
+ from: number;
13893
+ to: number;
13894
+ };
13707
13895
  };
13708
13896
  format: {
13709
13897
  /**
@@ -13954,11 +14142,28 @@ declare interface VisualisationConfig16 {
13954
14142
  id: string;
13955
14143
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
13956
14144
  /**
13957
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
14145
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
13958
14146
  */
13959
14147
  value?: number | string | {
13960
14148
  from: number;
13961
14149
  to: number;
14150
+ } | {
14151
+ /**
14152
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
14153
+ */
14154
+ absolute: {
14155
+ from: string;
14156
+ to: string;
14157
+ };
14158
+ } | {
14159
+ /**
14160
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
14161
+ */
14162
+ relative: {
14163
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
14164
+ from: number;
14165
+ to: number;
14166
+ };
13962
14167
  };
13963
14168
  format: {
13964
14169
  /**
@@ -14209,11 +14414,28 @@ declare interface VisualisationConfig17 {
14209
14414
  id: string;
14210
14415
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
14211
14416
  /**
14212
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
14417
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
14213
14418
  */
14214
14419
  value?: number | string | {
14215
14420
  from: number;
14216
14421
  to: number;
14422
+ } | {
14423
+ /**
14424
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
14425
+ */
14426
+ absolute: {
14427
+ from: string;
14428
+ to: string;
14429
+ };
14430
+ } | {
14431
+ /**
14432
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
14433
+ */
14434
+ relative: {
14435
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
14436
+ from: number;
14437
+ to: number;
14438
+ };
14217
14439
  };
14218
14440
  format: {
14219
14441
  /**
@@ -14464,11 +14686,28 @@ declare interface VisualisationConfig18 {
14464
14686
  id: string;
14465
14687
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
14466
14688
  /**
14467
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
14689
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
14468
14690
  */
14469
14691
  value?: number | string | {
14470
14692
  from: number;
14471
14693
  to: number;
14694
+ } | {
14695
+ /**
14696
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
14697
+ */
14698
+ absolute: {
14699
+ from: string;
14700
+ to: string;
14701
+ };
14702
+ } | {
14703
+ /**
14704
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
14705
+ */
14706
+ relative: {
14707
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
14708
+ from: number;
14709
+ to: number;
14710
+ };
14472
14711
  };
14473
14712
  format: {
14474
14713
  /**
@@ -14719,11 +14958,28 @@ declare interface VisualisationConfig19 {
14719
14958
  id: string;
14720
14959
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
14721
14960
  /**
14722
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
14961
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
14723
14962
  */
14724
14963
  value?: number | string | {
14725
14964
  from: number;
14726
14965
  to: number;
14966
+ } | {
14967
+ /**
14968
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
14969
+ */
14970
+ absolute: {
14971
+ from: string;
14972
+ to: string;
14973
+ };
14974
+ } | {
14975
+ /**
14976
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
14977
+ */
14978
+ relative: {
14979
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
14980
+ from: number;
14981
+ to: number;
14982
+ };
14727
14983
  };
14728
14984
  format: {
14729
14985
  /**
@@ -14974,11 +15230,28 @@ declare interface VisualisationConfig2 {
14974
15230
  id: string;
14975
15231
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
14976
15232
  /**
14977
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
15233
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
14978
15234
  */
14979
15235
  value?: number | string | {
14980
15236
  from: number;
14981
15237
  to: number;
15238
+ } | {
15239
+ /**
15240
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
15241
+ */
15242
+ absolute: {
15243
+ from: string;
15244
+ to: string;
15245
+ };
15246
+ } | {
15247
+ /**
15248
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
15249
+ */
15250
+ relative: {
15251
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
15252
+ from: number;
15253
+ to: number;
15254
+ };
14982
15255
  };
14983
15256
  format: {
14984
15257
  /**
@@ -15229,11 +15502,28 @@ declare interface VisualisationConfig20 {
15229
15502
  id: string;
15230
15503
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
15231
15504
  /**
15232
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
15505
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
15233
15506
  */
15234
15507
  value?: number | string | {
15235
15508
  from: number;
15236
15509
  to: number;
15510
+ } | {
15511
+ /**
15512
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
15513
+ */
15514
+ absolute: {
15515
+ from: string;
15516
+ to: string;
15517
+ };
15518
+ } | {
15519
+ /**
15520
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
15521
+ */
15522
+ relative: {
15523
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
15524
+ from: number;
15525
+ to: number;
15526
+ };
15237
15527
  };
15238
15528
  format: {
15239
15529
  /**
@@ -15484,11 +15774,28 @@ declare interface VisualisationConfig21 {
15484
15774
  id: string;
15485
15775
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
15486
15776
  /**
15487
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
15777
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
15488
15778
  */
15489
15779
  value?: number | string | {
15490
15780
  from: number;
15491
15781
  to: number;
15782
+ } | {
15783
+ /**
15784
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
15785
+ */
15786
+ absolute: {
15787
+ from: string;
15788
+ to: string;
15789
+ };
15790
+ } | {
15791
+ /**
15792
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
15793
+ */
15794
+ relative: {
15795
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
15796
+ from: number;
15797
+ to: number;
15798
+ };
15492
15799
  };
15493
15800
  format: {
15494
15801
  /**
@@ -15739,11 +16046,28 @@ declare interface VisualisationConfig22 {
15739
16046
  id: string;
15740
16047
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
15741
16048
  /**
15742
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
16049
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
15743
16050
  */
15744
16051
  value?: number | string | {
15745
16052
  from: number;
15746
16053
  to: number;
16054
+ } | {
16055
+ /**
16056
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
16057
+ */
16058
+ absolute: {
16059
+ from: string;
16060
+ to: string;
16061
+ };
16062
+ } | {
16063
+ /**
16064
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
16065
+ */
16066
+ relative: {
16067
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
16068
+ from: number;
16069
+ to: number;
16070
+ };
15747
16071
  };
15748
16072
  format: {
15749
16073
  /**
@@ -15994,11 +16318,28 @@ declare interface VisualisationConfig23 {
15994
16318
  id: string;
15995
16319
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
15996
16320
  /**
15997
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
16321
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
15998
16322
  */
15999
16323
  value?: number | string | {
16000
16324
  from: number;
16001
16325
  to: number;
16326
+ } | {
16327
+ /**
16328
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
16329
+ */
16330
+ absolute: {
16331
+ from: string;
16332
+ to: string;
16333
+ };
16334
+ } | {
16335
+ /**
16336
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
16337
+ */
16338
+ relative: {
16339
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
16340
+ from: number;
16341
+ to: number;
16342
+ };
16002
16343
  };
16003
16344
  format: {
16004
16345
  /**
@@ -16249,11 +16590,28 @@ declare interface VisualisationConfig3 {
16249
16590
  id: string;
16250
16591
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
16251
16592
  /**
16252
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
16593
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
16253
16594
  */
16254
16595
  value?: number | string | {
16255
16596
  from: number;
16256
16597
  to: number;
16598
+ } | {
16599
+ /**
16600
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
16601
+ */
16602
+ absolute: {
16603
+ from: string;
16604
+ to: string;
16605
+ };
16606
+ } | {
16607
+ /**
16608
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
16609
+ */
16610
+ relative: {
16611
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
16612
+ from: number;
16613
+ to: number;
16614
+ };
16257
16615
  };
16258
16616
  format: {
16259
16617
  /**
@@ -16504,11 +16862,28 @@ declare interface VisualisationConfig4 {
16504
16862
  id: string;
16505
16863
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
16506
16864
  /**
16507
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
16865
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
16508
16866
  */
16509
16867
  value?: number | string | {
16510
16868
  from: number;
16511
16869
  to: number;
16870
+ } | {
16871
+ /**
16872
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
16873
+ */
16874
+ absolute: {
16875
+ from: string;
16876
+ to: string;
16877
+ };
16878
+ } | {
16879
+ /**
16880
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
16881
+ */
16882
+ relative: {
16883
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
16884
+ from: number;
16885
+ to: number;
16886
+ };
16512
16887
  };
16513
16888
  format: {
16514
16889
  /**
@@ -16759,11 +17134,28 @@ declare interface VisualisationConfig5 {
16759
17134
  id: string;
16760
17135
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
16761
17136
  /**
16762
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
17137
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
16763
17138
  */
16764
17139
  value?: number | string | {
16765
17140
  from: number;
16766
17141
  to: number;
17142
+ } | {
17143
+ /**
17144
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
17145
+ */
17146
+ absolute: {
17147
+ from: string;
17148
+ to: string;
17149
+ };
17150
+ } | {
17151
+ /**
17152
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
17153
+ */
17154
+ relative: {
17155
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
17156
+ from: number;
17157
+ to: number;
17158
+ };
16767
17159
  };
16768
17160
  format: {
16769
17161
  /**
@@ -17014,11 +17406,28 @@ declare interface VisualisationConfig6 {
17014
17406
  id: string;
17015
17407
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
17016
17408
  /**
17017
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
17409
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
17018
17410
  */
17019
17411
  value?: number | string | {
17020
17412
  from: number;
17021
17413
  to: number;
17414
+ } | {
17415
+ /**
17416
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
17417
+ */
17418
+ absolute: {
17419
+ from: string;
17420
+ to: string;
17421
+ };
17422
+ } | {
17423
+ /**
17424
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
17425
+ */
17426
+ relative: {
17427
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
17428
+ from: number;
17429
+ to: number;
17430
+ };
17022
17431
  };
17023
17432
  format: {
17024
17433
  /**
@@ -17269,11 +17678,28 @@ declare interface VisualisationConfig7 {
17269
17678
  id: string;
17270
17679
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
17271
17680
  /**
17272
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
17681
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
17273
17682
  */
17274
17683
  value?: number | string | {
17275
17684
  from: number;
17276
17685
  to: number;
17686
+ } | {
17687
+ /**
17688
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
17689
+ */
17690
+ absolute: {
17691
+ from: string;
17692
+ to: string;
17693
+ };
17694
+ } | {
17695
+ /**
17696
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
17697
+ */
17698
+ relative: {
17699
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
17700
+ from: number;
17701
+ to: number;
17702
+ };
17277
17703
  };
17278
17704
  format: {
17279
17705
  /**
@@ -17524,11 +17950,28 @@ declare interface VisualisationConfig8 {
17524
17950
  id: string;
17525
17951
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
17526
17952
  /**
17527
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
17953
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
17528
17954
  */
17529
17955
  value?: number | string | {
17530
17956
  from: number;
17531
17957
  to: number;
17958
+ } | {
17959
+ /**
17960
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
17961
+ */
17962
+ absolute: {
17963
+ from: string;
17964
+ to: string;
17965
+ };
17966
+ } | {
17967
+ /**
17968
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
17969
+ */
17970
+ relative: {
17971
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
17972
+ from: number;
17973
+ to: number;
17974
+ };
17532
17975
  };
17533
17976
  format: {
17534
17977
  /**
@@ -17779,11 +18222,28 @@ declare interface VisualisationConfig9 {
17779
18222
  id: string;
17780
18223
  operator: "all" | "equal_to" | "not_equal_to" | "less_than" | "less_than_or_equal_to" | "greater_than" | "greater_than_or_equal_to" | "between" | "not_between" | "contains" | "not_contains" | "starts_with" | "not_starts_with" | "ends_with" | "not_ends_with" | "is_empty" | "is_not_empty";
17781
18224
  /**
17782
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
18225
+ * Literal (number or string); a \{from,to\} range for between/not_between; an \{absolute\} period or \{relative\} period for date-attribute conditions; omitted for all/is_empty/is_not_empty.
17783
18226
  */
17784
18227
  value?: number | string | {
17785
18228
  from: number;
17786
18229
  to: number;
18230
+ } | {
18231
+ /**
18232
+ * Static period, snapped to the target date attribute's granularity: from = period start, to = inclusive period end. Platform date strings: "YYYY-MM-DD", or "YYYY-MM-DD HH:mm" for hour/minute granularities.
18233
+ */
18234
+ absolute: {
18235
+ from: string;
18236
+ to: string;
18237
+ };
18238
+ } | {
18239
+ /**
18240
+ * Relative period re-resolved on every render/export: integer period offsets where 0 = the current period, negative = past. Granularity must be coarser than or equal to (and aligned with) the target date attribute's granularity.
18241
+ */
18242
+ relative: {
18243
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
18244
+ from: number;
18245
+ to: number;
18246
+ };
17787
18247
  };
17788
18248
  format: {
17789
18249
  /**