stigg-api-client 0.615.0 → 0.626.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: 635b588015292cbdbcd4cf7613433e3289e65cbe68608a3b59e188d93d9cebeb
4
- data.tar.gz: 6a625f8c98bf53d48e60210a2d9f4bf56ded0754b4437f9f7d17e3c80acb42aa
3
+ metadata.gz: f34e674820fd8597c419236e52fffcaeb3210d789771ce105694417d566e1554
4
+ data.tar.gz: f64e2ed349e720c0684a0d861b5cfe32eaff8f1d599f6687ee248b66d80cd0b2
5
5
  SHA512:
6
- metadata.gz: 3ccf33bb5b16b945645ece03fb0c2830f7884c54cd997f148e1df04c8732e5c28c83464bc81c7a20adb2773ac8ff83edd6c2e5bda6645d1235f51078b47f7b13
7
- data.tar.gz: b9bc2e102c6d9fb720de824232e259444ff0f49be09edce6217bfca5b190b1d122a4f84c981dca461049cff2d2dbd0dced4e0926a3a9e67fed46eabf92a1263b
6
+ metadata.gz: 90bbf9771231248f29fe07886bdc3e18ccade34d596faa49e41c7b17702dc11b889f9a10d8a1d0a54f9fd28e8036c3aac73e527c0c124690b2f6ad73ca597c3b
7
+ data.tar.gz: a04f73da47011637b7be3ba229e5ef09a0d115a6c7b8ab1206d09ae56d04b5391e791fae21a0b5ec34cf4c9b82bc22cc97e1b1e9a7fd65ed37becbf32ecc9347
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.615.0)
4
+ stigg-api-client (0.626.0)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql (< 2.1)
7
7
 
@@ -172,6 +172,7 @@ module Stigg
172
172
  ...SubscriptionInvoiceFragment
173
173
  }
174
174
  paymentCollection
175
+ billingSyncError
175
176
  resource {
176
177
  ...CustomerResourceFragment
177
178
  }
@@ -301,6 +302,7 @@ module Stigg
301
302
  ...SubscriptionInvoiceFragment
302
303
  }
303
304
  paymentCollection
305
+ billingSyncError
304
306
  resource {
305
307
  ...CustomerResourceFragment
306
308
  }
@@ -1432,6 +1434,15 @@ module Stigg
1432
1434
  }
1433
1435
  GRAPHQL
1434
1436
 
1437
+ UnarchiveCustomer = <<~GRAPHQL
1438
+ mutation ($input: UnarchiveCustomerInput!) {
1439
+ unarchiveCustomer(input: $input) {
1440
+ ...SlimCustomerFragment
1441
+ }
1442
+ }
1443
+ #{Fragment::SlimCustomerFragment}
1444
+ GRAPHQL
1445
+
1435
1446
  TransferSubscription = <<~GRAPHQL
1436
1447
  mutation ($input: TransferSubscriptionInput!) {
1437
1448
  transferSubscription(input: $input) {
@@ -34769,6 +34769,39 @@
34769
34769
  "isDeprecated": false,
34770
34770
  "deprecationReason": null
34771
34771
  },
34772
+ {
34773
+ "name": "unarchiveCustomer",
34774
+ "description": null,
34775
+ "args": [
34776
+ {
34777
+ "name": "input",
34778
+ "description": null,
34779
+ "type": {
34780
+ "kind": "NON_NULL",
34781
+ "name": null,
34782
+ "ofType": {
34783
+ "kind": "INPUT_OBJECT",
34784
+ "name": "UnarchiveCustomerInput",
34785
+ "ofType": null
34786
+ }
34787
+ },
34788
+ "defaultValue": null,
34789
+ "isDeprecated": false,
34790
+ "deprecationReason": null
34791
+ }
34792
+ ],
34793
+ "type": {
34794
+ "kind": "NON_NULL",
34795
+ "name": null,
34796
+ "ofType": {
34797
+ "kind": "OBJECT",
34798
+ "name": "Customer",
34799
+ "ofType": null
34800
+ }
34801
+ },
34802
+ "isDeprecated": false,
34803
+ "deprecationReason": null
34804
+ },
34772
34805
  {
34773
34806
  "name": "updateAccount",
34774
34807
  "description": null,
@@ -63139,6 +63172,45 @@
63139
63172
  "enumValues": null,
63140
63173
  "possibleTypes": null
63141
63174
  },
63175
+ {
63176
+ "kind": "INPUT_OBJECT",
63177
+ "name": "UnarchiveCustomerInput",
63178
+ "description": null,
63179
+ "fields": null,
63180
+ "inputFields": [
63181
+ {
63182
+ "name": "customerId",
63183
+ "description": null,
63184
+ "type": {
63185
+ "kind": "NON_NULL",
63186
+ "name": null,
63187
+ "ofType": {
63188
+ "kind": "SCALAR",
63189
+ "name": "String",
63190
+ "ofType": null
63191
+ }
63192
+ },
63193
+ "defaultValue": null,
63194
+ "isDeprecated": false,
63195
+ "deprecationReason": null
63196
+ },
63197
+ {
63198
+ "name": "environmentId",
63199
+ "description": null,
63200
+ "type": {
63201
+ "kind": "SCALAR",
63202
+ "name": "String",
63203
+ "ofType": null
63204
+ },
63205
+ "defaultValue": null,
63206
+ "isDeprecated": false,
63207
+ "deprecationReason": null
63208
+ }
63209
+ ],
63210
+ "interfaces": null,
63211
+ "enumValues": null,
63212
+ "possibleTypes": null
63213
+ },
63142
63214
  {
63143
63215
  "kind": "OBJECT",
63144
63216
  "name": "UncompatibleSubscriptionAddonError",
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.615.0"
4
+ VERSION = "0.626.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: 0.615.0
4
+ version: 0.626.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-05 00:00:00.000000000 Z
11
+ date: 2023-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient