gds-api-adapters 90.0.0 → 91.0.0
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 +4 -4
- data/lib/gds_api/account_api.rb +0 -29
- data/lib/gds_api/search_api_v2.rb +8 -0
- data/lib/gds_api/test_helpers/account_api.rb +0 -94
- data/lib/gds_api/version.rb +1 -1
- data/lib/gds_api.rb +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41e7999151bc881b78197b10d558183acae7e152fa24ab094fe6ffc7b1f3ba04
|
4
|
+
data.tar.gz: b49490f10d7a25df53c0e9ad1794ae86f5539ec0da7439c8b2e9e0cdd49b3188
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b54654c80ed4e66aef36108340a56705d98be773f2c8f3f68c2de337fec44c9ac694c616664b3caf23a9969c92f89bffef7fd8f08ac98c32281abf4b4e25fa53
|
7
|
+
data.tar.gz: 2204c601e2524af9c848fcd35faae39088c0a8f7716091b21ac59ffd7b5022455dbe39e32722204167449a583a203785b7d1046b5bfae91755057f237c4c7e1a
|
data/lib/gds_api/account_api.rb
CHANGED
@@ -107,35 +107,6 @@ class GdsApi::AccountApi < GdsApi::Base
|
|
107
107
|
patch_json("#{endpoint}/api/attributes", { attributes: attributes }, auth_headers(govuk_account_session))
|
108
108
|
end
|
109
109
|
|
110
|
-
# Get the details of an account-linked email subscription.
|
111
|
-
#
|
112
|
-
# @param [String] name Name of the subscription
|
113
|
-
# @param [String] govuk_account_session Value of the session header
|
114
|
-
#
|
115
|
-
# @return [Hash] Details of the subscription, if it exists.
|
116
|
-
def get_email_subscription(name:, govuk_account_session:)
|
117
|
-
get_json("#{endpoint}/api/email-subscriptions/#{CGI.escape(name)}", auth_headers(govuk_account_session))
|
118
|
-
end
|
119
|
-
|
120
|
-
# Create or update an account-linked email subscription.
|
121
|
-
#
|
122
|
-
# @param [String] name Name of the subscription
|
123
|
-
# @param [String] topic_slug The email-alert-api topic slug to subscribe to
|
124
|
-
# @param [String] govuk_account_session Value of the session header
|
125
|
-
#
|
126
|
-
# @return [Hash] Details of the newly created subscription.
|
127
|
-
def put_email_subscription(name:, topic_slug:, govuk_account_session:)
|
128
|
-
put_json("#{endpoint}/api/email-subscriptions/#{CGI.escape(name)}", { topic_slug: topic_slug }, auth_headers(govuk_account_session))
|
129
|
-
end
|
130
|
-
|
131
|
-
# Unsubscribe and delete an account-linked email subscription.
|
132
|
-
#
|
133
|
-
# @param [String] name Name of the subscription
|
134
|
-
# @param [String] govuk_account_session Value of the session header
|
135
|
-
def delete_email_subscription(name:, govuk_account_session:)
|
136
|
-
delete_json("#{endpoint}/api/email-subscriptions/#{CGI.escape(name)}", {}, auth_headers(govuk_account_session))
|
137
|
-
end
|
138
|
-
|
139
110
|
private
|
140
111
|
|
141
112
|
def nested_query_string(params)
|
@@ -172,100 +172,6 @@ module GdsApi
|
|
172
172
|
)
|
173
173
|
end
|
174
174
|
|
175
|
-
####################################
|
176
|
-
# GET /api/email-subscriptions/:name
|
177
|
-
####################################
|
178
|
-
def stub_account_api_get_email_subscription(name:, topic_slug: "slug", email_alert_api_subscription_id: "12345", **options)
|
179
|
-
stub_account_api_request(
|
180
|
-
:get,
|
181
|
-
"/api/email-subscriptions/#{name}",
|
182
|
-
response_body: {
|
183
|
-
email_subscription: {
|
184
|
-
name: name,
|
185
|
-
topic_slug: topic_slug,
|
186
|
-
email_alert_api_subscription_id: email_alert_api_subscription_id,
|
187
|
-
},
|
188
|
-
},
|
189
|
-
**options,
|
190
|
-
)
|
191
|
-
end
|
192
|
-
|
193
|
-
def stub_account_api_get_email_subscription_does_not_exist(name:, **options)
|
194
|
-
stub_account_api_request(
|
195
|
-
:get,
|
196
|
-
"/api/email-subscriptions/#{name}",
|
197
|
-
response_status: 404,
|
198
|
-
**options,
|
199
|
-
)
|
200
|
-
end
|
201
|
-
|
202
|
-
def stub_account_api_unauthorized_get_email_subscription(name:, **options)
|
203
|
-
stub_account_api_request(
|
204
|
-
:get,
|
205
|
-
"/api/email-subscriptions/#{name}",
|
206
|
-
response_status: 401,
|
207
|
-
**options,
|
208
|
-
)
|
209
|
-
end
|
210
|
-
|
211
|
-
####################################
|
212
|
-
# PUT /api/email-subscriptions/:name
|
213
|
-
####################################
|
214
|
-
def stub_account_api_put_email_subscription(name:, topic_slug: nil, **options)
|
215
|
-
stub_account_api_request(
|
216
|
-
:put,
|
217
|
-
"/api/email-subscriptions/#{name}",
|
218
|
-
with: { body: hash_including({ topic_slug: topic_slug }.compact) },
|
219
|
-
response_body: {
|
220
|
-
email_subscription: {
|
221
|
-
name: name,
|
222
|
-
topic_slug: topic_slug || "slug",
|
223
|
-
},
|
224
|
-
},
|
225
|
-
**options,
|
226
|
-
)
|
227
|
-
end
|
228
|
-
|
229
|
-
def stub_account_api_unauthorized_put_email_subscription(name:, topic_slug: nil, **options)
|
230
|
-
stub_account_api_request(
|
231
|
-
:put,
|
232
|
-
"/api/email-subscriptions/#{name}",
|
233
|
-
with: { body: hash_including({ topic_slug: topic_slug }.compact) },
|
234
|
-
response_status: 401,
|
235
|
-
**options,
|
236
|
-
)
|
237
|
-
end
|
238
|
-
|
239
|
-
#######################################
|
240
|
-
# DELETE /api/email-subscriptions/:name
|
241
|
-
#######################################
|
242
|
-
def stub_account_api_delete_email_subscription(name:, **options)
|
243
|
-
stub_account_api_request(
|
244
|
-
:delete,
|
245
|
-
"/api/email-subscriptions/#{name}",
|
246
|
-
response_status: 204,
|
247
|
-
**options,
|
248
|
-
)
|
249
|
-
end
|
250
|
-
|
251
|
-
def stub_account_api_delete_email_subscription_does_not_exist(name:, **options)
|
252
|
-
stub_account_api_request(
|
253
|
-
:delete,
|
254
|
-
"/api/email-subscriptions/#{name}",
|
255
|
-
response_status: 404,
|
256
|
-
**options,
|
257
|
-
)
|
258
|
-
end
|
259
|
-
|
260
|
-
def stub_account_api_unauthorized_delete_email_subscription(name:, **options)
|
261
|
-
stub_account_api_request(
|
262
|
-
:delete,
|
263
|
-
"/api/email-subscriptions/#{name}",
|
264
|
-
response_status: 401,
|
265
|
-
**options,
|
266
|
-
)
|
267
|
-
end
|
268
|
-
|
269
175
|
#####################
|
270
176
|
# GET /api/attributes
|
271
177
|
#####################
|
data/lib/gds_api/version.rb
CHANGED
data/lib/gds_api.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gds-api-adapters
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 91.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GOV.UK Dev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -367,6 +367,7 @@ files:
|
|
367
367
|
- lib/gds_api/response.rb
|
368
368
|
- lib/gds_api/router.rb
|
369
369
|
- lib/gds_api/search.rb
|
370
|
+
- lib/gds_api/search_api_v2.rb
|
370
371
|
- lib/gds_api/support.rb
|
371
372
|
- lib/gds_api/support_api.rb
|
372
373
|
- lib/gds_api/test_helpers/account_api.rb
|
@@ -416,7 +417,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
416
417
|
- !ruby/object:Gem::Version
|
417
418
|
version: '0'
|
418
419
|
requirements: []
|
419
|
-
rubygems_version: 3.4.
|
420
|
+
rubygems_version: 3.4.19
|
420
421
|
signing_key:
|
421
422
|
specification_version: 4
|
422
423
|
summary: Adapters to work with GDS APIs
|