stigg-api-client 2.99.1 → 2.100.2

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: 1faa4a7053687a5829c4606112d58c529535072a85762d97f7469b0871de96d6
4
- data.tar.gz: ee83d3971dd48291d1aa12a55efea8caa107cac6fb6348ed14f83c839cfd5c42
3
+ metadata.gz: e40fe719391d51f74abea32d611148ed3b493bc294b587df7956ea4367b54663
4
+ data.tar.gz: 04d692dae1742deee65d3ccddc8b77108de91cf0e271506ce66175eb538f860f
5
5
  SHA512:
6
- metadata.gz: 611db9b30cb25ce87b6d6608bb08f57c07aa44e7294a85f9a098c3623439be3222a175782d3e00798701f36004889bc12c061618a8868e657561e4371aaa1885
7
- data.tar.gz: a7bde9b8ef8a84efb0371720da150f0822675d8c516bfde97819a4d99c25030b24843b6a58b8594b2191287d432864e4c547b1902587b8a83cefbe2eb1b7f2cf
6
+ metadata.gz: 41eb064d74070501586f4a64d69f238cd3a39800790b46d7f7474879bd038e32d125db9549c9b3ef37fed7669c9c42ce5ff3b41f44cd30a3b95421272421f98a
7
+ data.tar.gz: 6aa7730cbbb83fcf07c8faea08922dd26e1446f6acf25a522c3a172d06fdde50073a3a2e01339db34acec1632752690ff80d50a13d0cb1aef8f68b85da9e8b26
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (2.99.1)
4
+ stigg-api-client (2.100.2)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -235,6 +235,9 @@ module Stigg
235
235
  customer {
236
236
  customerId
237
237
  }
238
+ payingCustomer {
239
+ customerId
240
+ }
238
241
  resource {
239
242
  resourceId
240
243
  }
@@ -274,8 +277,8 @@ module Stigg
274
277
  experimentInfo {
275
278
  name
276
279
  id
277
- groupName
278
280
  groupType
281
+ groupName
279
282
  }
280
283
  prices {
281
284
  usageLimit
@@ -362,6 +365,9 @@ module Stigg
362
365
  fragment SubscriptionFragment on CustomerSubscription {
363
366
  id
364
367
  subscriptionId
368
+ payingCustomer {
369
+ ...SlimCustomerFragment
370
+ }
365
371
  startDate
366
372
  endDate
367
373
  trialEndDate
@@ -1633,6 +1639,7 @@ module Stigg
1633
1639
  }
1634
1640
  #{Fragment::ApplySubscriptionFragment}
1635
1641
  #{Fragment::SubscriptionFragment}
1642
+ #{Fragment::SlimCustomerFragment}
1636
1643
  #{Fragment::SubscriptionInvoiceFragment}
1637
1644
  #{Fragment::CustomerResourceFragment}
1638
1645
  #{Fragment::PriceFragment}
@@ -1869,6 +1876,7 @@ module Stigg
1869
1876
  }
1870
1877
  }
1871
1878
  #{Fragment::SubscriptionFragment}
1879
+ #{Fragment::SlimCustomerFragment}
1872
1880
  #{Fragment::SubscriptionInvoiceFragment}
1873
1881
  #{Fragment::CustomerResourceFragment}
1874
1882
  #{Fragment::PriceFragment}
@@ -1902,6 +1910,7 @@ module Stigg
1902
1910
  }
1903
1911
  }
1904
1912
  #{Fragment::SubscriptionFragment}
1913
+ #{Fragment::SlimCustomerFragment}
1905
1914
  #{Fragment::SubscriptionInvoiceFragment}
1906
1915
  #{Fragment::CustomerResourceFragment}
1907
1916
  #{Fragment::PriceFragment}
@@ -3420,6 +3420,18 @@
3420
3420
  "isDeprecated": false,
3421
3421
  "deprecationReason": null
3422
3422
  },
3423
+ {
3424
+ "name": "payingCustomerId",
3425
+ "description": null,
3426
+ "type": {
3427
+ "kind": "SCALAR",
3428
+ "name": "String",
3429
+ "ofType": null
3430
+ },
3431
+ "defaultValue": null,
3432
+ "isDeprecated": false,
3433
+ "deprecationReason": null
3434
+ },
3423
3435
  {
3424
3436
  "name": "paymentCollectionMethod",
3425
3437
  "description": "Subscription payment collection method",
@@ -6084,6 +6096,81 @@
6084
6096
  ],
6085
6097
  "possibleTypes": null
6086
6098
  },
6099
+ {
6100
+ "kind": "OBJECT",
6101
+ "name": "ChangingPayingCustomerIsNotSupportedError",
6102
+ "description": null,
6103
+ "fields": [
6104
+ {
6105
+ "name": "code",
6106
+ "description": null,
6107
+ "args": [],
6108
+ "type": {
6109
+ "kind": "NON_NULL",
6110
+ "name": null,
6111
+ "ofType": {
6112
+ "kind": "SCALAR",
6113
+ "name": "String",
6114
+ "ofType": null
6115
+ }
6116
+ },
6117
+ "isDeprecated": false,
6118
+ "deprecationReason": null
6119
+ },
6120
+ {
6121
+ "name": "currentPayingCustomerId",
6122
+ "description": null,
6123
+ "args": [],
6124
+ "type": {
6125
+ "kind": "NON_NULL",
6126
+ "name": null,
6127
+ "ofType": {
6128
+ "kind": "SCALAR",
6129
+ "name": "String",
6130
+ "ofType": null
6131
+ }
6132
+ },
6133
+ "isDeprecated": false,
6134
+ "deprecationReason": null
6135
+ },
6136
+ {
6137
+ "name": "isValidationError",
6138
+ "description": null,
6139
+ "args": [],
6140
+ "type": {
6141
+ "kind": "NON_NULL",
6142
+ "name": null,
6143
+ "ofType": {
6144
+ "kind": "SCALAR",
6145
+ "name": "Boolean",
6146
+ "ofType": null
6147
+ }
6148
+ },
6149
+ "isDeprecated": false,
6150
+ "deprecationReason": null
6151
+ },
6152
+ {
6153
+ "name": "newPayingCustomerId",
6154
+ "description": null,
6155
+ "args": [],
6156
+ "type": {
6157
+ "kind": "NON_NULL",
6158
+ "name": null,
6159
+ "ofType": {
6160
+ "kind": "SCALAR",
6161
+ "name": "String",
6162
+ "ofType": null
6163
+ }
6164
+ },
6165
+ "isDeprecated": false,
6166
+ "deprecationReason": null
6167
+ }
6168
+ ],
6169
+ "inputFields": null,
6170
+ "interfaces": [],
6171
+ "enumValues": null,
6172
+ "possibleTypes": null
6173
+ },
6087
6174
  {
6088
6175
  "kind": "OBJECT",
6089
6176
  "name": "ChargeSubscriptionUsage",
@@ -16671,6 +16758,18 @@
16671
16758
  "isDeprecated": false,
16672
16759
  "deprecationReason": null
16673
16760
  },
16761
+ {
16762
+ "name": "payingCustomer",
16763
+ "description": null,
16764
+ "args": [],
16765
+ "type": {
16766
+ "kind": "OBJECT",
16767
+ "name": "Customer",
16768
+ "ofType": null
16769
+ },
16770
+ "isDeprecated": false,
16771
+ "deprecationReason": null
16772
+ },
16674
16773
  {
16675
16774
  "name": "paymentCollection",
16676
16775
  "description": null,
@@ -17953,6 +18052,18 @@
17953
18052
  "isDeprecated": false,
17954
18053
  "deprecationReason": null
17955
18054
  },
18055
+ {
18056
+ "name": "payingCustomer",
18057
+ "description": null,
18058
+ "type": {
18059
+ "kind": "INPUT_OBJECT",
18060
+ "name": "CustomerSubscriptionFilterCustomerFilter",
18061
+ "ofType": null
18062
+ },
18063
+ "defaultValue": null,
18064
+ "isDeprecated": false,
18065
+ "deprecationReason": null
18066
+ },
17956
18067
  {
17957
18068
  "name": "paymentCollection",
17958
18069
  "description": null,
@@ -23713,6 +23824,12 @@
23713
23824
  "isDeprecated": false,
23714
23825
  "deprecationReason": null
23715
23826
  },
23827
+ {
23828
+ "name": "ChangingPayingCustomerIsNotSupportedError",
23829
+ "description": "Changing paying customer is not supported",
23830
+ "isDeprecated": false,
23831
+ "deprecationReason": null
23832
+ },
23716
23833
  {
23717
23834
  "name": "CheckoutIsNotSupported",
23718
23835
  "description": null,
@@ -60292,6 +60409,18 @@
60292
60409
  "isDeprecated": false,
60293
60410
  "deprecationReason": null
60294
60411
  },
60412
+ {
60413
+ "name": "payingCustomerId",
60414
+ "description": null,
60415
+ "type": {
60416
+ "kind": "SCALAR",
60417
+ "name": "String",
60418
+ "ofType": null
60419
+ },
60420
+ "defaultValue": null,
60421
+ "isDeprecated": false,
60422
+ "deprecationReason": null
60423
+ },
60295
60424
  {
60296
60425
  "name": "paymentCollectionMethod",
60297
60426
  "description": "Subscription payment collection method",
@@ -60679,6 +60808,18 @@
60679
60808
  "isDeprecated": false,
60680
60809
  "deprecationReason": null
60681
60810
  },
60811
+ {
60812
+ "name": "payingCustomerId",
60813
+ "description": null,
60814
+ "type": {
60815
+ "kind": "SCALAR",
60816
+ "name": "String",
60817
+ "ofType": null
60818
+ },
60819
+ "defaultValue": null,
60820
+ "isDeprecated": false,
60821
+ "deprecationReason": null
60822
+ },
60682
60823
  {
60683
60824
  "name": "paymentCollectionMethod",
60684
60825
  "description": "Subscription payment collection method",
@@ -70600,6 +70741,18 @@
70600
70741
  "isDeprecated": false,
70601
70742
  "deprecationReason": null
70602
70743
  },
70744
+ {
70745
+ "name": "payingCustomerId",
70746
+ "description": null,
70747
+ "type": {
70748
+ "kind": "SCALAR",
70749
+ "name": "String",
70750
+ "ofType": null
70751
+ },
70752
+ "defaultValue": null,
70753
+ "isDeprecated": false,
70754
+ "deprecationReason": null
70755
+ },
70603
70756
  {
70604
70757
  "name": "paymentCollectionMethod",
70605
70758
  "description": "Subscription payment collection method",
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "2.99.1"
4
+ VERSION = "2.100.2"
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: 2.99.1
4
+ version: 2.100.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-28 00:00:00.000000000 Z
11
+ date: 2024-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient