stigg-api-client 0.664.0 → 0.665.2

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: 4a461692211ae30ffc97e9b5a63ff78d2986218c827c7fcb6d18a0de0e842825
4
- data.tar.gz: dcec64f5a1a384c00cac521b45b9f8aee2b87a2ab0a155e1f1a3ca6180436c8a
3
+ metadata.gz: 69cf5ece7a0ddd5c4239986409e7e888a1d1cd2030495bba0990da678cf2452a
4
+ data.tar.gz: b9e1416b34943bd848aff60ce725cfa03dafd57e20b4b1964ce56130cb406bbe
5
5
  SHA512:
6
- metadata.gz: 1e994f85a5cb77fe40759adc4d9429e10e32b62a7ad535691ef9ca4591472731305e11fe9890a7e271fdd471b42a126f8456780f8dfa8f619bec31f341d80099
7
- data.tar.gz: 1eec8a906e0a0c327ca27bfa4696a1c7ae7560e4de50a349d0a97ee19b11520865bf0d22cb6e8ccf7f095cbca08b04dd838cec7d6383c994e8190a7c9a4d56b0
6
+ metadata.gz: 873deb9697323d698ca7071d4f92d11472ab85ec1928af95c556ad17f7d2c0e1cc446cabaf005ec0357e6db93bd95f166791224577e9f7c7485ded9e9250516f
7
+ data.tar.gz: 1ada15d6a0b9242f3ab0c23ea9b435b74b32ea3a80962f19c3b580cfe498d64ed88157e97d8dbb265b23ce60f433f3b27a8e09f7a974a6701b2158863ab5d372
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.664.0)
4
+ stigg-api-client (0.665.2)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql (< 2.1)
7
7
 
@@ -799,10 +799,14 @@ module Stigg
799
799
  }
800
800
  GRAPHQL
801
801
 
802
- MigrationCompletedPayload = <<~GRAPHQL
803
- fragment MigrationCompletedPayload on MigrationCompleted {
802
+ PackagePublishedPayload = <<~GRAPHQL
803
+ fragment PackagePublishedPayload on PackagePublished {
804
804
  accountId
805
805
  environmentId
806
+ packageType
807
+ packageRefId
808
+ packageVersion
809
+ migrationType
806
810
  }
807
811
  GRAPHQL
808
812
 
@@ -1706,13 +1710,13 @@ module Stigg
1706
1710
  #{Fragment::FeatureFragment}
1707
1711
  GRAPHQL
1708
1712
 
1709
- OnMigrationCompleted = <<~GRAPHQL
1713
+ OnPackagePublished = <<~GRAPHQL
1710
1714
  subscription {
1711
- migrationCompleted {
1712
- ...MigrationCompletedPayload
1715
+ packagePublished {
1716
+ ...PackagePublishedPayload
1713
1717
  }
1714
1718
  }
1715
- #{Fragment::MigrationCompletedPayload}
1719
+ #{Fragment::PackagePublishedPayload}
1716
1720
  GRAPHQL
1717
1721
  end
1718
1722
  end
@@ -3904,6 +3904,18 @@
3904
3904
  "isDeprecated": false,
3905
3905
  "deprecationReason": null
3906
3906
  },
3907
+ {
3908
+ "name": "stiggProductRefId",
3909
+ "description": null,
3910
+ "args": [],
3911
+ "type": {
3912
+ "kind": "SCALAR",
3913
+ "name": "String",
3914
+ "ofType": null
3915
+ },
3916
+ "isDeprecated": false,
3917
+ "deprecationReason": null
3918
+ },
3907
3919
  {
3908
3920
  "name": "title",
3909
3921
  "description": null,
@@ -32384,49 +32396,6 @@
32384
32396
  "enumValues": null,
32385
32397
  "possibleTypes": null
32386
32398
  },
32387
- {
32388
- "kind": "OBJECT",
32389
- "name": "MigrationCompleted",
32390
- "description": null,
32391
- "fields": [
32392
- {
32393
- "name": "accountId",
32394
- "description": null,
32395
- "args": [],
32396
- "type": {
32397
- "kind": "NON_NULL",
32398
- "name": null,
32399
- "ofType": {
32400
- "kind": "SCALAR",
32401
- "name": "String",
32402
- "ofType": null
32403
- }
32404
- },
32405
- "isDeprecated": false,
32406
- "deprecationReason": null
32407
- },
32408
- {
32409
- "name": "environmentId",
32410
- "description": null,
32411
- "args": [],
32412
- "type": {
32413
- "kind": "NON_NULL",
32414
- "name": null,
32415
- "ofType": {
32416
- "kind": "SCALAR",
32417
- "name": "String",
32418
- "ofType": null
32419
- }
32420
- },
32421
- "isDeprecated": false,
32422
- "deprecationReason": null
32423
- }
32424
- ],
32425
- "inputFields": null,
32426
- "interfaces": [],
32427
- "enumValues": null,
32428
- "possibleTypes": null
32429
- },
32430
32399
  {
32431
32400
  "kind": "OBJECT",
32432
32401
  "name": "MockPaywall",
@@ -39554,6 +39523,113 @@
39554
39523
  "enumValues": null,
39555
39524
  "possibleTypes": null
39556
39525
  },
39526
+ {
39527
+ "kind": "OBJECT",
39528
+ "name": "PackagePublished",
39529
+ "description": null,
39530
+ "fields": [
39531
+ {
39532
+ "name": "accountId",
39533
+ "description": null,
39534
+ "args": [],
39535
+ "type": {
39536
+ "kind": "NON_NULL",
39537
+ "name": null,
39538
+ "ofType": {
39539
+ "kind": "SCALAR",
39540
+ "name": "String",
39541
+ "ofType": null
39542
+ }
39543
+ },
39544
+ "isDeprecated": false,
39545
+ "deprecationReason": null
39546
+ },
39547
+ {
39548
+ "name": "environmentId",
39549
+ "description": null,
39550
+ "args": [],
39551
+ "type": {
39552
+ "kind": "NON_NULL",
39553
+ "name": null,
39554
+ "ofType": {
39555
+ "kind": "SCALAR",
39556
+ "name": "String",
39557
+ "ofType": null
39558
+ }
39559
+ },
39560
+ "isDeprecated": false,
39561
+ "deprecationReason": null
39562
+ },
39563
+ {
39564
+ "name": "migrationType",
39565
+ "description": null,
39566
+ "args": [],
39567
+ "type": {
39568
+ "kind": "NON_NULL",
39569
+ "name": null,
39570
+ "ofType": {
39571
+ "kind": "ENUM",
39572
+ "name": "PublishMigrationType",
39573
+ "ofType": null
39574
+ }
39575
+ },
39576
+ "isDeprecated": false,
39577
+ "deprecationReason": null
39578
+ },
39579
+ {
39580
+ "name": "packageRefId",
39581
+ "description": null,
39582
+ "args": [],
39583
+ "type": {
39584
+ "kind": "NON_NULL",
39585
+ "name": null,
39586
+ "ofType": {
39587
+ "kind": "SCALAR",
39588
+ "name": "String",
39589
+ "ofType": null
39590
+ }
39591
+ },
39592
+ "isDeprecated": false,
39593
+ "deprecationReason": null
39594
+ },
39595
+ {
39596
+ "name": "packageType",
39597
+ "description": null,
39598
+ "args": [],
39599
+ "type": {
39600
+ "kind": "NON_NULL",
39601
+ "name": null,
39602
+ "ofType": {
39603
+ "kind": "SCALAR",
39604
+ "name": "String",
39605
+ "ofType": null
39606
+ }
39607
+ },
39608
+ "isDeprecated": false,
39609
+ "deprecationReason": null
39610
+ },
39611
+ {
39612
+ "name": "packageVersion",
39613
+ "description": null,
39614
+ "args": [],
39615
+ "type": {
39616
+ "kind": "NON_NULL",
39617
+ "name": null,
39618
+ "ofType": {
39619
+ "kind": "SCALAR",
39620
+ "name": "Int",
39621
+ "ofType": null
39622
+ }
39623
+ },
39624
+ "isDeprecated": false,
39625
+ "deprecationReason": null
39626
+ }
39627
+ ],
39628
+ "inputFields": null,
39629
+ "interfaces": [],
39630
+ "enumValues": null,
39631
+ "possibleTypes": null
39632
+ },
39557
39633
  {
39558
39634
  "kind": "ENUM",
39559
39635
  "name": "PackageStatus",
@@ -55307,7 +55383,7 @@
55307
55383
  "deprecationReason": null
55308
55384
  },
55309
55385
  {
55310
- "name": "migrationCompleted",
55386
+ "name": "packagePublished",
55311
55387
  "description": null,
55312
55388
  "args": [],
55313
55389
  "type": {
@@ -55315,7 +55391,7 @@
55315
55391
  "name": null,
55316
55392
  "ofType": {
55317
55393
  "kind": "OBJECT",
55318
- "name": "MigrationCompleted",
55394
+ "name": "PackagePublished",
55319
55395
  "ofType": null
55320
55396
  }
55321
55397
  },
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.664.0"
4
+ VERSION = "0.665.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stigg-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.664.0
4
+ version: 0.665.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2023-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient