stigg-api-client 3.100.0 → 3.105.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c509a401251b5a9405b02cf4a550e37e4d241f3b86decdf380baf3b0eacbbe8
4
- data.tar.gz: d5c64d844d4042ffad7a5d7de88974038a47c75b06dbbe4453511893f2538856
3
+ metadata.gz: 4c355136c679d35ec9da8908345fd095929750413de15d0d19c2906c2b312e39
4
+ data.tar.gz: 7e65132fef2909242ecbc2e93e11ffb0c70bef7923e93e2de3877e857104c9bd
5
5
  SHA512:
6
- metadata.gz: 788423aec877b58c34478e3f0c5e5e68306531d153e5da8277ef2e9220cace53cdbb6d221b59682a62c4dc98ba0f87dd652584f25c76284e81c8a9f177c92899
7
- data.tar.gz: 04b8cec1838dc67d62caaa2132225b078e56aee17c259f405fb480b3454f8da37a238fb95ac6def71bb7de359f5cfb489f8d584242df5bf2de304896e1607973
6
+ metadata.gz: bc67ec22db69ccb52e4f5f3ea9656e8f7c5b8a7530deb80b4eb0dbe61041353f3d6899bb8705fa51c1109aed2b8d7570b8a6094fba139db09f1e1269f4f706f5
7
+ data.tar.gz: 82eb7c5e98269ef7da475d389f28371b23d6e14ff2a01b8048c0b11fc38a70c99e8c6eebc248f6d0e7470044dd5916f9b43304e794f314470e3305d5055de7df
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (3.100.0)
4
+ stigg-api-client (3.105.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -58,6 +58,7 @@ module Stigg
58
58
  creditRate {
59
59
  amount
60
60
  customCurrencyId
61
+ currencyId
61
62
  }
62
63
  tiersMode
63
64
  tiers {
@@ -984,6 +985,11 @@ module Stigg
984
985
  feature {
985
986
  ...FeatureFragment
986
987
  }
988
+ creditRate {
989
+ amount
990
+ currencyId
991
+ }
992
+ validUntil
987
993
  }
988
994
  GRAPHQL
989
995
 
@@ -1094,6 +1100,27 @@ module Stigg
1094
1100
  }
1095
1101
  GRAPHQL
1096
1102
 
1103
+ CreditBalanceUpdatedPayload = <<~GRAPHQL
1104
+ fragment CreditBalanceUpdatedPayload on CreditBalanceUpdated {
1105
+ currency {
1106
+ currencyId
1107
+ displayName
1108
+ symbol
1109
+ units {
1110
+ singular
1111
+ plural
1112
+ }
1113
+ }
1114
+ currencyId
1115
+ currentBalance
1116
+ customerId
1117
+ validUntil
1118
+ resourceId
1119
+ totalConsumed
1120
+ totalGranted
1121
+ }
1122
+ GRAPHQL
1123
+
1097
1124
  CustomerPortalFragment = <<~GRAPHQL
1098
1125
  fragment CustomerPortalFragment on CustomerPortal {
1099
1126
  subscriptions {
@@ -1221,7 +1248,7 @@ module Stigg
1221
1248
  }
1222
1249
  creditRate {
1223
1250
  amount
1224
- customCurrencyId
1251
+ currencyId
1225
1252
  }
1226
1253
  feature {
1227
1254
  id
@@ -1254,7 +1281,7 @@ module Stigg
1254
1281
  }
1255
1282
  creditRate {
1256
1283
  amount
1257
- customCurrencyId
1284
+ currencyId
1258
1285
  }
1259
1286
  feature {
1260
1287
  featureUnits
@@ -1442,7 +1469,7 @@ module Stigg
1442
1469
  }
1443
1470
  creditRate {
1444
1471
  amount
1445
- customCurrencyId
1472
+ currencyId
1446
1473
  }
1447
1474
  tiersMode
1448
1475
  tiers {
@@ -1750,19 +1777,28 @@ module Stigg
1750
1777
  fragment CreditsBalanceSummaryFragment on CreditBalanceSummary {
1751
1778
  customerId
1752
1779
  balances {
1753
- currency {
1754
- currencyId
1755
- displayName
1756
- symbol
1757
- units {
1758
- singular
1759
- plural
1760
- }
1780
+ ...CreditBalanceFragment
1781
+ }
1782
+ }
1783
+ GRAPHQL
1784
+
1785
+ CreditBalanceFragment = <<~GRAPHQL
1786
+ fragment CreditBalanceFragment on CreditBalance {
1787
+ customerId
1788
+ currency {
1789
+ currencyId
1790
+ displayName
1791
+ symbol
1792
+ units {
1793
+ singular
1794
+ plural
1761
1795
  }
1762
- currentBalance
1763
- totalConsumed
1764
- totalGranted
1765
1796
  }
1797
+ currentBalance
1798
+ totalConsumed
1799
+ totalGranted
1800
+ resourceId
1801
+ validUntil
1766
1802
  }
1767
1803
  GRAPHQL
1768
1804
 
@@ -2514,6 +2550,7 @@ module Stigg
2514
2550
  }
2515
2551
  }
2516
2552
  #{Fragment::CreditsBalanceSummaryFragment}
2553
+ #{Fragment::CreditBalanceFragment}
2517
2554
  GRAPHQL
2518
2555
 
2519
2556
  GetCreditGrants = <<~GRAPHQL
@@ -2588,5 +2625,14 @@ module Stigg
2588
2625
  }
2589
2626
  #{Fragment::PackagePublishedPayload}
2590
2627
  GRAPHQL
2628
+
2629
+ OnCreditBalanceUpdated = <<~GRAPHQL
2630
+ subscription OnCreditBalanceUpdated {
2631
+ creditBalanceUpdated {
2632
+ ...CreditBalanceUpdatedPayload
2633
+ }
2634
+ }
2635
+ #{Fragment::CreditBalanceUpdatedPayload}
2636
+ GRAPHQL
2591
2637
  end
2592
2638
  end
@@ -11689,6 +11689,34 @@
11689
11689
  "isDeprecated": false,
11690
11690
  "deprecationReason": null
11691
11691
  },
11692
+ {
11693
+ "name": "customerId",
11694
+ "description": "The customer ID of the credit grant",
11695
+ "args": [],
11696
+ "type": {
11697
+ "kind": "NON_NULL",
11698
+ "name": null,
11699
+ "ofType": {
11700
+ "kind": "SCALAR",
11701
+ "name": "String",
11702
+ "ofType": null
11703
+ }
11704
+ },
11705
+ "isDeprecated": false,
11706
+ "deprecationReason": null
11707
+ },
11708
+ {
11709
+ "name": "resourceId",
11710
+ "description": "The resource ID of the credit grant",
11711
+ "args": [],
11712
+ "type": {
11713
+ "kind": "SCALAR",
11714
+ "name": "String",
11715
+ "ofType": null
11716
+ },
11717
+ "isDeprecated": false,
11718
+ "deprecationReason": null
11719
+ },
11692
11720
  {
11693
11721
  "name": "totalConsumed",
11694
11722
  "description": "Total amount consumed from all grants",
@@ -11720,6 +11748,18 @@
11720
11748
  },
11721
11749
  "isDeprecated": false,
11722
11750
  "deprecationReason": null
11751
+ },
11752
+ {
11753
+ "name": "validUntil",
11754
+ "description": "The next time the balance will be updated (e.g., when a grant expires or becomes effective)",
11755
+ "args": [],
11756
+ "type": {
11757
+ "kind": "SCALAR",
11758
+ "name": "Float",
11759
+ "ofType": null
11760
+ },
11761
+ "isDeprecated": false,
11762
+ "deprecationReason": null
11723
11763
  }
11724
11764
  ],
11725
11765
  "inputFields": null,
@@ -11853,6 +11893,169 @@
11853
11893
  "enumValues": null,
11854
11894
  "possibleTypes": null
11855
11895
  },
11896
+ {
11897
+ "kind": "OBJECT",
11898
+ "name": "CreditBalanceUpdated",
11899
+ "description": "Credit balance update notification",
11900
+ "fields": [
11901
+ {
11902
+ "name": "accountId",
11903
+ "description": "The unique identifier for the account",
11904
+ "args": [],
11905
+ "type": {
11906
+ "kind": "NON_NULL",
11907
+ "name": null,
11908
+ "ofType": {
11909
+ "kind": "SCALAR",
11910
+ "name": "String",
11911
+ "ofType": null
11912
+ }
11913
+ },
11914
+ "isDeprecated": false,
11915
+ "deprecationReason": null
11916
+ },
11917
+ {
11918
+ "name": "currency",
11919
+ "description": "Stigg custom currency object with minimal fields",
11920
+ "args": [],
11921
+ "type": {
11922
+ "kind": "NON_NULL",
11923
+ "name": null,
11924
+ "ofType": {
11925
+ "kind": "OBJECT",
11926
+ "name": "SlimCustomCurrency",
11927
+ "ofType": null
11928
+ }
11929
+ },
11930
+ "isDeprecated": false,
11931
+ "deprecationReason": null
11932
+ },
11933
+ {
11934
+ "name": "currencyId",
11935
+ "description": "The custom currency ID of the credit grant",
11936
+ "args": [],
11937
+ "type": {
11938
+ "kind": "NON_NULL",
11939
+ "name": null,
11940
+ "ofType": {
11941
+ "kind": "SCALAR",
11942
+ "name": "String",
11943
+ "ofType": null
11944
+ }
11945
+ },
11946
+ "isDeprecated": true,
11947
+ "deprecationReason": "Use currency instead"
11948
+ },
11949
+ {
11950
+ "name": "currentBalance",
11951
+ "description": "Current available balance",
11952
+ "args": [],
11953
+ "type": {
11954
+ "kind": "NON_NULL",
11955
+ "name": null,
11956
+ "ofType": {
11957
+ "kind": "SCALAR",
11958
+ "name": "Float",
11959
+ "ofType": null
11960
+ }
11961
+ },
11962
+ "isDeprecated": false,
11963
+ "deprecationReason": null
11964
+ },
11965
+ {
11966
+ "name": "customerId",
11967
+ "description": "The customer ID of the credit grant",
11968
+ "args": [],
11969
+ "type": {
11970
+ "kind": "NON_NULL",
11971
+ "name": null,
11972
+ "ofType": {
11973
+ "kind": "SCALAR",
11974
+ "name": "String",
11975
+ "ofType": null
11976
+ }
11977
+ },
11978
+ "isDeprecated": false,
11979
+ "deprecationReason": null
11980
+ },
11981
+ {
11982
+ "name": "environmentId",
11983
+ "description": "The unique identifier for the environment",
11984
+ "args": [],
11985
+ "type": {
11986
+ "kind": "NON_NULL",
11987
+ "name": null,
11988
+ "ofType": {
11989
+ "kind": "SCALAR",
11990
+ "name": "String",
11991
+ "ofType": null
11992
+ }
11993
+ },
11994
+ "isDeprecated": false,
11995
+ "deprecationReason": null
11996
+ },
11997
+ {
11998
+ "name": "resourceId",
11999
+ "description": "The resource ID of the credit grant",
12000
+ "args": [],
12001
+ "type": {
12002
+ "kind": "SCALAR",
12003
+ "name": "String",
12004
+ "ofType": null
12005
+ },
12006
+ "isDeprecated": false,
12007
+ "deprecationReason": null
12008
+ },
12009
+ {
12010
+ "name": "totalConsumed",
12011
+ "description": "Total amount consumed from all grants",
12012
+ "args": [],
12013
+ "type": {
12014
+ "kind": "NON_NULL",
12015
+ "name": null,
12016
+ "ofType": {
12017
+ "kind": "SCALAR",
12018
+ "name": "Float",
12019
+ "ofType": null
12020
+ }
12021
+ },
12022
+ "isDeprecated": false,
12023
+ "deprecationReason": null
12024
+ },
12025
+ {
12026
+ "name": "totalGranted",
12027
+ "description": "Total amount granted across all active grants",
12028
+ "args": [],
12029
+ "type": {
12030
+ "kind": "NON_NULL",
12031
+ "name": null,
12032
+ "ofType": {
12033
+ "kind": "SCALAR",
12034
+ "name": "Float",
12035
+ "ofType": null
12036
+ }
12037
+ },
12038
+ "isDeprecated": false,
12039
+ "deprecationReason": null
12040
+ },
12041
+ {
12042
+ "name": "validUntil",
12043
+ "description": "The next time the balance will be updated (e.g., when a grant expires or becomes effective)",
12044
+ "args": [],
12045
+ "type": {
12046
+ "kind": "SCALAR",
12047
+ "name": "Float",
12048
+ "ofType": null
12049
+ },
12050
+ "isDeprecated": false,
12051
+ "deprecationReason": null
12052
+ }
12053
+ ],
12054
+ "inputFields": null,
12055
+ "interfaces": [],
12056
+ "enumValues": null,
12057
+ "possibleTypes": null
12058
+ },
11856
12059
  {
11857
12060
  "kind": "OBJECT",
11858
12061
  "name": "CreditGrant",
@@ -12744,20 +12947,32 @@
12744
12947
  "deprecationReason": null
12745
12948
  },
