gds-api-adapters 88.0.0 → 88.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0fa52b3b12ddcdccdb616cec115476df62b8fc6867e57af88f5f548cb4329980
4
- data.tar.gz: d17c3037dff01c916b918f540b148dce2ee32bca682892575cc40edc9fe4e98f
3
+ metadata.gz: 79fe1575665027a5ad13f85d14e744690c101f68b96eb07bdcaddda05cb64e8a
4
+ data.tar.gz: 660f4807575e2cf6027eac405bcf0dbe5b07d176a8416be908d44c6a785f1af9
5
5
  SHA512:
6
- metadata.gz: ca21816f3109d107bf3997ccdd4024a9d0e9734196335585cffef04ee6f9d30e9a0b52dae76648671c766fb2a653499165ba2bcd92874e6112cfb8d2643f438a
7
- data.tar.gz: 1012911579e99a24ce46ac7eb71d12c376ea42ba715240b61730ea262cb0a25de6767daef720f16780f8e59e935f09af5fe269d3e2ee567f8b877425c49e926b
6
+ metadata.gz: 6a50caa040385b76a6238df0f1f13ffce44a2b807434b6cc51f280109b3f15ae9d756cbf93c2ea3c7ae7b9790ae3a314aae1e28ed85bf6be24414edf7911d7af
7
+ data.tar.gz: 68e20ea7f52cb1451d1cdb847125c3278901381d6346941e74a13fdf21dafd58bd74a3363348c2f573b5f046eddc3e271de06a569374304eff3887c0fdd0e8d4
@@ -260,6 +260,19 @@ class GdsApi::EmailAlertApi < GdsApi::Base
260
260
  )
261
261
  end
262
262
 
263
+ # Migrate all users from one existing subscriber list to another existing subscriber list
264
+ #
265
+ # @param [string] to_slug Identifier for the successor subscription list
266
+ # @param [string] from_slug Identifier for the source subscription list
267
+
268
+ def bulk_migrate(from_slug:, to_slug:)
269
+ post_json(
270
+ "#{endpoint}/subscriber-lists/bulk-migrate",
271
+ from_slug: from_slug,
272
+ to_slug: to_slug,
273
+ )
274
+ end
275
+
263
276
  # Update subscriber list details, such as title
264
277
  # @param [Hash] params A hash of detail paramaters that can be updated. For example title.
265
278
  # For allowed parameters see:
@@ -456,6 +456,24 @@ module GdsApi
456
456
  .to_return(status: 422)
457
457
  end
458
458
 
459
+ def stub_email_alert_api_bulk_migrate(from_slug:, to_slug:)
460
+ stub_request(:post, "#{EMAIL_ALERT_API_ENDPOINT}/subscriber-lists/bulk-migrate")
461
+ .with(body: { from_slug: from_slug, to_slug: to_slug }.to_json)
462
+ .to_return(status: 202)
463
+ end
464
+
465
+ def stub_email_alert_api_bulk_migrate_bad_request(from_slug:, to_slug:)
466
+ stub_request(:post, "#{EMAIL_ALERT_API_ENDPOINT}/subscriber-lists/bulk-migrate")
467
+ .with(body: { from_slug: from_slug, to_slug: to_slug }.to_json)
468
+ .to_return(status: 422)
469
+ end
470
+
471
+ def stub_email_alert_api_bulk_migrate_not_found(from_slug:, to_slug:)
472
+ stub_request(:post, "#{EMAIL_ALERT_API_ENDPOINT}/subscriber-lists/bulk-migrate")
473
+ .with(body: { from_slug: from_slug, to_slug: to_slug }.to_json)
474
+ .to_return(status: 404)
475
+ end
476
+
459
477
  def stub_update_subscriber_list_details(slug:, params:)
460
478
  stub_request(:patch, "#{EMAIL_ALERT_API_ENDPOINT}/subscriber-lists/#{slug}")
461
479
  .with(body: params.to_json)
@@ -1,3 +1,3 @@
1
1
  module GdsApi
2
- VERSION = "88.0.0".freeze
2
+ VERSION = "88.1.0".freeze
3
3
  end
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: 88.0.0
4
+ version: 88.1.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-05-23 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable