stigg-api-client 5.28.0 → 5.29.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/Gemfile.lock +1 -1
- data/lib/stigg/generated/operations.rb +11 -2
- data/lib/stigg/generated/schema.json +2 -2
- data/lib/stigg/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ab01b1c1a4746ce4fd3f1d327b4ce7c7da4be728d8d5e24d33f2633d304ec42
|
|
4
|
+
data.tar.gz: fc895cec6cbbc91f097afd10f71ef90a01717123b22ee84799a2b430cad65403
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8001a082a67a38eccd53e799519e4783f219e3d777aac4c1db8b81b2e4a73a1d982682fbf361040b3e95527ba5db378c906583902b9aa3344715c61bb2ef94a
|
|
7
|
+
data.tar.gz: 1b4c3cf271c16e961c1821f5617999a00bad098b4c8f3c48997cf6f2f048f5fd05ab1ba77bd9bfb8c811e31278621ccee60339e8e126d8540e92d8f26a195247
|
data/Gemfile.lock
CHANGED
|
@@ -1758,6 +1758,12 @@ module Stigg
|
|
|
1758
1758
|
updatedAt
|
|
1759
1759
|
resourceId
|
|
1760
1760
|
additionalMetaData
|
|
1761
|
+
status
|
|
1762
|
+
paymentCollection
|
|
1763
|
+
invoiceId
|
|
1764
|
+
latestInvoice {
|
|
1765
|
+
...SubscriptionInvoiceFragment
|
|
1766
|
+
}
|
|
1761
1767
|
}
|
|
1762
1768
|
GRAPHQL
|
|
1763
1769
|
|
|
@@ -1779,8 +1785,8 @@ module Stigg
|
|
|
1779
1785
|
fragment CreditsBalanceSummaryFragment on CreditBalanceSummary {
|
|
1780
1786
|
customerId
|
|
1781
1787
|
balances {
|
|
1782
|
-
|
|
1783
|
-
|
|
1788
|
+
...CreditBalanceFragment
|
|
1789
|
+
}
|
|
1784
1790
|
}
|
|
1785
1791
|
GRAPHQL
|
|
1786
1792
|
|
|
@@ -2171,6 +2177,7 @@ module Stigg
|
|
|
2171
2177
|
}
|
|
2172
2178
|
}
|
|
2173
2179
|
#{Fragment::CreditGrantFragment}
|
|
2180
|
+
#{Fragment::SubscriptionInvoiceFragment}
|
|
2174
2181
|
GRAPHQL
|
|
2175
2182
|
|
|
2176
2183
|
GrantPromotionalEntitlementsGroup = <<~GRAPHQL
|
|
@@ -2222,6 +2229,7 @@ module Stigg
|
|
|
2222
2229
|
}
|
|
2223
2230
|
}
|
|
2224
2231
|
#{Fragment::CreditGrantFragment}
|
|
2232
|
+
#{Fragment::SubscriptionInvoiceFragment}
|
|
2225
2233
|
GRAPHQL
|
|
2226
2234
|
|
|
2227
2235
|
CreateCoupon = <<~GRAPHQL
|
|
@@ -2590,6 +2598,7 @@ module Stigg
|
|
|
2590
2598
|
}
|
|
2591
2599
|
#{Fragment::PageInfoFragment}
|
|
2592
2600
|
#{Fragment::CreditGrantFragment}
|
|
2601
|
+
#{Fragment::SubscriptionInvoiceFragment}
|
|
2593
2602
|
GRAPHQL
|
|
2594
2603
|
|
|
2595
2604
|
GetCreditLedger = <<~GRAPHQL
|
|
@@ -12326,8 +12326,8 @@
|
|
|
12326
12326
|
"description": "The latest invoice information of the credit grant",
|
|
12327
12327
|
"args": [],
|
|
12328
12328
|
"type": {
|
|
12329
|
-
"kind": "
|
|
12330
|
-
"name": "
|
|
12329
|
+
"kind": "OBJECT",
|
|
12330
|
+
"name": "SubscriptionInvoice",
|
|
12331
12331
|
"ofType": null
|
|
12332
12332
|
},
|
|
12333
12333
|
"isDeprecated": false,
|
data/lib/stigg/version.rb
CHANGED