bullet_train-api 1.4.1 → 1.4.2

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: 3832ddd1ae925bc00d08a7cc684f073abcb1b9068b6668da96fa270aaf176042
4
- data.tar.gz: bb02171fea15c6ba04602953f700f1825c8cc14c242b0b8e97c34e28f0b7d30f
3
+ metadata.gz: 0b994db1c403eede28ca073ed0516f0038135d51df91b7a4c925931571fdb6d5
4
+ data.tar.gz: e8f990012bcbec66effc9553d6166d38d5f4c870eff493d46aa09fbf9470de58
5
5
  SHA512:
6
- metadata.gz: 2ff1837ab506b96d88fa3a61b0b0b073b54aa6fde53d7dff4ccf7ab31f95e98c9a7cdff7c792944301bc9a60ecdfa03b4159176f79ba3751dfe8117a8de89d49
7
- data.tar.gz: 7b054e9d1fe608076b76a9ee534b17092a9fdafd19618f6c559a71a4d89ad369c13c50f180b48238cb02196cdcb9bf331a936c13c46240fb1c33bf046f7e4dbe
6
+ metadata.gz: e6a45640b9ee360a651296b32ca8734227681d7143f2fa8b0a3d9644c856f9de2b9c2cb4c77e976e3d45e5c2190b2fc37c6fc39a39fe592656f0b8b5ac99e6b8
7
+ data.tar.gz: 29bb6bb83369425f5287de4bd70b601655c741e7dfb838a1ad546e6e46dfaa6b7f45109f6623e0c5f09392e27690072603cef8154b36317955ef04545c7da147
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Api
3
- VERSION = "1.4.1"
3
+ VERSION = "1.4.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-12 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -192,16 +192,6 @@ files:
192
192
  - app/views/api/v1/teams/show.json.jbuilder
193
193
  - app/views/api/v1/users/index.json.jbuilder
194
194
  - app/views/api/v1/users/show.json.jbuilder
195
- - app/views/api/v2/open_api/shared/_paths.yaml.erb
196
- - app/views/api/v2/open_api/teams/_paths.yaml.erb
197
- - app/views/api/v2/open_api/users/_paths.yaml.erb
198
- - app/views/api/v2/platform/access_tokens/_access_token.json.jbuilder
199
- - app/views/api/v2/platform/access_tokens/index.json.jbuilder
200
- - app/views/api/v2/platform/access_tokens/show.json.jbuilder
201
- - app/views/api/v2/teams/index.json.jbuilder
202
- - app/views/api/v2/teams/show.json.jbuilder
203
- - app/views/api/v2/users/index.json.jbuilder
204
- - app/views/api/v2/users/show.json.jbuilder
205
195
  - config/locales/en/api.en.yml
206
196
  - config/locales/en/me.en.yml
207
197
  - config/locales/en/platform/access_tokens.en.yml
