billfixers-partner 1.1.0 → 1.1.5

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: d53a90d8b2d8baf0d1d69d6c76c7cb5050c68e83dc2a4a768aab05ce83127dd5
4
- data.tar.gz: '0085f538e06226e2c05968d4d8f2994ffd3f14a3d985323a623dc723886884d9'
3
+ metadata.gz: 887f18bf6add9dbdc5341d7de66b397bf53109b68c26691acb0146769ffd7ec5
4
+ data.tar.gz: d83744410ed12949d30ca8f23d57bb75ebdf18e3139b4919a84c10a4eb18c18e
5
5
  SHA512:
6
- metadata.gz: a365323e7fb244046c62424bc8cbc003552dc77ac5007cafedbc465ee0ddacb5be5d7b21dc556041d60934566c2703240c75e656a2d18ed337c76d201f421365
7
- data.tar.gz: cc80f1cc5c56f5d84f65f205166c6626291472777503f7df79b1ae7f1094ea12f087c08264324e9db755df6151306d4f6222364cb26c20e8526e83f43c7841d7
6
+ metadata.gz: 7798be4bed60d48593fb40529267c189dd965a0297e1f78b574bcee68c8445b8b7d94de99c48b5aaba9640c9979fb97ad79492ea122335c80600d9ca93e81513
7
+ data.tar.gz: bed72fc93e2a90264adaa10d9423e433445f64022f03cfd45be6a2ee9e0ae6b2c6bee873453e545e3e63b564b97e672ce7ba04810482ac8e25888518da36aaa4
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ .byebug_history
data/Gemfile CHANGED
@@ -10,3 +10,8 @@ gem 'graphlient'
10
10
  gem 'minitest', '~> 5.0'
11
11
  gem 'rake', '~> 12.0'
12
12
  gem 'webmock'
13
+
14
+ group :development, :test do
15
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
16
+ gem 'byebug', platform: :mri
17
+ end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- billfixers-partner (1.0.0)
4
+ billfixers-partner (1.1.4)
5
5
  activesupport
6
6
  graphlient
7
7
 
@@ -16,6 +16,7 @@ GEM
16
16
  zeitwerk (~> 2.2, >= 2.2.2)
17
17
  addressable (2.7.0)
18
18
  public_suffix (>= 2.0.2, < 5.0)
19
+ byebug (11.1.3)
19
20
  concurrent-ruby (1.1.7)
20
21
  crack (0.4.3)
21
22
  safe_yaml (~> 1.0.0)
@@ -54,6 +55,7 @@ PLATFORMS
54
55
  DEPENDENCIES
55
56
  activesupport
56
57
  billfixers-partner!
58
+ byebug
57
59
  graphlient
58
60
  minitest (~> 5.0)
59
61
  rake (~> 12.0)
@@ -115,10 +115,20 @@ module Billfixers
115
115
  result.bill
116
116
  end
117
117
 
118
- def cancel_bill(bill_id)
119
- response = @gql.query(CANCEL_BILL_MUTATION, { id: bill_id })
118
+ def renegotiate_bill(bill_id)
119
+ response = @gql.query(RENEGOTIATE_BILL_MUTATION, { id: bill_id })
120
120
 
121
- response.data.cancel_bill.success
121
+ response.data.renegotiate_bill
122
+ end
123
+
124
+ def stop_negotiating(bill_id)
125
+ response = @gql.query(STOP_NEGOTIATING_MUTATION, { id: bill_id })
126
+
127
+ result = response.data.stop_negotiating
128
+
129
+ raise Error, result.errors.join(' ') unless result.success
130
+
131
+ result
122
132
  end
123
133
 
124
134
  def accept_offer(offer_id)
@@ -155,6 +165,18 @@ module Billfixers
155
165
  result.information_request
156
166
  end
157
167
 
168
+ def calculate_savings_estimate(provider_id, current_monthly_payment)
169
+ response = @gql.query(
170
+ CALCULATE_SAVINGS_ESTIMATE,
171
+ {
172
+ provider_id: provider_id,
173
+ current_monthly_amount: current_monthly_payment
174
+ }
175
+ )
176
+
177
+ response.data.calculate_savings_estimate
178
+ end
179
+
158
180
  private
159
181
 
160
182
  def camelize(hsh)
@@ -7,6 +7,11 @@ module Billfixers
7
7
  name
8
8
  services
9
9
  billFields
10
+ logo {
11
+ thumbnailUrl
12
+ smallUrl
13
+ mediumUrl
14
+ }
10
15
  )
11
16
 
12
17
  CUSTOMER_FRAGMENT = %(
@@ -60,6 +65,7 @@ module Billfixers
60
65
  status
61
66
  content
62
67
  contentHtml
68
+ daysUntilExpiration
63
69
  createdAt
64
70
  updatedAt
65
71
  acceptedAt
@@ -214,10 +220,26 @@ module Billfixers
214
220
  }
215
221
  )
216
222
 
217
- CANCEL_BILL_MUTATION = %(
223
+ STOP_NEGOTIATING_MUTATION = %(
218
224
  mutation($id: ID!) {
219
- CancelBill(input: { id: $id }) {
225
+ StopNegotiating(input: { id: $id }) {
220
226
  success
227
+ errors
228
+ bill {
229
+ #{BILL_FRAGMENT}
230
+ }
231
+ }
232
+ }
233
+ )
234
+
235
+ RENEGOTIATE_BILL_MUTATION = %(
236
+ mutation($id: ID!) {
237
+ RenegotiateBill(input: { id: $id }) {
238
+ success
239
+ errors
240
+ bill {
241
+ #{BILL_FRAGMENT}
242
+ }
221
243
  }
222
244
  }
223
245
  )
@@ -260,5 +282,27 @@ module Billfixers
260
282
  }
261
283
  }
262
284
  )
285
+
286
+ CALCULATE_SAVINGS_ESTIMATE = %(
287
+ query(
288
+ $providerId: ID!
289
+ $currentMonthlyAmount: Float!
290
+ ) {
291
+ CalculateSavingsEstimate {
292
+ estimatedAnnualSavings(
293
+ providerId: $providerId
294
+ currentMonthlyAmount: $currentMonthlyAmount
295
+ )
296
+ estimatedMonthlySavings(
297
+ providerId: $providerId
298
+ currentMonthlyAmount: $currentMonthlyAmount
299
+ )
300
+ percentageSavings(
301
+ providerId: $providerId
302
+ currentMonthlyAmount: $currentMonthlyAmount
303
+ )
304
+ }
305
+ }
306
+ )
263
307
  end
264
308
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Billfixers
4
4
  module Partner
5
- VERSION = '1.1.0'
5
+ VERSION = '1.1.5'
6
6
  end
7
7
  end
