stigg-api-client 0.659.0 → 0.664.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: 83f0359377137561ab6adfa17e4ea72ce7a33b14071036a0912e0b47eb26a6fa
4
- data.tar.gz: 74437ce16faf1eaf1daefdd036e43189dc8e331277c28b5be42fc37a2ca8ae7d
3
+ metadata.gz: 4a461692211ae30ffc97e9b5a63ff78d2986218c827c7fcb6d18a0de0e842825
4
+ data.tar.gz: dcec64f5a1a384c00cac521b45b9f8aee2b87a2ab0a155e1f1a3ca6180436c8a
5
5
  SHA512:
6
- metadata.gz: 211e78671cf3d8b6897a917b91a32bae2737c656e3b6abaa65d0be9aa898c4098f35410dd9223172dd6320ad5e5ff90640afeda65f6364a94b5575de6d51834b
7
- data.tar.gz: '097d56d0d1a31d1844db002c15902470879883bb6595abc3fe80000e379f5925532e7b47b370ac506f99766564a7a6cf55a8776ff41d06807d3359248f556bd6'
6
+ metadata.gz: 1e994f85a5cb77fe40759adc4d9429e10e32b62a7ad535691ef9ca4591472731305e11fe9890a7e271fdd471b42a126f8456780f8dfa8f619bec31f341d80099
7
+ data.tar.gz: 1eec8a906e0a0c327ca27bfa4696a1c7ae7560e4de50a349d0a97ee19b11520865bf0d22cb6e8ccf7f095cbca08b04dd838cec7d6383c994e8190a7c9a4d56b0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.659.0)
4
+ stigg-api-client (0.664.0)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql (< 2.1)
7
7
 
@@ -799,6 +799,13 @@ module Stigg
799
799
  }
800
800
  GRAPHQL
801
801
 
802
+ MigrationCompletedPayload = <<~GRAPHQL
803
+ fragment MigrationCompletedPayload on MigrationCompleted {
804
+ accountId
805
+ environmentId
806
+ }
807
+ GRAPHQL
808
+
802
809
  CustomerPortalFragment = <<~GRAPHQL
803
810
  fragment CustomerPortalFragment on CustomerPortal {
804
811
  subscriptions {
@@ -1698,5 +1705,14 @@ module Stigg
1698
1705
  #{Fragment::ResetPeriodConfigurationFragment}
1699
1706
  #{Fragment::FeatureFragment}
1700
1707
  GRAPHQL
1708
+
1709
+ OnMigrationCompleted = <<~GRAPHQL
1710
+ subscription {
1711
+ migrationCompleted {
1712
+ ...MigrationCompletedPayload
1713
+ }
1714
+ }
1715
+ #{Fragment::MigrationCompletedPayload}
1716
+ GRAPHQL
1701
1717
  end
1702
1718
  end