stigg-api-client 1.150.1 → 1.156.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1d1fa6b652d8c6ed1b5a6f7d3dc2cee880dce8a60dcd6fd286d021e26c54b82
4
- data.tar.gz: 1cf29c5a68e403fa0e29abba5815c9927366969b1e995d472eaa41fb578c1afa
3
+ metadata.gz: 758012a65e70c5615d8699d4d82adf2f436d89ed13f708758ef1fc7a9c11d400
4
+ data.tar.gz: b5db38e0c6555585634826ad31f495f35ece937baef5fe1da07b8a560eec5c60
5
5
  SHA512:
6
- metadata.gz: 12f2ef08ae79b82876140e18cfb962fc013ea858b3eb7318fdd7085569211c692b0b4114a81a1f406bd6504abcb9538fc1c84e4007a3aa580ad5f0f27f2ed1b0
7
- data.tar.gz: '02813c6ba78f6c933129a966eade64838cd60820f56eb7eb82dac5d3058e561deabe16361d9a6ce73932dfab6c8bafcb450669aba614ce087640692cadd74150'
6
+ metadata.gz: b96cf027a29e1c25abbdcaed499416fd655bb21180967cd5983c6d6e53519d63e0aa2ac7c326cb3ddd015da46ab05106554a7ab14e169928b1a4c6afaa09acae
7
+ data.tar.gz: 826d7bc1b1fa8bcd8f0e3211b16071bb98c76a13bef721a12588e327719f6593e9e023eecfb3f2344db2fd5333e6b0d021d0d629677a7d7812dbe41f4fa3cb4e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (1.150.1)
4
+ stigg-api-client (1.156.0)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql-client (~> 0.19)
7
7
 
@@ -319,6 +319,7 @@ module Stigg
319
319
  paymentUrl
320
320
  paymentSecret
321
321
  errorMessage
322
+ billingReason
322
323
  }
323
324
  GRAPHQL
324
325
 
@@ -46847,6 +46847,26 @@
46847
46847
  "isDeprecated": false,
46848
46848
  "deprecationReason": null
46849
46849
  },
46850
+ {
46851
+ "name": "minimumSpend",
46852
+ "description": "Minimum spend configuration",
46853
+ "args": [],
46854
+ "type": {
46855
+ "kind": "LIST",
46856
+ "name": null,
46857
+ "ofType": {
46858
+ "kind": "NON_NULL",
46859
+ "name": null,
46860
+ "ofType": {
46861
+ "kind": "OBJECT",
46862
+ "name": "MinimumSpend",
46863
+ "ofType": null
46864
+ }
46865
+ }
46866
+ },
46867
+ "isDeprecated": false,
46868
+ "deprecationReason": null
46869
+ },
46850
46870
  {
46851
46871
  "name": "prices",
46852
46872
  "description": null,
@@ -67910,6 +67930,18 @@
67910
67930
  "isDeprecated": false,
67911
67931
  "deprecationReason": null
67912
67932
  },
67933
+ {
67934
+ "name": "billingReason",
67935
+ "description": null,
67936
+ "args": [],
67937
+ "type": {
67938
+ "kind": "ENUM",
67939
+ "name": "SubscriptionInvoiceBillingReason",
67940
+ "ofType": null
67941
+ },
67942
+ "isDeprecated": false,
67943
+ "deprecationReason": null
67944
+ },
67913
67945
  {
67914
67946
  "name": "createdAt",
67915
67947
  "description": null,
@@ -68144,6 +68176,53 @@
68144
68176
  "enumValues": null,
68145
68177
  "possibleTypes": null
68146
68178
  },
68179
+ {
68180
+ "kind": "ENUM",
68181
+ "name": "SubscriptionInvoiceBillingReason",
68182
+ "description": "The reason the billing event was created.",
68183
+ "fields": null,
68184
+ "inputFields": null,
68185
+ "interfaces": null,
68186
+ "enumValues": [
68187
+ {
68188
+ "name": "BILLING_CYCLE",
68189
+ "description": "A subscription advanced into a new billing cycle.",
68190
+ "isDeprecated": false,
68191
+ "deprecationReason": null
68192
+ },
68193
+ {
68194
+ "name": "MANUAL",
68195
+ "description": "An invoice was created manually.",
68196
+ "isDeprecated": false,
68197
+ "deprecationReason": null
68198
+ },
68199
+ {
68200
+ "name": "MINIMUM_INVOICE_AMOUNT_EXCEEDED",
68201
+ "description": "A subscription passed the minimum invoice amount",
68202
+ "isDeprecated": false,
68203
+ "deprecationReason": null
68204
+ },
68205
+ {
68206
+ "name": "OTHER",
68207
+ "description": "An invoice was created for another reason.",
68208
+ "isDeprecated": false,
68209
+ "deprecationReason": null
68210
+ },
68211
+ {
68212
+ "name": "SUBSCRIPTION_CREATION",
68213
+ "description": "A subscription was created.",
68214
+ "isDeprecated": false,
68215
+ "deprecationReason": null
68216
+ },
68217
+ {
68218
+ "name": "SUBSCRIPTION_UPDATE",
68219
+ "description": "A subscription was updated.",
68220
+ "isDeprecated": false,
68221
+ "deprecationReason": null
68222
+ }
68223
+ ],
68224
+ "possibleTypes": null
68225
+ },
68147
68226
  {
68148
68227
  "kind": "ENUM",
68149
68228
  "name": "SubscriptionInvoiceStatus",
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "1.150.1"
4
+ VERSION = "1.156.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: 1.150.1
4
+ version: 1.156.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-18 00:00:00.000000000 Z
11
+ date: 2024-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient