@@ -110,6 +110,7 @@ public function testDel0()
110
110
[
111
111
'path ' => '/1/test/minimal ' ,
112
112
'method ' => 'DELETE ' ,
113
+ 'body ' => null ,
113
114
],
114
115
]);
115
116
}
@@ -130,6 +131,7 @@ public function testDel1()
130
131
[
131
132
'path ' => '/1/test/all ' ,
132
133
'method ' => 'DELETE ' ,
134
+ 'body ' => null ,
133
135
'queryParameters ' => json_decode (
134
136
"{ \"query \": \"parameters \"} " ,
135
137
true
@@ -151,6 +153,7 @@ public function testGet0()
151
153
[
152
154
'path ' => '/1/test/minimal ' ,
153
155
'method ' => 'GET ' ,
156
+ 'body ' => null ,
154
157
],
155
158
]);
156
159
}
@@ -171,6 +174,7 @@ public function testGet1()
171
174
[
172
175
'path ' => '/1/test/all ' ,
173
176
'method ' => 'GET ' ,
177
+ 'body ' => null ,
174
178
'queryParameters ' => json_decode (
175
179
"{ \"query \": \"parameters \"} " ,
176
180
true
@@ -192,6 +196,7 @@ public function testGetAverageClickPosition0()
192
196
[
193
197
'path ' => '/2/clicks/averageClickPosition ' ,
194
198
'method ' => 'GET ' ,
199
+ 'body ' => null ,
195
200
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
196
201
],
197
202
]);
@@ -215,6 +220,7 @@ public function testGetAverageClickPosition1()
215
220
[
216
221
'path ' => '/2/clicks/averageClickPosition ' ,
217
222
'method ' => 'GET ' ,
223
+ 'body ' => null ,
218
224
'queryParameters ' => json_decode (
219
225
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
220
226
true
@@ -236,6 +242,7 @@ public function testGetClickPositions0()
236
242
[
237
243
'path ' => '/2/clicks/positions ' ,
238
244
'method ' => 'GET ' ,
245
+ 'body ' => null ,
239
246
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
240
247
],
241
248
]);
@@ -259,6 +266,7 @@ public function testGetClickPositions1()
259
266
[
260
267
'path ' => '/2/clicks/positions ' ,
261
268
'method ' => 'GET ' ,
269
+ 'body ' => null ,
262
270
'queryParameters ' => json_decode (
263
271
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
264
272
true
@@ -280,6 +288,7 @@ public function testGetClickThroughRate0()
280
288
[
281
289
'path ' => '/2/clicks/clickThroughRate ' ,
282
290
'method ' => 'GET ' ,
291
+ 'body ' => null ,
283
292
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
284
293
],
285
294
]);
@@ -303,6 +312,7 @@ public function testGetClickThroughRate1()
303
312
[
304
313
'path ' => '/2/clicks/clickThroughRate ' ,
305
314
'method ' => 'GET ' ,
315
+ 'body ' => null ,
306
316
'queryParameters ' => json_decode (
307
317
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
308
318
true
@@ -324,6 +334,7 @@ public function testGetConversationRate0()
324
334
[
325
335
'path ' => '/2/conversions/conversionRate ' ,
326
336
'method ' => 'GET ' ,
337
+ 'body ' => null ,
327
338
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
328
339
],
329
340
]);
@@ -347,6 +358,7 @@ public function testGetConversationRate1()
347
358
[
348
359
'path ' => '/2/conversions/conversionRate ' ,
349
360
'method ' => 'GET ' ,
361
+ 'body ' => null ,
350
362
'queryParameters ' => json_decode (
351
363
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
352
364
true
@@ -368,6 +380,7 @@ public function testGetNoClickRate0()
368
380
[
369
381
'path ' => '/2/searches/noClickRate ' ,
370
382
'method ' => 'GET ' ,
383
+ 'body ' => null ,
371
384
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
372
385
],
373
386
]);
@@ -391,6 +404,7 @@ public function testGetNoClickRate1()
391
404
[
392
405
'path ' => '/2/searches/noClickRate ' ,
393
406
'method ' => 'GET ' ,
407
+ 'body ' => null ,
394
408
'queryParameters ' => json_decode (
395
409
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
396
410
true
@@ -412,6 +426,7 @@ public function testGetNoResultsRate0()
412
426
[
413
427
'path ' => '/2/searches/noResultRate ' ,
414
428
'method ' => 'GET ' ,
429
+ 'body ' => null ,
415
430
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
416
431
],
417
432
]);
@@ -435,6 +450,7 @@ public function testGetNoResultsRate1()
435
450
[
436
451
'path ' => '/2/searches/noResultRate ' ,
437
452
'method ' => 'GET ' ,
453
+ 'body ' => null ,
438
454
'queryParameters ' => json_decode (
439
455
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
440
456
true
@@ -456,6 +472,7 @@ public function testGetSearchesCount0()
456
472
[
457
473
'path ' => '/2/searches/count ' ,
458
474
'method ' => 'GET ' ,
475
+ 'body ' => null ,
459
476
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
460
477
],
461
478
]);
@@ -479,6 +496,7 @@ public function testGetSearchesCount1()
479
496
[
480
497
'path ' => '/2/searches/count ' ,
481
498
'method ' => 'GET ' ,
499
+ 'body ' => null ,
482
500
'queryParameters ' => json_decode (
483
501
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
484
502
true
@@ -500,6 +518,7 @@ public function testGetSearchesNoClicks0()
500
518
[
501
519
'path ' => '/2/searches/noClicks ' ,
502
520
'method ' => 'GET ' ,
521
+ 'body ' => null ,
503
522
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
504
523
],
505
524
]);
@@ -525,6 +544,7 @@ public function testGetSearchesNoClicks1()
525
544
[
526
545
'path ' => '/2/searches/noClicks ' ,
527
546
'method ' => 'GET ' ,
547
+ 'body ' => null ,
528
548
'queryParameters ' => json_decode (
529
549
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
530
550
true
@@ -546,6 +566,7 @@ public function testGetSearchesNoResults0()
546
566
[
547
567
'path ' => '/2/searches/noResults ' ,
548
568
'method ' => 'GET ' ,
569
+ 'body ' => null ,
549
570
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
550
571
],
551
572
]);
@@ -571,6 +592,7 @@ public function testGetSearchesNoResults1()
571
592
[
572
593
'path ' => '/2/searches/noResults ' ,
573
594
'method ' => 'GET ' ,
595
+ 'body ' => null ,
574
596
'queryParameters ' => json_decode (
575
597
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
576
598
true
@@ -592,6 +614,7 @@ public function testGetStatus0()
592
614
[
593
615
'path ' => '/2/status ' ,
594
616
'method ' => 'GET ' ,
617
+ 'body ' => null ,
595
618
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
596
619
],
597
620
]);
@@ -610,6 +633,7 @@ public function testGetTopCountries0()
610
633
[
611
634
'path ' => '/2/countries ' ,
612
635
'method ' => 'GET ' ,
636
+ 'body ' => null ,
613
637
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
614
638
],
615
639
]);
@@ -635,6 +659,7 @@ public function testGetTopCountries1()
635
659
[
636
660
'path ' => '/2/countries ' ,
637
661
'method ' => 'GET ' ,
662
+ 'body ' => null ,
638
663
'queryParameters ' => json_decode (
639
664
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
640
665
true
@@ -656,6 +681,7 @@ public function testGetTopFilterAttributes0()
656
681
[
657
682
'path ' => '/2/filters ' ,
658
683
'method ' => 'GET ' ,
684
+ 'body ' => null ,
659
685
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
660
686
],
661
687
]);
@@ -682,6 +708,7 @@ public function testGetTopFilterAttributes1()
682
708
[
683
709
'path ' => '/2/filters ' ,
684
710
'method ' => 'GET ' ,
711
+ 'body ' => null ,
685
712
'queryParameters ' => json_decode (
686
713
"{ \"index \": \"index \", \"search \": \"mySearch \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
687
714
true
@@ -706,6 +733,7 @@ public function testGetTopFilterForAttribute0()
706
733
[
707
734
'path ' => '/2/filters/myAttribute ' ,
708
735
'method ' => 'GET ' ,
736
+ 'body ' => null ,
709
737
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
710
738
],
711
739
]);
@@ -727,6 +755,7 @@ public function testGetTopFilterForAttribute1()
727
755
[
728
756
'path ' => '/2/filters/myAttribute1%2CmyAttribute2 ' ,
729
757
'method ' => 'GET ' ,
758
+ 'body ' => null ,
730
759
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
731
760
],
732
761
]);
@@ -754,6 +783,7 @@ public function testGetTopFilterForAttribute2()
754
783
[
755
784
'path ' => '/2/filters/myAttribute ' ,
756
785
'method ' => 'GET ' ,
786
+ 'body ' => null ,
757
787
'queryParameters ' => json_decode (
758
788
"{ \"index \": \"index \", \"search \": \"mySearch \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
759
789
true
@@ -784,6 +814,7 @@ public function testGetTopFilterForAttribute3()
784
814
[
785
815
'path ' => '/2/filters/myAttribute1%2CmyAttribute2 ' ,
786
816
'method ' => 'GET ' ,
817
+ 'body ' => null ,
787
818
'queryParameters ' => json_decode (
788
819
"{ \"index \": \"index \", \"search \": \"mySearch \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
789
820
true
@@ -805,6 +836,7 @@ public function testGetTopFiltersNoResults0()
805
836
[
806
837
'path ' => '/2/filters/noResults ' ,
807
838
'method ' => 'GET ' ,
839
+ 'body ' => null ,
808
840
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
809
841
],
810
842
]);
@@ -831,6 +863,7 @@ public function testGetTopFiltersNoResults1()
831
863
[
832
864
'path ' => '/2/filters/noResults ' ,
833
865
'method ' => 'GET ' ,
866
+ 'body ' => null ,
834
867
'queryParameters ' => json_decode (
835
868
"{ \"index \": \"index \", \"search \": \"mySearch \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
836
869
true
@@ -852,6 +885,7 @@ public function testGetTopHits0()
852
885
[
853
886
'path ' => '/2/hits ' ,
854
887
'method ' => 'GET ' ,
888
+ 'body ' => null ,
855
889
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
856
890
],
857
891
]);
@@ -879,6 +913,7 @@ public function testGetTopHits1()
879
913
[
880
914
'path ' => '/2/hits ' ,
881
915
'method ' => 'GET ' ,
916
+ 'body ' => null ,
882
917
'queryParameters ' => json_decode (
883
918
"{ \"index \": \"index \", \"search \": \"mySearch \", \"clickAnalytics \": \"true \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
884
919
true
@@ -900,6 +935,7 @@ public function testGetTopSearches0()
900
935
[
901
936
'path ' => '/2/searches ' ,
902
937
'method ' => 'GET ' ,
938
+ 'body ' => null ,
903
939
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
904
940
],
905
941
]);
@@ -928,6 +964,7 @@ public function testGetTopSearches1()
928
964
[
929
965
'path ' => '/2/searches ' ,
930
966
'method ' => 'GET ' ,
967
+ 'body ' => null ,
931
968
'queryParameters ' => json_decode (
932
969
"{ \"index \": \"index \", \"clickAnalytics \": \"true \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"orderBy \": \"searchCount \", \"direction \": \"asc \", \"limit \": \"21 \", \"offset \": \"42 \", \"tags \": \"tag \"} " ,
933
970
true
@@ -949,6 +986,7 @@ public function testGetUsersCount0()
949
986
[
950
987
'path ' => '/2/users/count ' ,
951
988
'method ' => 'GET ' ,
989
+ 'body ' => null ,
952
990
'queryParameters ' => json_decode ("{ \"index \": \"index \"} " , true ),
953
991
],
954
992
]);
@@ -972,6 +1010,7 @@ public function testGetUsersCount1()
972
1010
[
973
1011
'path ' => '/2/users/count ' ,
974
1012
'method ' => 'GET ' ,
1013
+ 'body ' => null ,
975
1014
'queryParameters ' => json_decode (
976
1015
"{ \"index \": \"index \", \"startDate \": \"1999-09-19 \", \"endDate \": \"2001-01-01 \", \"tags \": \"tag \"} " ,
977
1016
true
0 commit comments