stigg-api-client 0.615.1 → 0.627.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: 64ae7ca1f1f3bbcadf874c15e7b00ab2e453f13dd1fbb11627b15b38f7aba8e1
4
- data.tar.gz: 4738534b0a90e64c151e113f45340fa3289d4c0ee17ace3771ce123c0646d002
3
+ metadata.gz: ec01137f7b430a1757282b7091e425de8d5d3aaf9be85079e3db20267240b279
4
+ data.tar.gz: '092e430d024d449572b089b264a4ca1fc7d5ae3747306068113cc39a5cf0bf15'
5
5
  SHA512:
6
- metadata.gz: 1685e2813444def9c176905d906d31a6f8ad59bf048ce09fedddb84945fed39af3b5aee3627c3ab47c2126cd48f1e26a0dc2db7e7bbb3ee5446cfd272cbdb7d7
7
- data.tar.gz: d87eb6147241847cb0f8a4e23fa987b3770ff57892f860b41f23969af485fcfd6551452c9320a8cd4aeb3e8913de4ef6a71de604fcfd9e9001aa1ed9d4308757
6
+ metadata.gz: c3c6df00bdd093b0f2b9a6fabd42862f1f7969ce42d6ab6602d6b790f6a98530b94dc4c918f5a7a9f2363a7f570e9d6d2a593d5845ddbba381a72eca675b627b
7
+ data.tar.gz: ed9adaeff2a5e2f16d3b6db615db217ad01130c288fb0dbf57bb3f79401922ff191078cfd428bffc91527dae996426d333ece6af151d01f3f7d8e1703118dd2c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (0.615.1)
4
+ stigg-api-client (0.627.0)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql (< 2.1)
7
7
 
@@ -1434,6 +1434,15 @@ module Stigg
1434
1434
  }
1435
1435
  GRAPHQL
1436
1436
 
1437
+ UnarchiveCustomer = <<~GRAPHQL
1438
+ mutation ($input: UnarchiveCustomerInput!) {
1439
+ unarchiveCustomer(input: $input) {
1440
+ ...SlimCustomerFragment
1441
+ }
1442
+ }
1443
+ #{Fragment::SlimCustomerFragment}
1444
+ GRAPHQL
1445
+
1437
1446
  TransferSubscription = <<~GRAPHQL
1438
1447
  mutation ($input: TransferSubscriptionInput!) {
1439
1448
  transferSubscription(input: $input) {
@@ -3364,6 +3364,41 @@
3364
3364
  "enumValues": null,
3365
3365
  "possibleTypes": null
3366
3366
  },
3367
+ {
3368
+ "kind": "INPUT_OBJECT",
3369
+ "name": "ArchiveEnvironmentInput",
3370
+ "description": null,
3371
+ "fields": null,
3372
+ "inputFields": [
3373
+ {
3374
+ "name": "id",
3375
+ "description": null,
3376
+ "type": {
3377
+ "kind": "SCALAR",
3378
+ "name": "String",
3379
+ "ofType": null
3380
+ },
3381
+ "defaultValue": null,
3382
+ "isDeprecated": false,
3383
+ "deprecationReason": null
3384
+ },
3385
+ {
3386
+ "name": "slug",
3387
+ "description": null,
3388
+ "type": {
3389
+ "kind": "SCALAR",
3390
+ "name": "String",
3391
+ "ofType": null
3392
+ },
3393
+ "defaultValue": null,
3394
+ "isDeprecated": false,
3395
+ "deprecationReason": null
3396
+ }
3397
+ ],
3398
+ "interfaces": null,
3399
+ "enumValues": null,
3400
+ "possibleTypes": null
3401
+ },
3367
3402
  {
3368
3403
  "kind": "INPUT_OBJECT",
3369
3404
  "name": "ArchivePlanInput",
@@ -31986,6 +32021,39 @@
31986
32021
  "isDeprecated": false,
31987
32022
  "deprecationReason": null
31988
32023
  },
32024
+ {
32025
+ "name": "archiveEnvironment",
32026
+ "description": null,
32027
+ "args": [
32028
+ {
32029
+ "name": "input",
32030
+ "description": null,
32031
+ "type": {
32032
+ "kind": "NON_NULL",
32033
+ "name": null,
32034
+ "ofType": {
32035
+ "kind": "INPUT_OBJECT",
32036
+ "name": "ArchiveEnvironmentInput",
32037
+ "ofType": null
32038
+ }
32039
+ },
32040
+ "defaultValue": null,
32041
+ "isDeprecated": false,
32042
+ "deprecationReason": null
32043
+ }
32044
+ ],
32045
+ "type": {
32046
+ "kind": "NON_NULL",
32047
+ "name": null,
32048
+ "ofType": {
32049
+ "kind": "OBJECT",
32050
+ "name": "Environment",
32051
+ "ofType": null
32052
+ }
32053
+ },
32054
+ "isDeprecated": false,
32055
+ "deprecationReason": null
32056
+ },
31989
32057
  {
31990
32058
  "name": "archiveOneCoupon",
31991
32059
  "description": null,
@@ -34769,6 +34837,72 @@
34769
34837
  "isDeprecated": false,
34770
34838
  "deprecationReason": null
34771
34839
  },
34840
+ {
34841
+ "name": "unarchiveCustomer",
34842
+ "description": null,
34843
+ "args": [
34844
+ {
34845
+ "name": "input",
34846
+ "description": null,
34847
+ "type": {
34848
+ "kind": "NON_NULL",
34849
+ "name": null,
34850
+ "ofType": {
34851
+ "kind": "INPUT_OBJECT",
34852
+ "name": "UnarchiveCustomerInput",
34853
+ "ofType": null
34854
+ }
34855
+ },
34856
+ "defaultValue": null,
34857
+ "isDeprecated": false,
34858
+ "deprecationReason": null
34859
+ }
34860
+ ],
34861
+ "type": {
34862
+ "kind": "NON_NULL",
34863
+ "name": null,
34864
+ "ofType": {
34865
+ "kind": "OBJECT",
34866
+ "name": "Customer",
34867
+ "ofType": null
34868
+ }
34869
+ },
34870
+ "isDeprecated": false,
34871
+ "deprecationReason": null
34872
+ },
34873
+ {
34874
+ "name": "unarchiveEnvironment",
34875
+ "description": null,
34876
+ "args": [
34877
+ {
34878
+ "name": "input",
34879
+ "description": null,
34880
+ "type": {
34881
+ "kind": "NON_NULL",
34882
+ "name": null,
34883
+ "ofType": {
34884
+ "kind": "INPUT_OBJECT",
34885
+ "name": "UnarchiveEnvironmentInput",
34886
+ "ofType": null
34887
+ }
34888
+ },
34889
+ "defaultValue": null,
34890
+ "isDeprecated": false,
34891
+ "deprecationReason": null
34892
+ }
34893
+ ],
34894
+ "type": {
34895
+ "kind": "NON_NULL",
34896
+ "name": null,
34897
+ "ofType": {
34898
+ "kind": "OBJECT",
34899
+ "name": "Environment",
34900
+ "ofType": null
34901
+ }
34902
+ },
34903
+ "isDeprecated": false,
34904
+ "deprecationReason": null
34905
+ },
34772
34906
  {
34773
34907
  "name": "updateAccount",
34774
34908
  "description": null,
@@ -63139,6 +63273,80 @@
63139
63273
  "enumValues": null,
63140
63274
  "possibleTypes": null
63141
63275
  },
63276
+ {
63277
+ "kind": "INPUT_OBJECT",
63278
+ "name": "UnarchiveCustomerInput",
63279
+ "description": null,
63280
+ "fields": null,
63281
+ "inputFields": [
63282
+ {
63283
+ "name": "customerId",
63284
+ "description": null,
63285
+ "type": {
63286
+ "kind": "NON_NULL",
63287
+ "name": null,
63288
+ "ofType": {
63289
+ "kind": "SCALAR",
63290
+ "name": "String",
63291
+ "ofType": null
63292
+ }
63293
+ },
63294
+ "defaultValue": null,
63295
+ "isDeprecated": false,
63296
+ "deprecationReason": null
63297
+ },
63298
+ {
63299
+ "name": "environmentId",
63300
+ "description": null,
63301
+ "type": {
63302
+ "kind": "SCALAR",
63303
+ "name": "String",
63304
+ "ofType": null
63305
+ },
63306
+ "defaultValue": null,
63307
+ "isDeprecated": false,
63308
+ "deprecationReason": null
63309
+ }
63310
+ ],
63311
+ "interfaces": null,
63312
+ "enumValues": null,
63313
+ "possibleTypes": null
63314
+ },
63315
+ {
63316
+ "kind": "INPUT_OBJECT",
63317
+ "name": "UnarchiveEnvironmentInput",
63318
+ "description": null,
63319
+ "fields": null,
63320
+ "inputFields": [
63321
+ {
63322
+ "name": "id",
63323
+ "description": null,
63324
+ "type": {
63325
+ "kind": "SCALAR",
63326
+ "name": "String",
63327
+ "ofType": null
63328
+ },
63329
+ "defaultValue": null,
63330
+ "isDeprecated": false,
63331
+ "deprecationReason": null
63332
+ },
63333
+ {
63334
+ "name": "slug",
63335
+ "description": null,
63336
+ "type": {
63337
+ "kind": "SCALAR",
63338
+ "name": "String",
63339
+ "ofType": null
63340
+ },
63341
+ "defaultValue": null,
63342
+ "isDeprecated": false,
63343
+ "deprecationReason": null
63344
+ }
63345
+ ],
63346
+ "interfaces": null,
63347
+ "enumValues": null,
63348
+ "possibleTypes": null
63349
+ },
63142
63350
  {
63143
63351
  "kind": "OBJECT",
63144
63352
  "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.1"
4
+ VERSION = "0.627.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.1
4
+ version: 0.627.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