vgs_api_client 0.0.1.alpha202205231454 → 0.0.1.alpha202205231750

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f4d0c3b0865ece255b288d0c6bf9967ba0d4f5775ffcd48560cb3e69058d759
4
- data.tar.gz: 82fcc722826df3ca9b2c384d519c230d78437ab865acdc5bb914297136c4c9f1
3
+ metadata.gz: 658d87aaeb3854293566c2a867a74387bed7a99363116916083e47d9c88011b5
4
+ data.tar.gz: cce01f4400366261d7c833e07d39077bbc7361d6ed303932ba70d345532785df
5
5
  SHA512:
6
- metadata.gz: ff6f4b41187b056cd476a885c85875821105b9a969526eaf1cf77e22b77667218480ce150fe88709a425ea9310c2ca6acc90116d7d1b9cc9f554c4728eca1fa8
7
- data.tar.gz: 6880a59121dd92f1bd8b73c66bb31ed8d6a9e7af81769ab0783052e30c70f439ab4b1040fc0de925e3e6f9b50b379b43d19173ee20884efff0a1d9b18c656395
6
+ metadata.gz: 29a39e0d7c6dd37b41f4b96d414a31a92adbc7b57eabbe5fdd10fa4fc613eb79465dd6b586f319b0318ad862cebfad7d765f1d54c6dd04bc196498788ccec7d0
7
+ data.tar.gz: 831cc6a9ed541c2bc5367d1ee48419ec40a12f3d2ad168c9880eafbb425e3eac9ef643818d924e5b9868dcbff1cdf7ef1bd735f36ced2ca5d7d7867743a80449
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1.alpha202205231454
1
+ 0.0.1.alpha202205231750
data/api.yaml CHANGED
@@ -380,6 +380,15 @@ components:
380
380
  $ref: '#/components/schemas/ApiError'
381
381
  description: List of errors that occurred while processing the request.
382
382
  minItems: 1
383
+ examples:
384
+ invalidJson:
385
+ summary: When a payload is received that is not valid JSON
386
+ value:
387
+ errors:
388
+ - status: 400
389
+ code: invalid-payload
390
+ detail: Payload is not a valid JSON format.
391
+ trace_id: 2cdd563c3fcdd9b4
383
392
 
384
393
  schemas:
385
394
  ApiError:
@@ -31,7 +31,7 @@ module VgsApiClient
31
31
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
32
32
  def initialize(config = Configuration.default)
33
33
  @config = config
34
- @user_agent = "vgs-api-client/0.0.1.alpha202205231454/ruby"
34
+ @user_agent = "vgs-api-client/0.0.1.alpha202205231750/ruby"
35
35
  @default_headers = {
36
36
  'Content-Type' => 'application/json',
37
37
  'User-Agent' => @user_agent
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module VgsApiClient
14
- VERSION = '0.0.1.alpha202205231454'
14
+ VERSION = '0.0.1.alpha202205231750'
15
15
  end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VGS
2
- VERSION = '0.0.1.alpha202205231454'
2
+ VERSION = '0.0.1.alpha202205231750'
3
3
  end
@@ -3,7 +3,7 @@
3
3
  LIB_VERSION=${LIB_VERSION:-0.0.1.alpha$(date "+%Y%m%d%H%M")}
4
4
 
5
5
  # fix version
6
- grep -rl 0.0.1.alpha202205231454 . | xargs sed -i "s/0.0.1.alpha202205231454/${LIB_VERSION}/g"
6
+ grep -rl 0.0.1.alpha202205231750 . | xargs sed -i "s/0.0.1.alpha202205231750/${LIB_VERSION}/g"
7
7
 
8
8
  # build
9
9
  gem build vgs_api_client.gemspec
data/scripts/test/run.sh CHANGED
@@ -5,7 +5,7 @@ set -e
5
5
  echo "Installing lib from local sources"
6
6
  # fix version
7
7
  VERSION=0.0.1.alpha$(date "+%Y%m%d%H%M")
8
- grep -rl 0.0.1.alpha202205231454 . | xargs sed -i "s/0.0.1.alpha202205231454/$VERSION/g"
8
+ grep -rl 0.0.1.alpha202205231750 . | xargs sed -i "s/0.0.1.alpha202205231750/$VERSION/g"
9
9
 
10
10
  bundle install
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vgs_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha202205231454
4
+ version: 0.0.1.alpha202205231750
5
5
  platform: ruby
6
6
  authors:
7
7
  - Very Good Security