stigg-api-client 0.543.0 → 0.544.1

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: cf9176a7ed0bd9a7107a354b448483867978e6f55c53f1bd80a5070b8da9599e
4
- data.tar.gz: da2e27acb8fcdbe10f1f40ecb9fef96144388e373a88926d3f3981ffb80b6131
3
+ metadata.gz: 9586037edda6daa307fe4d6b8197b6f9f601e83eedb5ec41243051ad9defca3c
4
+ data.tar.gz: ff729720235ad19c4c2e027af3c1bd3693bbc875eea3ecfeae1a0365b2fee52c
5
5
  SHA512:
6
- metadata.gz: adf76642f3b799ac9dc98b211ff665745a47ce38b28d5bff5781d23714ca5a146134a890c2a896cb8e88aedcda3ef274c72ee787f3bb97d58414e236528305f4
7
- data.tar.gz: e601214a9b0cbbe5b2fc1c40a93836182faa8d3ad7220b6f9511dad693bc2e8c830b238e01fe8268846eaa746fd81b28fc4d136fa425924ec45aa92ffb8d3e96
6
+ metadata.gz: 1ba47d60d7497e2bbf0e39de21aec90618bd9ae5f20ce33ee1da59a8d180cdb4dbf1038240ddd44fa5fa5a594a607aa2f71e64d36660822ffefc5c45ff33da8c
7
+ data.tar.gz: 5ecae863756b2b9b98d37afee2a697f3674f37874839ddaf2cbe154ff3ee949b6508d9db331a986b604bd2db8941be77d8a8c87b13cfd7cd7159757581a03a77
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.543.0)
4
+ stigg-api-client (0.544.1)
5
5
  graphlient (~> 0.7.0)
6
6
 
7
7
  GEM
@@ -27,6 +27,16 @@ module Stigg
27
27
  }
28
28
  GRAPHQL
29
29
 
30
+ PriceTierFragment = <<~GRAPHQL
31
+ fragment PriceTierFragment on PriceTier {
32
+ upTo
33
+ unitPrice {
34
+ amount
35
+ currency
36
+ }
37
+ }
38
+ GRAPHQL
39
+
30
40
  PriceFragment = <<~GRAPHQL
31
41
  fragment PriceFragment on Price {
32
42
  billingModel
@@ -41,11 +51,7 @@ module Stigg
41
51
  }
42
52
  tiersMode
43
53
  tiers {
44
- upTo
45
- unitPrice {
46
- amount
47
- currency
48
- }
54
+ ...PriceTierFragment
49
55
  }
50
56
  feature {
51
57
  refId
@@ -1002,11 +1008,7 @@ module Stigg
1002
1008
  }
1003
1009
  tiersMode
1004
1010
  tiers {
1005
- upTo
1006
- unitPrice {
1007
- amount
1008
- currency
1009
- }
1011
+ ...PriceTierFragment
1010
1012
  }
1011
1013
  feature {
1012
1014
  refId
@@ -1109,6 +1111,7 @@ module Stigg
1109
1111
  #{Fragment::SubscriptionInvoiceFragment}
1110
1112
  #{Fragment::CustomerResourceFragment}
1111
1113
  #{Fragment::PriceFragment}
1114
+ #{Fragment::PriceTierFragment}
1112
1115
  #{Fragment::TotalPriceFragment}
1113
1116
  GRAPHQL
1114
1117
 
@@ -1150,6 +1153,7 @@ module Stigg
1150
1153
  #{Fragment::SubscriptionInvoiceFragment}
1151
1154
  #{Fragment::CustomerResourceFragment}
1152
1155
  #{Fragment::PriceFragment}
1156
+ #{Fragment::PriceTierFragment}
1153
1157
  #{Fragment::TotalPriceFragment}
1154
1158
  GRAPHQL
1155
1159
 
@@ -1165,6 +1169,7 @@ module Stigg
1165
1169
  #{Fragment::SubscriptionInvoiceFragment}
1166
1170
  #{Fragment::CustomerResourceFragment}
1167
1171
  #{Fragment::PriceFragment}
1172
+ #{Fragment::PriceTierFragment}
1168
1173
  #{Fragment::TotalPriceFragment}
1169
1174
  #{Fragment::PlanFragment}
1170
1175
  #{Fragment::ProductFragment}
@@ -1190,6 +1195,7 @@ module Stigg
1190
1195
  #{Fragment::SubscriptionInvoiceFragment}
1191
1196
  #{Fragment::CustomerResourceFragment}
1192
1197
  #{Fragment::PriceFragment}
1198
+ #{Fragment::PriceTierFragment}
1193
1199
  #{Fragment::TotalPriceFragment}
1194
1200
  GRAPHQL
1195
1201
 
@@ -1203,6 +1209,7 @@ module Stigg
1203
1209
  #{Fragment::SubscriptionInvoiceFragment}
1204
1210
  #{Fragment::CustomerResourceFragment}
1205
1211
  #{Fragment::PriceFragment}
1212
+ #{Fragment::PriceTierFragment}
1206
1213
  #{Fragment::TotalPriceFragment}
1207
1214
  GRAPHQL
1208
1215
 
@@ -1269,6 +1276,7 @@ module Stigg
1269
1276
  #{Fragment::SubscriptionInvoiceFragment}
1270
1277
  #{Fragment::CustomerResourceFragment}
1271
1278
  #{Fragment::PriceFragment}
1279
+ #{Fragment::PriceTierFragment}
1272
1280
  #{Fragment::TotalPriceFragment}
1273
1281
  GRAPHQL
1274
1282
 
@@ -1298,6 +1306,7 @@ module Stigg
1298
1306
  #{Fragment::SubscriptionInvoiceFragment}
1299
1307
  #{Fragment::CustomerResourceFragment}
1300
1308
  #{Fragment::PriceFragment}
1309
+ #{Fragment::PriceTierFragment}
1301
1310
  #{Fragment::TotalPriceFragment}
1302
1311
  GRAPHQL
1303
1312
  end
@@ -1318,6 +1327,7 @@ module Stigg
1318
1327
  #{Fragment::SubscriptionInvoiceFragment}
1319
1328
  #{Fragment::CustomerResourceFragment}
1320
1329
  #{Fragment::PriceFragment}
1330
+ #{Fragment::PriceTierFragment}
1321
1331
  #{Fragment::TotalPriceFragment}
1322
1332
  #{Fragment::PlanFragment}
1323
1333
  #{Fragment::ProductFragment}
@@ -1337,6 +1347,7 @@ module Stigg
1337
1347
  #{Fragment::SubscriptionInvoiceFragment}
1338
1348
  #{Fragment::CustomerResourceFragment}
1339
1349
  #{Fragment::PriceFragment}
1350
+ #{Fragment::PriceTierFragment}
1340
1351
  #{Fragment::TotalPriceFragment}
1341
1352
  #{Fragment::PlanFragment}
1342
1353
  #{Fragment::ProductFragment}
@@ -1371,6 +1382,7 @@ module Stigg
1371
1382
  #{Fragment::PackageEntitlementFragment}
1372
1383
  #{Fragment::AddonFragment}
1373
1384
  #{Fragment::PriceFragment}
1385
+ #{Fragment::PriceTierFragment}
1374
1386
  #{Fragment::PaywallCurrency}
1375
1387
  #{Fragment::PaywallConfigurationFragment}
1376
1388
  #{Fragment::TypographyConfigurationFragment}
@@ -1470,6 +1482,7 @@ module Stigg
1470
1482
  #{Fragment::SubscriptionInvoiceFragment}
1471
1483
  #{Fragment::CustomerResourceFragment}
1472
1484
  #{Fragment::PriceFragment}
1485
+ #{Fragment::PriceTierFragment}
1473
1486
  #{Fragment::TotalPriceFragment}
1474
1487
  #{Fragment::PlanFragment}
1475
1488
  #{Fragment::ProductFragment}
@@ -1493,6 +1506,7 @@ module Stigg
1493
1506
  #{Fragment::MockPaywallPlanFragment}
1494
1507
  #{Fragment::MockPaywallPackageEntitlementFragment}
1495
1508
  #{Fragment::MockPaywallPriceFragment}
1509
+ #{Fragment::PriceTierFragment}
1496
1510
  #{Fragment::MockPaywallAddonFragment}
1497
1511
  #{Fragment::PaywallConfigurationFragment}
1498
1512
  #{Fragment::TypographyConfigurationFragment}
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.543.0"
4
+ VERSION = "0.544.1"
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: 0.543.0
4
+ version: 0.544.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-16 00:00:00.000000000 Z
11
+ date: 2023-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient