contentful-management 0.0.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +24 -0
- data/.reek +3 -0
- data/.rspec +3 -0
- data/.rubocop.yml +16 -0
- data/.travis.yml +9 -0
- data/CHANGELOG.md +2 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +22 -0
- data/README.md +408 -0
- data/Rakefile +37 -0
- data/bin/cma-console +8 -0
- data/contentful-management.gemspec +33 -0
- data/examples/blog.rb +82 -0
- data/examples/content_types.rb +45 -0
- data/examples/create_space.rb +35 -0
- data/lib/contentful/management.rb +12 -0
- data/lib/contentful/management/array.rb +35 -0
- data/lib/contentful/management/asset.rb +163 -0
- data/lib/contentful/management/client.rb +160 -0
- data/lib/contentful/management/content_type.rb +180 -0
- data/lib/contentful/management/dynamic_entry.rb +71 -0
- data/lib/contentful/management/entry.rb +213 -0
- data/lib/contentful/management/error.rb +62 -0
- data/lib/contentful/management/field.rb +34 -0
- data/lib/contentful/management/file.rb +15 -0
- data/lib/contentful/management/http_client.rb +22 -0
- data/lib/contentful/management/link.rb +23 -0
- data/lib/contentful/management/locale.rb +48 -0
- data/lib/contentful/management/location.rb +15 -0
- data/lib/contentful/management/request.rb +82 -0
- data/lib/contentful/management/resource.rb +166 -0
- data/lib/contentful/management/resource/array_like.rb +37 -0
- data/lib/contentful/management/resource/fields.rb +69 -0
- data/lib/contentful/management/resource/refresher.rb +21 -0
- data/lib/contentful/management/resource/system_properties.rb +56 -0
- data/lib/contentful/management/resource_builder.rb +269 -0
- data/lib/contentful/management/response.rb +72 -0
- data/lib/contentful/management/space.rb +159 -0
- data/lib/contentful/management/support.rb +24 -0
- data/lib/contentful/management/version.rb +6 -0
- data/spec/fixtures/vcr_cassettes/array_page_1.yml +1337 -0
- data/spec/fixtures/vcr_cassettes/asset/all.yml +611 -0
- data/spec/fixtures/vcr_cassettes/asset/archive.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/archive_published.yml +177 -0
- data/spec/fixtures/vcr_cassettes/asset/archived_false.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/archived_true.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/create.yml +150 -0
- data/spec/fixtures/vcr_cassettes/asset/create_with_already_used_id.yml +56 -0
- data/spec/fixtures/vcr_cassettes/asset/create_with_custom_id.yml +150 -0
- data/spec/fixtures/vcr_cassettes/asset/destroy.yml +159 -0
- data/spec/fixtures/vcr_cassettes/asset/destroy_published.yml +175 -0
- data/spec/fixtures/vcr_cassettes/asset/find.yml +108 -0
- data/spec/fixtures/vcr_cassettes/asset/find_not_found.yml +64 -0
- data/spec/fixtures/vcr_cassettes/asset/image_url.yml +133 -0
- data/spec/fixtures/vcr_cassettes/asset/locale.yml +110 -0
- data/spec/fixtures/vcr_cassettes/asset/publish.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/publish_already_published.yml +176 -0
- data/spec/fixtures/vcr_cassettes/asset/published_false.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/published_true.yml +226 -0
- data/spec/fixtures/vcr_cassettes/asset/save_update.yml +242 -0
- data/spec/fixtures/vcr_cassettes/asset/set_locale.yml +110 -0
- data/spec/fixtures/vcr_cassettes/asset/unarchive.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchive.yml +168 -0
- data/spec/fixtures/vcr_cassettes/asset/unarchive_already_unarchived.yml +168 -0
- data/spec/fixtures/vcr_cassettes/asset/unpublish.yml +228 -0
- data/spec/fixtures/vcr_cassettes/asset/unpublish_already_unpublished.yml +168 -0
- data/spec/fixtures/vcr_cassettes/asset/update_file.yml +207 -0
- data/spec/fixtures/vcr_cassettes/asset/update_to_specified_locale.yml +224 -0
- data/spec/fixtures/vcr_cassettes/asset/update_with_default_locale_without_file.yml +214 -0
- data/spec/fixtures/vcr_cassettes/content_type/activate.yml +246 -0
- data/spec/fixtures/vcr_cassettes/content_type/activate_with_invalid_version.yml +186 -0
- data/spec/fixtures/vcr_cassettes/content_type/activated_false.yml +246 -0
- data/spec/fixtures/vcr_cassettes/content_type/activated_true.yml +257 -0
- data/spec/fixtures/vcr_cassettes/content_type/all.yml +190 -0
- data/spec/fixtures/vcr_cassettes/content_type/create.yml +87 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_content_type_with_id.yml +87 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Array_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Boolean_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Date_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Integer_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Link_field.yml +95 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Location_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Number_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Object_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Symbol_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/create_with_Text_field.yml +94 -0
- data/spec/fixtures/vcr_cassettes/content_type/deactivate.yml +246 -0
- data/spec/fixtures/vcr_cassettes/content_type/deactivate_already_deactivated.yml +176 -0
- data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_entries.yml +236 -0
- data/spec/fixtures/vcr_cassettes/content_type/deactivate_with_version_change.yml +248 -0
- data/spec/fixtures/vcr_cassettes/content_type/destroy.yml +148 -0
- data/spec/fixtures/vcr_cassettes/content_type/destroy_activated.yml +164 -0
- data/spec/fixtures/vcr_cassettes/content_type/entry/create.yml +1344 -0
- data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_camel_case_id_to_multiple_locales.yml +235 -0
- data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries.yml +398 -0
- data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_entries_for_multiple_locales.yml +3157 -0
- data/spec/fixtures/vcr_cassettes/content_type/entry/create_with_multiple_locales.yml +230 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/add.yml +345 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/create.yml +353 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/create_array_with_params.yml +228 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/create_with_params.yml +221 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/destroy.yml +349 -0
- data/spec/fixtures/vcr_cassettes/content_type/fields/update_field.yml +358 -0
- data/spec/fixtures/vcr_cassettes/content_type/find.yml +180 -0
- data/spec/fixtures/vcr_cassettes/content_type/find_not_found.yml +64 -0
- data/spec/fixtures/vcr_cassettes/content_type/save_new.yml +876 -0
- data/spec/fixtures/vcr_cassettes/content_type/save_updated.yml +345 -0
- data/spec/fixtures/vcr_cassettes/content_type/save_with_added_field.yml +217 -0
- data/spec/fixtures/vcr_cassettes/content_type/update.yml +175 -0
- data/spec/fixtures/vcr_cassettes/content_type/update_change_field_name.yml +222 -0
- data/spec/fixtures/vcr_cassettes/content_type/update_remove_field.yml +231 -0
- data/spec/fixtures/vcr_cassettes/content_type/update_with_fields.yml +222 -0
- data/spec/fixtures/vcr_cassettes/content_type/update_with_one_new_field.yml +251 -0
- data/spec/fixtures/vcr_cassettes/entry/all.yml +139 -0
- data/spec/fixtures/vcr_cassettes/entry/archive.yml +222 -0
- data/spec/fixtures/vcr_cassettes/entry/archive_published.yml +187 -0
- data/spec/fixtures/vcr_cassettes/entry/archived_false.yml +178 -0
- data/spec/fixtures/vcr_cassettes/entry/archived_true.yml +248 -0
- data/spec/fixtures/vcr_cassettes/entry/create.yml +245 -0
- data/spec/fixtures/vcr_cassettes/entry/create_test.yml +150 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_asset.yml +403 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_assets.yml +419 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_entries.yml +418 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_entry.yml +493 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_location.yml +259 -0
- data/spec/fixtures/vcr_cassettes/entry/create_with_symbols.yml +271 -0
- data/spec/fixtures/vcr_cassettes/entry/destory_published.yml +172 -0
- data/spec/fixtures/vcr_cassettes/entry/destroy.yml +156 -0
- data/spec/fixtures/vcr_cassettes/entry/find.yml +129 -0
- data/spec/fixtures/vcr_cassettes/entry/find_not_found.yml +64 -0
- data/spec/fixtures/vcr_cassettes/entry/publish.yml +248 -0
- data/spec/fixtures/vcr_cassettes/entry/publish_already_published.yml +186 -0
- data/spec/fixtures/vcr_cassettes/entry/published_false.yml +248 -0
- data/spec/fixtures/vcr_cassettes/entry/published_true.yml +257 -0
- data/spec/fixtures/vcr_cassettes/entry/save_update.yml +211 -0
- data/spec/fixtures/vcr_cassettes/entry/unarchive.yml +248 -0
- data/spec/fixtures/vcr_cassettes/entry/unarchive_already_unarchived.yml +178 -0
- data/spec/fixtures/vcr_cassettes/entry/unpublish.yml +248 -0
- data/spec/fixtures/vcr_cassettes/entry/unpublish_already_unpublished.yml +178 -0
- data/spec/fixtures/vcr_cassettes/entry/update.yml +626 -0
- data/spec/fixtures/vcr_cassettes/entry/update_unlocalized_field.yml +308 -0
- data/spec/fixtures/vcr_cassettes/entry/update_with_custom_locale.yml +332 -0
- data/spec/fixtures/vcr_cassettes/get_request.yml +37 -0
- data/spec/fixtures/vcr_cassettes/locale/all_for_space.yml +321 -0
- data/spec/fixtures/vcr_cassettes/locale/create_for_space.yml +95 -0
- data/spec/fixtures/vcr_cassettes/locale/find.yml +95 -0
- data/spec/fixtures/vcr_cassettes/locale/find_for_space_not_found.yml +67 -0
- data/spec/fixtures/vcr_cassettes/space/all.yml +1201 -0
- data/spec/fixtures/vcr_cassettes/space/asset/all.yml +475 -0
- data/spec/fixtures/vcr_cassettes/space/asset/assets.yml +826 -0
- data/spec/fixtures/vcr_cassettes/space/asset/create.yml +508 -0
- data/spec/fixtures/vcr_cassettes/space/asset/create_with_multiple_locales.yml +1062 -0
- data/spec/fixtures/vcr_cassettes/space/asset/find.yml +634 -0
- data/spec/fixtures/vcr_cassettes/space/content_type/all.yml +470 -0
- data/spec/fixtures/vcr_cassettes/space/content_type/content_types.yml +341 -0
- data/spec/fixtures/vcr_cassettes/space/content_type/create.yml +425 -0
- data/spec/fixtures/vcr_cassettes/space/content_type/find.yml +493 -0
- data/spec/fixtures/vcr_cassettes/space/create.yml +85 -0
- data/spec/fixtures/vcr_cassettes/space/create_when_limit_has_been_reached.yml +67 -0
- data/spec/fixtures/vcr_cassettes/space/create_with_unknown_organization.yml +65 -0
- data/spec/fixtures/vcr_cassettes/space/create_without_organization.yml +83 -0
- data/spec/fixtures/vcr_cassettes/space/destory.yml +196 -0
- data/spec/fixtures/vcr_cassettes/space/entry/all.yml +634 -0
- data/spec/fixtures/vcr_cassettes/space/entry/entries.yml +498 -0
- data/spec/fixtures/vcr_cassettes/space/entry/find.yml +624 -0
- data/spec/fixtures/vcr_cassettes/space/find.yml +270 -0
- data/spec/fixtures/vcr_cassettes/space/find_not_found.yml +67 -0
- data/spec/fixtures/vcr_cassettes/space/locale/all.yml +690 -0
- data/spec/fixtures/vcr_cassettes/space/locale/create.yml +572 -0
- data/spec/fixtures/vcr_cassettes/space/locale/create_with_the_same_code.yml +585 -0
- data/spec/fixtures/vcr_cassettes/space/locale/find.yml +572 -0
- data/spec/fixtures/vcr_cassettes/space/locale/find_not_found.yml +580 -0
- data/spec/fixtures/vcr_cassettes/space/locale/locales.yml +480 -0
- data/spec/fixtures/vcr_cassettes/space/locale/update.yml +700 -0
- data/spec/fixtures/vcr_cassettes/space/save_new_space.yml +67 -0
- data/spec/fixtures/vcr_cassettes/space/save_update_space.yml +352 -0
- data/spec/fixtures/vcr_cassettes/space/update.yml +350 -0
- data/spec/fixtures/vcr_cassettes/space/update_with_the_same_data.yml +350 -0
- data/spec/lib/contentful/management/array_spec.rb +59 -0
- data/spec/lib/contentful/management/asset_spec.rb +321 -0
- data/spec/lib/contentful/management/client_spec.rb +80 -0
- data/spec/lib/contentful/management/content_type_spec.rb +455 -0
- data/spec/lib/contentful/management/entry_spec.rb +308 -0
- data/spec/lib/contentful/management/locale_spec.rb +53 -0
- data/spec/lib/contentful/management/space_spec.rb +317 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/support/vcr.rb +17 -0
- metadata +554 -0
@@ -0,0 +1,345 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/5DSpuKrl04eMAGQoQckeIq
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- RubyContenfulManagementGem/0.0.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <ACCESS_TOKEN>
|
14
|
+
Content-Type:
|
15
|
+
- application/vnd.contentful.management.v1+json
|
16
|
+
Content-Length:
|
17
|
+
- '0'
|
18
|
+
Host:
|
19
|
+
- api.contentful.com
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Server:
|
26
|
+
- nginx
|
27
|
+
Date:
|
28
|
+
- Thu, 31 Jul 2014 10:12:38 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/vnd.contentful.management.v1+json
|
31
|
+
Content-Length:
|
32
|
+
- '2470'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
X-Powered-By:
|
36
|
+
- Express
|
37
|
+
Cf-Space-Id:
|
38
|
+
- yr5m0jky5hsh
|
39
|
+
Etag:
|
40
|
+
- '"3cb87933635a80894837da2a30e007fe"'
|
41
|
+
Access-Control-Allow-Origin:
|
42
|
+
- "*"
|
43
|
+
Access-Control-Allow-Headers:
|
44
|
+
- Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
|
45
|
+
Access-Control-Allow-Methods:
|
46
|
+
- DELETE,GET,HEAD,POST,PUT,OPTIONS
|
47
|
+
"^access-Control-Expose-Headers":
|
48
|
+
- Etag
|
49
|
+
Access-Control-Max-Age:
|
50
|
+
- '1728000'
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: |
|
54
|
+
{
|
55
|
+
"fields": [
|
56
|
+
{
|
57
|
+
"name": "name",
|
58
|
+
"id": "name",
|
59
|
+
"type": "Text",
|
60
|
+
"uiid": "3fflnrplhc0",
|
61
|
+
"localized": true
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"name": "age",
|
65
|
+
"id": "age",
|
66
|
+
"uiid": "2t5blkc7u2o",
|
67
|
+
"type": "Integer",
|
68
|
+
"localized": true
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"name": "city",
|
72
|
+
"id": "city",
|
73
|
+
"type": "Location",
|
74
|
+
"uiid": "4fzl5jkm1a8",
|
75
|
+
"localized": false
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"name": "assets",
|
79
|
+
"id": "assets",
|
80
|
+
"uiid": "3aqrgdyesxs",
|
81
|
+
"type": "Array",
|
82
|
+
"items": {
|
83
|
+
"type": "Link",
|
84
|
+
"linkType": "Asset"
|
85
|
+
},
|
86
|
+
"localized": true
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"name": "entries",
|
90
|
+
"id": "entries",
|
91
|
+
"type": "Array",
|
92
|
+
"uiid": "3xi486kbchs",
|
93
|
+
"items": {
|
94
|
+
"type": "Link",
|
95
|
+
"linkType": "Entry"
|
96
|
+
}
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"name": "entry",
|
100
|
+
"id": "entry",
|
101
|
+
"type": "Link",
|
102
|
+
"uiid": "3uxjdd1n5ds",
|
103
|
+
"linkType": "Entry"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"name": "asset",
|
107
|
+
"id": "asset",
|
108
|
+
"type": "Link",
|
109
|
+
"uiid": "40ilp8h1xc0",
|
110
|
+
"linkType": "Asset"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"name": "bool",
|
114
|
+
"id": "bool",
|
115
|
+
"type": "Boolean",
|
116
|
+
"uiid": "2i1bgmn2dj4",
|
117
|
+
"localized": true
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"name": "symbols",
|
121
|
+
"id": "symbols",
|
122
|
+
"type": "Array",
|
123
|
+
"uiid": "38rbncxmzuo",
|
124
|
+
"items": {
|
125
|
+
"type": "Symbol"
|
126
|
+
}
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"name": "birthday",
|
130
|
+
"id": "birthday",
|
131
|
+
"type": "Date",
|
132
|
+
"uiid": "41bdwbk06bk"
|
133
|
+
}
|
134
|
+
],
|
135
|
+
"name": "Author",
|
136
|
+
"sys": {
|
137
|
+
"id": "5DSpuKrl04eMAGQoQckeIq",
|
138
|
+
"type": "ContentType",
|
139
|
+
"createdAt": "2014-07-30T12:35:01.110Z",
|
140
|
+
"createdBy": {
|
141
|
+
"sys": {
|
142
|
+
"type": "Link",
|
143
|
+
"linkType": "User",
|
144
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
145
|
+
}
|
146
|
+
},
|
147
|
+
"space": {
|
148
|
+
"sys": {
|
149
|
+
"type": "Link",
|
150
|
+
"linkType": "Space",
|
151
|
+
"id": "yr5m0jky5hsh"
|
152
|
+
}
|
153
|
+
},
|
154
|
+
"firstPublishedAt": "2014-07-30T12:37:42.035Z",
|
155
|
+
"publishedCounter": 8,
|
156
|
+
"publishedAt": "2014-07-31T09:41:19.641Z",
|
157
|
+
"publishedBy": {
|
158
|
+
"sys": {
|
159
|
+
"type": "Link",
|
160
|
+
"linkType": "User",
|
161
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
162
|
+
}
|
163
|
+
},
|
164
|
+
"publishedVersion": 193,
|
165
|
+
"version": 194,
|
166
|
+
"updatedAt": "2014-07-31T09:41:19.648Z",
|
167
|
+
"updatedBy": {
|
168
|
+
"sys": {
|
169
|
+
"type": "Link",
|
170
|
+
"linkType": "User",
|
171
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
172
|
+
}
|
173
|
+
}
|
174
|
+
},
|
175
|
+
"description": "Author content",
|
176
|
+
"displayField": "name"
|
177
|
+
}
|
178
|
+
http_version:
|
179
|
+
recorded_at: Thu, 31 Jul 2014 10:12:38 GMT
|
180
|
+
- request:
|
181
|
+
method: put
|
182
|
+
uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/5DSpuKrl04eMAGQoQckeIq
|
183
|
+
body:
|
184
|
+
encoding: UTF-8
|
185
|
+
string: '{"name":"NewName","description":"Author content","fields":[{"id":"name","name":"name","type":"Text","localized":true},{"id":"age","name":"age","type":"Integer","localized":true},{"id":"city","name":"city","type":"Location"},{"id":"assets","name":"assets","type":"Array","items":{"type":"Link","linkType":"Asset"},"localized":true},{"id":"entries","name":"entries","type":"Array","items":{"type":"Link","linkType":"Entry"}},{"id":"entry","name":"entry","type":"Link","linkType":"Entry"},{"id":"asset","name":"asset","type":"Link","linkType":"Asset"},{"id":"bool","name":"bool","type":"Boolean","localized":true},{"id":"symbols","name":"symbols","type":"Array","items":{"type":"Symbol"}},{"id":"birthday","name":"birthday","type":"Date"}]}'
|
186
|
+
headers:
|
187
|
+
User-Agent:
|
188
|
+
- RubyContenfulManagementGem/0.0.1
|
189
|
+
Authorization:
|
190
|
+
- Bearer <ACCESS_TOKEN>
|
191
|
+
Content-Type:
|
192
|
+
- application/vnd.contentful.management.v1+json
|
193
|
+
X-Contentful-Version:
|
194
|
+
- '194'
|
195
|
+
Host:
|
196
|
+
- api.contentful.com
|
197
|
+
response:
|
198
|
+
status:
|
199
|
+
code: 200
|
200
|
+
message: OK
|
201
|
+
headers:
|
202
|
+
Server:
|
203
|
+
- nginx
|
204
|
+
Date:
|
205
|
+
- Thu, 31 Jul 2014 10:12:38 GMT
|
206
|
+
Content-Type:
|
207
|
+
- application/vnd.contentful.management.v1+json
|
208
|
+
Content-Length:
|
209
|
+
- '2129'
|
210
|
+
Connection:
|
211
|
+
- keep-alive
|
212
|
+
X-Powered-By:
|
213
|
+
- Express
|
214
|
+
Cf-Space-Id:
|
215
|
+
- yr5m0jky5hsh
|
216
|
+
Etag:
|
217
|
+
- '"32e4bbeb76ba061ffe15593107b5df22"'
|
218
|
+
Access-Control-Allow-Origin:
|
219
|
+
- "*"
|
220
|
+
Access-Control-Allow-Headers:
|
221
|
+
- Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
|
222
|
+
Access-Control-Allow-Methods:
|
223
|
+
- DELETE,GET,HEAD,POST,PUT,OPTIONS
|
224
|
+
"^access-Control-Expose-Headers":
|
225
|
+
- Etag
|
226
|
+
Access-Control-Max-Age:
|
227
|
+
- '1728000'
|
228
|
+
body:
|
229
|
+
encoding: UTF-8
|
230
|
+
string: |
|
231
|
+
{
|
232
|
+
"name": "NewName",
|
233
|
+
"description": "Author content",
|
234
|
+
"fields": [
|
235
|
+
{
|
236
|
+
"id": "name",
|
237
|
+
"name": "name",
|
238
|
+
"type": "Text",
|
239
|
+
"localized": true
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"id": "age",
|
243
|
+
"name": "age",
|
244
|
+
"type": "Integer",
|
245
|
+
"localized": true
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"id": "city",
|
249
|
+
"name": "city",
|
250
|
+
"type": "Location"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"id": "assets",
|
254
|
+
"name": "assets",
|
255
|
+
"type": "Array",
|
256
|
+
"items": {
|
257
|
+
"type": "Link",
|
258
|
+
"linkType": "Asset"
|
259
|
+
},
|
260
|
+
"localized": true
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"id": "entries",
|
264
|
+
"name": "entries",
|
265
|
+
"type": "Array",
|
266
|
+
"items": {
|
267
|
+
"type": "Link",
|
268
|
+
"linkType": "Entry"
|
269
|
+
}
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"id": "entry",
|
273
|
+
"name": "entry",
|
274
|
+
"type": "Link",
|
275
|
+
"linkType": "Entry"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"id": "asset",
|
279
|
+
"name": "asset",
|
280
|
+
"type": "Link",
|
281
|
+
"linkType": "Asset"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"id": "bool",
|
285
|
+
"name": "bool",
|
286
|
+
"type": "Boolean",
|
287
|
+
"localized": true
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"id": "symbols",
|
291
|
+
"name": "symbols",
|
292
|
+
"type": "Array",
|
293
|
+
"items": {
|
294
|
+
"type": "Symbol"
|
295
|
+
}
|
296
|
+
},
|
297
|
+
{
|
298
|
+
"id": "birthday",
|
299
|
+
"name": "birthday",
|
300
|
+
"type": "Date"
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"sys": {
|
304
|
+
"id": "5DSpuKrl04eMAGQoQckeIq",
|
305
|
+
"type": "ContentType",
|
306
|
+
"createdAt": "2014-07-30T12:35:01.110Z",
|
307
|
+
"createdBy": {
|
308
|
+
"sys": {
|
309
|
+
"type": "Link",
|
310
|
+
"linkType": "User",
|
311
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
312
|
+
}
|
313
|
+
},
|
314
|
+
"space": {
|
315
|
+
"sys": {
|
316
|
+
"type": "Link",
|
317
|
+
"linkType": "Space",
|
318
|
+
"id": "yr5m0jky5hsh"
|
319
|
+
}
|
320
|
+
},
|
321
|
+
"firstPublishedAt": "2014-07-30T12:37:42.035Z",
|
322
|
+
"publishedCounter": 8,
|
323
|
+
"publishedAt": "2014-07-31T09:41:19.641Z",
|
324
|
+
"publishedBy": {
|
325
|
+
"sys": {
|
326
|
+
"type": "Link",
|
327
|
+
"linkType": "User",
|
328
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
329
|
+
}
|
330
|
+
},
|
331
|
+
"publishedVersion": 193,
|
332
|
+
"version": 195,
|
333
|
+
"updatedAt": "2014-07-31T10:12:38.808Z",
|
334
|
+
"updatedBy": {
|
335
|
+
"sys": {
|
336
|
+
"type": "Link",
|
337
|
+
"linkType": "User",
|
338
|
+
"id": "0fn5fOWn4WsKFyYla1gI5h"
|
339
|
+
}
|
340
|
+
}
|
341
|
+
}
|
342
|
+
}
|
343
|
+
http_version:
|
344
|
+
recorded_at: Thu, 31 Jul 2014 10:12:38 GMT
|
345
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,217 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/2tDzYAg5MM6sIkwsOmM0Kc
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- RubyContenfulManagementGem/0.0.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <ACCESS_TOKEN>
|
14
|
+
Content-Type:
|
15
|
+
- application/vnd.contentful.management.v1+json
|
16
|
+
Content-Length:
|
17
|
+
- '0'
|
18
|
+
Host:
|
19
|
+
- api.contentful.com
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Server:
|
26
|
+
- nginx
|
27
|
+
Date:
|
28
|
+
- Thu, 31 Jul 2014 10:15:49 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/vnd.contentful.management.v1+json
|
31
|
+
Content-Length:
|
32
|
+
- '1118'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
X-Powered-By:
|
36
|
+
- Express
|
37
|
+
Cf-Space-Id:
|
38
|
+
- yr5m0jky5hsh
|
39
|
+
Etag:
|
40
|
+
- '"1e45e4cc198760d11ff63e713f860132"'
|
41
|
+
Access-Control-Allow-Origin:
|
42
|
+
- "*"
|
43
|
+
Access-Control-Allow-Headers:
|
44
|
+
- Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
|
45
|
+
Access-Control-Allow-Methods:
|
46
|
+
- DELETE,GET,HEAD,POST,PUT,OPTIONS
|
47
|
+
"^access-Control-Expose-Headers":
|
48
|
+
- Etag
|
49
|
+
Access-Control-Max-Age:
|
50
|
+
- '1728000'
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: |
|
54
|
+
{
|
55
|
+
"fields": [
|
56
|
+
{
|
57
|
+
"name": "blog_content",
|
58
|
+
"id": "blogContent",
|
59
|
+
"type": "Text",
|
60
|
+
"uiid": "45e3kdik5q8"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "Blog testing",
|
64
|
+
"sys": {
|
65
|
+
"id": "2tDzYAg5MM6sIkwsOmM0Kc",
|
66
|
+
"type": "ContentType",
|
67
|
+
"createdAt": "2014-07-31T10:14:30.634Z",
|
68
|
+
"createdBy": {
|
69
|
+
"sys": {
|
70
|
+
"type": "Link",
|
71
|
+
"linkType": "User",
|
72
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
73
|
+
}
|
74
|
+
},
|
75
|
+
"space": {
|
76
|
+
"sys": {
|
77
|
+
"type": "Link",
|
78
|
+
"linkType": "Space",
|
79
|
+
"id": "yr5m0jky5hsh"
|
80
|
+
}
|
81
|
+
},
|
82
|
+
"firstPublishedAt": "2014-07-31T10:14:49.264Z",
|
83
|
+
"publishedCounter": 1,
|
84
|
+
"publishedAt": "2014-07-31T10:14:49.264Z",
|
85
|
+
"publishedBy": {
|
86
|
+
"sys": {
|
87
|
+
"type": "Link",
|
88
|
+
"linkType": "User",
|
89
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
90
|
+
}
|
91
|
+
},
|
92
|
+
"publishedVersion": 34,
|
93
|
+
"version": 35,
|
94
|
+
"updatedAt": "2014-07-31T10:14:49.269Z",
|
95
|
+
"updatedBy": {
|
96
|
+
"sys": {
|
97
|
+
"type": "Link",
|
98
|
+
"linkType": "User",
|
99
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
100
|
+
}
|
101
|
+
}
|
102
|
+
},
|
103
|
+
"description": "testing",
|
104
|
+
"displayField": "blogContent"
|
105
|
+
}
|
106
|
+
http_version:
|
107
|
+
recorded_at: Thu, 31 Jul 2014 10:15:49 GMT
|
108
|
+
- request:
|
109
|
+
method: put
|
110
|
+
uri: https://api.contentful.com/spaces/yr5m0jky5hsh/content_types/2tDzYAg5MM6sIkwsOmM0Kc
|
111
|
+
body:
|
112
|
+
encoding: UTF-8
|
113
|
+
string: '{"name":"Blog testing","description":"testing","fields":[{"id":"blogContent","name":"blog_content","type":"Text"},{"id":"blog_title","name":"Blog
|
114
|
+
Title","type":"Text"}]}'
|
115
|
+
headers:
|
116
|
+
User-Agent:
|
117
|
+
- RubyContenfulManagementGem/0.0.1
|
118
|
+
Authorization:
|
119
|
+
- Bearer <ACCESS_TOKEN>
|
120
|
+
Content-Type:
|
121
|
+
- application/vnd.contentful.management.v1+json
|
122
|
+
X-Contentful-Version:
|
123
|
+
- '35'
|
124
|
+
Host:
|
125
|
+
- api.contentful.com
|
126
|
+
response:
|
127
|
+
status:
|
128
|
+
code: 200
|
129
|
+
message: OK
|
130
|
+
headers:
|
131
|
+
Server:
|
132
|
+
- nginx
|
133
|
+
Date:
|
134
|
+
- Thu, 31 Jul 2014 10:15:50 GMT
|
135
|
+
Content-Type:
|
136
|
+
- application/vnd.contentful.management.v1+json
|
137
|
+
Content-Length:
|
138
|
+
- '1144'
|
139
|
+
Connection:
|
140
|
+
- keep-alive
|
141
|
+
X-Powered-By:
|
142
|
+
- Express
|
143
|
+
Cf-Space-Id:
|
144
|
+
- yr5m0jky5hsh
|
145
|
+
Etag:
|
146
|
+
- '"9755e1e0df58216a4e3f3ef021b646d5"'
|
147
|
+
Access-Control-Allow-Origin:
|
148
|
+
- "*"
|
149
|
+
Access-Control-Allow-Headers:
|
150
|
+
- Accept,Accept-Language,Authorization,Cache-Control,Content-Length,Content-Range,Content-Type,DNT,Destination,Expires,If-Match,If-Modified-Since,If-None-Match,Keep-Alive,Last-Modified,Origin,Pragma,Range,User-Agent,X-Http-Method-Override,X-Mx-ReqToken,X-Requested-With,X-Contentful-Version,X-Contentful-Content-Type,X-Contentful-Organization
|
151
|
+
Access-Control-Allow-Methods:
|
152
|
+
- DELETE,GET,HEAD,POST,PUT,OPTIONS
|
153
|
+
"^access-Control-Expose-Headers":
|
154
|
+
- Etag
|
155
|
+
Access-Control-Max-Age:
|
156
|
+
- '1728000'
|
157
|
+
body:
|
158
|
+
encoding: UTF-8
|
159
|
+
string: |
|
160
|
+
{
|
161
|
+
"name": "Blog testing",
|
162
|
+
"description": "testing",
|
163
|
+
"fields": [
|
164
|
+
{
|
165
|
+
"id": "blogContent",
|
166
|
+
"name": "blog_content",
|
167
|
+
"type": "Text"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"id": "blog_title",
|
171
|
+
"name": "Blog Title",
|
172
|
+
"type": "Text"
|
173
|
+
}
|
174
|
+
],
|
175
|
+
"sys": {
|
176
|
+
"id": "2tDzYAg5MM6sIkwsOmM0Kc",
|
177
|
+
"type": "ContentType",
|
178
|
+
"createdAt": "2014-07-31T10:14:30.634Z",
|
179
|
+
"createdBy": {
|
180
|
+
"sys": {
|
181
|
+
"type": "Link",
|
182
|
+
"linkType": "User",
|
183
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
184
|
+
}
|
185
|
+
},
|
186
|
+
"space": {
|
187
|
+
"sys": {
|
188
|
+
"type": "Link",
|
189
|
+
"linkType": "Space",
|
190
|
+
"id": "yr5m0jky5hsh"
|
191
|
+
}
|
192
|
+
},
|
193
|
+
"firstPublishedAt": "2014-07-31T10:14:49.264Z",
|
194
|
+
"publishedCounter": 1,
|
195
|
+
"publishedAt": "2014-07-31T10:14:49.264Z",
|
196
|
+
"publishedBy": {
|
197
|
+
"sys": {
|
198
|
+
"type": "Link",
|
199
|
+
"linkType": "User",
|
200
|
+
"id": "1E7acJL8I5XUXAMHQt9Grs"
|
201
|
+
}
|
202
|
+
},
|
203
|
+
"publishedVersion": 34,
|
204
|
+
"version": 36,
|
205
|
+
"updatedAt": "2014-07-31T10:15:50.555Z",
|
206
|
+
"updatedBy": {
|
207
|
+
"sys": {
|
208
|
+
"type": "Link",
|
209
|
+
"linkType": "User",
|
210
|
+
"id": "0fn5fOWn4WsKFyYla1gI5h"
|
211
|
+
}
|
212
|
+
}
|
213
|
+
}
|
214
|
+
}
|
215
|
+
http_version:
|
216
|
+
recorded_at: Thu, 31 Jul 2014 10:15:50 GMT
|
217
|
+
recorded_with: VCR 2.9.2
|