stigg-api-client 0.664.0 → 0.665.1
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/Gemfile.lock +1 -1
- data/lib/stigg/generated/operations.rb +10 -6
- data/lib/stigg/generated/schema.json +109 -45
- data/lib/stigg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b148e3a61185ab532ccb612a141c9f23eb87246e3e20978cffc54970a6879c9b
|
|
4
|
+
data.tar.gz: d3efe043ea99bd3a530bbb93e31b8241a44db76f578f2118ce4b48f933435728
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f76749276f374daef326bb5395c5a88ce1b027474f8135d08e201132133f0db4c29a7415be71e8514b4b4cd65a304fd1841cd373ff7c9ec1843df7fc00a487c2
|
|
7
|
+
data.tar.gz: 5d4222a8f3a799e55005221bda723aa1a7858d4c50f929defac4603b5a959b904de51dccb7744273b72c63c854e21ccff72b10babe1c0a6e9f97feb1e1a1698b
|
data/Gemfile.lock
CHANGED
|
@@ -799,10 +799,14 @@ module Stigg
|
|
|
799
799
|
}
|
|
800
800
|
GRAPHQL
|
|
801
801
|
|
|
802
|
-
|
|
803
|
-
fragment
|
|
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
|
-
|
|
1713
|
+
OnPackagePublished = <<~GRAPHQL
|
|
1710
1714
|
subscription {
|
|
1711
|
-
|
|
1712
|
-
...
|
|
1715
|
+
packagePublished {
|
|
1716
|
+
...PackagePublishedPayload
|
|
1713
1717
|
}
|
|
1714
1718
|
}
|
|
1715
|
-
#{Fragment::
|
|
1719
|
+
#{Fragment::PackagePublishedPayload}
|
|
1716
1720
|
GRAPHQL
|
|
1717
1721
|
end
|
|
1718
1722
|
end
|
|
@@ -32384,49 +32384,6 @@
|
|
|
32384
32384
|
"enumValues": null,
|
|
32385
32385
|
"possibleTypes": null
|
|
32386
32386
|
},
|
|
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
32387
|
{
|
|
32431
32388
|
"kind": "OBJECT",
|
|
32432
32389
|
"name": "MockPaywall",
|
|
@@ -39554,6 +39511,113 @@
|
|
|
39554
39511
|
"enumValues": null,
|
|
39555
39512
|
"possibleTypes": null
|
|
39556
39513
|
},
|
|
39514
|
+
{
|
|
39515
|
+
"kind": "OBJECT",
|
|
39516
|
+
"name": "PackagePublished",
|
|
39517
|
+
"description": null,
|
|
39518
|
+
"fields": [
|
|
39519
|
+
{
|
|
39520
|
+
"name": "accountId",
|
|
39521
|
+
"description": null,
|
|
39522
|
+
"args": [],
|
|
39523
|
+
"type": {
|
|
39524
|
+
"kind": "NON_NULL",
|
|
39525
|
+
"name": null,
|
|
39526
|
+
"ofType": {
|
|
39527
|
+
"kind": "SCALAR",
|
|
39528
|
+
"name": "String",
|
|
39529
|
+
"ofType": null
|
|
39530
|
+
}
|
|
39531
|
+
},
|
|
39532
|
+
"isDeprecated": false,
|
|
39533
|
+
"deprecationReason": null
|
|
39534
|
+
},
|
|
39535
|
+
{
|
|
39536
|
+
"name": "environmentId",
|
|
39537
|
+
"description": null,
|
|
39538
|
+
"args": [],
|
|
39539
|
+
"type": {
|
|
39540
|
+
"kind": "NON_NULL",
|
|
39541
|
+
"name": null,
|
|
39542
|
+
"ofType": {
|
|
39543
|
+
"kind": "SCALAR",
|
|
39544
|
+
"name": "String",
|
|
39545
|
+
"ofType": null
|
|
39546
|
+
}
|
|
39547
|
+
},
|
|
39548
|
+
"isDeprecated": false,
|
|
39549
|
+
"deprecationReason": null
|
|
39550
|
+
},
|
|
39551
|
+
{
|
|
39552
|
+
"name": "migrationType",
|
|
39553
|
+
"description": null,
|
|
39554
|
+
"args": [],
|
|
39555
|
+
"type": {
|
|
39556
|
+
"kind": "NON_NULL",
|
|
39557
|
+
"name": null,
|
|
39558
|
+
"ofType": {
|
|
39559
|
+
"kind": "ENUM",
|
|
39560
|
+
"name": "PublishMigrationType",
|
|
39561
|
+
"ofType": null
|
|
39562
|
+
}
|
|
39563
|
+
},
|
|
39564
|
+
"isDeprecated": false,
|
|
39565
|
+
"deprecationReason": null
|
|
39566
|
+
},
|
|
39567
|
+
{
|
|
39568
|
+
"name": "packageRefId",
|
|
39569
|
+
"description": null,
|
|
39570
|
+
"args": [],
|
|
39571
|
+
"type": {
|
|
39572
|
+
"kind": "NON_NULL",
|
|
39573
|
+
"name": null,
|
|
39574
|
+
"ofType": {
|
|
39575
|
+
"kind": "SCALAR",
|
|
39576
|
+
"name": "String",
|
|
39577
|
+
"ofType": null
|
|
39578
|
+
}
|
|
39579
|
+
},
|
|
39580
|
+
"isDeprecated": false,
|
|
39581
|
+
"deprecationReason": null
|
|
39582
|
+
},
|
|
39583
|
+
{
|
|
39584
|
+
"name": "packageType",
|
|
39585
|
+
"description": null,
|
|
39586
|
+
"args": [],
|
|
39587
|
+
"type": {
|
|
39588
|
+
"kind": "NON_NULL",
|
|
39589
|
+
"name": null,
|
|
39590
|
+
"ofType": {
|
|
39591
|
+
"kind": "SCALAR",
|
|
39592
|
+
"name": "String",
|
|
39593
|
+
"ofType": null
|
|
39594
|
+
}
|
|
39595
|
+
},
|
|
39596
|
+
"isDeprecated": false,
|
|
39597
|
+
"deprecationReason": null
|
|
39598
|
+
},
|
|
39599
|
+
{
|
|
39600
|
+
"name": "packageVersion",
|
|
39601
|
+
"description": null,
|
|
39602
|
+
"args": [],
|
|
39603
|
+
"type": {
|
|
39604
|
+
"kind": "NON_NULL",
|
|
39605
|
+
"name": null,
|
|
39606
|
+
"ofType": {
|
|
39607
|
+
"kind": "SCALAR",
|
|
39608
|
+
"name": "Int",
|
|
39609
|
+
"ofType": null
|
|
39610
|
+
}
|
|
39611
|
+
},
|
|
39612
|
+
"isDeprecated": false,
|
|
39613
|
+
"deprecationReason": null
|
|
39614
|
+
}
|
|
39615
|
+
],
|
|
39616
|
+
"inputFields": null,
|
|
39617
|
+
"interfaces": [],
|
|
39618
|
+
"enumValues": null,
|
|
39619
|
+
"possibleTypes": null
|
|
39620
|
+
},
|
|
39557
39621
|
{
|
|
39558
39622
|
"kind": "ENUM",
|
|
39559
39623
|
"name": "PackageStatus",
|
|
@@ -55307,7 +55371,7 @@
|
|
|
55307
55371
|
"deprecationReason": null
|
|
55308
55372
|
},
|
|
55309
55373
|
{
|
|
55310
|
-
"name": "
|
|
55374
|
+
"name": "packagePublished",
|
|
55311
55375
|
"description": null,
|
|
55312
55376
|
"args": [],
|
|
55313
55377
|
"type": {
|
|
@@ -55315,7 +55379,7 @@
|
|
|
55315
55379
|
"name": null,
|
|
55316
55380
|
"ofType": {
|
|
55317
55381
|
"kind": "OBJECT",
|
|
55318
|
-
"name": "
|
|
55382
|
+
"name": "PackagePublished",
|
|
55319
55383
|
"ofType": null
|
|
55320
55384
|
}
|
|
55321
55385
|
},
|
data/lib/stigg/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.665.1
|
|
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-
|
|
11
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|