contentful-management 1.8.1 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/CHANGELOG.md +15 -0
  4. data/README.md +209 -41
  5. data/contentful-management.gemspec +1 -1
  6. data/lib/contentful/management/asset.rb +1 -1
  7. data/lib/contentful/management/client.rb +155 -31
  8. data/lib/contentful/management/client_organization_methods_factory.rb +23 -0
  9. data/lib/contentful/management/client_personal_access_tokens_methods_factory.rb +27 -0
  10. data/lib/contentful/management/client_snapshot_methods_factory.rb +16 -6
  11. data/lib/contentful/management/client_space_membership_methods_factory.rb +15 -0
  12. data/lib/contentful/management/client_ui_extension_methods_factory.rb +15 -0
  13. data/lib/contentful/management/client_user_methods_factory.rb +27 -0
  14. data/lib/contentful/management/client_webhook_call_methods_factory.rb +30 -0
  15. data/lib/contentful/management/client_webhook_health_methods_factory.rb +27 -0
  16. data/lib/contentful/management/content_type.rb +10 -0
  17. data/lib/contentful/management/content_type_snapshot_methods_factory.rb +35 -0
  18. data/lib/contentful/management/editor_interface.rb +1 -1
  19. data/lib/contentful/management/organization.rb +20 -0
  20. data/lib/contentful/management/personal_access_token.rb +45 -0
  21. data/lib/contentful/management/request.rb +0 -1
  22. data/lib/contentful/management/resource.rb +4 -2
  23. data/lib/contentful/management/resource_builder.rb +15 -0
  24. data/lib/contentful/management/snapshot.rb +31 -20
  25. data/lib/contentful/management/space.rb +32 -10
  26. data/lib/contentful/management/space_membership.rb +43 -0
  27. data/lib/contentful/management/space_space_membership_methods_factory.rb +15 -0
  28. data/lib/contentful/management/space_ui_extension_methods_factory.rb +15 -0
  29. data/lib/contentful/management/ui_extension.rb +106 -0
  30. data/lib/contentful/management/user.rb +28 -0
  31. data/lib/contentful/management/version.rb +1 -1
  32. data/lib/contentful/management/webhook.rb +20 -0
  33. data/lib/contentful/management/webhook_call.rb +77 -0
  34. data/lib/contentful/management/webhook_health.rb +79 -0
  35. data/lib/contentful/management/webhook_webhook_call_methods_factory.rb +30 -0
  36. data/lib/contentful/management/webhook_webhook_health_methods_factory.rb +28 -0
  37. data/spec/fixtures/vcr_cassettes/get_request.yml +34 -17
  38. data/spec/fixtures/vcr_cassettes/organization/all.yml +100 -0
  39. data/spec/fixtures/vcr_cassettes/personal_access_token/all.yml +101 -0
  40. data/spec/fixtures/vcr_cassettes/personal_access_token/create.yml +94 -0
  41. data/spec/fixtures/vcr_cassettes/personal_access_token/find.yml +91 -0
  42. data/spec/fixtures/vcr_cassettes/personal_access_token/find_not_found.yml +88 -0
  43. data/spec/fixtures/vcr_cassettes/personal_access_token/revoke.yml +179 -0
  44. data/spec/fixtures/vcr_cassettes/snapshot/ct_all.yml +207 -0
  45. data/spec/fixtures/vcr_cassettes/snapshot/ct_find.yml +198 -0
  46. data/spec/fixtures/vcr_cassettes/snapshot/ct_find_not_found.yml +94 -0
  47. data/spec/fixtures/vcr_cassettes/space/all_disabled_cache.yml +428 -0
  48. data/spec/fixtures/vcr_cassettes/space/disabled_cache.yml +120 -0
  49. data/spec/fixtures/vcr_cassettes/space_memberships/all.yml +190 -0
  50. data/spec/fixtures/vcr_cassettes/space_memberships/create.yml +143 -0
  51. data/spec/fixtures/vcr_cassettes/space_memberships/delete.yml +322 -0
  52. data/spec/fixtures/vcr_cassettes/space_memberships/find.yml +141 -0
  53. data/spec/fixtures/vcr_cassettes/ui_extension/all.yml +1020 -0
  54. data/spec/fixtures/vcr_cassettes/ui_extension/create.yml +133 -0
  55. data/spec/fixtures/vcr_cassettes/ui_extension/delete.yml +291 -0
  56. data/spec/fixtures/vcr_cassettes/ui_extension/find.yml +126 -0
  57. data/spec/fixtures/vcr_cassettes/user/find.yml +96 -0
  58. data/spec/fixtures/vcr_cassettes/webhook_call/all.yml +151 -0
  59. data/spec/fixtures/vcr_cassettes/webhook_call/find.yml +88 -0
  60. data/spec/fixtures/vcr_cassettes/webhook_call/find_not_found.yml +93 -0
  61. data/spec/fixtures/vcr_cassettes/webhook_health/find.yml +111 -0
  62. data/spec/lib/contentful/management/client_spec.rb +25 -26
  63. data/spec/lib/contentful/management/entry_spec.rb +48 -48
  64. data/spec/lib/contentful/management/organization_spec.rb +33 -0
  65. data/spec/lib/contentful/management/personal_access_token_spec.rb +85 -0
  66. data/spec/lib/contentful/management/snapshot_spec.rb +134 -47
  67. data/spec/lib/contentful/management/space_membership_spec.rb +147 -0
  68. data/spec/lib/contentful/management/space_spec.rb +35 -1
  69. data/spec/lib/contentful/management/ui_extension_spec.rb +276 -0
  70. data/spec/lib/contentful/management/user_spec.rb +52 -0
  71. data/spec/lib/contentful/management/webhook_calls_spec.rb +69 -0
  72. data/spec/lib/contentful/management/webhook_health_spec.rb +51 -0
  73. metadata +88 -8
  74. data/lib/contentful/management/http_client.rb +0 -89
@@ -0,0 +1,198 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/facgnwwgj5fe/content_types/cat/snapshots/5bfy52PVk8HwBfXURLOsWJ
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Contentful-User-Agent:
11
+ - sdk contentful-management.rb/1.8.1; platform ruby/2.4.1; os macOS/16;
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Connection:
17
+ - close
18
+ Host:
19
+ - api.contentful.com
20
+ User-Agent:
21
+ - http.rb/2.2.2
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Access-Control-Allow-Headers:
28
+ - 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,X-Contentful-Skip-Transformation,X-Contentful-User-Agent,X-Contentful-Enable-Experimental-Feature
29
+ Access-Control-Allow-Methods:
30
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
31
+ Access-Control-Allow-Origin:
32
+ - "*"
33
+ Access-Control-Expose-Headers:
34
+ - Etag
35
+ Access-Control-Max-Age:
36
+ - '1728000'
37
+ Cf-Space-Id:
38
+ - facgnwwgj5fe
39
+ Content-Type:
40
+ - application/vnd.contentful.management.v1+json
41
+ Date:
42
+ - Fri, 29 Sep 2017 00:20:41 GMT
43
+ Etag:
44
+ - '"c483101201275f9b2cbbfc3af8d823c1"'
45
+ Server:
46
+ - Contentful
47
+ Strict-Transport-Security:
48
+ - max-age=15768000
49
+ X-Content-Type-Options:
50
+ - nosniff
51
+ X-Contentful-Ratelimit-Hour-Limit:
52
+ - '36000'
53
+ X-Contentful-Ratelimit-Hour-Remaining:
54
+ - '35970'
55
+ X-Contentful-Ratelimit-Reset:
56
+ - '0'
57
+ X-Contentful-Ratelimit-Second-Limit:
58
+ - '10'
59
+ X-Contentful-Ratelimit-Second-Remaining:
60
+ - '9'
61
+ X-Contentful-Request-Id:
62
+ - 7afa2bfae92a893bf168a8c22528fbb7
63
+ Content-Length:
64
+ - '2541'
65
+ Connection:
66
+ - Close
67
+ Set-Cookie:
68
+ - incap_ses_788_673446=kxlbQRZXlH72cxuE3InvCtmRzVkAAAAAtlJuI04Q+1s5vGBvezbVLw==;
69
+ path=/; Domain=.contentful.com
70
+ - nlbi_673446=SigcIE/cplfBM80y6lKYhQAAAADEq0gADgg85ICD99zmgqCV; path=/; Domain=.contentful.com
71
+ - visid_incap_673446=UQM+YKN9RCG1BRxHvLQs6NmRzVkAAAAAQUIPAAAAAAAIhx0kQdFnFYgz1alRB93g;
72
+ expires=Fri, 28 Sep 2018 08:00:23 GMT; path=/; Domain=.contentful.com
73
+ X-Iinfo:
74
+ - 10-5963897-5963914 NNNN CT(159 327 0) RT(1506644440175 322) q(0 0 5 -1) r(8
75
+ 8) U5
76
+ X-Cdn:
77
+ - Incapsula
78
+ body:
79
+ encoding: ASCII-8BIT
80
+ string: |
81
+ {
82
+ "sys": {
83
+ "type": "Snapshot",
84
+ "snapshotType": "publish",
85
+ "snapshotEntityType": "ContentType",
86
+ "id": "5bfy52PVk8HwBfXURLOsWJ",
87
+ "createdAt": "2017-06-26T17:09:50.255Z",
88
+ "createdBy": {
89
+ "sys": {
90
+ "type": "Link",
91
+ "linkType": "User",
92
+ "id": "4SejVrWT96dvL9IV4Nb7sQ"
93
+ }
94
+ },
95
+ "updatedAt": "2017-06-26T17:09:50.255Z",
96
+ "updatedBy": {
97
+ "sys": {
98
+ "type": "Link",
99
+ "linkType": "User",
100
+ "id": "4SejVrWT96dvL9IV4Nb7sQ"
101
+ }
102
+ },
103
+ "space": {
104
+ "sys": {
105
+ "type": "Link",
106
+ "linkType": "Space",
107
+ "id": "facgnwwgj5fe"
108
+ }
109
+ }
110
+ },
111
+ "snapshot": {
112
+ "name": "Cat",
113
+ "fields": [
114
+ {
115
+ "name": "Name",
116
+ "id": "name",
117
+ "type": "Symbol",
118
+ "validations": [],
119
+ "localized": false,
120
+ "required": false,
121
+ "disabled": false,
122
+ "omitted": false
123
+ },
124
+ {
125
+ "name": "Lives",
126
+ "id": "lives",
127
+ "type": "Integer",
128
+ "validations": [],
129
+ "localized": false,
130
+ "required": false,
131
+ "disabled": false,
132
+ "omitted": false
133
+ },
134
+ {
135
+ "name": "Best Friend",
136
+ "id": "bestFriend",
137
+ "type": "Link",
138
+ "linkType": "Entry",
139
+ "localized": false,
140
+ "required": false,
141
+ "disabled": false,
142
+ "omitted": false,
143
+ "validations": []
144
+ },
145
+ {
146
+ "name": "Likes",
147
+ "id": "likes",
148
+ "type": "Array",
149
+ "items": {
150
+ "type": "Symbol"
151
+ }
152
+ }
153
+ ],
154
+ "sys": {
155
+ "id": "cat",
156
+ "type": "ContentType",
157
+ "createdAt": "2017-05-08T14:06:00.224Z",
158
+ "createdBy": {
159
+ "sys": {
160
+ "type": "Link",
161
+ "linkType": "User",
162
+ "id": "4SejVrWT96dvL9IV4Nb7sQ"
163
+ }
164
+ },
165
+ "space": {
166
+ "sys": {
167
+ "type": "Link",
168
+ "linkType": "Space",
169
+ "id": "facgnwwgj5fe"
170
+ }
171
+ },
172
+ "version": 4,
173
+ "updatedAt": "2017-06-26T17:09:50.074Z",
174
+ "updatedBy": {
175
+ "sys": {
176
+ "type": "Link",
177
+ "linkType": "User",
178
+ "id": "4SejVrWT96dvL9IV4Nb7sQ"
179
+ }
180
+ },
181
+ "firstPublishedAt": "2017-05-08T14:06:00.749Z",
182
+ "publishedCounter": 2,
183
+ "publishedAt": "2017-06-26T17:09:50.074Z",
184
+ "publishedBy": {
185
+ "sys": {
186
+ "type": "Link",
187
+ "linkType": "User",
188
+ "id": "4SejVrWT96dvL9IV4Nb7sQ"
189
+ }
190
+ },
191
+ "publishedVersion": 3
192
+ },
193
+ "displayField": "name"
194
+ }
195
+ }
196
+ http_version:
197
+ recorded_at: Fri, 29 Sep 2017 00:20:42 GMT
198
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,94 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces/facgnwwgj5fe/content_types/cat/snapshots/not_exist
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Contentful-User-Agent:
11
+ - sdk contentful-management.rb/1.8.1; platform ruby/2.4.1; os macOS/16;
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Connection:
17
+ - close
18
+ Host:
19
+ - api.contentful.com
20
+ User-Agent:
21
+ - http.rb/2.2.2
22
+ response:
23
+ status:
24
+ code: 404
25
+ message: Not Found
26
+ headers:
27
+ Access-Control-Allow-Headers:
28
+ - 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,X-Contentful-Skip-Transformation,X-Contentful-User-Agent,X-Contentful-Enable-Experimental-Feature
29
+ Access-Control-Allow-Methods:
30
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
31
+ Access-Control-Allow-Origin:
32
+ - "*"
33
+ Access-Control-Expose-Headers:
34
+ - Etag
35
+ Access-Control-Max-Age:
36
+ - '1728000'
37
+ Cf-Space-Id:
38
+ - facgnwwgj5fe
39
+ Content-Type:
40
+ - application/vnd.contentful.management.v1+json
41
+ Date:
42
+ - Fri, 29 Sep 2017 00:15:21 GMT
43
+ Server:
44
+ - Contentful
45
+ Strict-Transport-Security:
46
+ - max-age=15768000
47
+ X-Content-Type-Options:
48
+ - nosniff
49
+ X-Contentful-Ratelimit-Hour-Limit:
50
+ - '36000'
51
+ X-Contentful-Ratelimit-Hour-Remaining:
52
+ - '35972'
53
+ X-Contentful-Ratelimit-Reset:
54
+ - '0'
55
+ X-Contentful-Ratelimit-Second-Limit:
56
+ - '10'
57
+ X-Contentful-Ratelimit-Second-Remaining:
58
+ - '9'
59
+ X-Contentful-Request-Id:
60
+ - dd25d047377732910325137fff9e7a86
61
+ Content-Length:
62
+ - '256'
63
+ Connection:
64
+ - Close
65
+ Set-Cookie:
66
+ - incap_ses_788_673446=wB2OJxlv4ThrpBqE3InvCpiQzVkAAAAAqDjJA+faIJeosvNZLPZksg==;
67
+ path=/; Domain=.contentful.com
68
+ - nlbi_673446=zswxBA3ZrU+A0scH6lKYhQAAAACvMa4JS8N+1+pCe5qC3FV0; path=/; Domain=.contentful.com
69
+ - visid_incap_673446=/YrlSBg3TWqJlaP/RR9M+I6QzVkAAAAAQUIPAAAAAACmC98nN33+pTm+TX0/uLVX;
70
+ expires=Fri, 28 Sep 2018 08:00:23 GMT; path=/; Domain=.contentful.com
71
+ X-Iinfo:
72
+ - 14-17343875-17343924 NNNN CT(161 331 0) RT(1506644115358 354) q(0 0 5 1) r(48
73
+ 48) U5
74
+ X-Cdn:
75
+ - Incapsula
76
+ body:
77
+ encoding: ASCII-8BIT
78
+ string: |
79
+ {
80
+ "sys": {
81
+ "type": "Error",
82
+ "id": "NotFound"
83
+ },
84
+ "message": "The resource could not be found.",
85
+ "details": {
86
+ "space": "facgnwwgj5fe",
87
+ "id": "not_exist",
88
+ "type": "Snapshot"
89
+ },
90
+ "requestId": "dd25d047377732910325137fff9e7a86"
91
+ }
92
+ http_version:
93
+ recorded_at: Fri, 29 Sep 2017 00:15:21 GMT
94
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,428 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.contentful.com/spaces
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Contentful-User-Agent:
11
+ - sdk contentful-management.rb/1.8.1; platform ruby/2.4.1; os macOS/16;
12
+ Authorization:
13
+ - Bearer <ACCESS_TOKEN>
14
+ Content-Type:
15
+ - application/vnd.contentful.management.v1+json
16
+ Content-Length:
17
+ - '0'
18
+ Connection:
19
+ - close
20
+ Host:
21
+ - api.contentful.com
22
+ User-Agent:
23
+ - http.rb/2.2.2
24
+ response:
25
+ status:
26
+ code: 200
27
+ message: OK
28
+ headers:
29
+ Accept-Ranges:
30
+ - bytes
31
+ Access-Control-Allow-Headers:
32
+ - 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,X-Contentful-Skip-Transformation,X-Contentful-User-Agent,X-Contentful-Enable-Experimental-Feature
33
+ Access-Control-Allow-Methods:
34
+ - DELETE,GET,HEAD,POST,PUT,OPTIONS
35
+ Access-Control-Allow-Origin:
36
+ - "*"
37
+ Access-Control-Expose-Headers:
38
+ - Etag
39
+ Access-Control-Max-Age:
40
+ - '1728000'
41
+ Cache-Control:
42
+ - max-age=0
43
+ Content-Type:
44
+ - application/vnd.contentful.management.v1+json
45
+ Date:
46
+ - Mon, 14 Aug 2017 13:52:58 GMT
47
+ Etag:
48
+ - W/"6f2e86bcbac05f1100d77295d77984d8"
49
+ Server:
50
+ - Contentful
51
+ Strict-Transport-Security:
52
+ - max-age=15768000
53
+ X-Content-Type-Options:
54
+ - nosniff
55
+ X-Contentful-Request-Id:
56
+ - d944d772bea82de9ba17a14681de391b
57
+ X-Frame-Options:
58
+ - ALLOWALL
59
+ X-Xss-Protection:
60
+ - 1; mode=block
61
+ Content-Length:
62
+ - '14007'
63
+ Connection:
64
+ - Close
65
+ Set-Cookie:
66
+ - incap_ses_685_673446=sbeZGfp1RkM+1c6Rt52BCTmrkVkAAAAAaJX2yuX1hrDiXhfLJouX5g==;
67
+ path=/; Domain=.contentful.com
68
+ - nlbi_673446=PBVIIB7I2mV5Djna6lKYhQAAAABAQpW+oPxU70WzVDNrvrHj; path=/; Domain=.contentful.com
69
+ - visid_incap_673446=hjWlI2qqQ2KRMkWEbcLOTTmrkVkAAAAAQUIPAAAAAABt8C2GXoSA0Y5vsyI40dyn;
70
+ expires=Tue, 14 Aug 2018 13:23:41 GMT; path=/; Domain=.contentful.com
71
+ X-Iinfo:
72
+ - 6-26601763-26601802 NNNN CT(136 274 0) RT(1502718776958 195) q(0 0 4 -1) r(7
73
+ 7) U5
74
+ X-Cdn:
75
+ - Incapsula
76
+ body:
77
+ encoding: ASCII-8BIT
78
+ string: |+
79
+ {
80
+ "total":103,
81
+ "limit":25,
82
+ "skip":0,
83
+ "sys":{
84
+ "type":"Array"
85
+ },
86
+ "items":[
87
+ {
88
+ "name":"LocaleTestSpace",
89
+ "sys":{
90
+ "type":"Space",
91
+ "id":"9sh5dtmfyzhj",
92
+ "version":2,
93
+ "createdBy":{
94
+ "sys":{
95
+ "type":"Link",
96
+ "linkType":"User",
97
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
98
+ }
99
+ },
100
+ "createdAt":"2015-10-19T15:13:09Z",
101
+ "updatedBy":{
102
+ "sys":{
103
+ "type":"Link",
104
+ "linkType":"User",
105
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
106
+ }
107
+ },
108
+ "updatedAt":"2016-03-15T11:29:13Z"
109
+ }
110
+ },
111
+ {
112
+ "name":"database_exporter_issue_6",
113
+ "sys":{
114
+ "type":"Space",
115
+ "id":"q6tvmm7cjdv4",
116
+ "version":2,
117
+ "createdBy":{
118
+ "sys":{
119
+ "type":"Link",
120
+ "linkType":"User",
121
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
122
+ }
123
+ },
124
+ "createdAt":"2015-10-21T11:31:37Z",
125
+ "updatedBy":{
126
+ "sys":{
127
+ "type":"Link",
128
+ "linkType":"User",
129
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
130
+ }
131
+ },
132
+ "updatedAt":"2016-03-15T11:36:40Z"
133
+ }
134
+ },
135
+ {
136
+ "name":"contentful.rb - issue 69",
137
+ "sys":{
138
+ "type":"Space",
139
+ "id":"wio7th6i1n7o",
140
+ "version":2,
141
+ "createdBy":{
142
+ "sys":{
143
+ "type":"Link",
144
+ "linkType":"User",
145
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
146
+ }
147
+ },
148
+ "createdAt":"2015-10-23T10:09:59Z",
149
+ "updatedBy":{
150
+ "sys":{
151
+ "type":"Link",
152
+ "linkType":"User",
153
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
154
+ }
155
+ },
156
+ "updatedAt":"2016-03-15T11:44:57Z"
157
+ }
158
+ },
159
+ {
160
+ "name":"contentful_middleman_issue_39",
161
+ "sys":{
162
+ "type":"Space",
163
+ "id":"57saofu09q34",
164
+ "version":2,
165
+ "createdBy":{
166
+ "sys":{
167
+ "type":"Link",
168
+ "linkType":"User",
169
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
170
+ }
171
+ },
172
+ "createdAt":"2015-10-26T10:32:48Z",
173
+ "updatedBy":{
174
+ "sys":{
175
+ "type":"Link",
176
+ "linkType":"User",
177
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
178
+ }
179
+ },
180
+ "updatedAt":"2016-03-15T11:47:29Z"
181
+ }
182
+ },
183
+ {
184
+ "name":"management.rb - #70",
185
+ "sys":{
186
+ "type":"Space",
187
+ "id":"pzmofp93zw39",
188
+ "version":2,
189
+ "createdBy":{
190
+ "sys":{
191
+ "type":"Link",
192
+ "linkType":"User",
193
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
194
+ }
195
+ },
196
+ "createdAt":"2015-11-12T12:56:01Z",
197
+ "updatedBy":{
198
+ "sys":{
199
+ "type":"Link",
200
+ "linkType":"User",
201
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
202
+ }
203
+ },
204
+ "updatedAt":"2016-03-16T11:05:06Z"
205
+ }
206
+ },
207
+ {
208
+ "name":"management.rb - #73",
209
+ "sys":{
210
+ "type":"Space",
211
+ "id":"u2viwgfeal0o",
212
+ "version":2,
213
+ "createdBy":{
214
+ "sys":{
215
+ "type":"Link",
216
+ "linkType":"User",
217
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
218
+ }
219
+ },
220
+ "createdAt":"2015-12-07T13:29:36Z",
221
+ "updatedBy":{
222
+ "sys":{
223
+ "type":"Link",
224
+ "linkType":"User",
225
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
226
+ }
227
+ },
228
+ "updatedAt":"2016-03-16T15:07:08Z"
229
+ }
230
+ },
231
+ {
232
+ "name":"contentful.rb - #79",
233
+ "sys":{
234
+ "type":"Space",
235
+ "id":"g2b4ltw00meh",
236
+ "version":2,
237
+ "createdBy":{
238
+ "sys":{
239
+ "type":"Link",
240
+ "linkType":"User",
241
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
242
+ }
243
+ },
244
+ "createdAt":"2015-12-07T14:51:05Z",
245
+ "updatedBy":{
246
+ "sys":{
247
+ "type":"Link",
248
+ "linkType":"User",
249
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
250
+ }
251
+ },
252
+ "updatedAt":"2016-03-16T15:07:23Z"
253
+ }
254
+ },
255
+ {
256
+ "name":"breaking_changes_test",
257
+ "sys":{
258
+ "type":"Space",
259
+ "id":"jd2sv8fvhjxf",
260
+ "version":2,
261
+ "createdBy":{
262
+ "sys":{
263
+ "type":"Link",
264
+ "linkType":"User",
265
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
266
+ }
267
+ },
268
+ "createdAt":"2015-12-14T12:25:40Z",
269
+ "updatedBy":{
270
+ "sys":{
271
+ "type":"Link",
272
+ "linkType":"User",
273
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
274
+ }
275
+ },
276
+ "updatedAt":"2016-03-16T15:17:07Z"
277
+ }
278
+ },
279
+ {
280
+ "name":"Useful Link Example Space",
281
+ "sys":{
282
+ "type":"Space",
283
+ "id":"3fwy09k2gc9g",
284
+ "version":2,
285
+ "createdBy":{
286
+ "sys":{
287
+ "type":"Link",
288
+ "linkType":"User",
289
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
290
+ }
291
+ },
292
+ "createdAt":"2015-12-22T14:07:32Z",
293
+ "updatedBy":{
294
+ "sys":{
295
+ "type":"Link",
296
+ "linkType":"User",
297
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
298
+ }
299
+ },
300
+ "updatedAt":"2016-03-14T11:50:14Z"
301
+ }
302
+ },
303
+ {
304
+ "name":"my_catalogue",
305
+ "sys":{
306
+ "type":"Space",
307
+ "id":"ccbi775hv3p0",
308
+ "version":2,
309
+ "createdBy":{
310
+ "sys":{
311
+ "type":"Link",
312
+ "linkType":"User",
313
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
314
+ }
315
+ },
316
+ "createdAt":"2015-12-24T13:36:07Z",
317
+ "updatedBy":{
318
+ "sys":{
319
+ "type":"Link",
320
+ "linkType":"User",
321
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
322
+ }
323
+ },
324
+ "updatedAt":"2016-03-14T11:57:21Z"
325
+ }
326
+ },
327
+ {
328
+ "name":"VR Shop",
329
+ "sys":{
330
+ "type":"Space",
331
+ "id":"jialpjiftwxl",
332
+ "version":2,
333
+ "createdBy":{
334
+ "sys":{
335
+ "type":"Link",
336
+ "linkType":"User",
337
+ "id":"7uJNojWP0gbuP7Pplz7Syo"
338
+ }
339
+ },
340
+ "createdAt":"2015-12-29T09:25:43Z",
341
+ "updatedBy":{
342
+ "sys":{
343
+ "type":"Link",
344
+ "linkType":"User",
345
+ "id":"7uJNojWP0gbuP7Pplz7Syo"
346
+ }
347
+ },
348
+ "updatedAt":"2016-03-14T11:57:56Z"
349
+ }
350
+ },
351
+ {
352
+ "name":"middleman_test_blog",
353
+ "sys":{
354
+ "type":"Space",
355
+ "id":"2yri4oy2f26b",
356
+ "version":2,
357
+ "createdBy":{
358
+ "sys":{
359
+ "type":"Link",
360
+ "linkType":"User",
361
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
362
+ }
363
+ },
364
+ "createdAt":"2016-01-15T22:56:40Z",
365
+ "updatedBy":{
366
+ "sys":{
367
+ "type":"Link",
368
+ "linkType":"User",
369
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
370
+ }
371
+ },
372
+ "updatedAt":"2016-03-14T12:29:39Z"
373
+ }
374
+ },
375
+ {
376
+ "name":"middleman - #77",
377
+ "sys":{
378
+ "type":"Space",
379
+ "id":"06iqaehcc4z6",
380
+ "version":2,
381
+ "createdBy":{
382
+ "sys":{
383
+ "type":"Link",
384
+ "linkType":"User",
385
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
386
+ }
387
+ },
388
+ "createdAt":"2016-01-18T12:10:35Z",
389
+ "updatedBy":{
390
+ "sys":{
391
+ "type":"Link",
392
+ "linkType":"User",
393
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
394
+ }
395
+ },
396
+ "updatedAt":"2016-03-14T12:33:00Z"
397
+ }
398
+ },
399
+ {
400
+ "name":"management.rb - #79",
401
+ "sys":{
402
+ "type":"Space",
403
+ "id":"ngtgiva4wofg",
404
+ "version":2,
405
+ "createdBy":{
406
+ "sys":{
407
+ "type":"Link",
408
+ "linkType":"User",
409
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
410
+ }
411
+ },
412
+ "createdAt":"2016-01-21T15:22:59Z",
413
+ "updatedBy":{
414
+ "sys":{
415
+ "type":"Link",
416
+ "linkType":"User",
417
+ "id":"4SejVrWT96dvL9IV4Nb7sQ"
418
+ }
419
+ },
420
+ "updatedAt":"2016-03-16T15:25:04Z"
421
+ }
422
+ }
423
+ ]
424
+ }
425
+
426
+ http_version:
427
+ recorded_at: Mon, 14 Aug 2017 13:52:58 GMT
428
+ recorded_with: VCR 3.0.3