@@ -1,108 +0,0 @@
1
- <% except ||= [] %>
2
- <% unless except.include?(:index) && except.include?(:create) %>
3
- /scaffolding/absolutely_abstract/creative_concepts/{absolutely_abstract_creative_concept_id}/completely_concrete/tangible_things:
4
- <% unless except.include?(:index) %>
5
- get:
6
- tags:
7
- - "Scaffolding/Completely Concrete/Tangible Things"
8
- summary: "List Tangible Things"
9
- operationId: listScaffoldingCompletelyConcreteTangibleThings
10
- parameters:
11
- - name: absolutely_abstract_creative_concept_id
12
- in: path
13
- required: true
14
- schema:
15
- type: string
16
- responses:
17
- "404":
18
- description: "Not Found"
19
- "200":
20
- description: "OK"
21
- content:
22
- application/json:
23
- schema:
24
- type: object
25
- properties:
26
- data:
27
- type: array
28
- items:
29
- $ref: "#/components/schemas/ScaffoldingCompletelyConcreteTangibleThingAttributes"
30
- has_more:
31
- type: boolean
32
- <% end %>
33
- <% unless except.include?(:create) %>
34
- post:
35
- tags:
36
- - "Scaffolding/Completely Concrete/Tangible Things"
37
- summary: "Create Tangible Thing"
38
- operationId: createScaffoldingCompletelyConcreteTangibleThings
39
- parameters:
40
- - name: absolutely_abstract_creative_concept_id
41
- in: path
42
- required: true
43
- schema:
44
- type: string
45
- responses:
46
- "404":
47
- description: "Not Found"
48
- "201":
49
- description: "Created"
50
- content:
51
- application/json:
52
- schema:
53
- $ref: "#/components/schemas/ScaffoldingCompletelyConcreteTangibleThingParameters"
54
- <% end %>
55
- <% end %>
56
- <% unless except.include?(:show) && except.include?(:update) && except.include?(:destroy) %>
57
- /scaffolding/completely_concrete/tangible_things/{id}:
58
- <% unless except.include?(:show) %>
59
- get:
60
- tags:
61
- - "Scaffolding/Completely Concrete/Tangible Things"
62
- summary: "Fetch Tangible Thing"
63
- operationId: getScaffoldingCompletelyConcreteTangibleThings
64
- parameters:
65
- - $ref: "#/components/parameters/id"
66
- responses:
67
- "404":
68
- description: "Not Found"
69
- "200":
70
- description: "OK"
71
- content:
72
- application/json:
73
- schema:
74
- $ref: "#/components/schemas/ScaffoldingCompletelyConcreteTangibleThingAttributes"
75
- <% end %>
76
- <% unless except.include?(:update) %>
77
- put:
78
- tags:
79
- - "Scaffolding/Completely Concrete/Tangible Things"
80
- summary: "Update Tangible Thing"
81
- operationId: updateScaffoldingCompletelyConcreteTangibleThings
82
- parameters:
83
- - $ref: "#/components/parameters/id"
84
- responses:
85
- "404":
86
- description: "Not Found"
87
- "200":
88
- description: "OK"
89
- content:
90
- application/json:
91
- schema:
92
- $ref: "#/components/schemas/ScaffoldingCompletelyConcreteTangibleThingParameters"
93
- <% end %>
94
- <% unless except.include?(:destroy) %>
95
- delete:
96
- tags:
97
- - "Scaffolding/Completely Concrete/Tangible Things"
98
- summary: "Remove Tangible Thing"
99
- operationId: removeScaffoldingCompletelyConcreteTangibleThings
100
- parameters:
101
- - $ref: "#/components/parameters/id"
102
- responses:
103
- "404":
104
- description: "Not Found"
105
- "200":
106
- description: "OK"
107
- <% end %>
108
- <% end %>
@@ -1,55 +0,0 @@
1
- /teams:
2
- get:
3
- tags:
4
- - Teams
5
- summary: "List Teams"
6
- operationId: listTeams
7
- responses:
8
- "404":
9
- description: "Not Found"
10
- "200":
11
- description: "OK"
12
- content:
13
- application/json:
14
- schema:
15
- type: object
16
- properties:
17
- data:
18
- type: array
19
- items:
20
- $ref: "#/components/schemas/TeamAttributes"
21
- has_more:
22
- type: boolean
23
- /teams/{id}:
24
- get:
25
- tags:
26
- - Teams
27
- summary: "Fetch Team"
28
- operationId: fetchTeam
29
- parameters:
30
- - $ref: "#/components/parameters/id"
31
- responses:
32
- "404":
33
- description: "Not Found"
34
- "200":
35
- description: "OK"
36
- content:
37
- application/json:
38
- schema:
39
- $ref: "#/components/schemas/TeamAttributes"
40
- put:
41
- tags:
42
- - Teams
43
- summary: "Update Team"
44
- operationId: updateTeam
45
- parameters:
46
- - $ref: "#/components/parameters/id"
47
- responses:
48
- "404":
49
- description: "Not Found"
50
- "200":
51
- description: "OK"
52
- content:
53
- application/json:
54
- schema:
55
- $ref: "#/components/schemas/TeamParameters"
@@ -1,55 +0,0 @@
1
- /users:
2
- get:
3
- tags:
4
- - Users
5
- summary: "List Users"
6
- operationId: listUsers
7
- responses:
8
- "404":
9
- description: "Not Found"
10
- "200":
11
- description: "OK"
12
- content:
13
- application/json:
14
- schema:
15
- type: object
16
- properties:
17
- data:
18
- type: array
19
- items:
20
- $ref: "#/components/schemas/UserAttributes"
21
- has_more:
22
- type: boolean
23
- /users/{id}:
24
- get:
25
- tags:
26
- - Users
27
- summary: "Fetch User"
28
- operationId: fetchUser
29
- parameters:
30
- - $ref: "#/components/parameters/id"
31
- responses:
32
- "404":
33
- description: "Not Found"
34
- "200":
35
- description: "OK"
36
- content:
37
- application/json:
38
- schema:
39
- $ref: "#/components/schemas/UserAttributes"
40
- put:
41
- tags:
42
- - Users
43
- summary: "Update User"
44
- operationId: updateUser
45
- parameters:
46
- - $ref: "#/components/parameters/id"
47
- responses:
48
- "404":
49
- description: "Not Found"
50
- "200":
51
- description: "OK"
52
- content:
53
- application/json:
54
- schema:
55
- $ref: "#/components/schemas/UserParameters"
@@ -1,10 +0,0 @@
1
- json.extract! access_token,
2
- :id,
3
- :application_id,
4
- :token,
5
- :expires_in,
6
- :scopes,
7
- :last_used_at,
8
- :description,
9
- # 🚅 super scaffolding will insert new fields above this line.
10
- :created_at
@@ -1 +0,0 @@
1
- json.array! @access_tokens, partial: "api/v2/platform/access_tokens/access_token", as: :access_token
@@ -1 +0,0 @@
1
- json.partial! "api/v2/platform/access_tokens/access_token", access_token: @access_token
@@ -1 +0,0 @@
1
- json.array! @teams, partial: "api/v2/teams/team", as: :team
@@ -1 +0,0 @@
1
- json.partial! "api/v2/teams/team", team: @team
@@ -1 +0,0 @@
1
- json.array! @users, partial: "api/v2/users/user", as: :user
@@ -1 +0,0 @@
1
- json.partial! "api/v2/users/user", user: @user