stigg-api-client 2.442.0 → 2.443.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 +64 -1
- 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: ad9ddcd61f9107d35d9b53fe03c369abc18f40bae70082ec3cd8ebfd53b0508e
|
4
|
+
data.tar.gz: a5a01832bca4e9adaacd4ca8f59152345f54e51b58fc7abf21e1a5b45dcbe2d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27d7e364f5be772629de2dd9b7ed0865dc76dc0f1027a7a9e68a08d5f2be5702dda71dfa6e195aa423d561723871b3faacdbba1ce4050b5d3055d35eb302db6a
|
7
|
+
data.tar.gz: f2b61a83c5024c73aa73ce46fbb55533051d3174a5f33977946d0799c3e31672f8ff032b3e6dd2986226f1ca6abc05d59ebab1b9b282ce00497a649b32eef954
|
data/Gemfile.lock
CHANGED
@@ -231,6 +231,48 @@ module Stigg
|
|
231
231
|
}
|
232
232
|
GRAPHQL
|
233
233
|
|
234
|
+
PageInfoFragment = <<~GRAPHQL
|
235
|
+
fragment PageInfoFragment on PageInfo {
|
236
|
+
startCursor
|
237
|
+
endCursor
|
238
|
+
hasNextPage
|
239
|
+
hasPreviousPage
|
240
|
+
}
|
241
|
+
GRAPHQL
|
242
|
+
|
243
|
+
SubscriptionQueryFragment = <<~GRAPHQL
|
244
|
+
fragment SubscriptionQueryFragment on SubscriptionQuery {
|
245
|
+
subscriptionId
|
246
|
+
status
|
247
|
+
pricingType
|
248
|
+
startDate
|
249
|
+
currentBillingPeriodEnd
|
250
|
+
customer {
|
251
|
+
customerId
|
252
|
+
}
|
253
|
+
payingCustomer {
|
254
|
+
customerId
|
255
|
+
}
|
256
|
+
resource {
|
257
|
+
resourceId
|
258
|
+
}
|
259
|
+
plan {
|
260
|
+
planId: refId
|
261
|
+
displayName
|
262
|
+
}
|
263
|
+
addons {
|
264
|
+
quantity
|
265
|
+
addon {
|
266
|
+
addonId: refId
|
267
|
+
}
|
268
|
+
}
|
269
|
+
trialConfiguration {
|
270
|
+
trialEndBehavior
|
271
|
+
}
|
272
|
+
trialEndDate
|
273
|
+
}
|
274
|
+
GRAPHQL
|
275
|
+
|
234
276
|
SlimSubscriptionFragmentV2 = <<~GRAPHQL
|
235
277
|
fragment SlimSubscriptionFragmentV2 on CustomerSubscription {
|
236
278
|
subscriptionId
|
@@ -1972,7 +2014,7 @@ module Stigg
|
|
1972
2014
|
GetCustomerStatistics = <<~GRAPHQL
|
1973
2015
|
query GetCustomerStatistics($input: GetCustomerByRefIdInput!) {
|
1974
2016
|
getCustomerByRefId(input: $input) {
|
1975
|
-
...CustomerStatisticsFragment
|
2017
|
+
...CustomerStatisticsFragment
|
1976
2018
|
}
|
1977
2019
|
}
|
1978
2020
|
#{Fragment::CustomerStatisticsFragment}
|
@@ -2013,6 +2055,27 @@ module Stigg
|
|
2013
2055
|
#{Fragment::SlimSubscriptionFragmentV2}
|
2014
2056
|
GRAPHQL
|
2015
2057
|
|
2058
|
+
Subscriptions = <<~GRAPHQL
|
2059
|
+
query Subscriptions(
|
2060
|
+
$filter: SubscriptionQueryFilter
|
2061
|
+
$paging: CursorPaging
|
2062
|
+
$sorting: [SubscriptionQuerySort!]
|
2063
|
+
) {
|
2064
|
+
subscriptions(filter: $filter, paging: $paging, sorting: $sorting) {
|
2065
|
+
edges {
|
2066
|
+
node {
|
2067
|
+
...SubscriptionQueryFragment
|
2068
|
+
}
|
2069
|
+
}
|
2070
|
+
pageInfo {
|
2071
|
+
...PageInfoFragment
|
2072
|
+
}
|
2073
|
+
}
|
2074
|
+
}
|
2075
|
+
#{Fragment::SubscriptionQueryFragment}
|
2076
|
+
#{Fragment::PageInfoFragment}
|
2077
|
+
GRAPHQL
|
2078
|
+
|
2016
2079
|
GetSubscription = <<~GRAPHQL
|
2017
2080
|
query GetSubscription($input: GetSubscriptionInput!) {
|
2018
2081
|
getSubscription(input: $input) {
|
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.
|
4
|
+
version: 2.443.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stigg
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphlient
|