data/partner_schema.json CHANGED
@@ -52,9 +52,7 @@
52
52
  {
53
53
  "name": "clientMutationId",
54
54
  "description": "A unique identifier for the client performing the mutation.",
55
- "args": [
56
-
57
- ],
55
+ "args": [],
58
56
  "type": {
59
57
  "kind": "SCALAR",
60
58
  "name": "String",
@@ -66,9 +64,7 @@
66
64
  {
67
65
  "name": "errors",
68
66
  "description": null,
69
- "args": [
70
-
71
- ],
67
+ "args": [],
72
68
  "type": {
73
69
  "kind": "NON_NULL",
74
70
  "name": null,
@@ -92,9 +88,7 @@
92
88
  {
93
89
  "name": "offer",
94
90
  "description": null,
95
- "args": [
96
-
97
- ],
91
+ "args": [],
98
92
  "type": {
99
93
  "kind": "OBJECT",
100
94
  "name": "Offer",
@@ -106,9 +100,7 @@
106
100
  {
107
101
  "name": "success",
108
102
  "description": null,
109
- "args": [
110
-
111
- ],
103
+ "args": [],
112
104
  "type": {
113
105
  "kind": "NON_NULL",
114
106
  "name": null,
@@ -123,9 +115,7 @@
123
115
  }
124
116
  ],
125
117
  "inputFields": null,
126
- "interfaces": [
127
-
128
- ],
118
+ "interfaces": [],
129
119
  "enumValues": null,
130
120
  "possibleTypes": null
131
121
  },
@@ -134,12 +124,54 @@
134
124
  "name": "Bill",
135
125
  "description": null,
136
126
  "fields": [
127
+ {
128
+ "name": "allowsContract",
129
+ "description": "",
130
+ "args": [],
131
+ "type": {
132
+ "kind": "NON_NULL",
133
+ "name": null,
134
+ "ofType": {
135
+ "kind": "SCALAR",
136
+ "name": "Boolean",
137
+ "ofType": null
138
+ }
139
+ },
140
+ "isDeprecated": false,
141
+ "deprecationReason": null
142
+ },
143
+ {
144
+ "name": "autoRenegotiate",
145
+ "description": "",
146
+ "args": [],
147
+ "type": {
148
+ "kind": "NON_NULL",
149
+ "name": null,
150
+ "ofType": {
151
+ "kind": "SCALAR",
152
+ "name": "Boolean",
153
+ "ofType": null
154
+ }
155
+ },
156
+ "isDeprecated": false,
157
+ "deprecationReason": null
158
+ },
159
+ {
160
+ "name": "cancelledAt",
161
+ "description": "The date the bill negotiations were cancelled, if present",
162
+ "args": [],
163
+ "type": {
164
+ "kind": "SCALAR",
165
+ "name": "DateTime",
166
+ "ofType": null
167
+ },
168
+ "isDeprecated": false,
169
+ "deprecationReason": null
170
+ },
137
171
  {
138
172
  "name": "createdAt",
139
173
  "description": "The date the record was created",
140
- "args": [
141
-
142
- ],
174
+ "args": [],
143
175
  "type": {
144
176
  "kind": "NON_NULL",
145
177
  "name": null,
@@ -155,9 +187,7 @@
155
187
  {
156
188
  "name": "customer",
157
189
  "description": null,
158
- "args": [
159
-
160
- ],
190
+ "args": [],
161
191
  "type": {
162
192
  "kind": "NON_NULL",
163
193
  "name": null,
@@ -173,9 +203,7 @@
173
203
  {
174
204
  "name": "customerId",
175
205
  "description": "Billfixer's alpha-numeric Customer ID",
176
- "args": [
177
-
178
- ],
206
+ "args": [],
179
207
  "type": {
180
208
  "kind": "NON_NULL",
181
209
  "name": null,
@@ -191,9 +219,7 @@
191
219
  {
192
220
  "name": "id",
193
221
  "description": "Alpha-numeric unique identifier",
194
- "args": [
195
-
196
- ],
222
+ "args": [],
197
223
  "type": {
198
224
  "kind": "NON_NULL",
199
225
  "name": null,
@@ -209,9 +235,7 @@
209
235
  {
210
236
  "name": "items",
211
237
  "description": "The items on the bill",
212
- "args": [
213
-
214
- ],
238
+ "args": [],
215
239
  "type": {
216
240
  "kind": "NON_NULL",
217
241
  "name": null,
@@ -235,9 +259,7 @@
235
259
  {
236
260
  "name": "offers",
237
261
  "description": null,
238
- "args": [
239
-
240
- ],
262
+ "args": [],
241
263
  "type": {
242
264
  "kind": "NON_NULL",
243
265
  "name": null,
@@ -261,9 +283,7 @@
261
283
  {
262
284
  "name": "provider",
263
285
  "description": null,
264
- "args": [
265
-
266
- ],
286
+ "args": [],
267
287
  "type": {
268
288
  "kind": "NON_NULL",
269
289
  "name": null,
@@ -279,9 +299,7 @@
279
299
  {
280
300
  "name": "providerId",
281
301
  "description": "Billfixer's alpha-numeric Provider ID",
282
- "args": [
283
-
284
- ],
302
+ "args": [],
285
303
  "type": {
286
304
  "kind": "NON_NULL",
287
305
  "name": null,
@@ -297,9 +315,7 @@
297
315
  {
298
316
  "name": "status",
299
317
  "description": "Status of the bill",
300
- "args": [
301
-
302
- ],
318
+ "args": [],
303
319
  "type": {
304
320
  "kind": "NON_NULL",
305
321
  "name": null,
@@ -315,9 +331,7 @@
315
331
  {
316
332
  "name": "title",
317
333
  "description": "Title of the bill",
318
- "args": [
319
-
320
- ],
334
+ "args": [],
321
335
  "type": {
322
336
  "kind": "NON_NULL",
323
337
  "name": null,
@@ -333,9 +347,7 @@
333
347
  {
334
348
  "name": "totalSavings",
335
349
  "description": "The total value gained from negotiations",
336
- "args": [
337
-
338
- ],
350
+ "args": [],
339
351
  "type": {
340
352
  "kind": "NON_NULL",
341
353
  "name": null,
@@ -351,9 +363,7 @@
351
363
  {
352
364
  "name": "updatedAt",
353
365
  "description": "The last time the record was updated",
354
- "args": [
355
-
356
- ],
366
+ "args": [],
357
367
  "type": {
358
368
  "kind": "NON_NULL",
359
369
  "name": null,
@@ -368,9 +378,7 @@
368
378
  }
369
379
  ],
370
380
  "inputFields": null,
371
- "interfaces": [
372
-
373
- ],
381
+ "interfaces": [],
374
382
  "enumValues": null,
375
383
  "possibleTypes": null
376
384
  },
@@ -475,9 +483,7 @@
475
483
  {
476
484
  "name": "edges",
477
485
  "description": "A list of edges.",
478
- "args": [
479
-
480
- ],
486
+ "args": [],
481
487
  "type": {
482
488
  "kind": "NON_NULL",
483
489
  "name": null,
@@ -501,9 +507,7 @@
501
507
  {
502
508
  "name": "nodes",
503
509
  "description": "A list of nodes.",
504
- "args": [
505
-
506
- ],
510
+ "args": [],
507
511
  "type": {
508
512
  "kind": "NON_NULL",
509
513
  "name": null,
@@ -527,9 +531,7 @@
527
531
  {
528
532
  "name": "pageInfo",
529
533
  "description": "Information to aid in pagination.",
530
- "args": [
531
-
532
- ],
534
+ "args": [],
533
535
  "type": {
534
536
  "kind": "NON_NULL",
535
537
  "name": null,
@@ -545,9 +547,7 @@
545
547
  {
546
548
  "name": "totalCount",
547
549
  "description": null,
548
- "args": [
549
-
550
- ],
550
+ "args": [],
551
551
  "type": {
552
552
  "kind": "NON_NULL",
553
553
  "name": null,
@@ -563,9 +563,7 @@
563
563
  {
564
564
  "name": "totalSavings",
565
565
  "description": null,
566
- "args": [
567
-
568
- ],
566
+ "args": [],
569
567
  "type": {
570
568
  "kind": "NON_NULL",
571
569
  "name": null,
@@ -580,9 +578,7 @@
580
578
  }
581
579
  ],
582
580
  "inputFields": null,
583
- "interfaces": [
584
-
585
- ],
581
+ "interfaces": [],
586
582
  "enumValues": null,
587
583
  "possibleTypes": null
588
584
  },
@@ -594,9 +590,7 @@
594
590
  {
595
591
  "name": "cursor",
596
592
  "description": "A cursor for use in pagination.",
597
- "args": [
598
-
599
- ],
593
+ "args": [],
600
594
  "type": {
601
595
  "kind": "NON_NULL",
602
596
  "name": null,
@@ -612,9 +606,7 @@
612
606
  {
613
607
  "name": "node",
614
608
  "description": "The item at the end of the edge.",
615
- "args": [
616
-
617
- ],
609
+ "args": [],
618
610
  "type": {
619
611
  "kind": "OBJECT",
620
612
  "name": "Bill",
@@ -625,9 +617,7 @@
625
617
  }
626
618
  ],
627
619
  "inputFields": null,
628
- "interfaces": [
629
-
630
- ],
620
+ "interfaces": [],
631
621
  "enumValues": null,
632
622
  "possibleTypes": null
633
623
  },
@@ -641,86 +631,6 @@
641
631
  "enumValues": null,
642
632
  "possibleTypes": null
643
633
  },
644
- {
645
- "kind": "INPUT_OBJECT",
646
- "name": "CancelBillInput",
647
- "description": "Autogenerated input type of CancelBill",
648
- "fields": null,
649
- "inputFields": [
650
- {
651
- "name": "id",
652
- "description": null,
653
- "type": {
654
- "kind": "NON_NULL",
655
- "name": null,
656
- "ofType": {
657
- "kind": "SCALAR",
658
- "name": "String",
659
- "ofType": null
660
- }
661
- },
662
- "defaultValue": null
663
- },
664
- {
665
- "name": "clientMutationId",
666
- "description": "A unique identifier for the client performing the mutation.",
667
- "type": {
668
- "kind": "SCALAR",
669
- "name": "String",
670
- "ofType": null
671
- },
672
- "defaultValue": null
673
- }
674
- ],
675
- "interfaces": null,
676
- "enumValues": null,
677
- "possibleTypes": null
678
- },
679
- {
680
- "kind": "OBJECT",
681
- "name": "CancelBillPayload",
682
- "description": "Autogenerated return type of CancelBill",
683
- "fields": [
684
- {
685
- "name": "clientMutationId",
686
- "description": "A unique identifier for the client performing the mutation.",
687
- "args": [
688
-
689
- ],
690
- "type": {
691
- "kind": "SCALAR",
692
- "name": "String",
693
- "ofType": null
694
- },
695
- "isDeprecated": false,
696
- "deprecationReason": null
697
- },
698
- {
699
- "name": "success",
700
- "description": null,
701
- "args": [
702
-
703
- ],
704
- "type": {
705
- "kind": "NON_NULL",
706
- "name": null,
707
- "ofType": {
708
- "kind": "SCALAR",
709
- "name": "Boolean",
710
- "ofType": null
711
- }
712
- },
713
- "isDeprecated": false,
714
- "deprecationReason": null
715
- }
716
- ],
717
- "inputFields": null,
718
- "interfaces": [
719
-
720
- ],
721
- "enumValues": null,
722
- "possibleTypes": null
723
- },
724
634
  {
725
635
  "kind": "INPUT_OBJECT",
726
636
  "name": "CreateBillInput",
@@ -778,9 +688,7 @@
778
688
  {
779
689
  "name": "bill",
780
690
  "description": null,
781
- "args": [
782
-
783
- ],
691
+ "args": [],
784
692
  "type": {
785
693
  "kind": "OBJECT",
786
694
  "name": "Bill",
@@ -792,9 +700,7 @@
792
700
  {
793
701
  "name": "clientMutationId",
794
702
  "description": "A unique identifier for the client performing the mutation.",
795
- "args": [
796
-
797
- ],
703
+ "args": [],
798
704
  "type": {
799
705
  "kind": "SCALAR",
800
706
  "name": "String",
@@ -806,9 +712,7 @@
806
712
  {
807
713
  "name": "errors",
808
714
  "description": null,
809
- "args": [
810
-
811
- ],
715
+ "args": [],
812
716
  "type": {
813
717
  "kind": "NON_NULL",
814
718
  "name": null,
@@ -832,9 +736,7 @@
832
736
  {
833
737
  "name": "success",
834
738
  "description": null,
835
- "args": [
836
-
837
- ],
739
+ "args": [],
838
740
  "type": {
839
741
  "kind": "NON_NULL",
840
742
  "name": null,
@@ -849,9 +751,7 @@
849
751
  }
850
752
  ],
851
753
  "inputFields": null,
852
- "interfaces": [
853
-
854
- ],
754
+ "interfaces": [],
855
755
  "enumValues": null,
856
756
  "possibleTypes": null
857
757
  },
@@ -898,9 +798,7 @@
898
798
  {
899
799
  "name": "clientMutationId",
900
800
  "description": "A unique identifier for the client performing the mutation.",
901
- "args": [
902
-
903
- ],
801
+ "args": [],
904
802
  "type": {
905
803
  "kind": "SCALAR",
906
804
  "name": "String",
@@ -912,9 +810,7 @@
912
810
  {
913
811
  "name": "customer",
914
812
  "description": null,
915
- "args": [
916
-
917
- ],
813
+ "args": [],
918
814
  "type": {
919
815
  "kind": "OBJECT",
920
816
  "name": "Customer",
@@ -926,9 +822,7 @@
926
822
  {
927
823
  "name": "errors",
928
824
  "description": null,
929
- "args": [
930
-
931
- ],
825
+ "args": [],
932
826
  "type": {
933
827
  "kind": "NON_NULL",
934
828
  "name": null,
@@ -952,9 +846,7 @@
952
846
  {
953
847
  "name": "success",
954
848
  "description": null,
955
- "args": [
956
-
957
- ],
849
+ "args": [],
958
850
  "type": {
959
851
  "kind": "NON_NULL",
960
852
  "name": null,
@@ -969,9 +861,7 @@
969
861
  }
970
862
  ],
971
863
  "inputFields": null,
972
- "interfaces": [
973
-
974
- ],
864
+ "interfaces": [],
975
865
  "enumValues": null,
976
866
  "possibleTypes": null
977
867
  },
@@ -983,9 +873,7 @@
983
873
  {
984
874
  "name": "avatarUrl",
985
875
  "description": null,
986
- "args": [
987
-
988
- ],
876
+ "args": [],
989
877
  "type": {
990
878
  "kind": "NON_NULL",
991
879
  "name": null,
@@ -1001,9 +889,7 @@
1001
889
  {
1002
890
  "name": "b2b",
1003
891
  "description": null,
1004
- "args": [
1005
-
1006
- ],
892
+ "args": [],
1007
893
  "type": {
1008
894
  "kind": "NON_NULL",
1009
895
  "name": null,
@@ -1076,9 +962,7 @@
1076
962
  {
1077
963
  "name": "createdAt",
1078
964
  "description": null,
1079
- "args": [
1080
-
1081
- ],
965
+ "args": [],
1082
966
  "type": {
1083
967
  "kind": "NON_NULL",
1084
968
  "name": null,
@@ -1094,9 +978,7 @@
1094
978
  {
1095
979
  "name": "email",
1096
980
  "description": null,
1097
- "args": [
1098
-
1099
- ],
981
+ "args": [],
1100
982
  "type": {
1101
983
  "kind": "NON_NULL",
1102
984
  "name": null,
@@ -1112,9 +994,7 @@
1112
994
  {
1113
995
  "name": "firstName",
1114
996
  "description": null,
1115
- "args": [
1116
-
1117
- ],
997
+ "args": [],
1118
998
  "type": {
1119
999
  "kind": "SCALAR",
1120
1000
  "name": "String",
@@ -1126,9 +1006,7 @@
1126
1006
  {
1127
1007
  "name": "id",
1128
1008
  "description": null,
1129
- "args": [
1130
-
1131
- ],
1009
+ "args": [],
1132
1010
  "type": {
1133
1011
  "kind": "NON_NULL",
1134
1012
  "name": null,
@@ -1144,9 +1022,7 @@
1144
1022
  {
1145
1023
  "name": "lastName",
1146
1024
  "description": null,
1147
- "args": [
1148
-
1149
- ],
1025
+ "args": [],
1150
1026
  "type": {
1151
1027
  "kind": "SCALAR",
1152
1028
  "name": "String",
@@ -1158,9 +1034,7 @@
1158
1034
  {
1159
1035
  "name": "name",
1160
1036
  "description": null,
1161
- "args": [
1162
-
1163
- ],
1037
+ "args": [],
1164
1038
  "type": {
1165
1039
  "kind": "NON_NULL",
1166
1040
  "name": null,
@@ -1176,9 +1050,7 @@
1176
1050
  {
1177
1051
  "name": "phoneNumber",
1178
1052
  "description": null,
1179
- "args": [
1180
-
1181
- ],
1053
+ "args": [],
1182
1054
  "type": {
1183
1055
  "kind": "SCALAR",
1184
1056
  "name": "String",
@@ -1190,9 +1062,7 @@
1190
1062
  {
1191
1063
  "name": "updatedAt",
1192
1064
  "description": null,
1193
- "args": [
1194
-
1195
- ],
1065
+ "args": [],
1196
1066
  "type": {
1197
1067
  "kind": "NON_NULL",
1198
1068
  "name": null,
@@ -1207,9 +1077,7 @@
1207
1077
  }
1208
1078
  ],
1209
1079
  "inputFields": null,
1210
- "interfaces": [
1211
-
1212
- ],
1080
+ "interfaces": [],
1213
1081
  "enumValues": null,
1214
1082
  "possibleTypes": null
1215
1083
  },
@@ -1312,9 +1180,7 @@
1312
1180
  {
1313
1181
  "name": "edges",
1314
1182
  "description": "A list of edges.",
1315
- "args": [
1316
-
1317
- ],
1183
+ "args": [],
1318
1184
  "type": {
1319
1185
  "kind": "NON_NULL",
1320
1186
  "name": null,
@@ -1338,9 +1204,7 @@
1338
1204
  {
1339
1205
  "name": "nodes",
1340
1206
  "description": "A list of nodes.",
1341
- "args": [
1342
-
1343
- ],
1207
+ "args": [],
1344
1208
  "type": {
1345
1209
  "kind": "NON_NULL",
1346
1210
  "name": null,
@@ -1364,9 +1228,7 @@
1364
1228
  {
1365
1229
  "name": "pageInfo",
1366
1230
  "description": "Information to aid in pagination.",
1367
- "args": [
1368
-
1369
- ],
1231
+ "args": [],
1370
1232
  "type": {
1371
1233
  "kind": "NON_NULL",
1372
1234
  "name": null,
@@ -1382,9 +1244,7 @@
1382
1244
  {
1383
1245
  "name": "totalCount",
1384
1246
  "description": null,
1385
- "args": [
1386
-
1387
- ],
1247
+ "args": [],
1388
1248
  "type": {
1389
1249
  "kind": "NON_NULL",
1390
1250
  "name": null,
@@ -1399,9 +1259,7 @@
1399
1259
  }
1400
1260
  ],
1401
1261
  "inputFields": null,
1402
- "interfaces": [
1403
-
1404
- ],
1262
+ "interfaces": [],
1405
1263
  "enumValues": null,
1406
1264
  "possibleTypes": null
1407
1265
  },
@@ -1413,9 +1271,7 @@
1413
1271
  {
1414
1272
  "name": "cursor",
1415
1273
  "description": "A cursor for use in pagination.",
1416
- "args": [
1417
-
1418
- ],
1274
+ "args": [],
1419
1275
  "type": {
1420
1276
  "kind": "NON_NULL",
1421
1277
  "name": null,
@@ -1431,9 +1287,7 @@
1431
1287
  {
1432
1288
  "name": "node",
1433
1289
  "description": "The item at the end of the edge.",
1434
- "args": [
1435
-
1436
- ],
1290
+ "args": [],
1437
1291
  "type": {
1438
1292
  "kind": "OBJECT",
1439
1293
  "name": "Customer",
@@ -1444,9 +1298,7 @@
1444
1298
  }
1445
1299
  ],
1446
1300
  "inputFields": null,
1447
- "interfaces": [
1448
-
1449
- ],
1301
+ "interfaces": [],
1450
1302
  "enumValues": null,
1451
1303
  "possibleTypes": null
1452
1304
  },
@@ -1468,9 +1320,7 @@
1468
1320
  {
1469
1321
  "name": "email",
1470
1322
  "description": null,
1471
- "args": [
1472
-
1473
- ],
1323
+ "args": [],
1474
1324
  "type": {
1475
1325
  "kind": "NON_NULL",
1476
1326
  "name": null,
@@ -1486,9 +1336,7 @@
1486
1336
  {
1487
1337
  "name": "firstName",
1488
1338
  "description": null,
1489
- "args": [
1490
-
1491
- ],
1339
+ "args": [],
1492
1340
  "type": {
1493
1341
  "kind": "NON_NULL",
1494
1342
  "name": null,
@@ -1504,9 +1352,7 @@
1504
1352
  {
1505
1353
  "name": "firstNameLastInitial",
1506
1354
  "description": null,
1507
- "args": [
1508
-
1509
- ],
1355
+ "args": [],
1510
1356
  "type": {
1511
1357
  "kind": "NON_NULL",
1512
1358
  "name": null,
@@ -1522,9 +1368,7 @@
1522
1368
  {
1523
1369
  "name": "id",
1524
1370
  "description": null,
1525
- "args": [
1526
-
1527
- ],
1371
+ "args": [],
1528
1372
  "type": {
1529
1373
  "kind": "NON_NULL",
1530
1374
  "name": null,
@@ -1540,9 +1384,7 @@
1540
1384
  {
1541
1385
  "name": "lastName",
1542
1386
  "description": null,
1543
- "args": [
1544
-
1545
- ],
1387
+ "args": [],
1546
1388
  "type": {
1547
1389
  "kind": "NON_NULL",
1548
1390
  "name": null,
@@ -1558,9 +1400,7 @@
1558
1400
  {
1559
1401
  "name": "name",
1560
1402
  "description": null,
1561
- "args": [
1562
-
1563
- ],
1403
+ "args": [],
1564
1404
  "type": {
1565
1405
  "kind": "NON_NULL",
1566
1406
  "name": null,
@@ -1576,9 +1416,7 @@
1576
1416
  {
1577
1417
  "name": "phoneNumber",
1578
1418
  "description": null,
1579
- "args": [
1580
-
1581
- ],
1419
+ "args": [],
1582
1420
  "type": {
1583
1421
  "kind": "SCALAR",
1584
1422
  "name": "String",
@@ -1589,9 +1427,17 @@
1589
1427
  }
1590
1428
  ],
1591
1429
  "inputFields": null,
1592
- "interfaces": [
1593
-
1594
- ],
1430
+ "interfaces": [],
1431
+ "enumValues": null,
1432
+ "possibleTypes": null
1433
+ },
1434
+ {
1435
+ "kind": "SCALAR",
1436
+ "name": "Float",
1437
+ "description": "Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
1438
+ "fields": null,
1439
+ "inputFields": null,
1440
+ "interfaces": null,
1595
1441
  "enumValues": null,
1596
1442
  "possibleTypes": null
1597
1443
  },
@@ -1613,9 +1459,7 @@
1613
1459
  {
1614
1460
  "name": "grandeUrl",
1615
1461
  "description": null,
1616
- "args": [
1617
-
1618
- ],
1462
+ "args": [],
1619
1463
  "type": {
1620
1464
  "kind": "NON_NULL",
1621
1465
  "name": null,
@@ -1631,9 +1475,7 @@
1631
1475
  {
1632
1476
  "name": "iconUrl",
1633
1477
  "description": null,
1634
- "args": [
1635
-
1636
- ],
1478
+ "args": [],
1637
1479
  "type": {
1638
1480
  "kind": "NON_NULL",
1639
1481
  "name": null,
@@ -1649,9 +1491,7 @@
1649
1491
  {
1650
1492
  "name": "id",
1651
1493
  "description": null,
1652
- "args": [
1653
-
1654
- ],
1494
+ "args": [],
1655
1495
  "type": {
1656
1496
  "kind": "SCALAR",
1657
1497
  "name": "ID",
@@ -1663,9 +1503,7 @@
1663
1503
  {
1664
1504
  "name": "imageProcessed",
1665
1505
  "description": null,
1666
- "args": [
1667
-
1668
- ],
1506
+ "args": [],
1669
1507
  "type": {
1670
1508
  "kind": "NON_NULL",
1671
1509
  "name": null,
@@ -1681,9 +1519,7 @@
1681
1519
  {
1682
1520
  "name": "largeUrl",
1683
1521
  "description": null,
1684
- "args": [
1685
-
1686
- ],
1522
+ "args": [],
1687
1523
  "type": {
1688
1524
  "kind": "NON_NULL",
1689
1525
  "name": null,
@@ -1699,9 +1535,7 @@
1699
1535
  {
1700
1536
  "name": "mediumUrl",
1701
1537
  "description": null,
1702
- "args": [
1703
-
1704
- ],
1538
+ "args": [],
1705
1539
  "type": {
1706
1540
  "kind": "NON_NULL",
1707
1541
  "name": null,
@@ -1717,9 +1551,7 @@
1717
1551
  {
1718
1552
  "name": "originalUrl",
1719
1553
  "description": null,
1720
- "args": [
1721
-
1722
- ],
1554
+ "args": [],
1723
1555
  "type": {
1724
1556
  "kind": "NON_NULL",
1725
1557
  "name": null,
@@ -1735,9 +1567,7 @@
1735
1567
  {
1736
1568
  "name": "smallUrl",
1737
1569
  "description": null,
1738
- "args": [
1739
-
1740
- ],
1570
+ "args": [],
1741
1571
  "type": {
1742
1572
  "kind": "NON_NULL",
1743
1573
  "name": null,
@@ -1753,9 +1583,7 @@
1753
1583
  {
1754
1584
  "name": "thumbnailUrl",
1755
1585
  "description": null,
1756
- "args": [
1757
-
1758
- ],
1586
+ "args": [],
1759
1587
  "type": {
1760
1588
  "kind": "NON_NULL",
1761
1589
  "name": null,
@@ -1771,9 +1599,7 @@
1771
1599
  {
1772
1600
  "name": "tinyUrl",
1773
1601
  "description": null,
1774
- "args": [
1775
-
1776
- ],
1602
+ "args": [],
1777
1603
  "type": {
1778
1604
  "kind": "NON_NULL",
1779
1605
  "name": null,
@@ -1788,9 +1614,7 @@
1788
1614
  }
1789
1615
  ],
1790
1616
  "inputFields": null,
1791
- "interfaces": [
1792
-
1793
- ],
1617
+ "interfaces": [],
1794
1618
  "enumValues": null,
1795
1619
  "possibleTypes": null
1796
1620
  },
@@ -1802,9 +1626,7 @@
1802
1626
  {
1803
1627
  "name": "content",
1804
1628
  "description": null,
1805
- "args": [
1806
-
1807
- ],
1629
+ "args": [],
1808
1630
  "type": {
1809
1631
  "kind": "NON_NULL",
1810
1632
  "name": null,
@@ -1820,9 +1642,7 @@
1820
1642
  {
1821
1643
  "name": "contentHtml",
1822
1644
  "description": null,
1823
- "args": [
1824
-
1825
- ],
1645
+ "args": [],
1826
1646
  "type": {
1827
1647
  "kind": "NON_NULL",
1828
1648
  "name": null,
@@ -1838,9 +1658,7 @@
1838
1658
  {
1839
1659
  "name": "createdAt",
1840
1660
  "description": null,
1841
- "args": [
1842
-
1843
- ],
1661
+ "args": [],
1844
1662
  "type": {
1845
1663
  "kind": "NON_NULL",
1846
1664
  "name": null,
@@ -1856,9 +1674,7 @@
1856
1674
  {
1857
1675
  "name": "fields",
1858
1676
  "description": null,
1859
- "args": [
1860
-
1861
- ],
1677
+ "args": [],
1862
1678
  "type": {
1863
1679
  "kind": "NON_NULL",
1864
1680
  "name": null,
@@ -1882,9 +1698,7 @@
1882
1698
  {
1883
1699
  "name": "id",
1884
1700
  "description": null,
1885
- "args": [
1886
-
1887
- ],
1701
+ "args": [],
1888
1702
  "type": {
1889
1703
  "kind": "NON_NULL",
1890
1704
  "name": null,
@@ -1900,9 +1714,7 @@
1900
1714
  {
1901
1715
  "name": "respondedAt",
1902
1716
  "description": null,
1903
- "args": [
1904
-
1905
- ],
1717
+ "args": [],
1906
1718
  "type": {
1907
1719
  "kind": "SCALAR",
1908
1720
  "name": "DateTime",
@@ -1914,9 +1726,7 @@
1914
1726
  {
1915
1727
  "name": "updatedAt",
1916
1728
  "description": null,
1917
- "args": [
1918
-
1919
- ],
1729
+ "args": [],
1920
1730
  "type": {
1921
1731
  "kind": "NON_NULL",
1922
1732
  "name": null,
@@ -1931,9 +1741,7 @@
1931
1741
  }
1932
1742
  ],
1933
1743
  "inputFields": null,
1934
- "interfaces": [
1935
-
1936
- ],
1744
+ "interfaces": [],
1937
1745
  "enumValues": null,
1938
1746
  "possibleTypes": null
1939
1747
  },
@@ -1978,9 +1786,7 @@
1978
1786
  {
1979
1787
  "name": "edges",
1980
1788
  "description": "A list of edges.",
1981
- "args": [
1982
-
1983
- ],
1789
+ "args": [],
1984
1790
  "type": {
1985
1791
  "kind": "NON_NULL",
1986
1792
  "name": null,
@@ -2004,9 +1810,7 @@
2004
1810
  {
2005
1811
  "name": "nodes",
2006
1812
  "description": "A list of nodes.",
2007
- "args": [
2008
-
2009
- ],
1813
+ "args": [],
2010
1814
  "type": {
2011
1815
  "kind": "NON_NULL",
2012
1816
  "name": null,
@@ -2030,9 +1834,7 @@
2030
1834
  {
2031
1835
  "name": "pageInfo",
2032
1836
  "description": "Information to aid in pagination.",
2033
- "args": [
2034
-
2035
- ],
1837
+ "args": [],
2036
1838
  "type": {
2037
1839
  "kind": "NON_NULL",
2038
1840
  "name": null,
@@ -2048,9 +1850,7 @@
2048
1850
  {
2049
1851
  "name": "totalCount",
2050
1852
  "description": null,
2051
- "args": [
2052
-
2053
- ],
1853
+ "args": [],
2054
1854
  "type": {
2055
1855
  "kind": "NON_NULL",
2056
1856
  "name": null,
@@ -2065,9 +1865,7 @@
2065
1865
  }
2066
1866
  ],
2067
1867
  "inputFields": null,
2068
- "interfaces": [
2069
-
2070
- ],
1868
+ "interfaces": [],
2071
1869
  "enumValues": null,
2072
1870
  "possibleTypes": null
2073
1871
  },
@@ -2079,9 +1877,7 @@
2079
1877
  {
2080
1878
  "name": "cursor",
2081
1879
  "description": "A cursor for use in pagination.",
2082
- "args": [
2083
-
2084
- ],
1880
+ "args": [],
2085
1881
  "type": {
2086
1882
  "kind": "NON_NULL",
2087
1883
  "name": null,
@@ -2097,9 +1893,7 @@
2097
1893
  {
2098
1894
  "name": "node",
2099
1895
  "description": "The item at the end of the edge.",
2100
- "args": [
2101
-
2102
- ],
1896
+ "args": [],
2103
1897
  "type": {
2104
1898
  "kind": "OBJECT",
2105
1899
  "name": "InformationRequest",
@@ -2110,9 +1904,7 @@
2110
1904
  }
2111
1905
  ],
2112
1906
  "inputFields": null,
2113
- "interfaces": [
2114
-
2115
- ],
1907
+ "interfaces": [],
2116
1908
  "enumValues": null,
2117
1909
  "possibleTypes": null
2118
1910
  },
@@ -2124,9 +1916,7 @@
2124
1916
  {
2125
1917
  "name": "createdAt",
2126
1918
  "description": null,
2127
- "args": [
2128
-
2129
- ],
1919
+ "args": [],
2130
1920
  "type": {
2131
1921
  "kind": "NON_NULL",
2132
1922
  "name": null,
@@ -2142,9 +1932,7 @@
2142
1932
  {
2143
1933
  "name": "dataType",
2144
1934
  "description": null,
2145
- "args": [
2146
-
2147
- ],
1935
+ "args": [],
2148
1936
  "type": {
2149
1937
  "kind": "NON_NULL",
2150
1938
  "name": null,
@@ -2160,9 +1948,7 @@
2160
1948
  {
2161
1949
  "name": "id",
2162
1950
  "description": null,
2163
- "args": [
2164
-
2165
- ],
1951
+ "args": [],
2166
1952
  "type": {
2167
1953
  "kind": "NON_NULL",
2168
1954
  "name": null,
@@ -2178,9 +1964,7 @@
2178
1964
  {
2179
1965
  "name": "label",
2180
1966
  "description": null,
2181
- "args": [
2182
-
2183
- ],
1967
+ "args": [],
2184
1968
  "type": {
2185
1969
  "kind": "NON_NULL",
2186
1970
  "name": null,
@@ -2196,9 +1980,7 @@
2196
1980
  {
2197
1981
  "name": "placeholder",
2198
1982
  "description": null,
2199
- "args": [
2200
-
2201
- ],
1983
+ "args": [],
2202
1984
  "type": {
2203
1985
  "kind": "NON_NULL",
2204
1986
  "name": null,
@@ -2214,9 +1996,7 @@
2214
1996
  {
2215
1997
  "name": "updatedAt",
2216
1998
  "description": null,
2217
- "args": [
2218
-
2219
- ],
1999
+ "args": [],
2220
2000
  "type": {
2221
2001
  "kind": "NON_NULL",
2222
2002
  "name": null,
@@ -2232,9 +2012,7 @@
2232
2012
  {
2233
2013
  "name": "value",
2234
2014
  "description": null,
2235
- "args": [
2236
-
2237
- ],
2015
+ "args": [],
2238
2016
  "type": {
2239
2017
  "kind": "SCALAR",
2240
2018
  "name": "String",
@@ -2245,9 +2023,7 @@
2245
2023
  }
2246
2024
  ],
2247
2025
  "inputFields": null,
2248
- "interfaces": [
2249
-
2250
- ],
2026
+ "interfaces": [],
2251
2027
  "enumValues": null,
2252
2028
  "possibleTypes": null
2253
2029
  },
@@ -2308,9 +2084,7 @@
2308
2084
  {
2309
2085
  "name": "createdAt",
2310
2086
  "description": "The date the record was created",
2311
- "args": [
2312
-
2313
- ],
2087
+ "args": [],
2314
2088
  "type": {
2315
2089
  "kind": "NON_NULL",
2316
2090
  "name": null,
@@ -2326,9 +2100,7 @@
2326
2100
  {
2327
2101
  "name": "duration",
2328
2102
  "description": "The length of time in months that an item's savings is good for",
2329
- "args": [
2330
-
2331
- ],
2103
+ "args": [],
2332
2104
  "type": {
2333
2105
  "kind": "NON_NULL",
2334
2106
  "name": null,
@@ -2344,9 +2116,7 @@
2344
2116
  {
2345
2117
  "name": "name",
2346
2118
  "description": "Name of the good or service",
2347
- "args": [
2348
-
2349
- ],
2119
+ "args": [],
2350
2120
  "type": {
2351
2121
  "kind": "NON_NULL",
2352
2122
  "name": null,
@@ -2362,9 +2132,7 @@
2362
2132
  {
2363
2133
  "name": "postPrice",
2364
2134
  "description": "The post-negotiation price",
2365
- "args": [
2366
-
2367
- ],
2135
+ "args": [],
2368
2136
  "type": {
2369
2137
  "kind": "NON_NULL",
2370
2138
  "name": null,
@@ -2380,9 +2148,7 @@
2380
2148
  {
2381
2149
  "name": "prePrice",
2382
2150
  "description": "The pre-negotiation price",
2383
- "args": [
2384
-
2385
- ],
2151
+ "args": [],
2386
2152
  "type": {
2387
2153
  "kind": "NON_NULL",
2388
2154
  "name": null,
@@ -2398,9 +2164,7 @@
2398
2164
  {
2399
2165
  "name": "savings",
2400
2166
  "description": "The difference between the prePrice and the postPrice",
2401
- "args": [
2402
-
2403
- ],
2167
+ "args": [],
2404
2168
  "type": {
2405
2169
  "kind": "NON_NULL",
2406
2170
  "name": null,
@@ -2416,9 +2180,7 @@
2416
2180
  {
2417
2181
  "name": "savingsEndOn",
2418
2182
  "description": "The date the discount/savings end",
2419
- "args": [
2420
-
2421
- ],
2183
+ "args": [],
2422
2184
  "type": {
2423
2185
  "kind": "NON_NULL",
2424
2186
  "name": null,
@@ -2434,9 +2196,7 @@
2434
2196
  {
2435
2197
  "name": "savingsStartOn",
2436
2198
  "description": "The date the discount/savings start",
2437
- "args": [
2438
-
2439
- ],
2199
+ "args": [],
2440
2200
  "type": {
2441
2201
  "kind": "NON_NULL",
2442
2202
  "name": null,
@@ -2449,12 +2209,26 @@
2449
2209
  "isDeprecated": false,
2450
2210
  "deprecationReason": null
2451
2211
  },
2212
+ {
2213
+ "name": "type",
2214
+ "description": "The type of item",
2215
+ "args": [],
2216
+ "type": {
2217
+ "kind": "NON_NULL",
2218
+ "name": null,
2219
+ "ofType": {
2220
+ "kind": "SCALAR",
2221
+ "name": "String",
2222
+ "ofType": null
2223
+ }
2224
+ },
2225
+ "isDeprecated": false,
2226
+ "deprecationReason": null
2227
+ },
2452
2228
  {
2453
2229
  "name": "underContract",
2454
2230
  "description": "Indicates the item is under contract",
2455
- "args": [
2456
-
2457
- ],
2231
+ "args": [],
2458
2232
  "type": {
2459
2233
  "kind": "NON_NULL",
2460
2234
  "name": null,
@@ -2470,9 +2244,7 @@
2470
2244
  {
2471
2245
  "name": "updatedAt",
2472
2246
  "description": "The last time the record was updated",
2473
- "args": [
2474
-
2475
- ],
2247
+ "args": [],
2476
2248
  "type": {
2477
2249
  "kind": "NON_NULL",
2478
2250
  "name": null,
@@ -2487,9 +2259,7 @@
2487
2259
  }
2488
2260
  ],
2489
2261
  "inputFields": null,
2490
- "interfaces": [
2491
-
2492
- ],
2262
+ "interfaces": [],
2493
2263
  "enumValues": null,
2494
2264
  "possibleTypes": null
2495
2265
  },
@@ -2514,7 +2284,7 @@
2514
2284
  "args": [
2515
2285
  {
2516
2286
  "name": "input",
2517
- "description": null,
2287
+ "description": "Parameters for AcceptOffer",
2518
2288
  "type": {
2519
2289
  "kind": "NON_NULL",
2520
2290
  "name": null,
@@ -2536,18 +2306,18 @@
2536
2306
  "deprecationReason": null
2537
2307
  },
2538
2308
  {
2539
- "name": "CancelBill",
2309
+ "name": "CreateBill",
2540
2310
  "description": null,
2541
2311
  "args": [
2542
2312
  {
2543
2313
  "name": "input",
2544
- "description": null,
2314
+ "description": "Parameters for CreateBill",
2545
2315
  "type": {
2546
2316
  "kind": "NON_NULL",
2547
2317
  "name": null,
2548
2318
  "ofType": {
2549
2319
  "kind": "INPUT_OBJECT",
2550
- "name": "CancelBillInput",
2320
+ "name": "CreateBillInput",
2551
2321
  "ofType": null
2552
2322
  }
2553
2323
  },
@@ -2556,25 +2326,25 @@
2556
2326
  ],
2557
2327
  "type": {
2558
2328
  "kind": "OBJECT",
2559
- "name": "CancelBillPayload",
2329
+ "name": "CreateBillPayload",
2560
2330
  "ofType": null
2561
2331
  },
2562
2332
  "isDeprecated": false,
2563
2333
  "deprecationReason": null
2564
2334
  },
2565
2335
  {
2566
- "name": "CreateBill",
2336
+ "name": "CreateCustomer",
2567
2337
  "description": null,
2568
2338
  "args": [
2569
2339
  {
2570
2340
  "name": "input",
2571
- "description": null,
2341
+ "description": "Parameters for CreateCustomer",
2572
2342
  "type": {
2573
2343
  "kind": "NON_NULL",
2574
2344
  "name": null,
2575
2345
  "ofType": {
2576
2346
  "kind": "INPUT_OBJECT",
2577
- "name": "CreateBillInput",
2347
+ "name": "CreateCustomerInput",
2578
2348
  "ofType": null
2579
2349
  }
2580
2350
  },
@@ -2583,25 +2353,25 @@
2583
2353
  ],
2584
2354
  "type": {
2585
2355
  "kind": "OBJECT",
2586
- "name": "CreateBillPayload",
2356
+ "name": "CreateCustomerPayload",
2587
2357
  "ofType": null
2588
2358
  },
2589
2359
  "isDeprecated": false,
2590
2360
  "deprecationReason": null
2591
2361
  },
2592
2362
  {
2593
- "name": "CreateCustomer",
2594
- "description": null,
2363
+ "name": "RejectOffer",
2364
+ "description": "Reject an offer",
2595
2365
  "args": [
2596
2366
  {
2597
2367
  "name": "input",
2598
- "description": null,
2368
+ "description": "Parameters for RejectOffer",
2599
2369
  "type": {
2600
2370
  "kind": "NON_NULL",
2601
2371
  "name": null,
2602
2372
  "ofType": {
2603
2373
  "kind": "INPUT_OBJECT",
2604
- "name": "CreateCustomerInput",
2374
+ "name": "RejectOfferInput",
2605
2375
  "ofType": null
2606
2376
  }
2607
2377
  },
@@ -2610,25 +2380,25 @@
2610
2380
  ],
2611
2381
  "type": {
2612
2382
  "kind": "OBJECT",
2613
- "name": "CreateCustomerPayload",
2383
+ "name": "RejectOfferPayload",
2614
2384
  "ofType": null
2615
2385
  },
2616
2386
  "isDeprecated": false,
2617
2387
  "deprecationReason": null
2618
2388
  },
2619
2389
  {
2620
- "name": "RejectOffer",
2621
- "description": "Reject an offer",
2390
+ "name": "RenegotiateBill",
2391
+ "description": null,
2622
2392
  "args": [
2623
2393
  {
2624
2394
  "name": "input",
2625
- "description": null,
2395
+ "description": "Parameters for RenegotiateBill",
2626
2396
  "type": {
2627
2397
  "kind": "NON_NULL",
2628
2398
  "name": null,
2629
2399
  "ofType": {
2630
2400
  "kind": "INPUT_OBJECT",
2631
- "name": "RejectOfferInput",
2401
+ "name": "RenegotiateBillInput",
2632
2402
  "ofType": null
2633
2403
  }
2634
2404
  },
@@ -2637,7 +2407,7 @@
2637
2407
  ],
2638
2408
  "type": {
2639
2409
  "kind": "OBJECT",
2640
- "name": "RejectOfferPayload",
2410
+ "name": "RenegotiateBillPayload",
2641
2411
  "ofType": null
2642
2412
  },
2643
2413
  "isDeprecated": false,
@@ -2649,7 +2419,7 @@
2649
2419
  "args": [
2650
2420
  {
2651
2421
  "name": "input",
2652
- "description": null,
2422
+ "description": "Parameters for RespondToInformationRequest",
2653
2423
  "type": {
2654
2424
  "kind": "NON_NULL",
2655
2425
  "name": null,
@@ -2670,13 +2440,40 @@
2670
2440
  "isDeprecated": false,
2671
2441
  "deprecationReason": null
2672
2442
  },
2443
+ {
2444
+ "name": "StopNegotiating",
2445
+ "description": null,
2446
+ "args": [
2447
+ {
2448
+ "name": "input",
2449
+ "description": "Parameters for StopNegotiating",
2450
+ "type": {
2451
+ "kind": "NON_NULL",
2452
+ "name": null,
2453
+ "ofType": {
2454
+ "kind": "INPUT_OBJECT",
2455
+ "name": "StopNegotiatingInput",
2456
+ "ofType": null
2457
+ }
2458
+ },
2459
+ "defaultValue": null
2460
+ }
2461
+ ],
2462
+ "type": {
2463
+ "kind": "OBJECT",
2464
+ "name": "StopNegotiatingPayload",
2465
+ "ofType": null
2466
+ },
2467
+ "isDeprecated": false,
2468
+ "deprecationReason": null
2469
+ },
2673
2470
  {
2674
2471
  "name": "UpdateCustomer",
2675
2472
  "description": null,
2676
2473
  "args": [
2677
2474
  {
2678
2475
  "name": "input",
2679
- "description": null,
2476
+ "description": "Parameters for UpdateCustomer",
2680
2477
  "type": {
2681
2478
  "kind": "NON_NULL",
2682
2479
  "name": null,
@@ -2703,7 +2500,7 @@
2703
2500
  "args": [
2704
2501
  {
2705
2502
  "name": "input",
2706
- "description": null,
2503
+ "description": "Parameters for UpdateWebhookUrls",
2707
2504
  "type": {
2708
2505
  "kind": "NON_NULL",
2709
2506
  "name": null,
@@ -2726,9 +2523,7 @@
2726
2523
  }
2727
2524
  ],
2728
2525
  "inputFields": null,
2729
- "interfaces": [
2730
-
2731
- ],
2526
+ "interfaces": [],
2732
2527
  "enumValues": null,
2733
2528
  "possibleTypes": null
2734
2529
  },
@@ -2740,9 +2535,7 @@
2740
2535
  {
2741
2536
  "name": "billId",
2742
2537
  "description": null,
2743
- "args": [
2744
-
2745
- ],
2538
+ "args": [],
2746
2539
  "type": {
2747
2540
  "kind": "NON_NULL",
2748
2541
  "name": null,
@@ -2758,9 +2551,7 @@
2758
2551
  {
2759
2552
  "name": "cancelledAt",
2760
2553
  "description": null,
2761
- "args": [
2762
-
2763
- ],
2554
+ "args": [],
2764
2555
  "type": {
2765
2556
  "kind": "SCALAR",
2766
2557
  "name": "DateTime",
@@ -2772,9 +2563,7 @@
2772
2563
  {
2773
2564
  "name": "compedAt",
2774
2565
  "description": null,
2775
- "args": [
2776
-
2777
- ],
2566
+ "args": [],
2778
2567
  "type": {
2779
2568
  "kind": "SCALAR",
2780
2569
  "name": "DateTime",
@@ -2786,9 +2575,7 @@
2786
2575
  {
2787
2576
  "name": "createdAt",
2788
2577
  "description": null,
2789
- "args": [
2790
-
2791
- ],
2578
+ "args": [],
2792
2579
  "type": {
2793
2580
  "kind": "NON_NULL",
2794
2581
  "name": null,
@@ -2804,9 +2591,7 @@
2804
2591
  {
2805
2592
  "name": "deletedAt",
2806
2593
  "description": null,
2807
- "args": [
2808
-
2809
- ],
2594
+ "args": [],
2810
2595
  "type": {
2811
2596
  "kind": "SCALAR",
2812
2597
  "name": "DateTime",
@@ -2818,9 +2603,7 @@
2818
2603
  {
2819
2604
  "name": "failedAt",
2820
2605
  "description": null,
2821
- "args": [
2822
-
2823
- ],
2606
+ "args": [],
2824
2607
  "type": {
2825
2608
  "kind": "SCALAR",
2826
2609
  "name": "DateTime",
@@ -2832,9 +2615,7 @@
2832
2615
  {
2833
2616
  "name": "fixedAt",
2834
2617
  "description": null,
2835
- "args": [
2836
-
2837
- ],
2618
+ "args": [],
2838
2619
  "type": {
2839
2620
  "kind": "SCALAR",
2840
2621
  "name": "DateTime",
@@ -2846,9 +2627,7 @@
2846
2627
  {
2847
2628
  "name": "fixerIds",
2848
2629
  "description": null,
2849
- "args": [
2850
-
2851
- ],
2630
+ "args": [],
2852
2631
  "type": {
2853
2632
  "kind": "NON_NULL",
2854
2633
  "name": null,
@@ -2872,9 +2651,7 @@
2872
2651
  {
2873
2652
  "name": "fixers",
2874
2653
  "description": null,
2875
- "args": [
2876
-
2877
- ],
2654
+ "args": [],
2878
2655
  "type": {
2879
2656
  "kind": "NON_NULL",
2880
2657
  "name": null,
@@ -2898,9 +2675,7 @@
2898
2675
  {
2899
2676
  "name": "id",
2900
2677
  "description": null,
2901
- "args": [
2902
-
2903
- ],
2678
+ "args": [],
2904
2679
  "type": {
2905
2680
  "kind": "NON_NULL",
2906
2681
  "name": null,
@@ -2916,9 +2691,7 @@
2916
2691
  {
2917
2692
  "name": "informationRequests",
2918
2693
  "description": null,
2919
- "args": [
2920
-
2921
- ],
2694
+ "args": [],
2922
2695
  "type": {
2923
2696
  "kind": "NON_NULL",
2924
2697
  "name": null,
@@ -2942,9 +2715,7 @@
2942
2715
  {
2943
2716
  "name": "invoicedAt",
2944
2717
  "description": null,
2945
- "args": [
2946
-
2947
- ],
2718
+ "args": [],
2948
2719
  "type": {
2949
2720
  "kind": "SCALAR",
2950
2721
  "name": "DateTime",
@@ -2956,9 +2727,7 @@
2956
2727
  {
2957
2728
  "name": "items",
2958
2729
  "description": null,
2959
- "args": [
2960
-
2961
- ],
2730
+ "args": [],
2962
2731
  "type": {
2963
2732
  "kind": "NON_NULL",
2964
2733
  "name": null,
@@ -2982,9 +2751,7 @@
2982
2751
  {
2983
2752
  "name": "negotiationNumber",
2984
2753
  "description": null,
2985
- "args": [
2986
-
2987
- ],
2754
+ "args": [],
2988
2755
  "type": {
2989
2756
  "kind": "NON_NULL",
2990
2757
  "name": null,
@@ -3000,9 +2767,7 @@
3000
2767
  {
3001
2768
  "name": "requestedConsentAt",
3002
2769
  "description": null,
3003
- "args": [
3004
-
3005
- ],
2770
+ "args": [],
3006
2771
  "type": {
3007
2772
  "kind": "SCALAR",
3008
2773
  "name": "DateTime",
@@ -3014,9 +2779,7 @@
3014
2779
  {
3015
2780
  "name": "requestedInformationAt",
3016
2781
  "description": null,
3017
- "args": [
3018
-
3019
- ],
2782
+ "args": [],
3020
2783
  "type": {
3021
2784
  "kind": "SCALAR",
3022
2785
  "name": "DateTime",
@@ -3028,9 +2791,7 @@
3028
2791
  {
3029
2792
  "name": "startedAt",
3030
2793
  "description": null,
3031
- "args": [
3032
-
3033
- ],
2794
+ "args": [],
3034
2795
  "type": {
3035
2796
  "kind": "SCALAR",
3036
2797
  "name": "DateTime",
@@ -3042,9 +2803,7 @@
3042
2803
  {
3043
2804
  "name": "state",
3044
2805
  "description": null,
3045
- "args": [
3046
-
3047
- ],
2806
+ "args": [],
3048
2807
  "type": {
3049
2808
  "kind": "NON_NULL",
3050
2809
  "name": null,
@@ -3060,9 +2819,7 @@
3060
2819
  {
3061
2820
  "name": "tags",
3062
2821
  "description": null,
3063
- "args": [
3064
-
3065
- ],
2822
+ "args": [],
3066
2823
  "type": {
3067
2824
  "kind": "NON_NULL",
3068
2825
  "name": null,
@@ -3086,9 +2843,7 @@
3086
2843
  {
3087
2844
  "name": "totalSavings",
3088
2845
  "description": null,
3089
- "args": [
3090
-
3091
- ],
2846
+ "args": [],
3092
2847
  "type": {
3093
2848
  "kind": "NON_NULL",
3094
2849
  "name": null,
@@ -3104,9 +2859,7 @@
3104
2859
  {
3105
2860
  "name": "updatedAt",
3106
2861
  "description": null,
3107
- "args": [
3108
-
3109
- ],
2862
+ "args": [],
3110
2863
  "type": {
3111
2864
  "kind": "NON_NULL",
3112
2865
  "name": null,
@@ -3121,9 +2874,7 @@
3121
2874
  }
3122
2875
  ],
3123
2876
  "inputFields": null,
3124
- "interfaces": [
3125
-
3126
- ],
2877
+ "interfaces": [],
3127
2878
  "enumValues": null,
3128
2879
  "possibleTypes": null
3129
2880
  },
@@ -3135,9 +2886,7 @@
3135
2886
  {
3136
2887
  "name": "acceptedAt",
3137
2888
  "description": null,
3138
- "args": [
3139
-
3140
- ],
2889
+ "args": [],
3141
2890
  "type": {
3142
2891
  "kind": "SCALAR",
3143
2892
  "name": "DateTime",
@@ -3149,9 +2898,7 @@
3149
2898
  {
3150
2899
  "name": "bill",
3151
2900
  "description": null,
3152
- "args": [
3153
-
3154
- ],
2901
+ "args": [],
3155
2902
  "type": {
3156
2903
  "kind": "NON_NULL",
3157
2904
  "name": null,
@@ -3167,9 +2914,7 @@
3167
2914
  {
3168
2915
  "name": "content",
3169
2916
  "description": null,
3170
- "args": [
3171
-
3172
- ],
2917
+ "args": [],
3173
2918
  "type": {
3174
2919
  "kind": "NON_NULL",
3175
2920
  "name": null,
@@ -3185,9 +2930,7 @@
3185
2930
  {
3186
2931
  "name": "contentHtml",
3187
2932
  "description": null,
3188
- "args": [
3189
-
3190
- ],
2933
+ "args": [],
3191
2934
  "type": {
3192
2935
  "kind": "NON_NULL",
3193
2936
  "name": null,
@@ -3203,9 +2946,7 @@
3203
2946
  {
3204
2947
  "name": "createdAt",
3205
2948
  "description": null,
3206
- "args": [
3207
-
3208
- ],
2949
+ "args": [],
3209
2950
  "type": {
3210
2951
  "kind": "NON_NULL",
3211
2952
  "name": null,
@@ -3221,9 +2962,7 @@
3221
2962
  {
3222
2963
  "name": "customer",
3223
2964
  "description": null,
3224
- "args": [
3225
-
3226
- ],
2965
+ "args": [],
3227
2966
  "type": {
3228
2967
  "kind": "NON_NULL",
3229
2968
  "name": null,
@@ -3236,12 +2975,26 @@
3236
2975
  "isDeprecated": false,
3237
2976
  "deprecationReason": null
3238
2977
  },
2978
+ {
2979
+ "name": "daysUntilExpiration",
2980
+ "description": null,
2981
+ "args": [],
2982
+ "type": {
2983
+ "kind": "NON_NULL",
2984
+ "name": null,
2985
+ "ofType": {
2986
+ "kind": "SCALAR",
2987
+ "name": "Int",
2988
+ "ofType": null
2989
+ }
2990
+ },
2991
+ "isDeprecated": false,
2992
+ "deprecationReason": null
2993
+ },
3239
2994
  {
3240
2995
  "name": "id",
3241
2996
  "description": "Alpha-numeric unique identifier",
3242
- "args": [
3243
-
3244
- ],
2997
+ "args": [],
3245
2998
  "type": {
3246
2999
  "kind": "NON_NULL",
3247
3000
  "name": null,
@@ -3257,9 +3010,7 @@
3257
3010
  {
3258
3011
  "name": "rejectedAt",
3259
3012
  "description": null,
3260
- "args": [
3261
-
3262
- ],
3013
+ "args": [],
3263
3014
  "type": {
3264
3015
  "kind": "SCALAR",
3265
3016
  "name": "DateTime",
@@ -3271,9 +3022,7 @@
3271
3022
  {
3272
3023
  "name": "status",
3273
3024
  "description": null,
3274
- "args": [
3275
-
3276
- ],
3025
+ "args": [],
3277
3026
  "type": {
3278
3027
  "kind": "NON_NULL",
3279
3028
  "name": null,
@@ -3289,9 +3038,7 @@
3289
3038
  {
3290
3039
  "name": "updatedAt",
3291
3040
  "description": null,
3292
- "args": [
3293
-
3294
- ],
3041
+ "args": [],
3295
3042
  "type": {
3296
3043
  "kind": "NON_NULL",
3297
3044
  "name": null,
@@ -3306,9 +3053,7 @@
3306
3053
  }
3307
3054
  ],
3308
3055
  "inputFields": null,
3309
- "interfaces": [
3310
-
3311
- ],
3056
+ "interfaces": [],
3312
3057
  "enumValues": null,
3313
3058
  "possibleTypes": null
3314
3059
  },
@@ -3320,9 +3065,7 @@
3320
3065
  {
3321
3066
  "name": "edges",
3322
3067
  "description": "A list of edges.",
3323
- "args": [
3324
-
3325
- ],
3068
+ "args": [],
3326
3069
  "type": {
3327
3070
  "kind": "NON_NULL",
3328
3071
  "name": null,
@@ -3346,9 +3089,7 @@
3346
3089
  {
3347
3090
  "name": "nodes",
3348
3091
  "description": "A list of nodes.",
3349
- "args": [
3350
-
3351
- ],
3092
+ "args": [],
3352
3093
  "type": {
3353
3094
  "kind": "NON_NULL",
3354
3095
  "name": null,
@@ -3372,9 +3113,7 @@
3372
3113
  {
3373
3114
  "name": "pageInfo",
3374
3115
  "description": "Information to aid in pagination.",
3375
- "args": [
3376
-
3377
- ],
3116
+ "args": [],
3378
3117
  "type": {
3379
3118
  "kind": "NON_NULL",
3380
3119
  "name": null,
@@ -3390,9 +3129,7 @@
3390
3129
  {
3391
3130
  "name": "totalCount",
3392
3131
  "description": null,
3393
- "args": [
3394
-
3395
- ],
3132
+ "args": [],
3396
3133
  "type": {
3397
3134
  "kind": "NON_NULL",
3398
3135
  "name": null,
@@ -3407,9 +3144,7 @@
3407
3144
  }
3408
3145
  ],
3409
3146
  "inputFields": null,
3410
- "interfaces": [
3411
-
3412
- ],
3147
+ "interfaces": [],
3413
3148
  "enumValues": null,
3414
3149
  "possibleTypes": null
3415
3150
  },
@@ -3421,9 +3156,7 @@
3421
3156
  {
3422
3157
  "name": "cursor",
3423
3158
  "description": "A cursor for use in pagination.",
3424
- "args": [
3425
-
3426
- ],
3159
+ "args": [],
3427
3160
  "type": {
3428
3161
  "kind": "NON_NULL",
3429
3162
  "name": null,
@@ -3439,9 +3172,7 @@
3439
3172
  {
3440
3173
  "name": "node",
3441
3174
  "description": "The item at the end of the edge.",
3442
- "args": [
3443
-
3444
- ],
3175
+ "args": [],
3445
3176
  "type": {
3446
3177
  "kind": "OBJECT",
3447
3178
  "name": "Offer",
@@ -3452,9 +3183,7 @@
3452
3183
  }
3453
3184
  ],
3454
3185
  "inputFields": null,
3455
- "interfaces": [
3456
-
3457
- ],
3186
+ "interfaces": [],
3458
3187
  "enumValues": null,
3459
3188
  "possibleTypes": null
3460
3189
  },
@@ -3466,9 +3195,7 @@
3466
3195
  {
3467
3196
  "name": "endCursor",
3468
3197
  "description": "When paginating forwards, the cursor to continue.",
3469
- "args": [
3470
-
3471
- ],
3198
+ "args": [],
3472
3199
  "type": {
3473
3200
  "kind": "SCALAR",
3474
3201
  "name": "String",
@@ -3480,9 +3207,7 @@
3480
3207
  {
3481
3208
  "name": "hasNextPage",
3482
3209
  "description": "When paginating forwards, are there more items?",
3483
- "args": [
3484
-
3485
- ],
3210
+ "args": [],
3486
3211
  "type": {
3487
3212
  "kind": "NON_NULL",
3488
3213
  "name": null,
@@ -3498,9 +3223,7 @@
3498
3223
  {
3499
3224
  "name": "hasPreviousPage",
3500
3225
  "description": "When paginating backwards, are there more items?",
3501
- "args": [
3502
-
3503
- ],
3226
+ "args": [],
3504
3227
  "type": {
3505
3228
  "kind": "NON_NULL",
3506
3229
  "name": null,
@@ -3516,9 +3239,7 @@
3516
3239
  {
3517
3240
  "name": "startCursor",
3518
3241
  "description": "When paginating backwards, the cursor to continue.",
3519
- "args": [
3520
-
3521
- ],
3242
+ "args": [],
3522
3243
  "type": {
3523
3244
  "kind": "SCALAR",
3524
3245
  "name": "String",
@@ -3529,9 +3250,7 @@
3529
3250
  }
3530
3251
  ],
3531
3252
  "inputFields": null,
3532
- "interfaces": [
3533
-
3534
- ],
3253
+ "interfaces": [],
3535
3254
  "enumValues": null,
3536
3255
  "possibleTypes": null
3537
3256
  },
@@ -3543,9 +3262,7 @@
3543
3262
  {
3544
3263
  "name": "createdAt",
3545
3264
  "description": null,
3546
- "args": [
3547
-
3548
- ],
3265
+ "args": [],
3549
3266
  "type": {
3550
3267
  "kind": "NON_NULL",
3551
3268
  "name": null,
@@ -3561,9 +3278,7 @@
3561
3278
  {
3562
3279
  "name": "id",
3563
3280
  "description": "Alpha-numeric unique identifier",
3564
- "args": [
3565
-
3566
- ],
3281
+ "args": [],
3567
3282
  "type": {
3568
3283
  "kind": "NON_NULL",
3569
3284
  "name": null,
@@ -3579,9 +3294,7 @@
3579
3294
  {
3580
3295
  "name": "liveWebhookUrl",
3581
3296
  "description": "Webhook URL for live/production requests",
3582
- "args": [
3583
-
3584
- ],
3297
+ "args": [],
3585
3298
  "type": {
3586
3299
  "kind": "SCALAR",
3587
3300
  "name": "String",
@@ -3591,15 +3304,57 @@
3591
3304
  "deprecationReason": null
3592
3305
  },
3593
3306
  {
3594
- "name": "testWebhookUrl",
3595
- "description": "Webhook URL for test/development requests",
3596
- "args": [
3597
-
3598
- ],
3307
+ "name": "name",
3308
+ "description": "Name of the partner",
3309
+ "args": [],
3599
3310
  "type": {
3600
- "kind": "SCALAR",
3601
- "name": "String",
3602
- "ofType": null
3311
+ "kind": "NON_NULL",
3312
+ "name": null,
3313
+ "ofType": {
3314
+ "kind": "SCALAR",
3315
+ "name": "String",
3316
+ "ofType": null
3317
+ }
3318
+ },
3319
+ "isDeprecated": false,
3320
+ "deprecationReason": null
3321
+ },
3322
+ {
3323
+ "name": "referralCode",
3324
+ "description": "The partner's referral code",
3325
+ "args": [],
3326
+ "type": {
3327
+ "kind": "SCALAR",
3328
+ "name": "String",
3329
+ "ofType": null
3330
+ },
3331
+ "isDeprecated": false,
3332
+ "deprecationReason": null
3333
+ },
3334
+ {
3335
+ "name": "referralLink",
3336
+ "description": "The partner's referral link",
3337
+ "args": [],
3338
+ "type": {
3339
+ "kind": "NON_NULL",
3340
+ "name": null,
3341
+ "ofType": {
3342
+ "kind": "SCALAR",
3343
+ "name": "String",
3344
+ "ofType": null
3345
+ }
3346
+ },
3347
+ "isDeprecated": false,
3348
+ "deprecationReason": null
3349
+ },
3350
+ {
3351
+ "name": "testWebhookUrl",
3352
+ "description": "Webhook URL for test/development requests",
3353
+ "args": [],
3354
+ "type": {
3355
+ "kind": "SCALAR",
3356
+ "name": "String",
3357
+ "ofType": null
3603
3358
  },
3604
3359
  "isDeprecated": false,
3605
3360
  "deprecationReason": null
@@ -3607,9 +3362,7 @@
3607
3362
  {
3608
3363
  "name": "updatedAt",
3609
3364
  "description": null,
3610
- "args": [
3611
-
3612
- ],
3365
+ "args": [],
3613
3366
  "type": {
3614
3367
  "kind": "NON_NULL",
3615
3368
  "name": null,
@@ -3624,9 +3377,7 @@
3624
3377
  }
3625
3378
  ],
3626
3379
  "inputFields": null,
3627
- "interfaces": [
3628
-
3629
- ],
3380
+ "interfaces": [],
3630
3381
  "enumValues": null,
3631
3382
  "possibleTypes": null
3632
3383
  },
@@ -3638,9 +3389,7 @@
3638
3389
  {
3639
3390
  "name": "billFields",
3640
3391
  "description": null,
3641
- "args": [
3642
-
3643
- ],
3392
+ "args": [],
3644
3393
  "type": {
3645
3394
  "kind": "NON_NULL",
3646
3395
  "name": null,
@@ -3664,9 +3413,7 @@
3664
3413
  {
3665
3414
  "name": "createdAt",
3666
3415
  "description": null,
3667
- "args": [
3668
-
3669
- ],
3416
+ "args": [],
3670
3417
  "type": {
3671
3418
  "kind": "NON_NULL",
3672
3419
  "name": null,
@@ -3682,9 +3429,7 @@
3682
3429
  {
3683
3430
  "name": "id",
3684
3431
  "description": null,
3685
- "args": [
3686
-
3687
- ],
3432
+ "args": [],
3688
3433
  "type": {
3689
3434
  "kind": "NON_NULL",
3690
3435
  "name": null,
@@ -3700,9 +3445,7 @@
3700
3445
  {
3701
3446
  "name": "logo",
3702
3447
  "description": null,
3703
- "args": [
3704
-
3705
- ],
3448
+ "args": [],
3706
3449
  "type": {
3707
3450
  "kind": "OBJECT",
3708
3451
  "name": "Image",
@@ -3714,9 +3457,7 @@
3714
3457
  {
3715
3458
  "name": "name",
3716
3459
  "description": null,
3717
- "args": [
3718
-
3719
- ],
3460
+ "args": [],
3720
3461
  "type": {
3721
3462
  "kind": "NON_NULL",
3722
3463
  "name": null,
@@ -3732,9 +3473,7 @@
3732
3473
  {
3733
3474
  "name": "services",
3734
3475
  "description": null,
3735
- "args": [
3736
-
3737
- ],
3476
+ "args": [],
3738
3477
  "type": {
3739
3478
  "kind": "NON_NULL",
3740
3479
  "name": null,
@@ -3758,9 +3497,7 @@
3758
3497
  {
3759
3498
  "name": "updatedAt",
3760
3499
  "description": null,
3761
- "args": [
3762
-
3763
- ],
3500
+ "args": [],
3764
3501
  "type": {
3765
3502
  "kind": "NON_NULL",
3766
3503
  "name": null,
@@ -3775,9 +3512,7 @@
3775
3512
  }
3776
3513
  ],
3777
3514
  "inputFields": null,
3778
- "interfaces": [
3779
-
3780
- ],
3515
+ "interfaces": [],
3781
3516
  "enumValues": null,
3782
3517
  "possibleTypes": null
3783
3518
  },
@@ -3786,6 +3521,22 @@
3786
3521
  "name": "Query",
3787
3522
  "description": null,
3788
3523
  "fields": [
3524
+ {
3525
+ "name": "CalculateSavingsEstimate",
3526
+ "description": null,
3527
+ "args": [],
3528
+ "type": {
3529
+ "kind": "NON_NULL",
3530
+ "name": null,
3531
+ "ofType": {
3532
+ "kind": "OBJECT",
3533
+ "name": "SavingsEstimate",
3534
+ "ofType": null
3535
+ }
3536
+ },
3537
+ "isDeprecated": false,
3538
+ "deprecationReason": null
3539
+ },
3789
3540
  {
3790
3541
  "name": "FindBill",
3791
3542
  "description": null,
@@ -3816,9 +3567,7 @@
3816
3567
  {
3817
3568
  "name": "FindCurrentPartner",
3818
3569
  "description": null,
3819
- "args": [
3820
-
3821
- ],
3570
+ "args": [],
3822
3571
  "type": {
3823
3572
  "kind": "NON_NULL",
3824
3573
  "name": null,
@@ -4360,9 +4109,7 @@
4360
4109
  {
4361
4110
  "name": "ListProviders",
4362
4111
  "description": null,
4363
- "args": [
4364
-
4365
- ],
4112
+ "args": [],
4366
4113
  "type": {
4367
4114
  "kind": "NON_NULL",
4368
4115
  "name": null,
@@ -4385,9 +4132,7 @@
4385
4132
  }
4386
4133
  ],
4387
4134
  "inputFields": null,
4388
- "interfaces": [
4389
-
4390
- ],
4135
+ "interfaces": [],
4391
4136
  "enumValues": null,
4392
4137
  "possibleTypes": null
4393
4138
  },
@@ -4434,9 +4179,7 @@
4434
4179
  {
4435
4180
  "name": "clientMutationId",
4436
4181
  "description": "A unique identifier for the client performing the mutation.",
4437
- "args": [
4438
-
4439
- ],
4182
+ "args": [],
4440
4183
  "type": {
4441
4184
  "kind": "SCALAR",
4442
4185
  "name": "String",
@@ -4448,9 +4191,129 @@
4448
4191
  {
4449
4192
  "name": "errors",
4450
4193
  "description": null,
4451
- "args": [
4452
-
4453
- ],
4194
+ "args": [],
4195
+ "type": {
4196
+ "kind": "NON_NULL",
4197
+ "name": null,
4198
+ "ofType": {
4199
+ "kind": "LIST",
4200
+ "name": null,
4201
+ "ofType": {
4202
+ "kind": "NON_NULL",
4203
+ "name": null,
4204
+ "ofType": {
4205
+ "kind": "SCALAR",
4206
+ "name": "String",
4207
+ "ofType": null
4208
+ }
4209
+ }
4210
+ }
4211
+ },
4212
+ "isDeprecated": false,
4213
+ "deprecationReason": null
4214
+ },
4215
+ {
4216
+ "name": "offer",
4217
+ "description": null,
4218
+ "args": [],
4219
+ "type": {
4220
+ "kind": "OBJECT",
4221
+ "name": "Offer",
4222
+ "ofType": null
4223
+ },
4224
+ "isDeprecated": false,
4225
+ "deprecationReason": null
4226
+ },
4227
+ {
4228
+ "name": "success",
4229
+ "description": null,
4230
+ "args": [],
4231
+ "type": {
4232
+ "kind": "NON_NULL",
4233
+ "name": null,
4234
+ "ofType": {
4235
+ "kind": "SCALAR",
4236
+ "name": "Boolean",
4237
+ "ofType": null
4238
+ }
4239
+ },
4240
+ "isDeprecated": false,
4241
+ "deprecationReason": null
4242
+ }
4243
+ ],
4244
+ "inputFields": null,
4245
+ "interfaces": [],
4246
+ "enumValues": null,
4247
+ "possibleTypes": null
4248
+ },
4249
+ {
4250
+ "kind": "INPUT_OBJECT",
4251
+ "name": "RenegotiateBillInput",
4252
+ "description": "Autogenerated input type of RenegotiateBill",
4253
+ "fields": null,
4254
+ "inputFields": [
4255
+ {
4256
+ "name": "id",
4257
+ "description": "Id of the bill that should be renegotiated",
4258
+ "type": {
4259
+ "kind": "NON_NULL",
4260
+ "name": null,
4261
+ "ofType": {
4262
+ "kind": "SCALAR",
4263
+ "name": "ID",
4264
+ "ofType": null
4265
+ }
4266
+ },
4267
+ "defaultValue": null
4268
+ },
4269
+ {
4270
+ "name": "clientMutationId",
4271
+ "description": "A unique identifier for the client performing the mutation.",
4272
+ "type": {
4273
+ "kind": "SCALAR",
4274
+ "name": "String",
4275
+ "ofType": null
4276
+ },
4277
+ "defaultValue": null
4278
+ }
4279
+ ],
4280
+ "interfaces": null,
4281
+ "enumValues": null,
4282
+ "possibleTypes": null
4283
+ },
4284
+ {
4285
+ "kind": "OBJECT",
4286
+ "name": "RenegotiateBillPayload",
4287
+ "description": "Autogenerated return type of RenegotiateBill",
4288
+ "fields": [
4289
+ {
4290
+ "name": "bill",
4291
+ "description": null,
4292
+ "args": [],
4293
+ "type": {
4294
+ "kind": "OBJECT",
4295
+ "name": "Bill",
4296
+ "ofType": null
4297
+ },
4298
+ "isDeprecated": false,
4299
+ "deprecationReason": null
4300
+ },
4301
+ {
4302
+ "name": "clientMutationId",
4303
+ "description": "A unique identifier for the client performing the mutation.",
4304
+ "args": [],
4305
+ "type": {
4306
+ "kind": "SCALAR",
4307
+ "name": "String",
4308
+ "ofType": null
4309
+ },
4310
+ "isDeprecated": false,
4311
+ "deprecationReason": null
4312
+ },
4313
+ {
4314
+ "name": "errors",
4315
+ "description": null,
4316
+ "args": [],
4454
4317
  "type": {
4455
4318
  "kind": "NON_NULL",
4456
4319
  "name": null,
@@ -4462,41 +4325,319 @@
4462
4325
  "name": null,
4463
4326
  "ofType": {
4464
4327
  "kind": "SCALAR",
4465
- "name": "String",
4328
+ "name": "String",
4329
+ "ofType": null
4330
+ }
4331
+ }
4332
+ }
4333
+ },
4334
+ "isDeprecated": false,
4335
+ "deprecationReason": null
4336
+ },
4337
+ {
4338
+ "name": "success",
4339
+ "description": null,
4340
+ "args": [],
4341
+ "type": {
4342
+ "kind": "NON_NULL",
4343
+ "name": null,
4344
+ "ofType": {
4345
+ "kind": "SCALAR",
4346
+ "name": "Boolean",
4347
+ "ofType": null
4348
+ }
4349
+ },
4350
+ "isDeprecated": false,
4351
+ "deprecationReason": null
4352
+ }
4353
+ ],
4354
+ "inputFields": null,
4355
+ "interfaces": [],
4356
+ "enumValues": null,
4357
+ "possibleTypes": null
4358
+ },
4359
+ {
4360
+ "kind": "INPUT_OBJECT",
4361
+ "name": "RespondToInformationRequestInput",
4362
+ "description": "Autogenerated input type of RespondToInformationRequest",
4363
+ "fields": null,
4364
+ "inputFields": [
4365
+ {
4366
+ "name": "id",
4367
+ "description": "Id of the information request",
4368
+ "type": {
4369
+ "kind": "NON_NULL",
4370
+ "name": null,
4371
+ "ofType": {
4372
+ "kind": "SCALAR",
4373
+ "name": "ID",
4374
+ "ofType": null
4375
+ }
4376
+ },
4377
+ "defaultValue": null
4378
+ },
4379
+ {
4380
+ "name": "informationRequest",
4381
+ "description": null,
4382
+ "type": {
4383
+ "kind": "NON_NULL",
4384
+ "name": null,
4385
+ "ofType": {
4386
+ "kind": "INPUT_OBJECT",
4387
+ "name": "InformationRequestAttributes",
4388
+ "ofType": null
4389
+ }
4390
+ },
4391
+ "defaultValue": null
4392
+ },
4393
+ {
4394
+ "name": "clientMutationId",
4395
+ "description": "A unique identifier for the client performing the mutation.",
4396
+ "type": {
4397
+ "kind": "SCALAR",
4398
+ "name": "String",
4399
+ "ofType": null
4400
+ },
4401
+ "defaultValue": null
4402
+ }
4403
+ ],
4404
+ "interfaces": null,
4405
+ "enumValues": null,
4406
+ "possibleTypes": null
4407
+ },
4408
+ {
4409
+ "kind": "OBJECT",
4410
+ "name": "RespondToInformationRequestPayload",
4411
+ "description": "Autogenerated return type of RespondToInformationRequest",
4412
+ "fields": [
4413
+ {
4414
+ "name": "bill",
4415
+ "description": null,
4416
+ "args": [],
4417
+ "type": {
4418
+ "kind": "OBJECT",
4419
+ "name": "Bill",
4420
+ "ofType": null
4421
+ },
4422
+ "isDeprecated": false,
4423
+ "deprecationReason": null
4424
+ },
4425
+ {
4426
+ "name": "clientMutationId",
4427
+ "description": "A unique identifier for the client performing the mutation.",
4428
+ "args": [],
4429
+ "type": {
4430
+ "kind": "SCALAR",
4431
+ "name": "String",
4432
+ "ofType": null
4433
+ },
4434
+ "isDeprecated": false,
4435
+ "deprecationReason": null
4436
+ },
4437
+ {
4438
+ "name": "errors",
4439
+ "description": null,
4440
+ "args": [],
4441
+ "type": {
4442
+ "kind": "NON_NULL",
4443
+ "name": null,
4444
+ "ofType": {
4445
+ "kind": "LIST",
4446
+ "name": null,
4447
+ "ofType": {
4448
+ "kind": "NON_NULL",
4449
+ "name": null,
4450
+ "ofType": {
4451
+ "kind": "SCALAR",
4452
+ "name": "String",
4453
+ "ofType": null
4454
+ }
4455
+ }
4456
+ }
4457
+ },
4458
+ "isDeprecated": false,
4459
+ "deprecationReason": null
4460
+ },
4461
+ {
4462
+ "name": "informationRequest",
4463
+ "description": null,
4464
+ "args": [],
4465
+ "type": {
4466
+ "kind": "OBJECT",
4467
+ "name": "InformationRequest",
4468
+ "ofType": null
4469
+ },
4470
+ "isDeprecated": false,
4471
+ "deprecationReason": null
4472
+ },
4473
+ {
4474
+ "name": "negotiation",
4475
+ "description": null,
4476
+ "args": [],
4477
+ "type": {
4478
+ "kind": "OBJECT",
4479
+ "name": "Negotiation",
4480
+ "ofType": null
4481
+ },
4482
+ "isDeprecated": false,
4483
+ "deprecationReason": null
4484
+ },
4485
+ {
4486
+ "name": "success",
4487
+ "description": null,
4488
+ "args": [],
4489
+ "type": {
4490
+ "kind": "NON_NULL",
4491
+ "name": null,
4492
+ "ofType": {
4493
+ "kind": "SCALAR",
4494
+ "name": "Boolean",
4495
+ "ofType": null
4496
+ }
4497
+ },
4498
+ "isDeprecated": false,
4499
+ "deprecationReason": null
4500
+ }
4501
+ ],
4502
+ "inputFields": null,
4503
+ "interfaces": [],
4504
+ "enumValues": null,
4505
+ "possibleTypes": null
4506
+ },
4507
+ {
4508
+ "kind": "OBJECT",
4509
+ "name": "SavingsEstimate",
4510
+ "description": null,
4511
+ "fields": [
4512
+ {
4513
+ "name": "estimatedAnnualSavings",
4514
+ "description": null,
4515
+ "args": [
4516
+ {
4517
+ "name": "providerId",
4518
+ "description": null,
4519
+ "type": {
4520
+ "kind": "NON_NULL",
4521
+ "name": null,
4522
+ "ofType": {
4523
+ "kind": "SCALAR",
4524
+ "name": "ID",
4525
+ "ofType": null
4526
+ }
4527
+ },
4528
+ "defaultValue": null
4529
+ },
4530
+ {
4531
+ "name": "currentMonthlyAmount",
4532
+ "description": null,
4533
+ "type": {
4534
+ "kind": "NON_NULL",
4535
+ "name": null,
4536
+ "ofType": {
4537
+ "kind": "SCALAR",
4538
+ "name": "Float",
4539
+ "ofType": null
4540
+ }
4541
+ },
4542
+ "defaultValue": null
4543
+ }
4544
+ ],
4545
+ "type": {
4546
+ "kind": "NON_NULL",
4547
+ "name": null,
4548
+ "ofType": {
4549
+ "kind": "SCALAR",
4550
+ "name": "Money",
4551
+ "ofType": null
4552
+ }
4553
+ },
4554
+ "isDeprecated": false,
4555
+ "deprecationReason": null
4556
+ },
4557
+ {
4558
+ "name": "estimatedMonthlySavings",
4559
+ "description": null,
4560
+ "args": [
4561
+ {
4562
+ "name": "providerId",
4563
+ "description": null,
4564
+ "type": {
4565
+ "kind": "NON_NULL",
4566
+ "name": null,
4567
+ "ofType": {
4568
+ "kind": "SCALAR",
4569
+ "name": "ID",
4570
+ "ofType": null
4571
+ }
4572
+ },
4573
+ "defaultValue": null
4574
+ },
4575
+ {
4576
+ "name": "currentMonthlyAmount",
4577
+ "description": null,
4578
+ "type": {
4579
+ "kind": "NON_NULL",
4580
+ "name": null,
4581
+ "ofType": {
4582
+ "kind": "SCALAR",
4583
+ "name": "Float",
4466
4584
  "ofType": null
4467
4585
  }
4468
- }
4586
+ },
4587
+ "defaultValue": null
4469
4588
  }
4470
- },
4471
- "isDeprecated": false,
4472
- "deprecationReason": null
4473
- },
4474
- {
4475
- "name": "offer",
4476
- "description": null,
4477
- "args": [
4478
-
4479
4589
  ],
4480
4590
  "type": {
4481
- "kind": "OBJECT",
4482
- "name": "Offer",
4483
- "ofType": null
4591
+ "kind": "NON_NULL",
4592
+ "name": null,
4593
+ "ofType": {
4594
+ "kind": "SCALAR",
4595
+ "name": "Money",
4596
+ "ofType": null
4597
+ }
4484
4598
  },
4485
4599
  "isDeprecated": false,
4486
4600
  "deprecationReason": null
4487
4601
  },
4488
4602
  {
4489
- "name": "success",
4603
+ "name": "percentageSavings",
4490
4604
  "description": null,
4491
4605
  "args": [
4492
-
4606
+ {
4607
+ "name": "providerId",
4608
+ "description": null,
4609
+ "type": {
4610
+ "kind": "NON_NULL",
4611
+ "name": null,
4612
+ "ofType": {
4613
+ "kind": "SCALAR",
4614
+ "name": "ID",
4615
+ "ofType": null
4616
+ }
4617
+ },
4618
+ "defaultValue": null
4619
+ },
4620
+ {
4621
+ "name": "currentMonthlyAmount",
4622
+ "description": null,
4623
+ "type": {
4624
+ "kind": "NON_NULL",
4625
+ "name": null,
4626
+ "ofType": {
4627
+ "kind": "SCALAR",
4628
+ "name": "Float",
4629
+ "ofType": null
4630
+ }
4631
+ },
4632
+ "defaultValue": null
4633
+ }
4493
4634
  ],
4494
4635
  "type": {
4495
4636
  "kind": "NON_NULL",
4496
4637
  "name": null,
4497
4638
  "ofType": {
4498
4639
  "kind": "SCALAR",
4499
- "name": "Boolean",
4640
+ "name": "Float",
4500
4641
  "ofType": null
4501
4642
  }
4502
4643
  },
@@ -4505,21 +4646,19 @@
4505
4646
  }
4506
4647
  ],
4507
4648
  "inputFields": null,
4508
- "interfaces": [
4509
-
4510
- ],
4649
+ "interfaces": [],
4511
4650
  "enumValues": null,
4512
4651
  "possibleTypes": null
4513
4652
  },
4514
4653
  {
4515
4654
  "kind": "INPUT_OBJECT",
4516
- "name": "RespondToInformationRequestInput",
4517
- "description": "Autogenerated input type of RespondToInformationRequest",
4655
+ "name": "StopNegotiatingInput",
4656
+ "description": "Autogenerated input type of StopNegotiating",
4518
4657
  "fields": null,
4519
4658
  "inputFields": [
4520
4659
  {
4521
4660
  "name": "id",
4522
- "description": "Id of the information request",
4661
+ "description": null,
4523
4662
  "type": {
4524
4663
  "kind": "NON_NULL",
4525
4664
  "name": null,
@@ -4531,20 +4670,6 @@
4531
4670
  },
4532
4671
  "defaultValue": null
4533
4672
  },
4534
- {
4535
- "name": "informationRequest",
4536
- "description": null,
4537
- "type": {
4538
- "kind": "NON_NULL",
4539
- "name": null,
4540
- "ofType": {
4541
- "kind": "INPUT_OBJECT",
4542
- "name": "InformationRequestAttributes",
4543
- "ofType": null
4544
- }
4545
- },
4546
- "defaultValue": null
4547
- },
4548
4673
  {
4549
4674
  "name": "clientMutationId",
4550
4675
  "description": "A unique identifier for the client performing the mutation.",
@@ -4562,15 +4687,13 @@
4562
4687
  },
4563
4688
  {
4564
4689
  "kind": "OBJECT",
4565
- "name": "RespondToInformationRequestPayload",
4566
- "description": "Autogenerated return type of RespondToInformationRequest",
4690
+ "name": "StopNegotiatingPayload",
4691
+ "description": "Autogenerated return type of StopNegotiating",
4567
4692
  "fields": [
4568
4693
  {
4569
4694
  "name": "bill",
4570
4695
  "description": null,
4571
- "args": [
4572
-
4573
- ],
4696
+ "args": [],
4574
4697
  "type": {
4575
4698
  "kind": "OBJECT",
4576
4699
  "name": "Bill",
@@ -4582,9 +4705,7 @@
4582
4705
  {
4583
4706
  "name": "clientMutationId",
4584
4707
  "description": "A unique identifier for the client performing the mutation.",
4585
- "args": [
4586
-
4587
- ],
4708
+ "args": [],
4588
4709
  "type": {
4589
4710
  "kind": "SCALAR",
4590
4711
  "name": "String",
@@ -4596,9 +4717,7 @@
4596
4717
  {
4597
4718
  "name": "errors",
4598
4719
  "description": null,
4599
- "args": [
4600
-
4601
- ],
4720
+ "args": [],
4602
4721
  "type": {
4603
4722
  "kind": "NON_NULL",
4604
4723
  "name": null,
@@ -4619,40 +4738,10 @@
4619
4738
  "isDeprecated": false,
4620
4739
  "deprecationReason": null
4621
4740
  },
4622
- {
4623
- "name": "informationRequest",
4624
- "description": null,
4625
- "args": [
4626
-
4627
- ],
4628
- "type": {
4629
- "kind": "OBJECT",
4630
- "name": "InformationRequest",
4631
- "ofType": null
4632
- },
4633
- "isDeprecated": false,
4634
- "deprecationReason": null
4635
- },
4636
- {
4637
- "name": "negotiation",
4638
- "description": null,
4639
- "args": [
4640
-
4641
- ],
4642
- "type": {
4643
- "kind": "OBJECT",
4644
- "name": "Negotiation",
4645
- "ofType": null
4646
- },
4647
- "isDeprecated": false,
4648
- "deprecationReason": null
4649
- },
4650
4741
  {
4651
4742
  "name": "success",
4652
4743
  "description": null,
4653
- "args": [
4654
-
4655
- ],
4744
+ "args": [],
4656
4745
  "type": {
4657
4746
  "kind": "NON_NULL",
4658
4747
  "name": null,
@@ -4667,9 +4756,7 @@
4667
4756
  }
4668
4757
  ],
4669
4758
  "inputFields": null,
4670
- "interfaces": [
4671
-
4672
- ],
4759
+ "interfaces": [],
4673
4760
  "enumValues": null,
4674
4761
  "possibleTypes": null
4675
4762
  },
@@ -4740,9 +4827,7 @@
4740
4827
  {
4741
4828
  "name": "clientMutationId",
4742
4829
  "description": "A unique identifier for the client performing the mutation.",
4743
- "args": [
4744
-
4745
- ],
4830
+ "args": [],
4746
4831
  "type": {
4747
4832
  "kind": "SCALAR",
4748
4833
  "name": "String",
@@ -4754,9 +4839,7 @@
4754
4839
  {
4755
4840
  "name": "customer",
4756
4841
  "description": null,
4757
- "args": [
4758
-
4759
- ],
4842
+ "args": [],
4760
4843
  "type": {
4761
4844
  "kind": "OBJECT",
4762
4845
  "name": "Customer",
@@ -4768,9 +4851,7 @@
4768
4851
  {
4769
4852
  "name": "errors",
4770
4853
  "description": null,
4771
- "args": [
4772
-
4773
- ],
4854
+ "args": [],
4774
4855
  "type": {
4775
4856
  "kind": "NON_NULL",
4776
4857
  "name": null,
@@ -4794,9 +4875,7 @@
4794
4875
  {
4795
4876
  "name": "success",
4796
4877
  "description": null,
4797
- "args": [
4798
-
4799
- ],
4878
+ "args": [],
4800
4879
  "type": {
4801
4880
  "kind": "NON_NULL",
4802
4881
  "name": null,
@@ -4811,9 +4890,7 @@
4811
4890
  }
4812
4891
  ],
4813
4892
  "inputFields": null,
4814
- "interfaces": [
4815
-
4816
- ],
4893
+ "interfaces": [],
4817
4894
  "enumValues": null,
4818
4895
  "possibleTypes": null
4819
4896
  },
@@ -4866,9 +4943,7 @@
4866
4943
  {
4867
4944
  "name": "clientMutationId",
4868
4945
  "description": "A unique identifier for the client performing the mutation.",
4869
- "args": [
4870
-
4871
- ],
4946
+ "args": [],
4872
4947
  "type": {
4873
4948
  "kind": "SCALAR",
4874
4949
  "name": "String",
@@ -4880,9 +4955,7 @@
4880
4955
  {
4881
4956
  "name": "errors",
4882
4957
  "description": null,
4883
- "args": [
4884
-
4885
- ],
4958
+ "args": [],
4886
4959
  "type": {
4887
4960
  "kind": "NON_NULL",
4888
4961
  "name": null,
@@ -4906,9 +4979,7 @@
4906
4979
  {
4907
4980
  "name": "partner",
4908
4981
  "description": null,
4909
- "args": [
4910
-
4911
- ],
4982
+ "args": [],
4912
4983
  "type": {
4913
4984
  "kind": "NON_NULL",
4914
4985
  "name": null,
@@ -4924,9 +4995,7 @@
4924
4995
  {
4925
4996
  "name": "success",
4926
4997
  "description": null,
4927
- "args": [
4928
-
4929
- ],
4998
+ "args": [],
4930
4999
  "type": {
4931
5000
  "kind": "NON_NULL",
4932
5001
  "name": null,
@@ -4941,9 +5010,7 @@
4941
5010
  }
4942
5011
  ],
4943
5012
  "inputFields": null,
4944
- "interfaces": [
4945
-
4946
- ],
5013
+ "interfaces": [],
4947
5014
  "enumValues": null,
4948
5015
  "possibleTypes": null
4949
5016
  },
@@ -4956,7 +5023,16 @@
4956
5023
  "name": "args",
4957
5024
  "description": null,
4958
5025
  "args": [
4959
-
5026
+ {
5027
+ "name": "includeDeprecated",
5028
+ "description": null,
5029
+ "type": {
5030
+ "kind": "SCALAR",
5031
+ "name": "Boolean",
5032
+ "ofType": null
5033
+ },
5034
+ "defaultValue": "false"
5035
+ }
4960
5036
  ],
4961
5037
  "type": {
4962
5038
  "kind": "NON_NULL",
@@ -4981,9 +5057,7 @@
4981
5057
  {
4982
5058
  "name": "description",
4983
5059
  "description": null,
4984
- "args": [
4985
-
4986
- ],
5060
+ "args": [],
4987
5061
  "type": {
4988
5062
  "kind": "SCALAR",
4989
5063
  "name": "String",
@@ -4995,9 +5069,7 @@
4995
5069
  {
4996
5070
  "name": "locations",
4997
5071
  "description": null,
4998
- "args": [
4999
-
5000
- ],
5072
+ "args": [],
5001
5073
  "type": {
5002
5074
  "kind": "NON_NULL",
5003
5075
  "name": null,
@@ -5021,9 +5093,7 @@
5021
5093
  {
5022
5094
  "name": "name",
5023
5095
  "description": null,
5024
- "args": [
5025
-
5026
- ],
5096
+ "args": [],
5027
5097
  "type": {
5028
5098
  "kind": "NON_NULL",
5029
5099
  "name": null,
@@ -5039,9 +5109,7 @@
5039
5109
  {
5040
5110
  "name": "onField",
5041
5111
  "description": null,
5042
- "args": [
5043
-
5044
- ],
5112
+ "args": [],
5045
5113
  "type": {
5046
5114
  "kind": "NON_NULL",
5047
5115
  "name": null,
@@ -5057,9 +5125,7 @@
5057
5125
  {
5058
5126
  "name": "onFragment",
5059
5127
  "description": null,
5060
- "args": [
5061
-
5062
- ],
5128
+ "args": [],
5063
5129
  "type": {
5064
5130
  "kind": "NON_NULL",
5065
5131
  "name": null,
@@ -5075,9 +5141,7 @@
5075
5141
  {
5076
5142
  "name": "onOperation",
5077
5143
  "description": null,
5078
- "args": [
5079
-
5080
- ],
5144
+ "args": [],
5081
5145
  "type": {
5082
5146
  "kind": "NON_NULL",
5083
5147
  "name": null,
@@ -5092,9 +5156,7 @@
5092
5156
  }
5093
5157
  ],
5094
5158
  "inputFields": null,
5095
- "interfaces": [
5096
-
5097
- ],
5159
+ "interfaces": [],
5098
5160
  "enumValues": null,
5099
5161
  "possibleTypes": null
5100
5162
  },
@@ -5225,9 +5287,7 @@
5225
5287
  {
5226
5288
  "name": "deprecationReason",
5227
5289
  "description": null,
5228
- "args": [
5229
-
5230
- ],
5290
+ "args": [],
5231
5291
  "type": {
5232
5292
  "kind": "SCALAR",
5233
5293
  "name": "String",
@@ -5239,9 +5299,7 @@
5239
5299
  {
5240
5300
  "name": "description",
5241
5301
  "description": null,
5242
- "args": [
5243
-
5244
- ],
5302
+ "args": [],
5245
5303
  "type": {
5246
5304
  "kind": "SCALAR",
5247
5305
  "name": "String",
@@ -5253,9 +5311,7 @@
5253
5311
  {
5254
5312
  "name": "isDeprecated",
5255
5313
  "description": null,
5256
- "args": [
5257
-
5258
- ],
5314
+ "args": [],
5259
5315
  "type": {
5260
5316
  "kind": "NON_NULL",
5261
5317
  "name": null,
@@ -5271,9 +5327,7 @@
5271
5327
  {
5272
5328
  "name": "name",
5273
5329
  "description": null,
5274
- "args": [
5275
-
5276
- ],
5330
+ "args": [],
5277
5331
  "type": {
5278
5332
  "kind": "NON_NULL",
5279
5333
  "name": null,
@@ -5288,9 +5342,7 @@
5288
5342
  }
5289
5343
  ],
5290
5344
  "inputFields": null,
5291
- "interfaces": [
5292
-
5293
- ],
5345
+ "interfaces": [],
5294
5346
  "enumValues": null,
5295
5347
  "possibleTypes": null
5296
5348
  },
@@ -5303,7 +5355,16 @@
5303
5355
  "name": "args",
5304
5356
  "description": null,
5305
5357
  "args": [
5306
-
5358
+ {
5359
+ "name": "includeDeprecated",
5360
+ "description": null,
5361
+ "type": {
5362
+ "kind": "SCALAR",
5363
+ "name": "Boolean",
5364
+ "ofType": null
5365
+ },
5366
+ "defaultValue": "false"
5367
+ }
5307
5368
  ],
5308
5369
  "type": {
5309
5370
  "kind": "NON_NULL",
@@ -5328,9 +5389,7 @@
5328
5389
  {
5329
5390
  "name": "deprecationReason",
5330
5391
  "description": null,
5331
- "args": [
5332
-
5333
- ],
5392
+ "args": [],
5334
5393
  "type": {
5335
5394
  "kind": "SCALAR",
5336
5395
  "name": "String",
@@ -5342,9 +5401,7 @@
5342
5401
  {
5343
5402
  "name": "description",
5344
5403
  "description": null,
5345
- "args": [
5346
-
5347
- ],
5404
+ "args": [],
5348
5405
  "type": {
5349
5406
  "kind": "SCALAR",
5350
5407
  "name": "String",
@@ -5356,9 +5413,7 @@
5356
5413
  {
5357
5414
  "name": "isDeprecated",
5358
5415
  "description": null,
5359
- "args": [
5360
-
5361
- ],
5416
+ "args": [],
5362
5417
  "type": {
5363
5418
  "kind": "NON_NULL",
5364
5419
  "name": null,
@@ -5374,9 +5429,7 @@
5374
5429
  {
5375
5430
  "name": "name",
5376
5431
  "description": null,
5377
- "args": [
5378
-
5379
- ],
5432
+ "args": [],
5380
5433
  "type": {
5381
5434
  "kind": "NON_NULL",
5382
5435
  "name": null,
@@ -5392,9 +5445,7 @@
5392
5445
  {
5393
5446
  "name": "type",
5394
5447
  "description": null,
5395
- "args": [
5396
-
5397
- ],
5448
+ "args": [],
5398
5449
  "type": {
5399
5450
  "kind": "NON_NULL",
5400
5451
  "name": null,
@@ -5409,9 +5460,7 @@
5409
5460
  }
5410
5461
  ],
5411
5462
  "inputFields": null,
5412
- "interfaces": [
5413
-
5414
- ],
5463
+ "interfaces": [],
5415
5464
  "enumValues": null,
5416
5465
  "possibleTypes": null
5417
5466
  },
@@ -5423,9 +5472,19 @@
5423
5472
  {
5424
5473
  "name": "defaultValue",
5425
5474
  "description": "A GraphQL-formatted string representing the default value for this input value.",
5426
- "args": [
5427
-
5428
- ],
5475
+ "args": [],
5476
+ "type": {
5477
+ "kind": "SCALAR",
5478
+ "name": "String",
5479
+ "ofType": null
5480
+ },
5481
+ "isDeprecated": false,
5482
+ "deprecationReason": null
5483
+ },
5484
+ {
5485
+ "name": "deprecationReason",
5486
+ "description": null,
5487
+ "args": [],
5429
5488
  "type": {
5430
5489
  "kind": "SCALAR",
5431
5490
  "name": "String",
@@ -5437,9 +5496,7 @@
5437
5496
  {
5438
5497
  "name": "description",
5439
5498
  "description": null,
5440
- "args": [
5441
-
5442
- ],
5499
+ "args": [],
5443
5500
  "type": {
5444
5501
  "kind": "SCALAR",
5445
5502
  "name": "String",
@@ -5448,12 +5505,26 @@
5448
5505
  "isDeprecated": false,
5449
5506
  "deprecationReason": null
5450
5507
  },
5508
+ {
5509
+ "name": "isDeprecated",
5510
+ "description": null,
5511
+ "args": [],
5512
+ "type": {
5513
+ "kind": "NON_NULL",
5514
+ "name": null,
5515
+ "ofType": {
5516
+ "kind": "SCALAR",
5517
+ "name": "Boolean",
5518
+ "ofType": null
5519
+ }
5520
+ },
5521
+ "isDeprecated": false,
5522
+ "deprecationReason": null
5523
+ },
5451
5524
  {
5452
5525
  "name": "name",
5453
5526
  "description": null,
5454
- "args": [
5455
-
5456
- ],
5527
+ "args": [],
5457
5528
  "type": {
5458
5529
  "kind": "NON_NULL",
5459
5530
  "name": null,
@@ -5469,9 +5540,7 @@
5469
5540
  {
5470
5541
  "name": "type",
5471
5542
  "description": null,
5472
- "args": [
5473
-
5474
- ],
5543
+ "args": [],
5475
5544
  "type": {
5476
5545
  "kind": "NON_NULL",
5477
5546
  "name": null,
@@ -5486,9 +5555,7 @@
5486
5555
  }
5487
5556
  ],
5488
5557
  "inputFields": null,
5489
- "interfaces": [
5490
-
5491
- ],
5558
+ "interfaces": [],
5492
5559
  "enumValues": null,
5493
5560
  "possibleTypes": null
5494
5561
  },
@@ -5500,9 +5567,7 @@
5500
5567
  {
5501
5568
  "name": "directives",
5502
5569
  "description": "A list of all directives supported by this server.",
5503
- "args": [
5504
-
5505
- ],
5570
+ "args": [],
5506
5571
  "type": {
5507
5572
  "kind": "NON_NULL",
5508
5573
  "name": null,
@@ -5526,9 +5591,7 @@
5526
5591
  {
5527
5592
  "name": "mutationType",
5528
5593
  "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
5529
- "args": [
5530
-
5531
- ],
5594
+ "args": [],
5532
5595
  "type": {
5533
5596
  "kind": "OBJECT",
5534
5597
  "name": "__Type",
@@ -5540,9 +5603,7 @@
5540
5603
  {
5541
5604
  "name": "queryType",
5542
5605
  "description": "The type that query operations will be rooted at.",
5543
- "args": [
5544
-
5545
- ],
5606
+ "args": [],
5546
5607
  "type": {
5547
5608
  "kind": "NON_NULL",
5548
5609
  "name": null,
@@ -5558,9 +5619,7 @@
5558
5619
  {
5559
5620
  "name": "subscriptionType",
5560
5621
  "description": "If this server support subscription, the type that subscription operations will be rooted at.",
5561
- "args": [
5562
-
5563
- ],
5622
+ "args": [],
5564
5623
  "type": {
5565
5624
  "kind": "OBJECT",
5566
5625
  "name": "__Type",
@@ -5572,9 +5631,7 @@
5572
5631
  {
5573
5632
  "name": "types",
5574
5633
  "description": "A list of all types supported by this server.",
5575
- "args": [
5576
-
5577
- ],
5634
+ "args": [],
5578
5635
  "type": {
5579
5636
  "kind": "NON_NULL",
5580
5637
  "name": null,
@@ -5597,9 +5654,7 @@
5597
5654
  }
5598
5655
  ],
5599
5656
  "inputFields": null,
5600
- "interfaces": [
5601
-
5602
- ],
5657
+ "interfaces": [],
5603
5658
  "enumValues": null,
5604
5659
  "possibleTypes": null
5605
5660
  },
@@ -5611,9 +5666,7 @@
5611
5666
  {
5612
5667
  "name": "description",
5613
5668
  "description": null,
5614
- "args": [
5615
-
5616
- ],
5669
+ "args": [],
5617
5670
  "type": {
5618
5671
  "kind": "SCALAR",
5619
5672
  "name": "String",
@@ -5688,7 +5741,16 @@
5688
5741
  "name": "inputFields",
5689
5742
  "description": null,
5690
5743
  "args": [
5691
-
5744
+ {
5745
+ "name": "includeDeprecated",
5746
+ "description": null,
5747
+ "type": {
5748
+ "kind": "SCALAR",
5749
+ "name": "Boolean",
5750
+ "ofType": null
5751
+ },
5752
+ "defaultValue": "false"
5753
+ }
5692
5754
  ],
5693
5755
  "type": {
5694
5756
  "kind": "LIST",
@@ -5709,9 +5771,7 @@
5709
5771
  {
5710
5772
  "name": "interfaces",
5711
5773
  "description": null,
5712
- "args": [
5713
-
5714
- ],
5774
+ "args": [],
5715
5775
  "type": {
5716
5776
  "kind": "LIST",
5717
5777
  "name": null,
@@ -5731,9 +5791,7 @@
5731
5791
  {
5732
5792
  "name": "kind",
5733
5793
  "description": null,
5734
- "args": [
5735
-
5736
- ],
5794
+ "args": [],
5737
5795
  "type": {
5738
5796
  "kind": "NON_NULL",
5739
5797
  "name": null,
@@ -5749,9 +5807,7 @@
5749
5807
  {
5750
5808
  "name": "name",
5751
5809
  "description": null,
5752
- "args": [
5753
-
5754
- ],
5810
+ "args": [],
5755
5811
  "type": {
5756
5812
  "kind": "SCALAR",
5757
5813
  "name": "String",
@@ -5763,9 +5819,7 @@
5763
5819
  {
5764
5820
  "name": "ofType",
5765
5821
  "description": null,
5766
- "args": [
5767
-
5768
- ],
5822
+ "args": [],
5769
5823
  "type": {
5770
5824
  "kind": "OBJECT",
5771
5825
  "name": "__Type",
@@ -5777,9 +5831,7 @@
5777
5831
  {
5778
5832
  "name": "possibleTypes",
5779
5833
  "description": null,
5780
- "args": [
5781
-
5782
- ],
5834
+ "args": [],
5783
5835
  "type": {
5784
5836
  "kind": "LIST",
5785
5837
  "name": null,
@@ -5798,9 +5850,7 @@
5798
5850
  }
5799
5851
  ],
5800
5852
  "inputFields": null,
5801
- "interfaces": [
5802
-
5803
- ],
5853
+ "interfaces": [],
5804
5854
  "enumValues": null,
5805
5855
  "possibleTypes": null
5806
5856
  },
@@ -5920,7 +5970,9 @@
5920
5970
  "description": "Marks an element of a GraphQL schema as no longer supported.",
5921
5971
  "locations": [
5922
5972
  "FIELD_DEFINITION",
5923
- "ENUM_VALUE"
5973
+ "ENUM_VALUE",
5974
+ "ARGUMENT_DEFINITION",
5975
+ "INPUT_FIELD_DEFINITION"
5924
5976
  ],
5925
5977
  "args": [
5926
5978
  {