stigg-api-client 5.201.0 → 5.207.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 +103 -0
- data/lib/stigg/generated/schema.json +71 -14
- 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: 5d51ccf6edb19d8b51f11b27ebbd0289f32afc42107c7c413763145e797af879
|
|
4
|
+
data.tar.gz: 6357e93d30198d1c810588452eb6b0dbe593f8d24c428dc896fd7e4096379136
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 211c224ceb955ec11ddf99ab8713da5693aa062f03b5bbef174a7b563b13300ba386a26083471ceb5adc899094ae117aee5a13f997d61d0269da9d00d09ff358
|
|
7
|
+
data.tar.gz: ff0364d456fd30c63e637051c144c557e0295e3c3d05003a0a922c089bb9994b331343529f226cf4fc728e67c6a68fa4cd199aadd5d91d29573f1aaf1542816c
|
data/Gemfile.lock
CHANGED
|
@@ -137,6 +137,73 @@ module Stigg
|
|
|
137
137
|
}
|
|
138
138
|
GRAPHQL
|
|
139
139
|
|
|
140
|
+
PackageFeatureEntitlementFragment = <<~GRAPHQL
|
|
141
|
+
fragment PackageFeatureEntitlementFragment on PackageFeatureEntitlement {
|
|
142
|
+
__typename
|
|
143
|
+
id
|
|
144
|
+
behavior
|
|
145
|
+
description
|
|
146
|
+
displayNameOverride
|
|
147
|
+
enumValues
|
|
148
|
+
featureId
|
|
149
|
+
hasSoftLimit
|
|
150
|
+
hasUnlimitedUsage
|
|
151
|
+
hiddenFromWidgets
|
|
152
|
+
isCustom
|
|
153
|
+
isGranted
|
|
154
|
+
order
|
|
155
|
+
resetPeriod
|
|
156
|
+
usageLimit
|
|
157
|
+
feature {
|
|
158
|
+
featureType
|
|
159
|
+
meterType
|
|
160
|
+
featureUnits
|
|
161
|
+
featureUnitsPlural
|
|
162
|
+
displayName
|
|
163
|
+
description
|
|
164
|
+
refId
|
|
165
|
+
additionalMetaData
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
GRAPHQL
|
|
169
|
+
|
|
170
|
+
PackageCreditEntitlementFragment = <<~GRAPHQL
|
|
171
|
+
fragment PackageCreditEntitlementFragment on PackageCreditEntitlement {
|
|
172
|
+
__typename
|
|
173
|
+
id
|
|
174
|
+
amount
|
|
175
|
+
behavior
|
|
176
|
+
cadence
|
|
177
|
+
customCurrencyId
|
|
178
|
+
description
|
|
179
|
+
displayNameOverride
|
|
180
|
+
hiddenFromWidgets
|
|
181
|
+
isCustom
|
|
182
|
+
isGranted
|
|
183
|
+
order
|
|
184
|
+
customCurrency {
|
|
185
|
+
currencyId
|
|
186
|
+
displayName
|
|
187
|
+
symbol
|
|
188
|
+
units {
|
|
189
|
+
singular
|
|
190
|
+
plural
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
GRAPHQL
|
|
195
|
+
|
|
196
|
+
PackageEntitlementUnionFragment = <<~GRAPHQL
|
|
197
|
+
fragment PackageEntitlementUnionFragment on PackageEntitlementUnion {
|
|
198
|
+
... on PackageFeatureEntitlement {
|
|
199
|
+
...PackageFeatureEntitlementFragment
|
|
200
|
+
}
|
|
201
|
+
... on PackageCreditEntitlement {
|
|
202
|
+
...PackageCreditEntitlementFragment
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
GRAPHQL
|
|
206
|
+
|
|
140
207
|
AddonFragment = <<~GRAPHQL
|
|
141
208
|
fragment AddonFragment on Addon {
|
|
142
209
|
id
|
|
@@ -217,6 +284,12 @@ module Stigg
|
|
|
217
284
|
trialEndBehavior
|
|
218
285
|
}
|
|
219
286
|
awsMarketplacePlanDimension
|
|
287
|
+
packageEntitlements {
|
|
288
|
+
...PackageEntitlementUnionFragment
|
|
289
|
+
}
|
|
290
|
+
inheritedPackageEntitlements {
|
|
291
|
+
...PackageEntitlementUnionFragment
|
|
292
|
+
}
|
|
220
293
|
}
|
|
221
294
|
GRAPHQL
|
|
222
295
|
|
|
@@ -1429,6 +1502,12 @@ module Stigg
|
|
|
1429
1502
|
inheritedEntitlements {
|
|
1430
1503
|
...MockPaywallPackageEntitlementFragment
|
|
1431
1504
|
}
|
|
1505
|
+
packageEntitlements {
|
|
1506
|
+
...PackageEntitlementUnionFragment
|
|
1507
|
+
}
|
|
1508
|
+
inheritedPackageEntitlements {
|
|
1509
|
+
...PackageEntitlementUnionFragment
|
|
1510
|
+
}
|
|
1432
1511
|
prices {
|
|
1433
1512
|
...MockPaywallPriceFragment
|
|
1434
1513
|
}
|
|
@@ -1559,6 +1638,9 @@ module Stigg
|
|
|
1559
1638
|
entitlements {
|
|
1560
1639
|
...MockPaywallPackageEntitlementFragment
|
|
1561
1640
|
}
|
|
1641
|
+
packageEntitlements {
|
|
1642
|
+
...PackageEntitlementUnionFragment
|
|
1643
|
+
}
|
|
1562
1644
|
prices {
|
|
1563
1645
|
...MockPaywallPriceFragment
|
|
1564
1646
|
}
|
|
@@ -2130,6 +2212,9 @@ module Stigg
|
|
|
2130
2212
|
#{Fragment::OveragePriceFragment}
|
|
2131
2213
|
#{Fragment::AddonDependencyFragment}
|
|
2132
2214
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2215
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2216
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2217
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2133
2218
|
#{Fragment::SubscriptionScheduledUpdateData}
|
|
2134
2219
|
#{Fragment::ScheduleVariablesFragment}
|
|
2135
2220
|
#{Fragment::SubscriptionFutureUpdateData}
|
|
@@ -2449,6 +2534,9 @@ module Stigg
|
|
|
2449
2534
|
#{Fragment::OveragePriceFragment}
|
|
2450
2535
|
#{Fragment::AddonDependencyFragment}
|
|
2451
2536
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2537
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2538
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2539
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2452
2540
|
#{Fragment::SubscriptionScheduledUpdateData}
|
|
2453
2541
|
#{Fragment::ScheduleVariablesFragment}
|
|
2454
2542
|
#{Fragment::SubscriptionFutureUpdateData}
|
|
@@ -2484,6 +2572,9 @@ module Stigg
|
|
|
2484
2572
|
#{Fragment::OveragePriceFragment}
|
|
2485
2573
|
#{Fragment::AddonDependencyFragment}
|
|
2486
2574
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2575
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2576
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2577
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2487
2578
|
#{Fragment::SubscriptionScheduledUpdateData}
|
|
2488
2579
|
#{Fragment::ScheduleVariablesFragment}
|
|
2489
2580
|
#{Fragment::SubscriptionFutureUpdateData}
|
|
@@ -2540,6 +2631,9 @@ module Stigg
|
|
|
2540
2631
|
#{Fragment::OveragePriceFragment}
|
|
2541
2632
|
#{Fragment::AddonDependencyFragment}
|
|
2542
2633
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2634
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2635
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2636
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2543
2637
|
#{Fragment::SubscriptionScheduledUpdateData}
|
|
2544
2638
|
#{Fragment::ScheduleVariablesFragment}
|
|
2545
2639
|
#{Fragment::SubscriptionFutureUpdateData}
|
|
@@ -2575,6 +2669,9 @@ module Stigg
|
|
|
2575
2669
|
#{Fragment::OveragePriceFragment}
|
|
2576
2670
|
#{Fragment::AddonDependencyFragment}
|
|
2577
2671
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2672
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2673
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2674
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2578
2675
|
#{Fragment::PaywallCurrencyFragment}
|
|
2579
2676
|
#{Fragment::PaywallConfigurationFragment}
|
|
2580
2677
|
#{Fragment::TypographyConfigurationFragment}
|
|
@@ -2711,6 +2808,9 @@ module Stigg
|
|
|
2711
2808
|
#{Fragment::OveragePriceFragment}
|
|
2712
2809
|
#{Fragment::AddonDependencyFragment}
|
|
2713
2810
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
2811
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2812
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2813
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2714
2814
|
#{Fragment::SubscriptionScheduledUpdateData}
|
|
2715
2815
|
#{Fragment::ScheduleVariablesFragment}
|
|
2716
2816
|
#{Fragment::SubscriptionFutureUpdateData}
|
|
@@ -2732,6 +2832,9 @@ module Stigg
|
|
|
2732
2832
|
}
|
|
2733
2833
|
#{Fragment::MockPaywallPlanFragment}
|
|
2734
2834
|
#{Fragment::MockPaywallPackageEntitlementFragment}
|
|
2835
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2836
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2837
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2735
2838
|
#{Fragment::MockPaywallPriceFragment}
|
|
2736
2839
|
#{Fragment::PriceTierFragment}
|
|
2737
2840
|
#{Fragment::MockPaywallAddonFragment}
|
|
@@ -15114,6 +15114,65 @@
|
|
|
15114
15114
|
],
|
|
15115
15115
|
"possibleTypes": null
|
|
15116
15116
|
},
|
|
15117
|
+
{
|
|
15118
|
+
"kind": "OBJECT",
|
|
15119
|
+
"name": "CreditGrantCannotBeVoidedError",
|
|
15120
|
+
"description": "Credit grant cannot be voided error",
|
|
15121
|
+
"fields": [
|
|
15122
|
+
{
|
|
15123
|
+
"name": "code",
|
|
15124
|
+
"description": null,
|
|
15125
|
+
"args": [],
|
|
15126
|
+
"type": {
|
|
15127
|
+
"kind": "NON_NULL",
|
|
15128
|
+
"name": null,
|
|
15129
|
+
"ofType": {
|
|
15130
|
+
"kind": "SCALAR",
|
|
15131
|
+
"name": "String",
|
|
15132
|
+
"ofType": null
|
|
15133
|
+
}
|
|
15134
|
+
},
|
|
15135
|
+
"isDeprecated": false,
|
|
15136
|
+
"deprecationReason": null
|
|
15137
|
+
},
|
|
15138
|
+
{
|
|
15139
|
+
"name": "grantId",
|
|
15140
|
+
"description": "The auto-generated readable identifier for the credit grant",
|
|
15141
|
+
"args": [],
|
|
15142
|
+
"type": {
|
|
15143
|
+
"kind": "NON_NULL",
|
|
15144
|
+
"name": null,
|
|
15145
|
+
"ofType": {
|
|
15146
|
+
"kind": "SCALAR",
|
|
15147
|
+
"name": "String",
|
|
15148
|
+
"ofType": null
|
|
15149
|
+
}
|
|
15150
|
+
},
|
|
15151
|
+
"isDeprecated": false,
|
|
15152
|
+
"deprecationReason": null
|
|
15153
|
+
},
|
|
15154
|
+
{
|
|
15155
|
+
"name": "isValidationError",
|
|
15156
|
+
"description": null,
|
|
15157
|
+
"args": [],
|
|
15158
|
+
"type": {
|
|
15159
|
+
"kind": "NON_NULL",
|
|
15160
|
+
"name": null,
|
|
15161
|
+
"ofType": {
|
|
15162
|
+
"kind": "SCALAR",
|
|
15163
|
+
"name": "Boolean",
|
|
15164
|
+
"ofType": null
|
|
15165
|
+
}
|
|
15166
|
+
},
|
|
15167
|
+
"isDeprecated": false,
|
|
15168
|
+
"deprecationReason": null
|
|
15169
|
+
}
|
|
15170
|
+
],
|
|
15171
|
+
"inputFields": null,
|
|
15172
|
+
"interfaces": [],
|
|
15173
|
+
"enumValues": null,
|
|
15174
|
+
"possibleTypes": null
|
|
15175
|
+
},
|
|
15117
15176
|
{
|
|
15118
15177
|
"kind": "OBJECT",
|
|
15119
15178
|
"name": "CreditGrantConnection",
|
|
@@ -32282,6 +32341,12 @@
|
|
|
32282
32341
|
"isDeprecated": false,
|
|
32283
32342
|
"deprecationReason": null
|
|
32284
32343
|
},
|
|
32344
|
+
{
|
|
32345
|
+
"name": "CreditGrantCannotBeVoided",
|
|
32346
|
+
"description": null,
|
|
32347
|
+
"isDeprecated": false,
|
|
32348
|
+
"deprecationReason": null
|
|
32349
|
+
},
|
|
32285
32350
|
{
|
|
32286
32351
|
"name": "CreditGrantNotFound",
|
|
32287
32352
|
"description": "Credit grant not found",
|
|
@@ -103495,13 +103560,9 @@
|
|
|
103495
103560
|
"description": "Plural form of the unit",
|
|
103496
103561
|
"args": [],
|
|
103497
103562
|
"type": {
|
|
103498
|
-
"kind": "
|
|
103499
|
-
"name":
|
|
103500
|
-
"ofType":
|
|
103501
|
-
"kind": "SCALAR",
|
|
103502
|
-
"name": "String",
|
|
103503
|
-
"ofType": null
|
|
103504
|
-
}
|
|
103563
|
+
"kind": "SCALAR",
|
|
103564
|
+
"name": "String",
|
|
103565
|
+
"ofType": null
|
|
103505
103566
|
},
|
|
103506
103567
|
"isDeprecated": false,
|
|
103507
103568
|
"deprecationReason": null
|
|
@@ -103511,13 +103572,9 @@
|
|
|
103511
103572
|
"description": "Singular form of the unit",
|
|
103512
103573
|
"args": [],
|
|
103513
103574
|
"type": {
|
|
103514
|
-
"kind": "
|
|
103515
|
-
"name":
|
|
103516
|
-
"ofType":
|
|
103517
|
-
"kind": "SCALAR",
|
|
103518
|
-
"name": "String",
|
|
103519
|
-
"ofType": null
|
|
103520
|
-
}
|
|
103575
|
+
"kind": "SCALAR",
|
|
103576
|
+
"name": "String",
|
|
103577
|
+
"ofType": null
|
|
103521
103578
|
},
|
|
103522
103579
|
"isDeprecated": false,
|
|
103523
103580
|
"deprecationReason": 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: 5.
|
|
4
|
+
version: 5.207.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stigg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|