@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.
@@ -2859,11 +2859,28 @@ export interface VisualisationConfig {
2859
2859
  id: string;
2860
2860
  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";
2861
2861
  /**
2862
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
2862
+ * 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.
2863
2863
  */
2864
2864
  value?: number | string | {
2865
2865
  from: number;
2866
2866
  to: number;
2867
+ } | {
2868
+ /**
2869
+ * 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.
2870
+ */
2871
+ absolute: {
2872
+ from: string;
2873
+ to: string;
2874
+ };
2875
+ } | {
2876
+ /**
2877
+ * 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.
2878
+ */
2879
+ relative: {
2880
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
2881
+ from: number;
2882
+ to: number;
2883
+ };
2867
2884
  };
2868
2885
  format: {
2869
2886
  /**
@@ -3243,11 +3260,28 @@ export interface VisualisationConfig1 {
3243
3260
  id: string;
3244
3261
  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";
3245
3262
  /**
3246
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
3263
+ * 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.
3247
3264
  */
3248
3265
  value?: number | string | {
3249
3266
  from: number;
3250
3267
  to: number;
3268
+ } | {
3269
+ /**
3270
+ * 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.
3271
+ */
3272
+ absolute: {
3273
+ from: string;
3274
+ to: string;
3275
+ };
3276
+ } | {
3277
+ /**
3278
+ * 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.
3279
+ */
3280
+ relative: {
3281
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
3282
+ from: number;
3283
+ to: number;
3284
+ };
3251
3285
  };
3252
3286
  format: {
3253
3287
  /**
@@ -3548,11 +3582,28 @@ export interface VisualisationConfig2 {
3548
3582
  id: string;
3549
3583
  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";
3550
3584
  /**
3551
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
3585
+ * 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.
3552
3586
  */
3553
3587
  value?: number | string | {
3554
3588
  from: number;
3555
3589
  to: number;
3590
+ } | {
3591
+ /**
3592
+ * 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.
3593
+ */
3594
+ absolute: {
3595
+ from: string;
3596
+ to: string;
3597
+ };
3598
+ } | {
3599
+ /**
3600
+ * 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.
3601
+ */
3602
+ relative: {
3603
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
3604
+ from: number;
3605
+ to: number;
3606
+ };
3556
3607
  };
3557
3608
  format: {
3558
3609
  /**
@@ -3853,11 +3904,28 @@ export interface VisualisationConfig3 {
3853
3904
  id: string;
3854
3905
  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";
3855
3906
  /**
3856
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
3907
+ * 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.
3857
3908
  */
3858
3909
  value?: number | string | {
3859
3910
  from: number;
3860
3911
  to: number;
3912
+ } | {
3913
+ /**
3914
+ * 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.
3915
+ */
3916
+ absolute: {
3917
+ from: string;
3918
+ to: string;
3919
+ };
3920
+ } | {
3921
+ /**
3922
+ * 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.
3923
+ */
3924
+ relative: {
3925
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
3926
+ from: number;
3927
+ to: number;
3928
+ };
3861
3929
  };
3862
3930
  format: {
3863
3931
  /**
@@ -4158,11 +4226,28 @@ export interface VisualisationConfig4 {
4158
4226
  id: string;
4159
4227
  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";
4160
4228
  /**
4161
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
4229
+ * 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.
4162
4230
  */
4163
4231
  value?: number | string | {
4164
4232
  from: number;
4165
4233
  to: number;
4234
+ } | {
4235
+ /**
4236
+ * 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.
4237
+ */
4238
+ absolute: {
4239
+ from: string;
4240
+ to: string;
4241
+ };
4242
+ } | {
4243
+ /**
4244
+ * 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.
4245
+ */
4246
+ relative: {
4247
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
4248
+ from: number;
4249
+ to: number;
4250
+ };
4166
4251
  };
4167
4252
  format: {
4168
4253
  /**
@@ -4463,11 +4548,28 @@ export interface VisualisationConfig5 {
4463
4548
  id: string;
4464
4549
  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";
4465
4550
  /**
4466
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
4551
+ * 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.
4467
4552
  */
4468
4553
  value?: number | string | {
4469
4554
  from: number;
4470
4555
  to: number;
4556
+ } | {
4557
+ /**
4558
+ * 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.
4559
+ */
4560
+ absolute: {
4561
+ from: string;
4562
+ to: string;
4563
+ };
4564
+ } | {
4565
+ /**
4566
+ * 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.
4567
+ */
4568
+ relative: {
4569
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
4570
+ from: number;
4571
+ to: number;
4572
+ };
4471
4573
  };
4472
4574
  format: {
4473
4575
  /**
@@ -4768,11 +4870,28 @@ export interface VisualisationConfig6 {
4768
4870
  id: string;
4769
4871
  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";
4770
4872
  /**
4771
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
4873
+ * 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.
4772
4874
  */
4773
4875
  value?: number | string | {
4774
4876
  from: number;
4775
4877
  to: number;
4878
+ } | {
4879
+ /**
4880
+ * 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.
4881
+ */
4882
+ absolute: {
4883
+ from: string;
4884
+ to: string;
4885
+ };
4886
+ } | {
4887
+ /**
4888
+ * 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.
4889
+ */
4890
+ relative: {
4891
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
4892
+ from: number;
4893
+ to: number;
4894
+ };
4776
4895
  };
4777
4896
  format: {
4778
4897
  /**
@@ -5069,11 +5188,28 @@ export interface VisualisationConfig7 {
5069
5188
  id: string;
5070
5189
  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";
5071
5190
  /**
5072
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
5191
+ * 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.
5073
5192
  */
5074
5193
  value?: number | string | {
5075
5194
  from: number;
5076
5195
  to: number;
5196
+ } | {
5197
+ /**
5198
+ * 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.
5199
+ */
5200
+ absolute: {
5201
+ from: string;
5202
+ to: string;
5203
+ };
5204
+ } | {
5205
+ /**
5206
+ * 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.
5207
+ */
5208
+ relative: {
5209
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
5210
+ from: number;
5211
+ to: number;
5212
+ };
5077
5213
  };
5078
5214
  format: {
5079
5215
  /**
@@ -5370,11 +5506,28 @@ export interface VisualisationConfig8 {
5370
5506
  id: string;
5371
5507
  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";
5372
5508
  /**
5373
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
5509
+ * 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.
5374
5510
  */
5375
5511
  value?: number | string | {
5376
5512
  from: number;
5377
5513
  to: number;
5514
+ } | {
5515
+ /**
5516
+ * 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.
5517
+ */
5518
+ absolute: {
5519
+ from: string;
5520
+ to: string;
5521
+ };
5522
+ } | {
5523
+ /**
5524
+ * 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.
5525
+ */
5526
+ relative: {
5527
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
5528
+ from: number;
5529
+ to: number;
5530
+ };
5378
5531
  };
5379
5532
  format: {
5380
5533
  /**
@@ -5671,11 +5824,28 @@ export interface VisualisationConfig9 {
5671
5824
  id: string;
5672
5825
  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";
5673
5826
  /**
5674
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
5827
+ * 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.
5675
5828
  */
5676
5829
  value?: number | string | {
5677
5830
  from: number;
5678
5831
  to: number;
5832
+ } | {
5833
+ /**
5834
+ * 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.
5835
+ */
5836
+ absolute: {
5837
+ from: string;
5838
+ to: string;
5839
+ };
5840
+ } | {
5841
+ /**
5842
+ * 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.
5843
+ */
5844
+ relative: {
5845
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
5846
+ from: number;
5847
+ to: number;
5848
+ };
5679
5849
  };
5680
5850
  format: {
5681
5851
  /**
@@ -5972,11 +6142,28 @@ export interface VisualisationConfig10 {
5972
6142
  id: string;
5973
6143
  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";
5974
6144
  /**
5975
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
6145
+ * 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.
5976
6146
  */
5977
6147
  value?: number | string | {
5978
6148
  from: number;
5979
6149
  to: number;
6150
+ } | {
6151
+ /**
6152
+ * 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.
6153
+ */
6154
+ absolute: {
6155
+ from: string;
6156
+ to: string;
6157
+ };
6158
+ } | {
6159
+ /**
6160
+ * 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.
6161
+ */
6162
+ relative: {
6163
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
6164
+ from: number;
6165
+ to: number;
6166
+ };
5980
6167
  };
5981
6168
  format: {
5982
6169
  /**
@@ -6273,11 +6460,28 @@ export interface VisualisationConfig11 {
6273
6460
  id: string;
6274
6461
  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";
6275
6462
  /**
6276
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
6463
+ * 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.
6277
6464
  */
6278
6465
  value?: number | string | {
6279
6466
  from: number;
6280
6467
  to: number;
6468
+ } | {
6469
+ /**
6470
+ * 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.
6471
+ */
6472
+ absolute: {
6473
+ from: string;
6474
+ to: string;
6475
+ };
6476
+ } | {
6477
+ /**
6478
+ * 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.
6479
+ */
6480
+ relative: {
6481
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
6482
+ from: number;
6483
+ to: number;
6484
+ };
6281
6485
  };
6282
6486
  format: {
6283
6487
  /**
@@ -6582,11 +6786,28 @@ export interface VisualisationConfig12 {
6582
6786
  id: string;
6583
6787
  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";
6584
6788
  /**
6585
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
6789
+ * 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.
6586
6790
  */
6587
6791
  value?: number | string | {
6588
6792
  from: number;
6589
6793
  to: number;
6794
+ } | {
6795
+ /**
6796
+ * 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.
6797
+ */
6798
+ absolute: {
6799
+ from: string;
6800
+ to: string;
6801
+ };
6802
+ } | {
6803
+ /**
6804
+ * 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.
6805
+ */
6806
+ relative: {
6807
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
6808
+ from: number;
6809
+ to: number;
6810
+ };
6590
6811
  };
6591
6812
  format: {
6592
6813
  /**
@@ -6883,11 +7104,28 @@ export interface VisualisationConfig13 {
6883
7104
  id: string;
6884
7105
  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";
6885
7106
  /**
6886
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
7107
+ * 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.
6887
7108
  */
6888
7109
  value?: number | string | {
6889
7110
  from: number;
6890
7111
  to: number;
7112
+ } | {
7113
+ /**
7114
+ * 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.
7115
+ */
7116
+ absolute: {
7117
+ from: string;
7118
+ to: string;
7119
+ };
7120
+ } | {
7121
+ /**
7122
+ * 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.
7123
+ */
7124
+ relative: {
7125
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
7126
+ from: number;
7127
+ to: number;
7128
+ };
6891
7129
  };
6892
7130
  format: {
6893
7131
  /**
@@ -7184,11 +7422,28 @@ export interface VisualisationConfig14 {
7184
7422
  id: string;
7185
7423
  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";
7186
7424
  /**
7187
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
7425
+ * 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.
7188
7426
  */
7189
7427
  value?: number | string | {
7190
7428
  from: number;
7191
7429
  to: number;
7430
+ } | {
7431
+ /**
7432
+ * 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.
7433
+ */
7434
+ absolute: {
7435
+ from: string;
7436
+ to: string;
7437
+ };
7438
+ } | {
7439
+ /**
7440
+ * 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.
7441
+ */
7442
+ relative: {
7443
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
7444
+ from: number;
7445
+ to: number;
7446
+ };
7192
7447
  };
7193
7448
  format: {
7194
7449
  /**
@@ -7487,11 +7742,28 @@ export interface VisualisationConfig15 {
7487
7742
  id: string;
7488
7743
  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";
7489
7744
  /**
7490
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
7745
+ * 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.
7491
7746
  */
7492
7747
  value?: number | string | {
7493
7748
  from: number;
7494
7749
  to: number;
7750
+ } | {
7751
+ /**
7752
+ * 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.
7753
+ */
7754
+ absolute: {
7755
+ from: string;
7756
+ to: string;
7757
+ };
7758
+ } | {
7759
+ /**
7760
+ * 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.
7761
+ */
7762
+ relative: {
7763
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
7764
+ from: number;
7765
+ to: number;
7766
+ };
7495
7767
  };
7496
7768
  format: {
7497
7769
  /**
@@ -7790,11 +8062,28 @@ export interface VisualisationConfig16 {
7790
8062
  id: string;
7791
8063
  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";
7792
8064
  /**
7793
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
8065
+ * 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.
7794
8066
  */
7795
8067
  value?: number | string | {
7796
8068
  from: number;
7797
8069
  to: number;
8070
+ } | {
8071
+ /**
8072
+ * 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.
8073
+ */
8074
+ absolute: {
8075
+ from: string;
8076
+ to: string;
8077
+ };
8078
+ } | {
8079
+ /**
8080
+ * 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.
8081
+ */
8082
+ relative: {
8083
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
8084
+ from: number;
8085
+ to: number;
8086
+ };
7798
8087
  };
7799
8088
  format: {
7800
8089
  /**
@@ -8091,11 +8380,28 @@ export interface VisualisationConfig17 {
8091
8380
  id: string;
8092
8381
  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";
8093
8382
  /**
8094
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
8383
+ * 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.
8095
8384
  */
8096
8385
  value?: number | string | {
8097
8386
  from: number;
8098
8387
  to: number;
8388
+ } | {
8389
+ /**
8390
+ * 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.
8391
+ */
8392
+ absolute: {
8393
+ from: string;
8394
+ to: string;
8395
+ };
8396
+ } | {
8397
+ /**
8398
+ * 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.
8399
+ */
8400
+ relative: {
8401
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
8402
+ from: number;
8403
+ to: number;
8404
+ };
8099
8405
  };
8100
8406
  format: {
8101
8407
  /**
@@ -8392,11 +8698,28 @@ export interface VisualisationConfig18 {
8392
8698
  id: string;
8393
8699
  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";
8394
8700
  /**
8395
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
8701
+ * 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.
8396
8702
  */
8397
8703
  value?: number | string | {
8398
8704
  from: number;
8399
8705
  to: number;
8706
+ } | {
8707
+ /**
8708
+ * 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.
8709
+ */
8710
+ absolute: {
8711
+ from: string;
8712
+ to: string;
8713
+ };
8714
+ } | {
8715
+ /**
8716
+ * 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.
8717
+ */
8718
+ relative: {
8719
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
8720
+ from: number;
8721
+ to: number;
8722
+ };
8400
8723
  };
8401
8724
  format: {
8402
8725
  /**
@@ -8697,11 +9020,28 @@ export interface VisualisationConfig19 {
8697
9020
  id: string;
8698
9021
  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";
8699
9022
  /**
8700
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
9023
+ * 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.
8701
9024
  */
8702
9025
  value?: number | string | {
8703
9026
  from: number;
8704
9027
  to: number;
9028
+ } | {
9029
+ /**
9030
+ * 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.
9031
+ */
9032
+ absolute: {
9033
+ from: string;
9034
+ to: string;
9035
+ };
9036
+ } | {
9037
+ /**
9038
+ * 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.
9039
+ */
9040
+ relative: {
9041
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
9042
+ from: number;
9043
+ to: number;
9044
+ };
8705
9045
  };
8706
9046
  format: {
8707
9047
  /**
@@ -8975,11 +9315,28 @@ export interface VisualisationConfig20 {
8975
9315
  id: string;
8976
9316
  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";
8977
9317
  /**
8978
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
9318
+ * 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.
8979
9319
  */
8980
9320
  value?: number | string | {
8981
9321
  from: number;
8982
9322
  to: number;
9323
+ } | {
9324
+ /**
9325
+ * 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.
9326
+ */
9327
+ absolute: {
9328
+ from: string;
9329
+ to: string;
9330
+ };
9331
+ } | {
9332
+ /**
9333
+ * 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.
9334
+ */
9335
+ relative: {
9336
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
9337
+ from: number;
9338
+ to: number;
9339
+ };
8983
9340
  };
8984
9341
  format: {
8985
9342
  /**
@@ -9280,11 +9637,28 @@ export interface VisualisationConfig21 {
9280
9637
  id: string;
9281
9638
  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";
9282
9639
  /**
9283
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
9640
+ * 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.
9284
9641
  */
9285
9642
  value?: number | string | {
9286
9643
  from: number;
9287
9644
  to: number;
9645
+ } | {
9646
+ /**
9647
+ * 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.
9648
+ */
9649
+ absolute: {
9650
+ from: string;
9651
+ to: string;
9652
+ };
9653
+ } | {
9654
+ /**
9655
+ * 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.
9656
+ */
9657
+ relative: {
9658
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
9659
+ from: number;
9660
+ to: number;
9661
+ };
9288
9662
  };
9289
9663
  format: {
9290
9664
  /**
@@ -9589,11 +9963,28 @@ export interface VisualisationConfig22 {
9589
9963
  id: string;
9590
9964
  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";
9591
9965
  /**
9592
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
9966
+ * 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.
9593
9967
  */
9594
9968
  value?: number | string | {
9595
9969
  from: number;
9596
9970
  to: number;
9971
+ } | {
9972
+ /**
9973
+ * 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.
9974
+ */
9975
+ absolute: {
9976
+ from: string;
9977
+ to: string;
9978
+ };
9979
+ } | {
9980
+ /**
9981
+ * 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.
9982
+ */
9983
+ relative: {
9984
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
9985
+ from: number;
9986
+ to: number;
9987
+ };
9597
9988
  };
9598
9989
  format: {
9599
9990
  /**
@@ -9890,11 +10281,28 @@ export interface VisualisationConfig23 {
9890
10281
  id: string;
9891
10282
  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";
9892
10283
  /**
9893
- * Literal (number or string); a \{from,to\} range for between/not_between; omitted for all/is_empty/is_not_empty.
10284
+ * 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.
9894
10285
  */
9895
10286
  value?: number | string | {
9896
10287
  from: number;
9897
10288
  to: number;
10289
+ } | {
10290
+ /**
10291
+ * 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.
10292
+ */
10293
+ absolute: {
10294
+ from: string;
10295
+ to: string;
10296
+ };
10297
+ } | {
10298
+ /**
10299
+ * 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.
10300
+ */
10301
+ relative: {
10302
+ granularity: "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year";
10303
+ from: number;
10304
+ to: number;
10305
+ };
9898
10306
  };
9899
10307
  format: {
9900
10308
  /**