Skip to content

Commit

Permalink
Merge pull request #136 from niektenhoopen/master
Browse files Browse the repository at this point in the history
Support for including metadata in requests
  • Loading branch information
piotrek-buchman authored Apr 9, 2019
2 parents d1e1f94 + 4dbb315 commit 883b75c
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

VERSION 2.7.0
-------------
* Added support for including metadata of requests through include_metadata parameter

VERSION 2.6.0
-------------
* Added collection deletion - added collection deletion by name
Expand Down
66 changes: 66 additions & 0 deletions src/Client/Resources/keen-io-3_0.php
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -615,6 +621,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -685,6 +697,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -755,6 +773,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -825,6 +849,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -895,6 +925,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -964,6 +1000,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand All @@ -990,6 +1032,12 @@
'type' => 'array',
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -1059,6 +1107,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -1193,6 +1247,12 @@
'type' => array('string', 'array'),
'required' => false,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),

Expand Down Expand Up @@ -1269,6 +1329,12 @@
'type' => 'number',
'required' => true,
),
'include_metadata' => array(
'location' => 'json',
'description' => 'Specifies whether to enrich query results with execution metadata or not.',
'type' => 'boolean',
'required' => false,
),
),
),
),
Expand Down

0 comments on commit 883b75c

Please sign in to comment.