12746
12949
  {
12747
- "name": "customCurrencyId",
12748
- "description": "The custom currency ID for the credit rate",
12950
+ "name": "currencyId",
12951
+ "description": "The custom currency refId for the credit rate",
12749
12952
  "args": [],
12750
12953
  "type": {
12751
12954
  "kind": "NON_NULL",
12752
12955
  "name": null,
12753
12956
  "ofType": {
12754
12957
  "kind": "SCALAR",
12755
- "name": "UUID",
12958
+ "name": "String",
12756
12959
  "ofType": null
12757
12960
  }
12758
12961
  },
12759
12962
  "isDeprecated": false,
12760
12963
  "deprecationReason": null
12964
+ },
12965
+ {
12966
+ "name": "customCurrencyId",
12967
+ "description": "The custom currency ID for the credit rate",
12968
+ "args": [],
12969
+ "type": {
12970
+ "kind": "SCALAR",
12971
+ "name": "UUID",
12972
+ "ofType": null
12973
+ },
12974
+ "isDeprecated": true,
12975
+ "deprecationReason": "use currencyId instead"
12761
12976
  }
12762
12977
  ],
12763
12978
  "inputFields": null,
@@ -12788,20 +13003,32 @@
12788
13003
  "deprecationReason": null
12789
13004
  },
12790
13005
  {
12791
- "name": "customCurrencyId",
12792
- "description": "The custom currency ID for the credit rate",
13006
+ "name": "currencyId",
13007
+ "description": "The custom currency refId for the credit rate",
12793
13008
  "type": {
12794
13009
  "kind": "NON_NULL",
12795
13010
  "name": null,
12796
13011
  "ofType": {
12797
13012
  "kind": "SCALAR",
12798
- "name": "UUID",
13013
+ "name": "String",
12799
13014
  "ofType": null
12800
13015
  }
12801
13016
  },
12802
13017
  "defaultValue": null,
12803
13018
  "isDeprecated": false,
12804
13019
  "deprecationReason": null
13020
+ },
13021
+ {
13022
+ "name": "customCurrencyId",
13023
+ "description": "The custom currency ID for the credit rate",
13024
+ "type": {
13025
+ "kind": "SCALAR",
13026
+ "name": "UUID",
13027
+ "ofType": null
13028
+ },
13029
+ "defaultValue": null,
13030
+ "isDeprecated": false,
13031
+ "deprecationReason": null
12805
13032
  }
12806
13033
  ],
12807
13034
  "interfaces": null,
@@ -25025,6 +25252,18 @@
25025
25252
  "isDeprecated": false,
25026
25253
  "deprecationReason": null
25027
25254
  },
