@wevion/cli 1.0.3252 → 1.0.3261
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/openapi.json +766 -22
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -184410,8 +184410,15 @@
|
|
|
184410
184410
|
"type": "string"
|
|
184411
184411
|
},
|
|
184412
184412
|
"user_id": {
|
|
184413
|
-
"
|
|
184414
|
-
|
|
184413
|
+
"anyOf": [
|
|
184414
|
+
{
|
|
184415
|
+
"format": "uuid",
|
|
184416
|
+
"type": "string"
|
|
184417
|
+
},
|
|
184418
|
+
{
|
|
184419
|
+
"type": "null"
|
|
184420
|
+
}
|
|
184421
|
+
]
|
|
184415
184422
|
},
|
|
184416
184423
|
"created_by": {
|
|
184417
184424
|
"anyOf": [
|
|
@@ -184488,6 +184495,7 @@
|
|
|
184488
184495
|
}
|
|
184489
184496
|
},
|
|
184490
184497
|
"entity_filter": {
|
|
184498
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
184491
184499
|
"anyOf": [
|
|
184492
184500
|
{
|
|
184493
184501
|
"additionalProperties": false,
|
|
@@ -184537,6 +184545,33 @@
|
|
|
184537
184545
|
},
|
|
184538
184546
|
"title": "RuleEntityFilter"
|
|
184539
184547
|
},
|
|
184548
|
+
{
|
|
184549
|
+
"additionalProperties": true,
|
|
184550
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
184551
|
+
"type": "object",
|
|
184552
|
+
"properties": {
|
|
184553
|
+
"name_contains": {
|
|
184554
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
184555
|
+
"type": "string"
|
|
184556
|
+
},
|
|
184557
|
+
"name_not_contains": {
|
|
184558
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
184559
|
+
"type": "string"
|
|
184560
|
+
},
|
|
184561
|
+
"status_in": {
|
|
184562
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
184563
|
+
"type": "array",
|
|
184564
|
+
"items": {
|
|
184565
|
+
"type": "string"
|
|
184566
|
+
}
|
|
184567
|
+
},
|
|
184568
|
+
"account_mode": {
|
|
184569
|
+
"description": "Ad-account scope intent as stored.",
|
|
184570
|
+
"type": "string"
|
|
184571
|
+
}
|
|
184572
|
+
},
|
|
184573
|
+
"title": "RuleEntityFilterStored"
|
|
184574
|
+
},
|
|
184540
184575
|
{
|
|
184541
184576
|
"type": "null"
|
|
184542
184577
|
}
|
|
@@ -184559,7 +184594,7 @@
|
|
|
184559
184594
|
]
|
|
184560
184595
|
},
|
|
184561
184596
|
"conditions": {
|
|
184562
|
-
"description": "Ordered list of conditions
|
|
184597
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
184563
184598
|
"type": "array",
|
|
184564
184599
|
"items": {
|
|
184565
184600
|
"anyOf": [
|
|
@@ -185146,8 +185181,29 @@
|
|
|
185146
185181
|
}
|
|
185147
185182
|
},
|
|
185148
185183
|
"title": "CrossPlatformRuleCondition"
|
|
185184
|
+
},
|
|
185185
|
+
{
|
|
185186
|
+
"additionalProperties": true,
|
|
185187
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
185188
|
+
"type": "object",
|
|
185189
|
+
"properties": {
|
|
185190
|
+
"metric": {
|
|
185191
|
+
"description": "Metric key as stored.",
|
|
185192
|
+
"type": "string"
|
|
185193
|
+
},
|
|
185194
|
+
"operator": {
|
|
185195
|
+
"description": "Comparison operator as stored.",
|
|
185196
|
+
"type": "string"
|
|
185197
|
+
},
|
|
185198
|
+
"time_range": {
|
|
185199
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
185200
|
+
"type": "string"
|
|
185201
|
+
}
|
|
185202
|
+
},
|
|
185203
|
+
"title": "RuleConditionLegacy"
|
|
185149
185204
|
}
|
|
185150
|
-
]
|
|
185205
|
+
],
|
|
185206
|
+
"title": "RuleConditionStored"
|
|
185151
185207
|
}
|
|
185152
185208
|
},
|
|
185153
185209
|
"actions": {
|
|
@@ -185553,6 +185609,7 @@
|
|
|
185553
185609
|
"type": "integer"
|
|
185554
185610
|
},
|
|
185555
185611
|
"schedule_config": {
|
|
185612
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
185556
185613
|
"anyOf": [
|
|
185557
185614
|
{
|
|
185558
185615
|
"additionalProperties": false,
|
|
@@ -185615,6 +185672,56 @@
|
|
|
185615
185672
|
},
|
|
185616
185673
|
"title": "RuleScheduleConfig"
|
|
185617
185674
|
},
|
|
185675
|
+
{
|
|
185676
|
+
"additionalProperties": true,
|
|
185677
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
185678
|
+
"type": "object",
|
|
185679
|
+
"properties": {
|
|
185680
|
+
"time": {
|
|
185681
|
+
"description": "Daily evaluation time as stored.",
|
|
185682
|
+
"type": "string"
|
|
185683
|
+
},
|
|
185684
|
+
"type": {
|
|
185685
|
+
"description": "Schedule discriminator as stored.",
|
|
185686
|
+
"type": "string"
|
|
185687
|
+
},
|
|
185688
|
+
"hours_of_day": {
|
|
185689
|
+
"description": "Hours as stored.",
|
|
185690
|
+
"type": "array",
|
|
185691
|
+
"items": {
|
|
185692
|
+
"type": "number"
|
|
185693
|
+
}
|
|
185694
|
+
},
|
|
185695
|
+
"days_of_week": {
|
|
185696
|
+
"description": "Days as stored.",
|
|
185697
|
+
"type": "array",
|
|
185698
|
+
"items": {
|
|
185699
|
+
"type": "number"
|
|
185700
|
+
}
|
|
185701
|
+
},
|
|
185702
|
+
"slots": {
|
|
185703
|
+
"description": "Day/hour slots as stored.",
|
|
185704
|
+
"type": "array",
|
|
185705
|
+
"items": {
|
|
185706
|
+
"additionalProperties": true,
|
|
185707
|
+
"type": "object",
|
|
185708
|
+
"properties": {
|
|
185709
|
+
"day": {
|
|
185710
|
+
"type": "number"
|
|
185711
|
+
},
|
|
185712
|
+
"hour": {
|
|
185713
|
+
"type": "number"
|
|
185714
|
+
}
|
|
185715
|
+
}
|
|
185716
|
+
}
|
|
185717
|
+
},
|
|
185718
|
+
"timezone": {
|
|
185719
|
+
"description": "Timezone as stored.",
|
|
185720
|
+
"type": "string"
|
|
185721
|
+
}
|
|
185722
|
+
},
|
|
185723
|
+
"title": "RuleScheduleConfigStored"
|
|
185724
|
+
},
|
|
185618
185725
|
{
|
|
185619
185726
|
"type": "null"
|
|
185620
185727
|
}
|
|
@@ -185653,6 +185760,7 @@
|
|
|
185653
185760
|
"type": "boolean"
|
|
185654
185761
|
},
|
|
185655
185762
|
"notify_channels": {
|
|
185763
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
185656
185764
|
"anyOf": [
|
|
185657
185765
|
{
|
|
185658
185766
|
"additionalProperties": false,
|
|
@@ -185671,6 +185779,23 @@
|
|
|
185671
185779
|
},
|
|
185672
185780
|
"title": "RuleNotifyChannels"
|
|
185673
185781
|
},
|
|
185782
|
+
{
|
|
185783
|
+
"additionalProperties": true,
|
|
185784
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
185785
|
+
"type": "object",
|
|
185786
|
+
"properties": {
|
|
185787
|
+
"email": {
|
|
185788
|
+
"type": "boolean"
|
|
185789
|
+
},
|
|
185790
|
+
"in_app": {
|
|
185791
|
+
"type": "boolean"
|
|
185792
|
+
},
|
|
185793
|
+
"telegram": {
|
|
185794
|
+
"type": "boolean"
|
|
185795
|
+
}
|
|
185796
|
+
},
|
|
185797
|
+
"title": "RuleNotifyChannelsStored"
|
|
185798
|
+
},
|
|
185674
185799
|
{
|
|
185675
185800
|
"type": "null"
|
|
185676
185801
|
}
|
|
@@ -187243,8 +187368,15 @@
|
|
|
187243
187368
|
"type": "string"
|
|
187244
187369
|
},
|
|
187245
187370
|
"user_id": {
|
|
187246
|
-
"
|
|
187247
|
-
|
|
187371
|
+
"anyOf": [
|
|
187372
|
+
{
|
|
187373
|
+
"format": "uuid",
|
|
187374
|
+
"type": "string"
|
|
187375
|
+
},
|
|
187376
|
+
{
|
|
187377
|
+
"type": "null"
|
|
187378
|
+
}
|
|
187379
|
+
]
|
|
187248
187380
|
},
|
|
187249
187381
|
"created_by": {
|
|
187250
187382
|
"anyOf": [
|
|
@@ -187321,6 +187453,7 @@
|
|
|
187321
187453
|
}
|
|
187322
187454
|
},
|
|
187323
187455
|
"entity_filter": {
|
|
187456
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
187324
187457
|
"anyOf": [
|
|
187325
187458
|
{
|
|
187326
187459
|
"additionalProperties": false,
|
|
@@ -187369,6 +187502,32 @@
|
|
|
187369
187502
|
}
|
|
187370
187503
|
}
|
|
187371
187504
|
},
|
|
187505
|
+
{
|
|
187506
|
+
"additionalProperties": true,
|
|
187507
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
187508
|
+
"type": "object",
|
|
187509
|
+
"properties": {
|
|
187510
|
+
"name_contains": {
|
|
187511
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
187512
|
+
"type": "string"
|
|
187513
|
+
},
|
|
187514
|
+
"name_not_contains": {
|
|
187515
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
187516
|
+
"type": "string"
|
|
187517
|
+
},
|
|
187518
|
+
"status_in": {
|
|
187519
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
187520
|
+
"type": "array",
|
|
187521
|
+
"items": {
|
|
187522
|
+
"type": "string"
|
|
187523
|
+
}
|
|
187524
|
+
},
|
|
187525
|
+
"account_mode": {
|
|
187526
|
+
"description": "Ad-account scope intent as stored.",
|
|
187527
|
+
"type": "string"
|
|
187528
|
+
}
|
|
187529
|
+
}
|
|
187530
|
+
},
|
|
187372
187531
|
{
|
|
187373
187532
|
"type": "null"
|
|
187374
187533
|
}
|
|
@@ -187391,7 +187550,7 @@
|
|
|
187391
187550
|
]
|
|
187392
187551
|
},
|
|
187393
187552
|
"conditions": {
|
|
187394
|
-
"description": "Ordered list of conditions
|
|
187553
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
187395
187554
|
"type": "array",
|
|
187396
187555
|
"items": {
|
|
187397
187556
|
"anyOf": [
|
|
@@ -187976,6 +188135,25 @@
|
|
|
187976
188135
|
]
|
|
187977
188136
|
}
|
|
187978
188137
|
}
|
|
188138
|
+
},
|
|
188139
|
+
{
|
|
188140
|
+
"additionalProperties": true,
|
|
188141
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
188142
|
+
"type": "object",
|
|
188143
|
+
"properties": {
|
|
188144
|
+
"metric": {
|
|
188145
|
+
"description": "Metric key as stored.",
|
|
188146
|
+
"type": "string"
|
|
188147
|
+
},
|
|
188148
|
+
"operator": {
|
|
188149
|
+
"description": "Comparison operator as stored.",
|
|
188150
|
+
"type": "string"
|
|
188151
|
+
},
|
|
188152
|
+
"time_range": {
|
|
188153
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
188154
|
+
"type": "string"
|
|
188155
|
+
}
|
|
188156
|
+
}
|
|
187979
188157
|
}
|
|
187980
188158
|
]
|
|
187981
188159
|
}
|
|
@@ -188371,6 +188549,7 @@
|
|
|
188371
188549
|
"type": "integer"
|
|
188372
188550
|
},
|
|
188373
188551
|
"schedule_config": {
|
|
188552
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
188374
188553
|
"anyOf": [
|
|
188375
188554
|
{
|
|
188376
188555
|
"additionalProperties": false,
|
|
@@ -188432,6 +188611,55 @@
|
|
|
188432
188611
|
}
|
|
188433
188612
|
}
|
|
188434
188613
|
},
|
|
188614
|
+
{
|
|
188615
|
+
"additionalProperties": true,
|
|
188616
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
188617
|
+
"type": "object",
|
|
188618
|
+
"properties": {
|
|
188619
|
+
"time": {
|
|
188620
|
+
"description": "Daily evaluation time as stored.",
|
|
188621
|
+
"type": "string"
|
|
188622
|
+
},
|
|
188623
|
+
"type": {
|
|
188624
|
+
"description": "Schedule discriminator as stored.",
|
|
188625
|
+
"type": "string"
|
|
188626
|
+
},
|
|
188627
|
+
"hours_of_day": {
|
|
188628
|
+
"description": "Hours as stored.",
|
|
188629
|
+
"type": "array",
|
|
188630
|
+
"items": {
|
|
188631
|
+
"type": "number"
|
|
188632
|
+
}
|
|
188633
|
+
},
|
|
188634
|
+
"days_of_week": {
|
|
188635
|
+
"description": "Days as stored.",
|
|
188636
|
+
"type": "array",
|
|
188637
|
+
"items": {
|
|
188638
|
+
"type": "number"
|
|
188639
|
+
}
|
|
188640
|
+
},
|
|
188641
|
+
"slots": {
|
|
188642
|
+
"description": "Day/hour slots as stored.",
|
|
188643
|
+
"type": "array",
|
|
188644
|
+
"items": {
|
|
188645
|
+
"additionalProperties": true,
|
|
188646
|
+
"type": "object",
|
|
188647
|
+
"properties": {
|
|
188648
|
+
"day": {
|
|
188649
|
+
"type": "number"
|
|
188650
|
+
},
|
|
188651
|
+
"hour": {
|
|
188652
|
+
"type": "number"
|
|
188653
|
+
}
|
|
188654
|
+
}
|
|
188655
|
+
}
|
|
188656
|
+
},
|
|
188657
|
+
"timezone": {
|
|
188658
|
+
"description": "Timezone as stored.",
|
|
188659
|
+
"type": "string"
|
|
188660
|
+
}
|
|
188661
|
+
}
|
|
188662
|
+
},
|
|
188435
188663
|
{
|
|
188436
188664
|
"type": "null"
|
|
188437
188665
|
}
|
|
@@ -188470,6 +188698,7 @@
|
|
|
188470
188698
|
"type": "boolean"
|
|
188471
188699
|
},
|
|
188472
188700
|
"notify_channels": {
|
|
188701
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
188473
188702
|
"anyOf": [
|
|
188474
188703
|
{
|
|
188475
188704
|
"additionalProperties": false,
|
|
@@ -188487,6 +188716,22 @@
|
|
|
188487
188716
|
}
|
|
188488
188717
|
}
|
|
188489
188718
|
},
|
|
188719
|
+
{
|
|
188720
|
+
"additionalProperties": true,
|
|
188721
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
188722
|
+
"type": "object",
|
|
188723
|
+
"properties": {
|
|
188724
|
+
"email": {
|
|
188725
|
+
"type": "boolean"
|
|
188726
|
+
},
|
|
188727
|
+
"in_app": {
|
|
188728
|
+
"type": "boolean"
|
|
188729
|
+
},
|
|
188730
|
+
"telegram": {
|
|
188731
|
+
"type": "boolean"
|
|
188732
|
+
}
|
|
188733
|
+
}
|
|
188734
|
+
},
|
|
188490
188735
|
{
|
|
188491
188736
|
"type": "null"
|
|
188492
188737
|
}
|
|
@@ -188921,7 +189166,7 @@
|
|
|
188921
189166
|
]
|
|
188922
189167
|
},
|
|
188923
189168
|
"conditions": {
|
|
188924
|
-
"description": "Ordered list of conditions
|
|
189169
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
188925
189170
|
"type": "array",
|
|
188926
189171
|
"items": {
|
|
188927
189172
|
"anyOf": [
|
|
@@ -189506,6 +189751,25 @@
|
|
|
189506
189751
|
]
|
|
189507
189752
|
}
|
|
189508
189753
|
}
|
|
189754
|
+
},
|
|
189755
|
+
{
|
|
189756
|
+
"additionalProperties": true,
|
|
189757
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
189758
|
+
"type": "object",
|
|
189759
|
+
"properties": {
|
|
189760
|
+
"metric": {
|
|
189761
|
+
"description": "Metric key as stored.",
|
|
189762
|
+
"type": "string"
|
|
189763
|
+
},
|
|
189764
|
+
"operator": {
|
|
189765
|
+
"description": "Comparison operator as stored.",
|
|
189766
|
+
"type": "string"
|
|
189767
|
+
},
|
|
189768
|
+
"time_range": {
|
|
189769
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
189770
|
+
"type": "string"
|
|
189771
|
+
}
|
|
189772
|
+
}
|
|
189509
189773
|
}
|
|
189510
189774
|
]
|
|
189511
189775
|
}
|
|
@@ -190568,8 +190832,15 @@
|
|
|
190568
190832
|
"type": "string"
|
|
190569
190833
|
},
|
|
190570
190834
|
"user_id": {
|
|
190571
|
-
"
|
|
190572
|
-
|
|
190835
|
+
"anyOf": [
|
|
190836
|
+
{
|
|
190837
|
+
"format": "uuid",
|
|
190838
|
+
"type": "string"
|
|
190839
|
+
},
|
|
190840
|
+
{
|
|
190841
|
+
"type": "null"
|
|
190842
|
+
}
|
|
190843
|
+
]
|
|
190573
190844
|
},
|
|
190574
190845
|
"created_by": {
|
|
190575
190846
|
"anyOf": [
|
|
@@ -190646,6 +190917,7 @@
|
|
|
190646
190917
|
}
|
|
190647
190918
|
},
|
|
190648
190919
|
"entity_filter": {
|
|
190920
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
190649
190921
|
"anyOf": [
|
|
190650
190922
|
{
|
|
190651
190923
|
"additionalProperties": false,
|
|
@@ -190694,6 +190966,32 @@
|
|
|
190694
190966
|
}
|
|
190695
190967
|
}
|
|
190696
190968
|
},
|
|
190969
|
+
{
|
|
190970
|
+
"additionalProperties": true,
|
|
190971
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
190972
|
+
"type": "object",
|
|
190973
|
+
"properties": {
|
|
190974
|
+
"name_contains": {
|
|
190975
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
190976
|
+
"type": "string"
|
|
190977
|
+
},
|
|
190978
|
+
"name_not_contains": {
|
|
190979
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
190980
|
+
"type": "string"
|
|
190981
|
+
},
|
|
190982
|
+
"status_in": {
|
|
190983
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
190984
|
+
"type": "array",
|
|
190985
|
+
"items": {
|
|
190986
|
+
"type": "string"
|
|
190987
|
+
}
|
|
190988
|
+
},
|
|
190989
|
+
"account_mode": {
|
|
190990
|
+
"description": "Ad-account scope intent as stored.",
|
|
190991
|
+
"type": "string"
|
|
190992
|
+
}
|
|
190993
|
+
}
|
|
190994
|
+
},
|
|
190697
190995
|
{
|
|
190698
190996
|
"type": "null"
|
|
190699
190997
|
}
|
|
@@ -190716,7 +191014,7 @@
|
|
|
190716
191014
|
]
|
|
190717
191015
|
},
|
|
190718
191016
|
"conditions": {
|
|
190719
|
-
"description": "Ordered list of conditions
|
|
191017
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
190720
191018
|
"type": "array",
|
|
190721
191019
|
"items": {
|
|
190722
191020
|
"anyOf": [
|
|
@@ -191301,8 +191599,27 @@
|
|
|
191301
191599
|
]
|
|
191302
191600
|
}
|
|
191303
191601
|
}
|
|
191304
|
-
}
|
|
191305
|
-
|
|
191602
|
+
},
|
|
191603
|
+
{
|
|
191604
|
+
"additionalProperties": true,
|
|
191605
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
191606
|
+
"type": "object",
|
|
191607
|
+
"properties": {
|
|
191608
|
+
"metric": {
|
|
191609
|
+
"description": "Metric key as stored.",
|
|
191610
|
+
"type": "string"
|
|
191611
|
+
},
|
|
191612
|
+
"operator": {
|
|
191613
|
+
"description": "Comparison operator as stored.",
|
|
191614
|
+
"type": "string"
|
|
191615
|
+
},
|
|
191616
|
+
"time_range": {
|
|
191617
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
191618
|
+
"type": "string"
|
|
191619
|
+
}
|
|
191620
|
+
}
|
|
191621
|
+
}
|
|
191622
|
+
]
|
|
191306
191623
|
}
|
|
191307
191624
|
},
|
|
191308
191625
|
"actions": {
|
|
@@ -191696,6 +192013,7 @@
|
|
|
191696
192013
|
"type": "integer"
|
|
191697
192014
|
},
|
|
191698
192015
|
"schedule_config": {
|
|
192016
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
191699
192017
|
"anyOf": [
|
|
191700
192018
|
{
|
|
191701
192019
|
"additionalProperties": false,
|
|
@@ -191757,6 +192075,55 @@
|
|
|
191757
192075
|
}
|
|
191758
192076
|
}
|
|
191759
192077
|
},
|
|
192078
|
+
{
|
|
192079
|
+
"additionalProperties": true,
|
|
192080
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
192081
|
+
"type": "object",
|
|
192082
|
+
"properties": {
|
|
192083
|
+
"time": {
|
|
192084
|
+
"description": "Daily evaluation time as stored.",
|
|
192085
|
+
"type": "string"
|
|
192086
|
+
},
|
|
192087
|
+
"type": {
|
|
192088
|
+
"description": "Schedule discriminator as stored.",
|
|
192089
|
+
"type": "string"
|
|
192090
|
+
},
|
|
192091
|
+
"hours_of_day": {
|
|
192092
|
+
"description": "Hours as stored.",
|
|
192093
|
+
"type": "array",
|
|
192094
|
+
"items": {
|
|
192095
|
+
"type": "number"
|
|
192096
|
+
}
|
|
192097
|
+
},
|
|
192098
|
+
"days_of_week": {
|
|
192099
|
+
"description": "Days as stored.",
|
|
192100
|
+
"type": "array",
|
|
192101
|
+
"items": {
|
|
192102
|
+
"type": "number"
|
|
192103
|
+
}
|
|
192104
|
+
},
|
|
192105
|
+
"slots": {
|
|
192106
|
+
"description": "Day/hour slots as stored.",
|
|
192107
|
+
"type": "array",
|
|
192108
|
+
"items": {
|
|
192109
|
+
"additionalProperties": true,
|
|
192110
|
+
"type": "object",
|
|
192111
|
+
"properties": {
|
|
192112
|
+
"day": {
|
|
192113
|
+
"type": "number"
|
|
192114
|
+
},
|
|
192115
|
+
"hour": {
|
|
192116
|
+
"type": "number"
|
|
192117
|
+
}
|
|
192118
|
+
}
|
|
192119
|
+
}
|
|
192120
|
+
},
|
|
192121
|
+
"timezone": {
|
|
192122
|
+
"description": "Timezone as stored.",
|
|
192123
|
+
"type": "string"
|
|
192124
|
+
}
|
|
192125
|
+
}
|
|
192126
|
+
},
|
|
191760
192127
|
{
|
|
191761
192128
|
"type": "null"
|
|
191762
192129
|
}
|
|
@@ -191795,6 +192162,7 @@
|
|
|
191795
192162
|
"type": "boolean"
|
|
191796
192163
|
},
|
|
191797
192164
|
"notify_channels": {
|
|
192165
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
191798
192166
|
"anyOf": [
|
|
191799
192167
|
{
|
|
191800
192168
|
"additionalProperties": false,
|
|
@@ -191812,6 +192180,22 @@
|
|
|
191812
192180
|
}
|
|
191813
192181
|
}
|
|
191814
192182
|
},
|
|
192183
|
+
{
|
|
192184
|
+
"additionalProperties": true,
|
|
192185
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
192186
|
+
"type": "object",
|
|
192187
|
+
"properties": {
|
|
192188
|
+
"email": {
|
|
192189
|
+
"type": "boolean"
|
|
192190
|
+
},
|
|
192191
|
+
"in_app": {
|
|
192192
|
+
"type": "boolean"
|
|
192193
|
+
},
|
|
192194
|
+
"telegram": {
|
|
192195
|
+
"type": "boolean"
|
|
192196
|
+
}
|
|
192197
|
+
}
|
|
192198
|
+
},
|
|
191815
192199
|
{
|
|
191816
192200
|
"type": "null"
|
|
191817
192201
|
}
|
|
@@ -193398,8 +193782,15 @@
|
|
|
193398
193782
|
"type": "string"
|
|
193399
193783
|
},
|
|
193400
193784
|
"user_id": {
|
|
193401
|
-
"
|
|
193402
|
-
|
|
193785
|
+
"anyOf": [
|
|
193786
|
+
{
|
|
193787
|
+
"format": "uuid",
|
|
193788
|
+
"type": "string"
|
|
193789
|
+
},
|
|
193790
|
+
{
|
|
193791
|
+
"type": "null"
|
|
193792
|
+
}
|
|
193793
|
+
]
|
|
193403
193794
|
},
|
|
193404
193795
|
"created_by": {
|
|
193405
193796
|
"anyOf": [
|
|
@@ -193476,6 +193867,7 @@
|
|
|
193476
193867
|
}
|
|
193477
193868
|
},
|
|
193478
193869
|
"entity_filter": {
|
|
193870
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
193479
193871
|
"anyOf": [
|
|
193480
193872
|
{
|
|
193481
193873
|
"additionalProperties": false,
|
|
@@ -193524,6 +193916,32 @@
|
|
|
193524
193916
|
}
|
|
193525
193917
|
}
|
|
193526
193918
|
},
|
|
193919
|
+
{
|
|
193920
|
+
"additionalProperties": true,
|
|
193921
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
193922
|
+
"type": "object",
|
|
193923
|
+
"properties": {
|
|
193924
|
+
"name_contains": {
|
|
193925
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
193926
|
+
"type": "string"
|
|
193927
|
+
},
|
|
193928
|
+
"name_not_contains": {
|
|
193929
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
193930
|
+
"type": "string"
|
|
193931
|
+
},
|
|
193932
|
+
"status_in": {
|
|
193933
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
193934
|
+
"type": "array",
|
|
193935
|
+
"items": {
|
|
193936
|
+
"type": "string"
|
|
193937
|
+
}
|
|
193938
|
+
},
|
|
193939
|
+
"account_mode": {
|
|
193940
|
+
"description": "Ad-account scope intent as stored.",
|
|
193941
|
+
"type": "string"
|
|
193942
|
+
}
|
|
193943
|
+
}
|
|
193944
|
+
},
|
|
193527
193945
|
{
|
|
193528
193946
|
"type": "null"
|
|
193529
193947
|
}
|
|
@@ -193546,7 +193964,7 @@
|
|
|
193546
193964
|
]
|
|
193547
193965
|
},
|
|
193548
193966
|
"conditions": {
|
|
193549
|
-
"description": "Ordered list of conditions
|
|
193967
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
193550
193968
|
"type": "array",
|
|
193551
193969
|
"items": {
|
|
193552
193970
|
"anyOf": [
|
|
@@ -194131,6 +194549,25 @@
|
|
|
194131
194549
|
]
|
|
194132
194550
|
}
|
|
194133
194551
|
}
|
|
194552
|
+
},
|
|
194553
|
+
{
|
|
194554
|
+
"additionalProperties": true,
|
|
194555
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
194556
|
+
"type": "object",
|
|
194557
|
+
"properties": {
|
|
194558
|
+
"metric": {
|
|
194559
|
+
"description": "Metric key as stored.",
|
|
194560
|
+
"type": "string"
|
|
194561
|
+
},
|
|
194562
|
+
"operator": {
|
|
194563
|
+
"description": "Comparison operator as stored.",
|
|
194564
|
+
"type": "string"
|
|
194565
|
+
},
|
|
194566
|
+
"time_range": {
|
|
194567
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
194568
|
+
"type": "string"
|
|
194569
|
+
}
|
|
194570
|
+
}
|
|
194134
194571
|
}
|
|
194135
194572
|
]
|
|
194136
194573
|
}
|
|
@@ -194526,6 +194963,7 @@
|
|
|
194526
194963
|
"type": "integer"
|
|
194527
194964
|
},
|
|
194528
194965
|
"schedule_config": {
|
|
194966
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
194529
194967
|
"anyOf": [
|
|
194530
194968
|
{
|
|
194531
194969
|
"additionalProperties": false,
|
|
@@ -194587,6 +195025,55 @@
|
|
|
194587
195025
|
}
|
|
194588
195026
|
}
|
|
194589
195027
|
},
|
|
195028
|
+
{
|
|
195029
|
+
"additionalProperties": true,
|
|
195030
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
195031
|
+
"type": "object",
|
|
195032
|
+
"properties": {
|
|
195033
|
+
"time": {
|
|
195034
|
+
"description": "Daily evaluation time as stored.",
|
|
195035
|
+
"type": "string"
|
|
195036
|
+
},
|
|
195037
|
+
"type": {
|
|
195038
|
+
"description": "Schedule discriminator as stored.",
|
|
195039
|
+
"type": "string"
|
|
195040
|
+
},
|
|
195041
|
+
"hours_of_day": {
|
|
195042
|
+
"description": "Hours as stored.",
|
|
195043
|
+
"type": "array",
|
|
195044
|
+
"items": {
|
|
195045
|
+
"type": "number"
|
|
195046
|
+
}
|
|
195047
|
+
},
|
|
195048
|
+
"days_of_week": {
|
|
195049
|
+
"description": "Days as stored.",
|
|
195050
|
+
"type": "array",
|
|
195051
|
+
"items": {
|
|
195052
|
+
"type": "number"
|
|
195053
|
+
}
|
|
195054
|
+
},
|
|
195055
|
+
"slots": {
|
|
195056
|
+
"description": "Day/hour slots as stored.",
|
|
195057
|
+
"type": "array",
|
|
195058
|
+
"items": {
|
|
195059
|
+
"additionalProperties": true,
|
|
195060
|
+
"type": "object",
|
|
195061
|
+
"properties": {
|
|
195062
|
+
"day": {
|
|
195063
|
+
"type": "number"
|
|
195064
|
+
},
|
|
195065
|
+
"hour": {
|
|
195066
|
+
"type": "number"
|
|
195067
|
+
}
|
|
195068
|
+
}
|
|
195069
|
+
}
|
|
195070
|
+
},
|
|
195071
|
+
"timezone": {
|
|
195072
|
+
"description": "Timezone as stored.",
|
|
195073
|
+
"type": "string"
|
|
195074
|
+
}
|
|
195075
|
+
}
|
|
195076
|
+
},
|
|
194590
195077
|
{
|
|
194591
195078
|
"type": "null"
|
|
194592
195079
|
}
|
|
@@ -194625,6 +195112,7 @@
|
|
|
194625
195112
|
"type": "boolean"
|
|
194626
195113
|
},
|
|
194627
195114
|
"notify_channels": {
|
|
195115
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
194628
195116
|
"anyOf": [
|
|
194629
195117
|
{
|
|
194630
195118
|
"additionalProperties": false,
|
|
@@ -194642,6 +195130,22 @@
|
|
|
194642
195130
|
}
|
|
194643
195131
|
}
|
|
194644
195132
|
},
|
|
195133
|
+
{
|
|
195134
|
+
"additionalProperties": true,
|
|
195135
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
195136
|
+
"type": "object",
|
|
195137
|
+
"properties": {
|
|
195138
|
+
"email": {
|
|
195139
|
+
"type": "boolean"
|
|
195140
|
+
},
|
|
195141
|
+
"in_app": {
|
|
195142
|
+
"type": "boolean"
|
|
195143
|
+
},
|
|
195144
|
+
"telegram": {
|
|
195145
|
+
"type": "boolean"
|
|
195146
|
+
}
|
|
195147
|
+
}
|
|
195148
|
+
},
|
|
194645
195149
|
{
|
|
194646
195150
|
"type": "null"
|
|
194647
195151
|
}
|
|
@@ -195206,8 +195710,15 @@
|
|
|
195206
195710
|
"type": "string"
|
|
195207
195711
|
},
|
|
195208
195712
|
"user_id": {
|
|
195209
|
-
"
|
|
195210
|
-
|
|
195713
|
+
"anyOf": [
|
|
195714
|
+
{
|
|
195715
|
+
"format": "uuid",
|
|
195716
|
+
"type": "string"
|
|
195717
|
+
},
|
|
195718
|
+
{
|
|
195719
|
+
"type": "null"
|
|
195720
|
+
}
|
|
195721
|
+
]
|
|
195211
195722
|
},
|
|
195212
195723
|
"created_by": {
|
|
195213
195724
|
"anyOf": [
|
|
@@ -195284,6 +195795,7 @@
|
|
|
195284
195795
|
}
|
|
195285
195796
|
},
|
|
195286
195797
|
"entity_filter": {
|
|
195798
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
195287
195799
|
"anyOf": [
|
|
195288
195800
|
{
|
|
195289
195801
|
"additionalProperties": false,
|
|
@@ -195332,6 +195844,32 @@
|
|
|
195332
195844
|
}
|
|
195333
195845
|
}
|
|
195334
195846
|
},
|
|
195847
|
+
{
|
|
195848
|
+
"additionalProperties": true,
|
|
195849
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
195850
|
+
"type": "object",
|
|
195851
|
+
"properties": {
|
|
195852
|
+
"name_contains": {
|
|
195853
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
195854
|
+
"type": "string"
|
|
195855
|
+
},
|
|
195856
|
+
"name_not_contains": {
|
|
195857
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
195858
|
+
"type": "string"
|
|
195859
|
+
},
|
|
195860
|
+
"status_in": {
|
|
195861
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
195862
|
+
"type": "array",
|
|
195863
|
+
"items": {
|
|
195864
|
+
"type": "string"
|
|
195865
|
+
}
|
|
195866
|
+
},
|
|
195867
|
+
"account_mode": {
|
|
195868
|
+
"description": "Ad-account scope intent as stored.",
|
|
195869
|
+
"type": "string"
|
|
195870
|
+
}
|
|
195871
|
+
}
|
|
195872
|
+
},
|
|
195335
195873
|
{
|
|
195336
195874
|
"type": "null"
|
|
195337
195875
|
}
|
|
@@ -195354,7 +195892,7 @@
|
|
|
195354
195892
|
]
|
|
195355
195893
|
},
|
|
195356
195894
|
"conditions": {
|
|
195357
|
-
"description": "Ordered list of conditions
|
|
195895
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
195358
195896
|
"type": "array",
|
|
195359
195897
|
"items": {
|
|
195360
195898
|
"anyOf": [
|
|
@@ -195939,6 +196477,25 @@
|
|
|
195939
196477
|
]
|
|
195940
196478
|
}
|
|
195941
196479
|
}
|
|
196480
|
+
},
|
|
196481
|
+
{
|
|
196482
|
+
"additionalProperties": true,
|
|
196483
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
196484
|
+
"type": "object",
|
|
196485
|
+
"properties": {
|
|
196486
|
+
"metric": {
|
|
196487
|
+
"description": "Metric key as stored.",
|
|
196488
|
+
"type": "string"
|
|
196489
|
+
},
|
|
196490
|
+
"operator": {
|
|
196491
|
+
"description": "Comparison operator as stored.",
|
|
196492
|
+
"type": "string"
|
|
196493
|
+
},
|
|
196494
|
+
"time_range": {
|
|
196495
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
196496
|
+
"type": "string"
|
|
196497
|
+
}
|
|
196498
|
+
}
|
|
195942
196499
|
}
|
|
195943
196500
|
]
|
|
195944
196501
|
}
|
|
@@ -196334,6 +196891,7 @@
|
|
|
196334
196891
|
"type": "integer"
|
|
196335
196892
|
},
|
|
196336
196893
|
"schedule_config": {
|
|
196894
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
196337
196895
|
"anyOf": [
|
|
196338
196896
|
{
|
|
196339
196897
|
"additionalProperties": false,
|
|
@@ -196395,6 +196953,55 @@
|
|
|
196395
196953
|
}
|
|
196396
196954
|
}
|
|
196397
196955
|
},
|
|
196956
|
+
{
|
|
196957
|
+
"additionalProperties": true,
|
|
196958
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
196959
|
+
"type": "object",
|
|
196960
|
+
"properties": {
|
|
196961
|
+
"time": {
|
|
196962
|
+
"description": "Daily evaluation time as stored.",
|
|
196963
|
+
"type": "string"
|
|
196964
|
+
},
|
|
196965
|
+
"type": {
|
|
196966
|
+
"description": "Schedule discriminator as stored.",
|
|
196967
|
+
"type": "string"
|
|
196968
|
+
},
|
|
196969
|
+
"hours_of_day": {
|
|
196970
|
+
"description": "Hours as stored.",
|
|
196971
|
+
"type": "array",
|
|
196972
|
+
"items": {
|
|
196973
|
+
"type": "number"
|
|
196974
|
+
}
|
|
196975
|
+
},
|
|
196976
|
+
"days_of_week": {
|
|
196977
|
+
"description": "Days as stored.",
|
|
196978
|
+
"type": "array",
|
|
196979
|
+
"items": {
|
|
196980
|
+
"type": "number"
|
|
196981
|
+
}
|
|
196982
|
+
},
|
|
196983
|
+
"slots": {
|
|
196984
|
+
"description": "Day/hour slots as stored.",
|
|
196985
|
+
"type": "array",
|
|
196986
|
+
"items": {
|
|
196987
|
+
"additionalProperties": true,
|
|
196988
|
+
"type": "object",
|
|
196989
|
+
"properties": {
|
|
196990
|
+
"day": {
|
|
196991
|
+
"type": "number"
|
|
196992
|
+
},
|
|
196993
|
+
"hour": {
|
|
196994
|
+
"type": "number"
|
|
196995
|
+
}
|
|
196996
|
+
}
|
|
196997
|
+
}
|
|
196998
|
+
},
|
|
196999
|
+
"timezone": {
|
|
197000
|
+
"description": "Timezone as stored.",
|
|
197001
|
+
"type": "string"
|
|
197002
|
+
}
|
|
197003
|
+
}
|
|
197004
|
+
},
|
|
196398
197005
|
{
|
|
196399
197006
|
"type": "null"
|
|
196400
197007
|
}
|
|
@@ -196433,6 +197040,7 @@
|
|
|
196433
197040
|
"type": "boolean"
|
|
196434
197041
|
},
|
|
196435
197042
|
"notify_channels": {
|
|
197043
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
196436
197044
|
"anyOf": [
|
|
196437
197045
|
{
|
|
196438
197046
|
"additionalProperties": false,
|
|
@@ -196450,6 +197058,22 @@
|
|
|
196450
197058
|
}
|
|
196451
197059
|
}
|
|
196452
197060
|
},
|
|
197061
|
+
{
|
|
197062
|
+
"additionalProperties": true,
|
|
197063
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
197064
|
+
"type": "object",
|
|
197065
|
+
"properties": {
|
|
197066
|
+
"email": {
|
|
197067
|
+
"type": "boolean"
|
|
197068
|
+
},
|
|
197069
|
+
"in_app": {
|
|
197070
|
+
"type": "boolean"
|
|
197071
|
+
},
|
|
197072
|
+
"telegram": {
|
|
197073
|
+
"type": "boolean"
|
|
197074
|
+
}
|
|
197075
|
+
}
|
|
197076
|
+
},
|
|
196453
197077
|
{
|
|
196454
197078
|
"type": "null"
|
|
196455
197079
|
}
|
|
@@ -196799,8 +197423,15 @@
|
|
|
196799
197423
|
"type": "string"
|
|
196800
197424
|
},
|
|
196801
197425
|
"user_id": {
|
|
196802
|
-
"
|
|
196803
|
-
|
|
197426
|
+
"anyOf": [
|
|
197427
|
+
{
|
|
197428
|
+
"format": "uuid",
|
|
197429
|
+
"type": "string"
|
|
197430
|
+
},
|
|
197431
|
+
{
|
|
197432
|
+
"type": "null"
|
|
197433
|
+
}
|
|
197434
|
+
]
|
|
196804
197435
|
},
|
|
196805
197436
|
"created_by": {
|
|
196806
197437
|
"anyOf": [
|
|
@@ -196877,6 +197508,7 @@
|
|
|
196877
197508
|
}
|
|
196878
197509
|
},
|
|
196879
197510
|
"entity_filter": {
|
|
197511
|
+
"description": "Entity filter as stored, tolerant of filters written outside the strict request contract.",
|
|
196880
197512
|
"anyOf": [
|
|
196881
197513
|
{
|
|
196882
197514
|
"additionalProperties": false,
|
|
@@ -196925,6 +197557,32 @@
|
|
|
196925
197557
|
}
|
|
196926
197558
|
}
|
|
196927
197559
|
},
|
|
197560
|
+
{
|
|
197561
|
+
"additionalProperties": true,
|
|
197562
|
+
"description": "Entity filter stored before/around the current contract; surfaced as-is so the list stays readable.",
|
|
197563
|
+
"type": "object",
|
|
197564
|
+
"properties": {
|
|
197565
|
+
"name_contains": {
|
|
197566
|
+
"description": "Name filter as stored; may be empty (\"no filter\").",
|
|
197567
|
+
"type": "string"
|
|
197568
|
+
},
|
|
197569
|
+
"name_not_contains": {
|
|
197570
|
+
"description": "Negative name filter as stored; may be empty (\"no filter\").",
|
|
197571
|
+
"type": "string"
|
|
197572
|
+
},
|
|
197573
|
+
"status_in": {
|
|
197574
|
+
"description": "Statuses as stored; may be empty (\"no filter\").",
|
|
197575
|
+
"type": "array",
|
|
197576
|
+
"items": {
|
|
197577
|
+
"type": "string"
|
|
197578
|
+
}
|
|
197579
|
+
},
|
|
197580
|
+
"account_mode": {
|
|
197581
|
+
"description": "Ad-account scope intent as stored.",
|
|
197582
|
+
"type": "string"
|
|
197583
|
+
}
|
|
197584
|
+
}
|
|
197585
|
+
},
|
|
196928
197586
|
{
|
|
196929
197587
|
"type": "null"
|
|
196930
197588
|
}
|
|
@@ -196947,7 +197605,7 @@
|
|
|
196947
197605
|
]
|
|
196948
197606
|
},
|
|
196949
197607
|
"conditions": {
|
|
196950
|
-
"description": "Ordered list of conditions
|
|
197608
|
+
"description": "Ordered list of conditions as stored, tolerant of rules written outside the request contract.",
|
|
196951
197609
|
"type": "array",
|
|
196952
197610
|
"items": {
|
|
196953
197611
|
"anyOf": [
|
|
@@ -197532,6 +198190,25 @@
|
|
|
197532
198190
|
]
|
|
197533
198191
|
}
|
|
197534
198192
|
}
|
|
198193
|
+
},
|
|
198194
|
+
{
|
|
198195
|
+
"additionalProperties": true,
|
|
198196
|
+
"description": "Rule condition stored without the full current contract; surfaced as-is so the list stays readable.",
|
|
198197
|
+
"type": "object",
|
|
198198
|
+
"properties": {
|
|
198199
|
+
"metric": {
|
|
198200
|
+
"description": "Metric key as stored.",
|
|
198201
|
+
"type": "string"
|
|
198202
|
+
},
|
|
198203
|
+
"operator": {
|
|
198204
|
+
"description": "Comparison operator as stored.",
|
|
198205
|
+
"type": "string"
|
|
198206
|
+
},
|
|
198207
|
+
"time_range": {
|
|
198208
|
+
"description": "Time window as stored; absent means the evaluator default (`today`).",
|
|
198209
|
+
"type": "string"
|
|
198210
|
+
}
|
|
198211
|
+
}
|
|
197535
198212
|
}
|
|
197536
198213
|
]
|
|
197537
198214
|
}
|
|
@@ -197927,6 +198604,7 @@
|
|
|
197927
198604
|
"type": "integer"
|
|
197928
198605
|
},
|
|
197929
198606
|
"schedule_config": {
|
|
198607
|
+
"description": "Schedule config as stored, tolerant of values written outside the strict request contract.",
|
|
197930
198608
|
"anyOf": [
|
|
197931
198609
|
{
|
|
197932
198610
|
"additionalProperties": false,
|
|
@@ -197988,6 +198666,55 @@
|
|
|
197988
198666
|
}
|
|
197989
198667
|
}
|
|
197990
198668
|
},
|
|
198669
|
+
{
|
|
198670
|
+
"additionalProperties": true,
|
|
198671
|
+
"description": "Schedule config stored before/around the current contract; surfaced as-is.",
|
|
198672
|
+
"type": "object",
|
|
198673
|
+
"properties": {
|
|
198674
|
+
"time": {
|
|
198675
|
+
"description": "Daily evaluation time as stored.",
|
|
198676
|
+
"type": "string"
|
|
198677
|
+
},
|
|
198678
|
+
"type": {
|
|
198679
|
+
"description": "Schedule discriminator as stored.",
|
|
198680
|
+
"type": "string"
|
|
198681
|
+
},
|
|
198682
|
+
"hours_of_day": {
|
|
198683
|
+
"description": "Hours as stored.",
|
|
198684
|
+
"type": "array",
|
|
198685
|
+
"items": {
|
|
198686
|
+
"type": "number"
|
|
198687
|
+
}
|
|
198688
|
+
},
|
|
198689
|
+
"days_of_week": {
|
|
198690
|
+
"description": "Days as stored.",
|
|
198691
|
+
"type": "array",
|
|
198692
|
+
"items": {
|
|
198693
|
+
"type": "number"
|
|
198694
|
+
}
|
|
198695
|
+
},
|
|
198696
|
+
"slots": {
|
|
198697
|
+
"description": "Day/hour slots as stored.",
|
|
198698
|
+
"type": "array",
|
|
198699
|
+
"items": {
|
|
198700
|
+
"additionalProperties": true,
|
|
198701
|
+
"type": "object",
|
|
198702
|
+
"properties": {
|
|
198703
|
+
"day": {
|
|
198704
|
+
"type": "number"
|
|
198705
|
+
},
|
|
198706
|
+
"hour": {
|
|
198707
|
+
"type": "number"
|
|
198708
|
+
}
|
|
198709
|
+
}
|
|
198710
|
+
}
|
|
198711
|
+
},
|
|
198712
|
+
"timezone": {
|
|
198713
|
+
"description": "Timezone as stored.",
|
|
198714
|
+
"type": "string"
|
|
198715
|
+
}
|
|
198716
|
+
}
|
|
198717
|
+
},
|
|
197991
198718
|
{
|
|
197992
198719
|
"type": "null"
|
|
197993
198720
|
}
|
|
@@ -198026,6 +198753,7 @@
|
|
|
198026
198753
|
"type": "boolean"
|
|
198027
198754
|
},
|
|
198028
198755
|
"notify_channels": {
|
|
198756
|
+
"description": "Notify channels as stored, tolerant of values written outside the strict request contract.",
|
|
198029
198757
|
"anyOf": [
|
|
198030
198758
|
{
|
|
198031
198759
|
"additionalProperties": false,
|
|
@@ -198043,6 +198771,22 @@
|
|
|
198043
198771
|
}
|
|
198044
198772
|
}
|
|
198045
198773
|
},
|
|
198774
|
+
{
|
|
198775
|
+
"additionalProperties": true,
|
|
198776
|
+
"description": "Notify channels stored before/around the current contract; surfaced as-is.",
|
|
198777
|
+
"type": "object",
|
|
198778
|
+
"properties": {
|
|
198779
|
+
"email": {
|
|
198780
|
+
"type": "boolean"
|
|
198781
|
+
},
|
|
198782
|
+
"in_app": {
|
|
198783
|
+
"type": "boolean"
|
|
198784
|
+
},
|
|
198785
|
+
"telegram": {
|
|
198786
|
+
"type": "boolean"
|
|
198787
|
+
}
|
|
198788
|
+
}
|
|
198789
|
+
},
|
|
198046
198790
|
{
|
|
198047
198791
|
"type": "null"
|
|
198048
198792
|
}
|