stigg-api-client 2.100.0 → 2.100.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/stigg/generated/operations.rb +10 -1
- data/lib/stigg/generated/schema.json +24 -0
- 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: e40fe719391d51f74abea32d611148ed3b493bc294b587df7956ea4367b54663
|
4
|
+
data.tar.gz: 04d692dae1742deee65d3ccddc8b77108de91cf0e271506ce66175eb538f860f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41eb064d74070501586f4a64d69f238cd3a39800790b46d7f7474879bd038e32d125db9549c9b3ef37fed7669c9c42ce5ff3b41f44cd30a3b95421272421f98a
|
7
|
+
data.tar.gz: 6aa7730cbbb83fcf07c8faea08922dd26e1446f6acf25a522c3a172d06fdde50073a3a2e01339db34acec1632752690ff80d50a13d0cb1aef8f68b85da9e8b26
|
data/Gemfile.lock
CHANGED
@@ -235,6 +235,9 @@ module Stigg
|
|
235
235
|
customer {
|
236
236
|
customerId
|
237
237
|
}
|
238
|
+
payingCustomer {
|
239
|
+
customerId
|
240
|
+
}
|
238
241
|
resource {
|
239
242
|
resourceId
|
240
243
|
}
|
@@ -274,8 +277,8 @@ module Stigg
|
|
274
277
|
experimentInfo {
|
275
278
|
name
|
276
279
|
id
|
277
|
-
groupName
|
278
280
|
groupType
|
281
|
+
groupName
|
279
282
|
}
|
280
283
|
prices {
|
281
284
|
usageLimit
|
@@ -362,6 +365,9 @@ module Stigg
|
|
362
365
|
fragment SubscriptionFragment on CustomerSubscription {
|
363
366
|
id
|
364
367
|
subscriptionId
|
368
|
+
payingCustomer {
|
369
|
+
...SlimCustomerFragment
|
370
|
+
}
|
365
371
|
startDate
|
366
372
|
endDate
|
367
373
|
trialEndDate
|
@@ -1633,6 +1639,7 @@ module Stigg
|
|
1633
1639
|
}
|
1634
1640
|
#{Fragment::ApplySubscriptionFragment}
|
1635
1641
|
#{Fragment::SubscriptionFragment}
|
1642
|
+
#{Fragment::SlimCustomerFragment}
|
1636
1643
|
#{Fragment::SubscriptionInvoiceFragment}
|
1637
1644
|
#{Fragment::CustomerResourceFragment}
|
1638
1645
|
#{Fragment::PriceFragment}
|
@@ -1869,6 +1876,7 @@ module Stigg
|
|
1869
1876
|
}
|
1870
1877
|
}
|
1871
1878
|
#{Fragment::SubscriptionFragment}
|
1879
|
+
#{Fragment::SlimCustomerFragment}
|
1872
1880
|
#{Fragment::SubscriptionInvoiceFragment}
|
1873
1881
|
#{Fragment::CustomerResourceFragment}
|
1874
1882
|
#{Fragment::PriceFragment}
|
@@ -1902,6 +1910,7 @@ module Stigg
|
|
1902
1910
|
}
|
1903
1911
|
}
|
1904
1912
|
#{Fragment::SubscriptionFragment}
|
1913
|
+
#{Fragment::SlimCustomerFragment}
|
1905
1914
|
#{Fragment::SubscriptionInvoiceFragment}
|
1906
1915
|
#{Fragment::CustomerResourceFragment}
|
1907
1916
|
#{Fragment::PriceFragment}
|
@@ -16758,6 +16758,18 @@
|
|
16758
16758
|
"isDeprecated": false,
|
16759
16759
|
"deprecationReason": null
|
16760
16760
|
},
|
16761
|
+
{
|
16762
|
+
"name": "payingCustomer",
|
16763
|
+
"description": null,
|
16764
|
+
"args": [],
|
16765
|
+
"type": {
|
16766
|
+
"kind": "OBJECT",
|
16767
|
+
"name": "Customer",
|
16768
|
+
"ofType": null
|
16769
|
+
},
|
16770
|
+
"isDeprecated": false,
|
16771
|
+
"deprecationReason": null
|
16772
|
+
},
|
16761
16773
|
{
|
16762
16774
|
"name": "paymentCollection",
|
16763
16775
|
"description": null,
|
@@ -18040,6 +18052,18 @@
|
|
18040
18052
|
"isDeprecated": false,
|
18041
18053
|
"deprecationReason": null
|
18042
18054
|
},
|
18055
|
+
{
|
18056
|
+
"name": "payingCustomer",
|
18057
|
+
"description": null,
|
18058
|
+
"type": {
|
18059
|
+
"kind": "INPUT_OBJECT",
|
18060
|
+
"name": "CustomerSubscriptionFilterCustomerFilter",
|
18061
|
+
"ofType": null
|
18062
|
+
},
|
18063
|
+
"defaultValue": null,
|
18064
|
+
"isDeprecated": false,
|
18065
|
+
"deprecationReason": null
|
18066
|
+
},
|
18043
18067
|
{
|
18044
18068
|
"name": "paymentCollection",
|
18045
18069
|
"description": null,
|
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: 2.100.
|
4
|
+
version: 2.100.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stigg
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphlient
|