25255
+ {
25256
+ "name": "creditRate",
25257
+ "description": "The credit rate associated with this entitlement, if applicable.",
25258
+ "args": [],
25259
+ "type": {
25260
+ "kind": "OBJECT",
25261
+ "name": "CreditRate",
25262
+ "ofType": null
25263
+ },
25264
+ "isDeprecated": false,
25265
+ "deprecationReason": null
25266
+ },
25028
25267
  {
25029
25268
  "name": "currentUsage",
25030
25269
  "description": "The amount of the feature the customer has used so far in the current period.",
@@ -25320,6 +25559,18 @@
25320
25559
  },
25321
25560
  "isDeprecated": false,
25322
25561
  "deprecationReason": null
25562
+ },
25563
+ {
25564
+ "name": "validUntil",
25565
+ "description": "The next time the entitlement should be recalculated",
25566
+ "args": [],
25567
+ "type": {
25568
+ "kind": "SCALAR",
25569
+ "name": "Float",
25570
+ "ofType": null
25571
+ },
25572
+ "isDeprecated": false,
25573
+ "deprecationReason": null
25323
25574
  }
25324
25575
  ],
25325
25576
  "inputFields": null,
@@ -26118,6 +26369,18 @@
26118
26369
  "isDeprecated": false,
26119
26370
  "deprecationReason": null
26120
26371
  },
26372
+ {
26373
+ "name": "creditRate",
26374
+ "description": "The credit rate associated with this entitlement, if applicable.",
26375
+ "args": [],
26376
+ "type": {
26377
+ "kind": "OBJECT",
26378
+ "name": "CreditRate",
26379
+ "ofType": null
26380
+ },
26381
+ "isDeprecated": false,
26382
+ "deprecationReason": null
26383
+ },
26121
26384
  {
26122
26385
  "name": "currentUsage",
26123
26386
  "description": "The amount of the feature the customer has used so far in the current period.",
@@ -26433,6 +26696,18 @@
26433
26696
  },
26434
26697
  "isDeprecated": false,
26435
26698
  "deprecationReason": null
26699
+ },
26700
+ {
26701
+ "name": "validUntil",
26702
+ "description": "The next time the entitlement should be recalculated",
26703
+ "args": [],
26704
+ "type": {
26705
+ "kind": "SCALAR",
26706
+ "name": "Float",
26707
+ "ofType": null
26708
+ },
26709
+ "isDeprecated": false,
26710
+ "deprecationReason": null
26436
26711
  }
26437
26712
  ],
26438
26713
  "inputFields": null,
@@ -30604,44 +30879,86 @@
30604
30879
  "deprecationReason": null
30605
30880
  },
30606
30881
  {
30607
- "name": "CREDITS_BALANCE_DEPLETED",
30608
- "description": "Credits balance depleted",
30882
+ "name": "CREDITS_BALANCE_DEPLETED_OLD",
30883
+ "description": "Deprecated, use CREDIT_BALANCE_DEPLETED instead",
30884
+ "isDeprecated": true,
30885
+ "deprecationReason": "Event name changed"
30886
+ },
30887
+ {
30888
+ "name": "CREDITS_BALANCE_LOW_OLD",
30889
+ "description": "Deprecated, use CREDIT_BALANCE_LOW instead",
30890
+ "isDeprecated": true,
30891
+ "deprecationReason": "Event name changed"
30892
+ },
30893
+ {
30894
+ "name": "CREDITS_GRANT_BALANCE_LOW_OLD",
30895
+ "description": "Deprecated, use CREDIT_GRANT_BALANCE_LOW instead",
30896
+ "isDeprecated": true,
30897
+ "deprecationReason": "Event name changed"
30898
+ },
30899
+ {
30900
+ "name": "CREDITS_GRANT_DEPLETED_OLD",
30901
+ "description": "Deprecated, use CREDIT_GRANT_DEPLETED instead",
30902
+ "isDeprecated": true,
30903
+ "deprecationReason": "Event name changed"
30904
+ },
30905
+ {
30906
+ "name": "CREDITS_GRANT_EXPIRED_OLD",
30907
+ "description": "Deprecated, use CREDIT_GRANT_EXPIRED instead",
30908
+ "isDeprecated": true,
30909
+ "deprecationReason": "Event name changed"
30910
+ },
30911
+ {
30912
+ "name": "CREDITS_GRANT_GRANTED_OLD",
30913
+ "description": "Deprecated, use CREDIT_GRANT_CREATED instead",
30914
+ "isDeprecated": true,
30915
+ "deprecationReason": "Event name changed"
30916
+ },
30917
+ {
30918
+ "name": "CREDITS_GRANT_UPDATED_OLD",
30919
+ "description": "Deprecated, use CREDIT_GRANT_UPDATED instead",
30920
+ "isDeprecated": true,
30921
+ "deprecationReason": "Event name changed"
30922
+ },
30923
+ {
30924
+ "name": "CREDIT_BALANCE_DEPLETED",
30925
+ "description": "Credit balance depleted",
30609
30926
  "isDeprecated": false,
30610
30927
  "deprecationReason": null
30611
30928
  },
