stigg-api-client 5.224.1 → 5.229.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 +106 -0
- data/lib/stigg/generated/schema.json +190 -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: da02819a9db398497a663248e0986876905e3be036564e8fc34cbf1f007e5582
|
|
4
|
+
data.tar.gz: 86ee54d03d95d378b753c47c4952b8c9d9acca781fa0f2fe53610316239ffb8a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 301e2eba805a55539e575440dee21c134088bb2e545fc3c9a181e5559e3b54e17b3c6bbd7650d4aac2f3b8f35a3e63e509b7be55f231bd274d600d61505b15d6
|
|
7
|
+
data.tar.gz: e13542d03ebebec3256749f4e4ca125bc7fa2cf9ce181ec28a2a4519577f9f160847e3850bfddf366cc458a820577ad52d15e74e683b8b1ac4be9cfbe8feed62
|
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
|
|
@@ -149,6 +216,9 @@ module Stigg
|
|
|
149
216
|
entitlements {
|
|
150
217
|
...PackageEntitlementFragment
|
|
151
218
|
}
|
|
219
|
+
packageEntitlements {
|
|
220
|
+
...PackageEntitlementUnionFragment
|
|
221
|
+
}
|
|
152
222
|
prices {
|
|
153
223
|
...PriceFragment
|
|
154
224
|
}
|
|
@@ -217,6 +287,12 @@ module Stigg
|
|
|
217
287
|
trialEndBehavior
|
|
218
288
|
}
|
|
219
289
|
awsMarketplacePlanDimension
|
|
290
|
+
packageEntitlements {
|
|
291
|
+
...PackageEntitlementUnionFragment
|
|
292
|
+
}
|
|
293
|
+
inheritedPackageEntitlements {
|
|
294
|
+
...PackageEntitlementUnionFragment
|
|
295
|
+
}
|
|
220
296
|
}
|
|
221
297
|
GRAPHQL
|
|
222
298
|
|
|
@@ -1429,6 +1505,12 @@ module Stigg
|
|
|
1429
1505
|
inheritedEntitlements {
|
|
1430
1506
|
...MockPaywallPackageEntitlementFragment
|
|
1431
1507
|
}
|
|
1508
|
+
packageEntitlements {
|
|
1509
|
+
...PackageEntitlementUnionFragment
|
|
1510
|
+
}
|
|
1511
|
+
inheritedPackageEntitlements {
|
|
1512
|
+
...PackageEntitlementUnionFragment
|
|
1513
|
+
}
|
|
1432
1514
|
prices {
|
|
1433
1515
|
...MockPaywallPriceFragment
|
|
1434
1516
|
}
|
|
@@ -1559,6 +1641,9 @@ module Stigg
|
|
|
1559
1641
|
entitlements {
|
|
1560
1642
|
...MockPaywallPackageEntitlementFragment
|
|
1561
1643
|
}
|
|
1644
|
+
packageEntitlements {
|
|
1645
|
+
...PackageEntitlementUnionFragment
|
|
1646
|
+
}
|
|
1562
1647
|
prices {
|
|
1563
1648
|
...MockPaywallPriceFragment
|
|
1564
1649
|
}
|
|
@@ -2128,6 +2213,9 @@ module Stigg
|
|
|
2128
2213
|
#{Fragment::ProductFragment}
|
|
2129
2214
|
#{Fragment::PackageEntitlementFragment}
|
|
2130
2215
|
#{Fragment::AddonFragment}
|
|
2216
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2217
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2218
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2131
2219
|
#{Fragment::OveragePriceFragment}
|
|
2132
2220
|
#{Fragment::AddonDependencyFragment}
|
|
2133
2221
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
@@ -2447,6 +2535,9 @@ module Stigg
|
|
|
2447
2535
|
#{Fragment::ProductFragment}
|
|
2448
2536
|
#{Fragment::PackageEntitlementFragment}
|
|
2449
2537
|
#{Fragment::AddonFragment}
|
|
2538
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2539
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2540
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2450
2541
|
#{Fragment::OveragePriceFragment}
|
|
2451
2542
|
#{Fragment::AddonDependencyFragment}
|
|
2452
2543
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
@@ -2482,6 +2573,9 @@ module Stigg
|
|
|
2482
2573
|
#{Fragment::ProductFragment}
|
|
2483
2574
|
#{Fragment::PackageEntitlementFragment}
|
|
2484
2575
|
#{Fragment::AddonFragment}
|
|
2576
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2577
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2578
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2485
2579
|
#{Fragment::OveragePriceFragment}
|
|
2486
2580
|
#{Fragment::AddonDependencyFragment}
|
|
2487
2581
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
@@ -2538,6 +2632,9 @@ module Stigg
|
|
|
2538
2632
|
#{Fragment::ProductFragment}
|
|
2539
2633
|
#{Fragment::PackageEntitlementFragment}
|
|
2540
2634
|
#{Fragment::AddonFragment}
|
|
2635
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2636
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2637
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2541
2638
|
#{Fragment::OveragePriceFragment}
|
|
2542
2639
|
#{Fragment::AddonDependencyFragment}
|
|
2543
2640
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
@@ -2571,6 +2668,9 @@ module Stigg
|
|
|
2571
2668
|
#{Fragment::ProductFragment}
|
|
2572
2669
|
#{Fragment::PackageEntitlementFragment}
|
|
2573
2670
|
#{Fragment::AddonFragment}
|
|
2671
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2672
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2673
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2574
2674
|
#{Fragment::PriceFragment}
|
|
2575
2675
|
#{Fragment::PriceTierFragment}
|
|
2576
2676
|
#{Fragment::OveragePriceFragment}
|
|
@@ -2722,6 +2822,9 @@ module Stigg
|
|
|
2722
2822
|
#{Fragment::ProductFragment}
|
|
2723
2823
|
#{Fragment::PackageEntitlementFragment}
|
|
2724
2824
|
#{Fragment::AddonFragment}
|
|
2825
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2826
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2827
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2725
2828
|
#{Fragment::OveragePriceFragment}
|
|
2726
2829
|
#{Fragment::AddonDependencyFragment}
|
|
2727
2830
|
#{Fragment::PlanCompatiblePackageGroupsFragment}
|
|
@@ -2746,6 +2849,9 @@ module Stigg
|
|
|
2746
2849
|
}
|
|
2747
2850
|
#{Fragment::MockPaywallPlanFragment}
|
|
2748
2851
|
#{Fragment::MockPaywallPackageEntitlementFragment}
|
|
2852
|
+
#{Fragment::PackageEntitlementUnionFragment}
|
|
2853
|
+
#{Fragment::PackageFeatureEntitlementFragment}
|
|
2854
|
+
#{Fragment::PackageCreditEntitlementFragment}
|
|
2749
2855
|
#{Fragment::MockPaywallPriceFragment}
|
|
2750
2856
|
#{Fragment::PriceTierFragment}
|
|
2751
2857
|
#{Fragment::MockPaywallAddonFragment}
|
|
@@ -14662,6 +14662,125 @@
|
|
|
14662
14662
|
"enumValues": null,
|
|
14663
14663
|
"possibleTypes": null
|
|
14664
14664
|
},
|
|
14665
|
+
{
|
|
14666
|
+
"kind": "OBJECT",
|
|
14667
|
+
"name": "CreditEntitlementSummary",
|
|
14668
|
+
"description": "Summary of an individual credit grant contributing to the credit entitlement.",
|
|
14669
|
+
"fields": [
|
|
14670
|
+
{
|
|
14671
|
+
"name": "addon",
|
|
14672
|
+
"description": "The addon associated with this grant, if applicable.",
|
|
14673
|
+
"args": [],
|
|
14674
|
+
"type": {
|
|
14675
|
+
"kind": "OBJECT",
|
|
14676
|
+
"name": "Addon",
|
|
14677
|
+
"ofType": null
|
|
14678
|
+
},
|
|
14679
|
+
"isDeprecated": false,
|
|
14680
|
+
"deprecationReason": null
|
|
14681
|
+
},
|
|
14682
|
+
{
|
|
14683
|
+
"name": "amount",
|
|
14684
|
+
"description": "The amount of the credit grant",
|
|
14685
|
+
"args": [],
|
|
14686
|
+
"type": {
|
|
14687
|
+
"kind": "NON_NULL",
|
|
14688
|
+
"name": null,
|
|
14689
|
+
"ofType": {
|
|
14690
|
+
"kind": "SCALAR",
|
|
14691
|
+
"name": "Float",
|
|
14692
|
+
"ofType": null
|
|
14693
|
+
}
|
|
14694
|
+
},
|
|
14695
|
+
"isDeprecated": false,
|
|
14696
|
+
"deprecationReason": null
|
|
14697
|
+
},
|
|
14698
|
+
{
|
|
14699
|
+
"name": "effectiveAt",
|
|
14700
|
+
"description": "The effective date of the credit grant",
|
|
14701
|
+
"args": [],
|
|
14702
|
+
"type": {
|
|
14703
|
+
"kind": "NON_NULL",
|
|
14704
|
+
"name": null,
|
|
14705
|
+
"ofType": {
|
|
14706
|
+
"kind": "SCALAR",
|
|
14707
|
+
"name": "DateTime",
|
|
14708
|
+
"ofType": null
|
|
14709
|
+
}
|
|
14710
|
+
},
|
|
14711
|
+
"isDeprecated": false,
|
|
14712
|
+
"deprecationReason": null
|
|
14713
|
+
},
|
|
14714
|
+
{
|
|
14715
|
+
"name": "expireAt",
|
|
14716
|
+
"description": "The expiration date of the credit grant",
|
|
14717
|
+
"args": [],
|
|
14718
|
+
"type": {
|
|
14719
|
+
"kind": "SCALAR",
|
|
14720
|
+
"name": "DateTime",
|
|
14721
|
+
"ofType": null
|
|
14722
|
+
},
|
|
14723
|
+
"isDeprecated": false,
|
|
14724
|
+
"deprecationReason": null
|
|
14725
|
+
},
|
|
14726
|
+
{
|
|
14727
|
+
"name": "grantType",
|
|
14728
|
+
"description": "The type of the credit grant",
|
|
14729
|
+
"args": [],
|
|
14730
|
+
"type": {
|
|
14731
|
+
"kind": "NON_NULL",
|
|
14732
|
+
"name": null,
|
|
14733
|
+
"ofType": {
|
|
14734
|
+
"kind": "ENUM",
|
|
14735
|
+
"name": "CreditGrantType",
|
|
14736
|
+
"ofType": null
|
|
14737
|
+
}
|
|
14738
|
+
},
|
|
14739
|
+
"isDeprecated": false,
|
|
14740
|
+
"deprecationReason": null
|
|
14741
|
+
},
|
|
14742
|
+
{
|
|
14743
|
+
"name": "plan",
|
|
14744
|
+
"description": "The plan associated with this grant, if applicable.",
|
|
14745
|
+
"args": [],
|
|
14746
|
+
"type": {
|
|
14747
|
+
"kind": "OBJECT",
|
|
14748
|
+
"name": "Plan",
|
|
14749
|
+
"ofType": null
|
|
14750
|
+
},
|
|
14751
|
+
"isDeprecated": false,
|
|
14752
|
+
"deprecationReason": null
|
|
14753
|
+
},
|
|
14754
|
+
{
|
|
14755
|
+
"name": "sourceType",
|
|
14756
|
+
"description": "The source type of the credit grant (plan entitlement, addon entitlement, or price)",
|
|
14757
|
+
"args": [],
|
|
14758
|
+
"type": {
|
|
14759
|
+
"kind": "ENUM",
|
|
14760
|
+
"name": "CreditGrantSourceType",
|
|
14761
|
+
"ofType": null
|
|
14762
|
+
},
|
|
14763
|
+
"isDeprecated": false,
|
|
14764
|
+
"deprecationReason": null
|
|
14765
|
+
},
|
|
14766
|
+
{
|
|
14767
|
+
"name": "subscription",
|
|
14768
|
+
"description": "The subscription context in which the grant was created.",
|
|
14769
|
+
"args": [],
|
|
14770
|
+
"type": {
|
|
14771
|
+
"kind": "OBJECT",
|
|
14772
|
+
"name": "CustomerSubscription",
|
|
14773
|
+
"ofType": null
|
|
14774
|
+
},
|
|
14775
|
+
"isDeprecated": false,
|
|
14776
|
+
"deprecationReason": null
|
|
14777
|
+
}
|
|
14778
|
+
],
|
|
14779
|
+
"inputFields": null,
|
|
14780
|
+
"interfaces": [],
|
|
14781
|
+
"enumValues": null,
|
|
14782
|
+
"possibleTypes": null
|
|
14783
|
+
},
|
|
14665
14784
|
{
|
|
14666
14785
|
"kind": "OBJECT",
|
|
14667
14786
|
"name": "CreditEntitlementWithSummary",
|
|
@@ -14735,6 +14854,30 @@
|
|
|
14735
14854
|
"isDeprecated": false,
|
|
14736
14855
|
"deprecationReason": null
|
|
14737
14856
|
},
|
|
14857
|
+
{
|
|
14858
|
+
"name": "summaries",
|
|
14859
|
+
"description": "List of credit grant summaries showing individual sources and their contributions.",
|
|
14860
|
+
"args": [],
|
|
14861
|
+
"type": {
|
|
14862
|
+
"kind": "NON_NULL",
|
|
14863
|
+
"name": null,
|
|
14864
|
+
"ofType": {
|
|
14865
|
+
"kind": "LIST",
|
|
14866
|
+
"name": null,
|
|
14867
|
+
"ofType": {
|
|
14868
|
+
"kind": "NON_NULL",
|
|
14869
|
+
"name": null,
|
|
14870
|
+
"ofType": {
|
|
14871
|
+
"kind": "OBJECT",
|
|
14872
|
+
"name": "CreditEntitlementSummary",
|
|
14873
|
+
"ofType": null
|
|
14874
|
+
}
|
|
14875
|
+
}
|
|
14876
|
+
}
|
|
14877
|
+
},
|
|
14878
|
+
"isDeprecated": false,
|
|
14879
|
+
"deprecationReason": null
|
|
14880
|
+
},
|
|
14738
14881
|
{
|
|
14739
14882
|
"name": "usageLimit",
|
|
14740
14883
|
"description": "The total amount of credits granted to the customer.",
|
|
@@ -15086,6 +15229,18 @@
|
|
|
15086
15229
|
"isDeprecated": false,
|
|
15087
15230
|
"deprecationReason": null
|
|
15088
15231
|
},
|
|
15232
|
+
{
|
|
15233
|
+
"name": "sourceType",
|
|
15234
|
+
"description": "The source type of the credit grant (plan entitlement, addon entitlement, or price)",
|
|
15235
|
+
"args": [],
|
|
15236
|
+
"type": {
|
|
15237
|
+
"kind": "ENUM",
|
|
15238
|
+
"name": "CreditGrantSourceType",
|
|
15239
|
+
"ofType": null
|
|
15240
|
+
},
|
|
15241
|
+
"isDeprecated": false,
|
|
15242
|
+
"deprecationReason": null
|
|
15243
|
+
},
|
|
15089
15244
|
{
|
|
15090
15245
|
"name": "status",
|
|
15091
15246
|
"description": "The status of the credit grant",
|
|
@@ -16190,6 +16345,35 @@
|
|
|
16190
16345
|
"enumValues": null,
|
|
16191
16346
|
"possibleTypes": null
|
|
16192
16347
|
},
|
|
16348
|
+
{
|
|
16349
|
+
"kind": "ENUM",
|
|
16350
|
+
"name": "CreditGrantSourceType",
|
|
16351
|
+
"description": "The source type of a credit grant",
|
|
16352
|
+
"fields": null,
|
|
16353
|
+
"inputFields": null,
|
|
16354
|
+
"interfaces": null,
|
|
16355
|
+
"enumValues": [
|
|
16356
|
+
{
|
|
16357
|
+
"name": "ADDON_ENTITLEMENT",
|
|
16358
|
+
"description": "Credit grant from an addon entitlement",
|
|
16359
|
+
"isDeprecated": false,
|
|
16360
|
+
"deprecationReason": null
|
|
16361
|
+
},
|
|
16362
|
+
{
|
|
16363
|
+
"name": "PLAN_ENTITLEMENT",
|
|
16364
|
+
"description": "Credit grant from a plan entitlement",
|
|
16365
|
+
"isDeprecated": false,
|
|
16366
|
+
"deprecationReason": null
|
|
16367
|
+
},
|
|
16368
|
+
{
|
|
16369
|
+
"name": "PRICE",
|
|
16370
|
+
"description": "Credit grant from a recurring price",
|
|
16371
|
+
"isDeprecated": false,
|
|
16372
|
+
"deprecationReason": null
|
|
16373
|
+
}
|
|
16374
|
+
],
|
|
16375
|
+
"possibleTypes": null
|
|
16376
|
+
},
|
|
16193
16377
|
{
|
|
16194
16378
|
"kind": "ENUM",
|
|
16195
16379
|
"name": "CreditGrantStatus",
|
|
@@ -104382,13 +104566,9 @@
|
|
|
104382
104566
|
"description": "Plural form of the unit",
|
|
104383
104567
|
"args": [],
|
|
104384
104568
|
"type": {
|
|
104385
|
-
"kind": "
|
|
104386
|
-
"name":
|
|
104387
|
-
"ofType":
|
|
104388
|
-
"kind": "SCALAR",
|
|
104389
|
-
"name": "String",
|
|
104390
|
-
"ofType": null
|
|
104391
|
-
}
|
|
104569
|
+
"kind": "SCALAR",
|
|
104570
|
+
"name": "String",
|
|
104571
|
+
"ofType": null
|
|
104392
104572
|
},
|
|
104393
104573
|
"isDeprecated": false,
|
|
104394
104574
|
"deprecationReason": null
|
|
@@ -104398,13 +104578,9 @@
|
|
|
104398
104578
|
"description": "Singular form of the unit",
|
|
104399
104579
|
"args": [],
|
|
104400
104580
|
"type": {
|
|
104401
|
-
"kind": "
|
|
104402
|
-
"name":
|
|
104403
|
-
"ofType":
|
|
104404
|
-
"kind": "SCALAR",
|
|
104405
|
-
"name": "String",
|
|
104406
|
-
"ofType": null
|
|
104407
|
-
}
|
|
104581
|
+
"kind": "SCALAR",
|
|
104582
|
+
"name": "String",
|
|
104583
|
+
"ofType": null
|
|
104408
104584
|
},
|
|
104409
104585
|
"isDeprecated": false,
|
|
104410
104586
|
"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.229.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-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: graphlient
|