bullet_train-api 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3367b24861a1093a4db3caf19e83d306aec61ce8785d06311e06f193814b7f11
4
- data.tar.gz: 18ceefe7b0aa58202f66e6f27d970583d0c77bfc8021db09877607f323f9476a
3
+ metadata.gz: b2521c60465a29b8bbba8ce4b2e0ab2467eb6fe28d0eae93b62b1048814549ff
4
+ data.tar.gz: 51e147d8bf695bdd4a15e29132ab47c61adce31b2798f1b63d71bf874371e87f
5
5
  SHA512:
6
- metadata.gz: dec4c4b5a4128dc297b23c594c8ed240fdb0202d2eaa38c9276956e88301f56572c3f05be3ad9ee39488d14ec993bf305385979220a1437147bb3e20d0ecb679
7
- data.tar.gz: 7e1ed3894051f4a2a0db6cd1fb374e8f0af0883d72050c15a746fb47f3147963caf4f338f8adf2c2204527a51db27f391605ff0ed7ce0da7b043598a9edf123e
6
+ metadata.gz: 27312b084571e76ce175b51572f7fb9c956c33ad0052777c4b26a3dcfb5577ad4f6ccccf3c441618ac4aab1229b21a16304cf1383791c21826a2ab08aa83758c
7
+ data.tar.gz: ef6a86089cbeaf1f83de3ed73a59c286b25b9c47104a7c522ef7d4d7eeab604a43641be0e0d203061b856829536b138f7d1baee2a050a829d61007967e4097c7
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Api
3
- VERSION = "1.1.4"
3
+ VERSION = "1.1.5"
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.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-06 00:00:00.000000000 Z
11
+ date: 2022-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -149,8 +149,6 @@ files:
149
149
  - app/views/account/platform/applications/show.html.erb
150
150
  - app/views/account/platform/applications/show.json.jbuilder
151
151
  - app/views/api/v1/open_api/index.yaml.erb
152
- - app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_components.yaml.erb
153
- - app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_paths.yaml.erb
154
152
  - app/views/api/v1/open_api/teams/_paths.yaml.erb
155
153
  - app/views/api/v1/open_api/users/_paths.yaml.erb
156
154
  - app/views/api/v1/platform/access_tokens/_access_token.json.jbuilder
@@ -1,32 +0,0 @@
1
- Scaffolding::CompletelyConcrete::TangibleThing::Attributes:
2
- type: object
3
- properties:
4
- <%= attribute :id %>
5
- <%= attribute :absolutely_abstract_creative_concept_id %>
6
- <%# 🚅 skip this section when scaffolding. %>
7
- <%= attribute :text_field_value %>
8
- <%= attribute :button_value %>
9
- <%= attribute :boolean_button_value %>
10
- <%= attribute :cloudinary_image_value %>
11
- <%= attribute :date_field_value %>
12
- <%= attribute :email_field_value %>
13
- <%= attribute :file_field_value %>
14
- <%= attribute :password_field_value %>
15
- <%= attribute :phone_field_value %>
16
- <%= attribute :option_value %>
17
- <%= attribute :multiple_option_values %>
18
- <%= attribute :super_select_value %>
19
- <%= attribute :text_area_value %>
20
- <%= attribute :action_text_value %>
21
- <%# 🚅 stop any skipping we're doing now. %>
22
- <%# 🚅 super scaffolding will insert new attributes above this line. %>
23
- <%= attribute :created_at %>
24
- <%= attribute :updated_at %>
25
-
26
- Scaffolding::CompletelyConcrete::TangibleThing::Parameters:
27
- type: object
28
- properties:
29
- <%# 🚅 skip this section when scaffolding. %>
30
- <%= parameter :text_field_value %>
31
- <%# 🚅 stop any skipping we're doing now. %>
32
- <%# 🚅 super scaffolding will insert new parameter above this line. %>
@@ -1,55 +0,0 @@
1
- /scaffolding/completely_concrete/tangible_things:
2
- get:
3
- tags:
4
- - Scaffolding Completely Concrete Tangible Things
5
- summary: "List Tangible Things"
6
- operationId: listScaffoldingCompletelyConcreteTangibleThings
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/Scaffolding::CompletelyConcrete::TangibleThing::Attributes"
21
- has_more:
22
- type: boolean
23
- /scaffolding/completely_concrete/tangible_things/{id}:
24
- get:
25
- tags:
26
- - Scaffolding Completely Concrete Tangible Things
27
- summary: "Fetch Tangible Thing"
28
- operationId: getScaffoldingCompletelyConcreteTangibleThings
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/Scaffolding::CompletelyConcrete::TangibleThing::Attributes"
40
- put:
41
- tags:
42
- - Scaffolding Completely Concrete Tangible Things
43
- summary: "Update Tangible Thing"
44
- operationId: updateScaffoldingCompletelyConcreteTangibleThings
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/Scaffolding::CompletelyConcrete::TangibleThing::Parameters"