30612
30929
  {
30613
- "name": "CREDITS_BALANCE_USAGE_LOW",
30614
- "description": "Credits balance usage low",
30930
+ "name": "CREDIT_BALANCE_LOW",
30931
+ "description": "Credit balance low",
30615
30932
  "isDeprecated": false,
30616
30933
  "deprecationReason": null
30617
30934
  },
30618
30935
  {
30619
- "name": "CREDITS_GRANT_DEPLETED",
30620
- "description": "Credits grant depleted",
30936
+ "name": "CREDIT_GRANT_BALANCE_LOW",
30937
+ "description": "Credit grant balance low",
30621
30938
  "isDeprecated": false,
30622
30939
  "deprecationReason": null
30623
30940
  },
30624
30941
  {
30625
- "name": "CREDITS_GRANT_EXPIRED",
30626
- "description": "Credits grant expired",
30942
+ "name": "CREDIT_GRANT_CREATED",
30943
+ "description": "Credit grant created",
30627
30944
  "isDeprecated": false,
30628
30945
  "deprecationReason": null
30629
30946
  },
30630
30947
  {
30631
- "name": "CREDITS_GRANT_GRANTED",
30632
- "description": "Credits grant granted",
30948
+ "name": "CREDIT_GRANT_DEPLETED",
30949
+ "description": "Credit grant depleted",
30633
30950
  "isDeprecated": false,
30634
30951
  "deprecationReason": null
30635
30952
  },
30636
30953
  {
30637
- "name": "CREDITS_GRANT_UPDATED",
30638
- "description": "Credits grant updated",
30954
+ "name": "CREDIT_GRANT_EXPIRED",
30955
+ "description": "Credit grant expired",
30639
30956
  "isDeprecated": false,
30640
30957
  "deprecationReason": null
30641
30958
  },
30642
30959
  {
30643
- "name": "CREDITS_GRANT_USAGE_LOW",
30644
- "description": "Credits grant usage low",
30960
+ "name": "CREDIT_GRANT_UPDATED",
30961
+ "description": "Credit grant updated",
30645
30962
  "isDeprecated": false,
30646
30963
  "deprecationReason": null
30647
30964
  },
@@ -78523,6 +78840,22 @@
78523
78840
  "name": "Subscription",
78524
78841
  "description": null,
78525
78842
  "fields": [
78843
+ {
78844
+ "name": "creditBalanceUpdated",
78845
+ "description": "Subscription for credit balance updates for a specific customer",
78846
+ "args": [],
78847
+ "type": {
78848
+ "kind": "NON_NULL",
78849
+ "name": null,
78850
+ "ofType": {
78851
+ "kind": "OBJECT",
78852
+ "name": "CreditBalanceUpdated",
78853
+ "ofType": null
78854
+ }
78855
+ },
78856
+ "isDeprecated": false,
78857
+ "deprecationReason": null
78858
+ },
78526
78859
  {
78527
78860
  "name": "entitlementsUpdated",
78528
78861
  "description": "Subscribe to real-time updates when a customers entitlements change.",
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "3.100.0"
4
+ VERSION = "3.105.0"
5
5
  end
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: 3.100.0
4
+ version: 3.105.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-09-28 00:00:00.000000000 Z
11
+ date: 2025-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient