billfixers-partner 1.1.1 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f794d4a72efb2cca5bb9ff538de67eca7f244a02a13286d6a1482a57486e8363
4
- data.tar.gz: b3da5849c748424e020f824234af7406f3921af8df93a0fd65458fb6b0ca65a2
3
+ metadata.gz: b11169e195ae824bb0ff39afd8b8c4ce77a25a3891c2916d80bbd74a7e39d14c
4
+ data.tar.gz: 56f6827c6ab40511c8add769c8affae2e717bc1a4b88fe86fe5d31c02497352d
5
5
  SHA512:
6
- metadata.gz: 7026f7678618ae96220c39a4d5600c11974213dc683ecf6a6fd1aa49d7304076a8fc03bf1d56af10f9f838be1928121a3ca9a3c922297c22440ebc40983e37cc
7
- data.tar.gz: a0e9928aa8a50f0e75f717353e4168dc276093167e42af9cc2dd45c1e40ff30e85a5cb60e6b0d10a4ede0fc28f0dbdc3ce2339e2f0f3bcff47c1d3541b474463
6
+ metadata.gz: 525033f40bcafa20272f126e4df098c023ae4665d2514147cb262384acb00679b210a59319eaec7d3025304da021045e9278f07d6ca5b71598a52afe1d85161b
7
+ data.tar.gz: f765a97ab08b9591e9a43f5364fff01a9fc844c96698ed1c527e5af0efa8e403a83ebd0290567f37170b4a61ce52369ef3e0c43322daa1f83d382273cf8aece7
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)
@@ -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
  )
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Billfixers
4
4
  module Partner
5
- VERSION = '1.1.1'
5
+ VERSION = '1.1.6'
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,7 @@
1589
1427
  }
1590
1428
  ],
1591
1429
  "inputFields": null,
1592
- "interfaces": [
1593
-
1594
- ],
1430
+ "interfaces": [],
1595
1431
  "enumValues": null,
1596
1432
  "possibleTypes": null
1597
1433
  },
@@ -1623,9 +1459,7 @@
1623
1459
  {
1624
1460
  "name": "grandeUrl",
1625
1461
  "description": null,
1626
- "args": [
1627
-
1628
- ],
1462
+ "args": [],
1629
1463
  "type": {
1630
1464
  "kind": "NON_NULL",
1631
1465
  "name": null,
@@ -1641,9 +1475,7 @@
1641
1475
  {
1642
1476
  "name": "iconUrl",
1643
1477
  "description": null,
1644
- "args": [
1645
-
1646
- ],
1478
+ "args": [],
1647
1479
  "type": {
1648
1480
  "kind": "NON_NULL",
1649
1481
  "name": null,
@@ -1659,9 +1491,7 @@
1659
1491
  {
1660
1492
  "name": "id",
1661
1493
  "description": null,
1662
- "args": [
1663
-
1664
- ],
1494
+ "args": [],
1665
1495
  "type": {
1666
1496
  "kind": "SCALAR",
1667
1497
  "name": "ID",
@@ -1673,9 +1503,7 @@
1673
1503
  {
1674
1504
  "name": "imageProcessed",
1675
1505
  "description": null,
1676
- "args": [
1677
-
1678
- ],
1506
+ "args": [],
1679
1507
  "type": {
1680
1508
  "kind": "NON_NULL",
1681
1509
  "name": null,
@@ -1691,9 +1519,7 @@
1691
1519
  {
1692
1520
  "name": "largeUrl",
1693
1521
  "description": null,
1694
- "args": [
1695
-
1696
- ],
1522
+ "args": [],
1697
1523
  "type": {
1698
1524
  "kind": "NON_NULL",
1699
1525
  "name": null,
@@ -1709,9 +1535,7 @@
1709
1535
  {
1710
1536
  "name": "mediumUrl",
1711
1537
  "description": null,
1712
- "args": [
1713
-
1714
- ],
1538
+ "args": [],
1715
1539
  "type": {
1716
1540
  "kind": "NON_NULL",
1717
1541
  "name": null,
@@ -1727,9 +1551,7 @@
1727
1551
  {
1728
1552
  "name": "originalUrl",
1729
1553
  "description": null,
1730
- "args": [
1731
-
1732
- ],
1554
+ "args": [],
1733
1555
  "type": {
1734
1556
  "kind": "NON_NULL",
1735
1557
  "name": null,
@@ -1745,9 +1567,7 @@
1745
1567
  {
1746
1568
  "name": "smallUrl",
1747
1569
  "description": null,
1748
- "args": [
1749
-
1750
- ],
1570
+ "args": [],
1751
1571
  "type": {
1752
1572
  "kind": "NON_NULL",
1753
1573
  "name": null,
@@ -1763,9 +1583,7 @@
1763
1583
  {
1764
1584
  "name": "thumbnailUrl",
1765
1585
  "description": null,
1766
- "args": [
1767
-
1768
- ],
1586
+ "args": [],
1769
1587
  "type": {
1770
1588
  "kind": "NON_NULL",
1771
1589
  "name": null,
@@ -1781,9 +1599,7 @@
1781
1599
  {
1782
1600
  "name": "tinyUrl",
1783
1601
  "description": null,
1784
- "args": [
1785
-
1786
- ],
1602
+ "args": [],
1787
1603
  "type": {
1788
1604
  "kind": "NON_NULL",
1789
1605
  "name": null,
@@ -1798,9 +1614,7 @@
1798
1614
  }
1799
1615
  ],
1800
1616
  "inputFields": null,
1801
- "interfaces": [
1802
-
1803
- ],
1617
+ "interfaces": [],
1804
1618
  "enumValues": null,
1805
1619
  "possibleTypes": null
1806
1620
  },
@@ -1812,9 +1626,7 @@
1812
1626
  {
1813
1627
  "name": "content",
1814
1628
  "description": null,
1815
- "args": [
1816
-
1817
- ],
1629
+ "args": [],
1818
1630
  "type": {
1819
1631
  "kind": "NON_NULL",
1820
1632
  "name": null,
@@ -1830,9 +1642,7 @@
1830
1642
  {
1831
1643
  "name": "contentHtml",
1832
1644
  "description": null,
1833
- "args": [
1834
-
1835
- ],
1645
+ "args": [],
1836
1646
  "type": {
1837
1647
  "kind": "NON_NULL",
1838
1648
  "name": null,
@@ -1848,9 +1658,7 @@
1848
1658
  {
1849
1659
  "name": "createdAt",
1850
1660
  "description": null,
1851
- "args": [
1852
-
1853
- ],
1661
+ "args": [],
1854
1662
  "type": {
1855
1663
  "kind": "NON_NULL",
1856
1664
  "name": null,
@@ -1866,9 +1674,7 @@
1866
1674
  {
1867
1675
  "name": "fields",
1868
1676
  "description": null,
1869
- "args": [
1870
-
1871
- ],
1677
+ "args": [],
1872
1678
  "type": {
1873
1679
  "kind": "NON_NULL",
1874
1680
  "name": null,
@@ -1892,9 +1698,7 @@
1892
1698
  {
1893
1699
  "name": "id",
1894
1700
  "description": null,
1895
- "args": [
1896
-
1897
- ],
1701
+ "args": [],
1898
1702
  "type": {
1899
1703
  "kind": "NON_NULL",
1900
1704
  "name": null,
@@ -1910,9 +1714,7 @@
1910
1714
  {
1911
1715
  "name": "respondedAt",
1912
1716
  "description": null,
1913
- "args": [
1914
-
1915
- ],
1717
+ "args": [],
1916
1718
  "type": {
1917
1719
  "kind": "SCALAR",
1918
1720
  "name": "DateTime",
@@ -1924,9 +1726,7 @@
1924
1726
  {
1925
1727
  "name": "updatedAt",
1926
1728
  "description": null,
1927
- "args": [
1928
-
1929
- ],
1729
+ "args": [],
1930
1730
  "type": {
1931
1731
  "kind": "NON_NULL",
1932
1732
  "name": null,
@@ -1941,9 +1741,7 @@
1941
1741
  }
1942
1742
  ],
1943
1743
  "inputFields": null,
1944
- "interfaces": [
1945
-
1946
- ],
1744
+ "interfaces": [],
1947
1745
  "enumValues": null,
1948
1746
  "possibleTypes": null
1949
1747
  },
@@ -1988,9 +1786,7 @@
1988
1786
  {
1989
1787
  "name": "edges",
1990
1788
  "description": "A list of edges.",
1991
- "args": [
1992
-
1993
- ],
1789
+ "args": [],
1994
1790
  "type": {
1995
1791
  "kind": "NON_NULL",
1996
1792
  "name": null,
@@ -2014,9 +1810,7 @@
2014
1810
  {
2015
1811
  "name": "nodes",
2016
1812
  "description": "A list of nodes.",
2017
- "args": [
2018
-
2019
- ],
1813
+ "args": [],
2020
1814
  "type": {
2021
1815
  "kind": "NON_NULL",
2022
1816
  "name": null,
@@ -2040,9 +1834,7 @@
2040
1834
  {
2041
1835
  "name": "pageInfo",
2042
1836
  "description": "Information to aid in pagination.",
2043
- "args": [
2044
-
2045
- ],
1837
+ "args": [],
2046
1838
  "type": {
2047
1839
  "kind": "NON_NULL",
2048
1840
  "name": null,
@@ -2058,9 +1850,7 @@
2058
1850
  {
2059
1851
  "name": "totalCount",
2060
1852
  "description": null,
2061
- "args": [
2062
-
2063
- ],
1853
+ "args": [],
2064
1854
  "type": {
2065
1855
  "kind": "NON_NULL",
2066
1856
  "name": null,
@@ -2075,9 +1865,7 @@
2075
1865
  }
2076
1866
  ],
2077
1867
  "inputFields": null,
2078
- "interfaces": [
2079
-
2080
- ],
1868
+ "interfaces": [],
2081
1869
  "enumValues": null,
2082
1870
  "possibleTypes": null
2083
1871
  },
@@ -2089,9 +1877,7 @@
2089
1877
  {
2090
1878
  "name": "cursor",
2091
1879
  "description": "A cursor for use in pagination.",
2092
- "args": [
2093
-
2094
- ],
1880
+ "args": [],
2095
1881
  "type": {
2096
1882
  "kind": "NON_NULL",
2097
1883
  "name": null,
@@ -2107,9 +1893,7 @@
2107
1893
  {
2108
1894
  "name": "node",
2109
1895
  "description": "The item at the end of the edge.",
2110
- "args": [
2111
-
2112
- ],
1896
+ "args": [],
2113
1897
  "type": {
2114
1898
  "kind": "OBJECT",
2115
1899
  "name": "InformationRequest",
@@ -2120,9 +1904,7 @@
2120
1904
  }
2121
1905
  ],
2122
1906
  "inputFields": null,
2123
- "interfaces": [
2124
-
2125
- ],
1907
+ "interfaces": [],
2126
1908
  "enumValues": null,
2127
1909
  "possibleTypes": null
2128
1910
  },
@@ -2134,9 +1916,7 @@
2134
1916
  {
2135
1917
  "name": "createdAt",
2136
1918
  "description": null,
2137
- "args": [
2138
-
2139
- ],
1919
+ "args": [],
2140
1920
  "type": {
2141
1921
  "kind": "NON_NULL",
2142
1922
  "name": null,
@@ -2152,9 +1932,7 @@
2152
1932
  {
2153
1933
  "name": "dataType",
2154
1934
  "description": null,
2155
- "args": [
2156
-
2157
- ],
1935
+ "args": [],
2158
1936
  "type": {
2159
1937
  "kind": "NON_NULL",
2160
1938
  "name": null,
@@ -2170,9 +1948,7 @@
2170
1948
  {
2171
1949
  "name": "id",
2172
1950
  "description": null,
2173
- "args": [
2174
-
2175
- ],
1951
+ "args": [],
2176
1952
  "type": {
2177
1953
  "kind": "NON_NULL",
2178
1954
  "name": null,
@@ -2188,9 +1964,7 @@
2188
1964
  {
2189
1965
  "name": "label",
2190
1966
  "description": null,
2191
- "args": [
2192
-
2193
- ],
1967
+ "args": [],
2194
1968
  "type": {
2195
1969
  "kind": "NON_NULL",
2196
1970
  "name": null,
@@ -2206,9 +1980,7 @@
2206
1980
  {
2207
1981
  "name": "placeholder",
2208
1982
  "description": null,
2209
- "args": [
2210
-
2211
- ],
1983
+ "args": [],
2212
1984
  "type": {
2213
1985
  "kind": "NON_NULL",
2214
1986
  "name": null,
@@ -2224,9 +1996,7 @@
2224
1996
  {
2225
1997
  "name": "updatedAt",
2226
1998
  "description": null,
2227
- "args": [
2228
-
2229
- ],
1999
+ "args": [],
2230
2000
  "type": {
2231
2001
  "kind": "NON_NULL",
2232
2002
  "name": null,
@@ -2242,9 +2012,7 @@
2242
2012
  {
2243
2013
  "name": "value",
2244
2014
  "description": null,
2245
- "args": [
2246
-
2247
- ],
2015
+ "args": [],
2248
2016
  "type": {
2249
2017
  "kind": "SCALAR",
2250
2018
  "name": "String",
@@ -2255,9 +2023,7 @@
2255
2023
  }
2256
2024
  ],
2257
2025
  "inputFields": null,
2258
- "interfaces": [
2259
-
2260
- ],
2026
+ "interfaces": [],
2261
2027
  "enumValues": null,
2262
2028
  "possibleTypes": null
2263
2029
  },
@@ -2318,9 +2084,7 @@
2318
2084
  {
2319
2085
  "name": "createdAt",
2320
2086
  "description": "The date the record was created",
2321
- "args": [
2322
-
2323
- ],
2087
+ "args": [],
2324
2088
  "type": {
2325
2089
  "kind": "NON_NULL",
2326
2090
  "name": null,
@@ -2336,9 +2100,7 @@
2336
2100
  {
2337
2101
  "name": "duration",
2338
2102
  "description": "The length of time in months that an item's savings is good for",
2339
- "args": [
2340
-
2341
- ],
2103
+ "args": [],
2342
2104
  "type": {
2343
2105
  "kind": "NON_NULL",
2344
2106
  "name": null,
@@ -2354,9 +2116,7 @@
2354
2116
  {
2355
2117
  "name": "name",
2356
2118
  "description": "Name of the good or service",
2357
- "args": [
2358
-
2359
- ],
2119
+ "args": [],
2360
2120
  "type": {
2361
2121
  "kind": "NON_NULL",
2362
2122
  "name": null,
@@ -2372,9 +2132,7 @@
2372
2132
  {
2373
2133
  "name": "postPrice",
2374
2134
  "description": "The post-negotiation price",
2375
- "args": [
2376
-
2377
- ],
2135
+ "args": [],
2378
2136
  "type": {
2379
2137
  "kind": "NON_NULL",
2380
2138
  "name": null,
@@ -2390,9 +2148,7 @@
2390
2148
  {
2391
2149
  "name": "prePrice",
2392
2150
  "description": "The pre-negotiation price",
2393
- "args": [
2394
-
2395
- ],
2151
+ "args": [],
2396
2152
  "type": {
2397
2153
  "kind": "NON_NULL",
2398
2154
  "name": null,
@@ -2408,9 +2164,7 @@
2408
2164
  {
2409
2165
  "name": "savings",
2410
2166
  "description": "The difference between the prePrice and the postPrice",
2411
- "args": [
2412
-
2413
- ],
2167
+ "args": [],
2414
2168
  "type": {
2415
2169
  "kind": "NON_NULL",
2416
2170
  "name": null,
@@ -2426,9 +2180,7 @@
2426
2180
  {
2427
2181
  "name": "savingsEndOn",
2428
2182
  "description": "The date the discount/savings end",
2429
- "args": [
2430
-
2431
- ],
2183
+ "args": [],
2432
2184
  "type": {
2433
2185
  "kind": "NON_NULL",
2434
2186
  "name": null,
@@ -2444,9 +2196,7 @@
2444
2196
  {
2445
2197
  "name": "savingsStartOn",
2446
2198
  "description": "The date the discount/savings start",
2447
- "args": [
2448
-
2449
- ],
2199
+ "args": [],
2450
2200
  "type": {
2451
2201
  "kind": "NON_NULL",
2452
2202
  "name": null,
@@ -2462,9 +2212,7 @@
2462
2212
  {
2463
2213
  "name": "type",
2464
2214
  "description": "The type of item",
2465
- "args": [
2466
-
2467
- ],
2215
+ "args": [],
2468
2216
  "type": {
2469
2217
  "kind": "NON_NULL",
2470
2218
  "name": null,
@@ -2480,9 +2228,7 @@
2480
2228
  {
2481
2229
  "name": "underContract",
2482
2230
  "description": "Indicates the item is under contract",
2483
- "args": [
2484
-
2485
- ],
2231
+ "args": [],
2486
2232
  "type": {
2487
2233
  "kind": "NON_NULL",
2488
2234
  "name": null,
@@ -2498,9 +2244,7 @@
2498
2244
  {
2499
2245
  "name": "updatedAt",
2500
2246
  "description": "The last time the record was updated",
2501
- "args": [
2502
-
2503
- ],
2247
+ "args": [],
2504
2248
  "type": {
2505
2249
  "kind": "NON_NULL",
2506
2250
  "name": null,
@@ -2515,9 +2259,7 @@
2515
2259
  }
2516
2260
  ],
2517
2261
  "inputFields": null,
2518
- "interfaces": [
2519
-
2520
- ],
2262
+ "interfaces": [],
2521
2263
  "enumValues": null,
2522
2264
  "possibleTypes": null
2523
2265
  },
@@ -2542,7 +2284,7 @@
2542
2284
  "args": [
2543
2285
  {
2544
2286
  "name": "input",
2545
- "description": null,
2287
+ "description": "Parameters for AcceptOffer",
2546
2288
  "type": {
2547
2289
  "kind": "NON_NULL",
2548
2290
  "name": null,
@@ -2564,18 +2306,18 @@
2564
2306
  "deprecationReason": null
2565
2307
  },
2566
2308
  {
2567
- "name": "CancelBill",
2309
+ "name": "CreateBill",
2568
2310
  "description": null,
2569
2311
  "args": [
2570
2312
  {
2571
2313
  "name": "input",
2572
- "description": null,
2314
+ "description": "Parameters for CreateBill",
2573
2315
  "type": {
2574
2316
  "kind": "NON_NULL",
2575
2317
  "name": null,
2576
2318
  "ofType": {
2577
2319
  "kind": "INPUT_OBJECT",
2578
- "name": "CancelBillInput",
2320
+ "name": "CreateBillInput",
2579
2321
  "ofType": null
2580
2322
  }
2581
2323
  },
@@ -2584,25 +2326,25 @@
2584
2326
  ],
2585
2327
  "type": {
2586
2328
  "kind": "OBJECT",
2587
- "name": "CancelBillPayload",
2329
+ "name": "CreateBillPayload",
2588
2330
  "ofType": null
2589
2331
  },
2590
2332
  "isDeprecated": false,
2591
2333
  "deprecationReason": null
2592
2334
  },
2593
2335
  {
2594
- "name": "CreateBill",
2336
+ "name": "CreateCustomer",
2595
2337
  "description": null,
2596
2338
  "args": [
2597
2339
  {
2598
2340
  "name": "input",
2599
- "description": null,
2341
+ "description": "Parameters for CreateCustomer",
2600
2342
  "type": {
2601
2343
  "kind": "NON_NULL",
2602
2344
  "name": null,
2603
2345
  "ofType": {
2604
2346
  "kind": "INPUT_OBJECT",
2605
- "name": "CreateBillInput",
2347
+ "name": "CreateCustomerInput",
2606
2348
  "ofType": null
2607
2349
  }
2608
2350
  },
@@ -2611,25 +2353,25 @@
2611
2353
  ],
2612
2354
  "type": {
2613
2355
  "kind": "OBJECT",
2614
- "name": "CreateBillPayload",
2356
+ "name": "CreateCustomerPayload",
2615
2357
  "ofType": null
2616
2358
  },
2617
2359
  "isDeprecated": false,
2618
2360
  "deprecationReason": null
2619
2361
  },
2620
2362
  {
2621
- "name": "CreateCustomer",
2622
- "description": null,
2363
+ "name": "RejectOffer",
2364
+ "description": "Reject an offer",
2623
2365
  "args": [
2624
2366
  {
2625
2367
  "name": "input",
2626
- "description": null,
2368
+ "description": "Parameters for RejectOffer",
2627
2369
  "type": {
2628
2370
  "kind": "NON_NULL",
2629
2371
  "name": null,
2630
2372
  "ofType": {
2631
2373
  "kind": "INPUT_OBJECT",
2632
- "name": "CreateCustomerInput",
2374
+ "name": "RejectOfferInput",
2633
2375
  "ofType": null
2634
2376
  }
2635
2377
  },
@@ -2638,25 +2380,25 @@
2638
2380
  ],
2639
2381
  "type": {
2640
2382
  "kind": "OBJECT",
2641
- "name": "CreateCustomerPayload",
2383
+ "name": "RejectOfferPayload",
2642
2384
  "ofType": null
2643
2385
  },
2644
2386
  "isDeprecated": false,
2645
2387
  "deprecationReason": null
2646
2388
  },
2647
2389
  {
2648
- "name": "RejectOffer",
2649
- "description": "Reject an offer",
2390
+ "name": "RenegotiateBill",
2391
+ "description": null,
2650
2392
  "args": [
2651
2393
  {
2652
2394
  "name": "input",
2653
- "description": null,
2395
+ "description": "Parameters for RenegotiateBill",
2654
2396
  "type": {
2655
2397
  "kind": "NON_NULL",
2656
2398
  "name": null,
2657
2399
  "ofType": {
2658
2400
  "kind": "INPUT_OBJECT",
2659
- "name": "RejectOfferInput",
2401
+ "name": "RenegotiateBillInput",
2660
2402
  "ofType": null
2661
2403
  }
2662
2404
  },
@@ -2665,7 +2407,7 @@
2665
2407
  ],
2666
2408
  "type": {
2667
2409
  "kind": "OBJECT",
2668
- "name": "RejectOfferPayload",
2410
+ "name": "RenegotiateBillPayload",
2669
2411
  "ofType": null
2670
2412
  },
2671
2413
  "isDeprecated": false,
@@ -2677,7 +2419,7 @@
2677
2419
  "args": [
2678
2420
  {
2679
2421
  "name": "input",
2680
- "description": null,
2422
+ "description": "Parameters for RespondToInformationRequest",
2681
2423
  "type": {
2682
2424
  "kind": "NON_NULL",
2683
2425
  "name": null,
@@ -2698,13 +2440,40 @@
2698
2440
  "isDeprecated": false,
2699
2441
  "deprecationReason": null
2700
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
+ },
2701
2470
  {
2702
2471
  "name": "UpdateCustomer",
2703
2472
  "description": null,
2704
2473
  "args": [
2705
2474
  {
2706
2475
  "name": "input",
2707
- "description": null,
2476
+ "description": "Parameters for UpdateCustomer",
2708
2477
  "type": {
2709
2478
  "kind": "NON_NULL",
2710
2479
  "name": null,
@@ -2731,7 +2500,7 @@
2731
2500
  "args": [
2732
2501
  {
2733
2502
  "name": "input",
2734
- "description": null,
2503
+ "description": "Parameters for UpdateWebhookUrls",
2735
2504
  "type": {
2736
2505
  "kind": "NON_NULL",
2737
2506
  "name": null,
@@ -2754,9 +2523,7 @@
2754
2523
  }
2755
2524
  ],
2756
2525
  "inputFields": null,
2757
- "interfaces": [
2758
-
2759
- ],
2526
+ "interfaces": [],
2760
2527
  "enumValues": null,
2761
2528
  "possibleTypes": null
2762
2529
  },
@@ -2768,9 +2535,7 @@
2768
2535
  {
2769
2536
  "name": "billId",
2770
2537
  "description": null,
2771
- "args": [
2772
-
2773
- ],
2538
+ "args": [],
2774
2539
  "type": {
2775
2540
  "kind": "NON_NULL",
2776
2541
  "name": null,
@@ -2786,9 +2551,7 @@
2786
2551
  {
2787
2552
  "name": "cancelledAt",
2788
2553
  "description": null,
2789
- "args": [
2790
-
2791
- ],
2554
+ "args": [],
2792
2555
  "type": {
2793
2556
  "kind": "SCALAR",
2794
2557
  "name": "DateTime",
@@ -2800,9 +2563,7 @@
2800
2563
  {
2801
2564
  "name": "compedAt",
2802
2565
  "description": null,
2803
- "args": [
2804
-
2805
- ],
2566
+ "args": [],
2806
2567
  "type": {
2807
2568
  "kind": "SCALAR",
2808
2569
  "name": "DateTime",
@@ -2814,9 +2575,7 @@
2814
2575
  {
2815
2576
  "name": "createdAt",
2816
2577
  "description": null,
2817
- "args": [
2818
-
2819
- ],
2578
+ "args": [],
2820
2579
  "type": {
2821
2580
  "kind": "NON_NULL",
2822
2581
  "name": null,
@@ -2832,9 +2591,7 @@
2832
2591
  {
2833
2592
  "name": "deletedAt",
2834
2593
  "description": null,
2835
- "args": [
2836
-
2837
- ],
2594
+ "args": [],
2838
2595
  "type": {
2839
2596
  "kind": "SCALAR",
2840
2597
  "name": "DateTime",
@@ -2846,9 +2603,7 @@
2846
2603
  {
2847
2604
  "name": "failedAt",
2848
2605
  "description": null,
2849
- "args": [
2850
-
2851
- ],
2606
+ "args": [],
2852
2607
  "type": {
2853
2608
  "kind": "SCALAR",
2854
2609
  "name": "DateTime",
@@ -2860,9 +2615,7 @@
2860
2615
  {
2861
2616
  "name": "fixedAt",
2862
2617
  "description": null,
2863
- "args": [
2864
-
2865
- ],
2618
+ "args": [],
2866
2619
  "type": {
2867
2620
  "kind": "SCALAR",
2868
2621
  "name": "DateTime",
@@ -2874,9 +2627,7 @@
2874
2627
  {
2875
2628
  "name": "fixerIds",
2876
2629
  "description": null,
2877
- "args": [
2878
-
2879
- ],
2630
+ "args": [],
2880
2631
  "type": {
2881
2632
  "kind": "NON_NULL",
2882
2633
  "name": null,
@@ -2900,9 +2651,7 @@
2900
2651
  {
2901
2652
  "name": "fixers",
2902
2653
  "description": null,
2903
- "args": [
2904
-
2905
- ],
2654
+ "args": [],
2906
2655
  "type": {
2907
2656
  "kind": "NON_NULL",
2908
2657
  "name": null,
@@ -2926,9 +2675,7 @@
2926
2675
  {
2927
2676
  "name": "id",
2928
2677
  "description": null,
2929
- "args": [
2930
-
2931
- ],
2678
+ "args": [],
2932
2679
  "type": {
2933
2680
  "kind": "NON_NULL",
2934
2681
  "name": null,
@@ -2944,9 +2691,7 @@
2944
2691
  {
2945
2692
  "name": "informationRequests",
2946
2693
  "description": null,
2947
- "args": [
2948
-
2949
- ],
2694
+ "args": [],
2950
2695
  "type": {
2951
2696
  "kind": "NON_NULL",
2952
2697
  "name": null,
@@ -2970,9 +2715,7 @@
2970
2715
  {
2971
2716
  "name": "invoicedAt",
2972
2717
  "description": null,
2973
- "args": [
2974
-
2975
- ],
2718
+ "args": [],
2976
2719
  "type": {
2977
2720
  "kind": "SCALAR",
2978
2721
  "name": "DateTime",
@@ -2984,9 +2727,7 @@
2984
2727
  {
2985
2728
  "name": "items",
2986
2729
  "description": null,
2987
- "args": [
2988
-
2989
- ],
2730
+ "args": [],
2990
2731
  "type": {
2991
2732
  "kind": "NON_NULL",
2992
2733
  "name": null,
@@ -3010,9 +2751,7 @@
3010
2751
  {
3011
2752
  "name": "negotiationNumber",
3012
2753
  "description": null,
3013
- "args": [
3014
-
3015
- ],
2754
+ "args": [],
3016
2755
  "type": {
3017
2756
  "kind": "NON_NULL",
3018
2757
  "name": null,
@@ -3028,9 +2767,7 @@
3028
2767
  {
3029
2768
  "name": "requestedConsentAt",
3030
2769
  "description": null,
3031
- "args": [
3032
-
3033
- ],
2770
+ "args": [],
3034
2771
  "type": {
3035
2772
  "kind": "SCALAR",
3036
2773
  "name": "DateTime",
@@ -3042,9 +2779,7 @@
3042
2779
  {
3043
2780
  "name": "requestedInformationAt",
3044
2781
  "description": null,
3045
- "args": [
3046
-
3047
- ],
2782
+ "args": [],
3048
2783
  "type": {
3049
2784
  "kind": "SCALAR",
3050
2785
  "name": "DateTime",
@@ -3056,9 +2791,7 @@
3056
2791
  {
3057
2792
  "name": "startedAt",
3058
2793
  "description": null,
3059
- "args": [
3060
-
3061
- ],
2794
+ "args": [],
3062
2795
  "type": {
3063
2796
  "kind": "SCALAR",
3064
2797
  "name": "DateTime",
@@ -3070,9 +2803,7 @@
3070
2803
  {
3071
2804
  "name": "state",
3072
2805
  "description": null,
3073
- "args": [
3074
-
3075
- ],
2806
+ "args": [],
3076
2807
  "type": {
3077
2808
  "kind": "NON_NULL",
3078
2809
  "name": null,
@@ -3088,9 +2819,7 @@
3088
2819
  {
3089
2820
  "name": "tags",
3090
2821
  "description": null,
3091
- "args": [
3092
-
3093
- ],
2822
+ "args": [],
3094
2823
  "type": {
3095
2824
  "kind": "NON_NULL",
3096
2825
  "name": null,
@@ -3114,9 +2843,7 @@
3114
2843
  {
3115
2844
  "name": "totalSavings",
3116
2845
  "description": null,
3117
- "args": [
3118
-
3119
- ],
2846
+ "args": [],
3120
2847
  "type": {
3121
2848
  "kind": "NON_NULL",
3122
2849
  "name": null,
@@ -3132,9 +2859,7 @@
3132
2859
  {
3133
2860
  "name": "updatedAt",
3134
2861
  "description": null,
3135
- "args": [
3136
-
3137
- ],
2862
+ "args": [],
3138
2863
  "type": {
3139
2864
  "kind": "NON_NULL",
3140
2865
  "name": null,
@@ -3149,9 +2874,7 @@
3149
2874
  }
3150
2875
  ],
3151
2876
  "inputFields": null,
3152
- "interfaces": [
3153
-
3154
- ],
2877
+ "interfaces": [],
3155
2878
  "enumValues": null,
3156
2879
  "possibleTypes": null
3157
2880
  },
@@ -3163,9 +2886,7 @@
3163
2886
  {
3164
2887
  "name": "acceptedAt",
3165
2888
  "description": null,
3166
- "args": [
3167
-
3168
- ],
2889
+ "args": [],
3169
2890
  "type": {
3170
2891
  "kind": "SCALAR",
3171
2892
  "name": "DateTime",
@@ -3177,9 +2898,7 @@
3177
2898
  {
3178
2899
  "name": "bill",
3179
2900
  "description": null,
3180
- "args": [
3181
-
3182
- ],
2901
+ "args": [],
3183
2902
  "type": {
3184
2903
  "kind": "NON_NULL",
3185
2904
  "name": null,
@@ -3195,9 +2914,7 @@
3195
2914
  {
3196
2915
  "name": "content",
3197
2916
  "description": null,
3198
- "args": [
3199
-
3200
- ],
2917
+ "args": [],
3201
2918
  "type": {
3202
2919
  "kind": "NON_NULL",
3203
2920
  "name": null,
@@ -3213,9 +2930,7 @@
3213
2930
  {
3214
2931
  "name": "contentHtml",
3215
2932
  "description": null,
3216
- "args": [
3217
-
3218
- ],
2933
+ "args": [],
3219
2934
  "type": {
3220
2935
  "kind": "NON_NULL",
3221
2936
  "name": null,
@@ -3231,9 +2946,7 @@
3231
2946
  {
3232
2947
  "name": "createdAt",
3233
2948
  "description": null,
3234
- "args": [
3235
-
3236
- ],
2949
+ "args": [],
3237
2950
  "type": {
3238
2951
  "kind": "NON_NULL",
3239
2952
  "name": null,
@@ -3249,9 +2962,7 @@
3249
2962
  {
3250
2963
  "name": "customer",
3251
2964
  "description": null,
3252
- "args": [
3253
-
3254
- ],
2965
+ "args": [],
3255
2966
  "type": {
3256
2967
  "kind": "NON_NULL",
3257
2968
  "name": null,
@@ -3264,12 +2975,26 @@
3264
2975
  "isDeprecated": false,
3265
2976
  "deprecationReason": null
3266
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
+ },
3267
2994
  {
3268
2995
  "name": "id",
3269
2996
  "description": "Alpha-numeric unique identifier",
3270
- "args": [
3271
-
3272
- ],
2997
+ "args": [],
3273
2998
  "type": {
3274
2999
  "kind": "NON_NULL",
3275
3000
  "name": null,
@@ -3285,9 +3010,7 @@
3285
3010
  {
3286
3011
  "name": "rejectedAt",
3287
3012
  "description": null,
3288
- "args": [
3289
-
3290
- ],
3013
+ "args": [],
3291
3014
  "type": {
3292
3015
  "kind": "SCALAR",
3293
3016
  "name": "DateTime",
@@ -3299,9 +3022,7 @@
3299
3022
  {
3300
3023
  "name": "status",
3301
3024
  "description": null,
3302
- "args": [
3303
-
3304
- ],
3025
+ "args": [],
3305
3026
  "type": {
3306
3027
  "kind": "NON_NULL",
3307
3028
  "name": null,
@@ -3317,9 +3038,7 @@
3317
3038
  {
3318
3039
  "name": "updatedAt",
3319
3040
  "description": null,
3320
- "args": [
3321
-
3322
- ],
3041
+ "args": [],
3323
3042
  "type": {
3324
3043
  "kind": "NON_NULL",
3325
3044
  "name": null,
@@ -3334,9 +3053,7 @@
3334
3053
  }
3335
3054
  ],
3336
3055
  "inputFields": null,
3337
- "interfaces": [
3338
-
3339
- ],
3056
+ "interfaces": [],
3340
3057
  "enumValues": null,
3341
3058
  "possibleTypes": null
3342
3059
  },
@@ -3348,9 +3065,7 @@
3348
3065
  {
3349
3066
  "name": "edges",
3350
3067
  "description": "A list of edges.",
3351
- "args": [
3352
-
3353
- ],
3068
+ "args": [],
3354
3069
  "type": {
3355
3070
  "kind": "NON_NULL",
3356
3071
  "name": null,
@@ -3374,9 +3089,7 @@
3374
3089
  {
3375
3090
  "name": "nodes",
3376
3091
  "description": "A list of nodes.",
3377
- "args": [
3378
-
3379
- ],
3092
+ "args": [],
3380
3093
  "type": {
3381
3094
  "kind": "NON_NULL",
3382
3095
  "name": null,
@@ -3400,9 +3113,7 @@
3400
3113
  {
3401
3114
  "name": "pageInfo",
3402
3115
  "description": "Information to aid in pagination.",
3403
- "args": [
3404
-
3405
- ],
3116
+ "args": [],
3406
3117
  "type": {
3407
3118
  "kind": "NON_NULL",
3408
3119
  "name": null,
@@ -3418,9 +3129,7 @@
3418
3129
  {
3419
3130
  "name": "totalCount",
3420
3131
  "description": null,
3421
- "args": [
3422
-
3423
- ],
3132
+ "args": [],
3424
3133
  "type": {
3425
3134
  "kind": "NON_NULL",
3426
3135
  "name": null,
@@ -3435,9 +3144,7 @@
3435
3144
  }
3436
3145
  ],
3437
3146
  "inputFields": null,
3438
- "interfaces": [
3439
-
3440
- ],
3147
+ "interfaces": [],
3441
3148
  "enumValues": null,
3442
3149
  "possibleTypes": null
3443
3150
  },
@@ -3449,9 +3156,7 @@
3449
3156
  {
3450
3157
  "name": "cursor",
3451
3158
  "description": "A cursor for use in pagination.",
3452
- "args": [
3453
-
3454
- ],
3159
+ "args": [],
3455
3160
  "type": {
3456
3161
  "kind": "NON_NULL",
3457
3162
  "name": null,
@@ -3467,9 +3172,7 @@
3467
3172
  {
3468
3173
  "name": "node",
3469
3174
  "description": "The item at the end of the edge.",
3470
- "args": [
3471
-
3472
- ],
3175
+ "args": [],
3473
3176
  "type": {
3474
3177
  "kind": "OBJECT",
3475
3178
  "name": "Offer",
@@ -3480,9 +3183,7 @@
3480
3183
  }
3481
3184
  ],
3482
3185
  "inputFields": null,
3483
- "interfaces": [
3484
-
3485
- ],
3186
+ "interfaces": [],
3486
3187
  "enumValues": null,
3487
3188
  "possibleTypes": null
3488
3189
  },
@@ -3494,9 +3195,7 @@
3494
3195
  {
3495
3196
  "name": "endCursor",
3496
3197
  "description": "When paginating forwards, the cursor to continue.",
3497
- "args": [
3498
-
3499
- ],
3198
+ "args": [],
3500
3199
  "type": {
3501
3200
  "kind": "SCALAR",
3502
3201
  "name": "String",
@@ -3508,9 +3207,7 @@
3508
3207
  {
3509
3208
  "name": "hasNextPage",
3510
3209
  "description": "When paginating forwards, are there more items?",
3511
- "args": [
3512
-
3513
- ],
3210
+ "args": [],
3514
3211
  "type": {
3515
3212
  "kind": "NON_NULL",
3516
3213
  "name": null,
@@ -3526,9 +3223,7 @@
3526
3223
  {
3527
3224
  "name": "hasPreviousPage",
3528
3225
  "description": "When paginating backwards, are there more items?",
3529
- "args": [
3530
-
3531
- ],
3226
+ "args": [],
3532
3227
  "type": {
3533
3228
  "kind": "NON_NULL",
3534
3229
  "name": null,
@@ -3544,9 +3239,7 @@
3544
3239
  {
3545
3240
  "name": "startCursor",
3546
3241
  "description": "When paginating backwards, the cursor to continue.",
3547
- "args": [
3548
-
3549
- ],
3242
+ "args": [],
3550
3243
  "type": {
3551
3244
  "kind": "SCALAR",
3552
3245
  "name": "String",
@@ -3557,9 +3250,7 @@
3557
3250
  }
3558
3251
  ],
3559
3252
  "inputFields": null,
3560
- "interfaces": [
3561
-
3562
- ],
3253
+ "interfaces": [],
3563
3254
  "enumValues": null,
3564
3255
  "possibleTypes": null
3565
3256
  },
@@ -3571,9 +3262,7 @@
3571
3262
  {
3572
3263
  "name": "createdAt",
3573
3264
  "description": null,
3574
- "args": [
3575
-
3576
- ],
3265
+ "args": [],
3577
3266
  "type": {
3578
3267
  "kind": "NON_NULL",
3579
3268
  "name": null,
@@ -3589,9 +3278,7 @@
3589
3278
  {
3590
3279
  "name": "id",
3591
3280
  "description": "Alpha-numeric unique identifier",
3592
- "args": [
3593
-
3594
- ],
3281
+ "args": [],
3595
3282
  "type": {
3596
3283
  "kind": "NON_NULL",
3597
3284
  "name": null,
@@ -3607,9 +3294,7 @@
3607
3294
  {
3608
3295
  "name": "liveWebhookUrl",
3609
3296
  "description": "Webhook URL for live/production requests",
3610
- "args": [
3611
-
3612
- ],
3297
+ "args": [],
3613
3298
  "type": {
3614
3299
  "kind": "SCALAR",
3615
3300
  "name": "String",
@@ -3621,9 +3306,7 @@
3621
3306
  {
3622
3307
  "name": "name",
3623
3308
  "description": "Name of the partner",
3624
- "args": [
3625
-
3626
- ],
3309
+ "args": [],
3627
3310
  "type": {
3628
3311
  "kind": "NON_NULL",
3629
3312
  "name": null,
@@ -3639,9 +3322,7 @@
3639
3322
  {
3640
3323
  "name": "referralCode",
3641
3324
  "description": "The partner's referral code",
3642
- "args": [
3643
-
3644
- ],
3325
+ "args": [],
3645
3326
  "type": {
3646
3327
  "kind": "SCALAR",
3647
3328
  "name": "String",
@@ -3653,9 +3334,7 @@
3653
3334
  {
3654
3335
  "name": "referralLink",
3655
3336
  "description": "The partner's referral link",
3656
- "args": [
3657
-
3658
- ],
3337
+ "args": [],
3659
3338
  "type": {
3660
3339
  "kind": "NON_NULL",
3661
3340
  "name": null,
@@ -3671,9 +3350,7 @@
3671
3350
  {
3672
3351
  "name": "testWebhookUrl",
3673
3352
  "description": "Webhook URL for test/development requests",
3674
- "args": [
3675
-
3676
- ],
3353
+ "args": [],
3677
3354
  "type": {
3678
3355
  "kind": "SCALAR",
3679
3356
  "name": "String",
@@ -3685,9 +3362,7 @@
3685
3362
  {
3686
3363
  "name": "updatedAt",
3687
3364
  "description": null,
3688
- "args": [
3689
-
3690
- ],
3365
+ "args": [],
3691
3366
  "type": {
3692
3367
  "kind": "NON_NULL",
3693
3368
  "name": null,
@@ -3702,9 +3377,7 @@
3702
3377
  }
3703
3378
  ],
3704
3379
  "inputFields": null,
3705
- "interfaces": [
3706
-
3707
- ],
3380
+ "interfaces": [],
3708
3381
  "enumValues": null,
3709
3382
  "possibleTypes": null
3710
3383
  },
@@ -3716,9 +3389,7 @@
3716
3389
  {
3717
3390
  "name": "billFields",
3718
3391
  "description": null,
3719
- "args": [
3720
-
3721
- ],
3392
+ "args": [],
3722
3393
  "type": {
3723
3394
  "kind": "NON_NULL",
3724
3395
  "name": null,
@@ -3742,9 +3413,7 @@
3742
3413
  {
3743
3414
  "name": "createdAt",
3744
3415
  "description": null,
3745
- "args": [
3746
-
3747
- ],
3416
+ "args": [],
3748
3417
  "type": {
3749
3418
  "kind": "NON_NULL",
3750
3419
  "name": null,
@@ -3760,9 +3429,7 @@
3760
3429
  {
3761
3430
  "name": "id",
3762
3431
  "description": null,
3763
- "args": [
3764
-
3765
- ],
3432
+ "args": [],
3766
3433
  "type": {
3767
3434
  "kind": "NON_NULL",
3768
3435
  "name": null,
@@ -3778,9 +3445,7 @@
3778
3445
  {
3779
3446
  "name": "logo",
3780
3447
  "description": null,
3781
- "args": [
3782
-
3783
- ],
3448
+ "args": [],
3784
3449
  "type": {
3785
3450
  "kind": "OBJECT",
3786
3451
  "name": "Image",
@@ -3792,9 +3457,7 @@
3792
3457
  {
3793
3458
  "name": "name",
3794
3459
  "description": null,
3795
- "args": [
3796
-
3797
- ],
3460
+ "args": [],
3798
3461
  "type": {
3799
3462
  "kind": "NON_NULL",
3800
3463
  "name": null,
@@ -3810,9 +3473,7 @@
3810
3473
  {
3811
3474
  "name": "services",
3812
3475
  "description": null,
3813
- "args": [
3814
-
3815
- ],
3476
+ "args": [],
3816
3477
  "type": {
3817
3478
  "kind": "NON_NULL",
3818
3479
  "name": null,
@@ -3836,9 +3497,7 @@
3836
3497
  {
3837
3498
  "name": "updatedAt",
3838
3499
  "description": null,
3839
- "args": [
3840
-
3841
- ],
3500
+ "args": [],
3842
3501
  "type": {
3843
3502
  "kind": "NON_NULL",
3844
3503
  "name": null,
@@ -3853,9 +3512,7 @@
3853
3512
  }
3854
3513
  ],
3855
3514
  "inputFields": null,
3856
- "interfaces": [
3857
-
3858
- ],
3515
+ "interfaces": [],
3859
3516
  "enumValues": null,
3860
3517
  "possibleTypes": null
3861
3518
  },
@@ -3867,9 +3524,7 @@
3867
3524
  {
3868
3525
  "name": "CalculateSavingsEstimate",
3869
3526
  "description": null,
3870
- "args": [
3871
-
3872
- ],
3527
+ "args": [],
3873
3528
  "type": {
3874
3529
  "kind": "NON_NULL",
3875
3530
  "name": null,
@@ -3912,9 +3567,7 @@
3912
3567
  {
3913
3568
  "name": "FindCurrentPartner",
3914
3569
  "description": null,
3915
- "args": [
3916
-
3917
- ],
3570
+ "args": [],
3918
3571
  "type": {
3919
3572
  "kind": "NON_NULL",
3920
3573
  "name": null,
@@ -4456,9 +4109,7 @@
4456
4109
  {
4457
4110
  "name": "ListProviders",
4458
4111
  "description": null,
4459
- "args": [
4460
-
4461
- ],
4112
+ "args": [],
4462
4113
  "type": {
4463
4114
  "kind": "NON_NULL",
4464
4115
  "name": null,
@@ -4481,9 +4132,7 @@
4481
4132
  }
4482
4133
  ],
4483
4134
  "inputFields": null,
4484
- "interfaces": [
4485
-
4486
- ],
4135
+ "interfaces": [],
4487
4136
  "enumValues": null,
4488
4137
  "possibleTypes": null
4489
4138
  },
@@ -4530,9 +4179,7 @@
4530
4179
  {
4531
4180
  "name": "clientMutationId",
4532
4181
  "description": "A unique identifier for the client performing the mutation.",
4533
- "args": [
4534
-
4535
- ],
4182
+ "args": [],
4536
4183
  "type": {
4537
4184
  "kind": "SCALAR",
4538
4185
  "name": "String",
@@ -4544,9 +4191,7 @@
4544
4191
  {
4545
4192
  "name": "errors",
4546
4193
  "description": null,
4547
- "args": [
4548
-
4549
- ],
4194
+ "args": [],
4550
4195
  "type": {
4551
4196
  "kind": "NON_NULL",
4552
4197
  "name": null,
@@ -4570,9 +4215,7 @@
4570
4215
  {
4571
4216
  "name": "offer",
4572
4217
  "description": null,
4573
- "args": [
4574
-
4575
- ],
4218
+ "args": [],
4576
4219
  "type": {
4577
4220
  "kind": "OBJECT",
4578
4221
  "name": "Offer",
@@ -4584,9 +4227,7 @@
4584
4227
  {
4585
4228
  "name": "success",
4586
4229
  "description": null,
4587
- "args": [
4588
-
4589
- ],
4230
+ "args": [],
4590
4231
  "type": {
4591
4232
  "kind": "NON_NULL",
4592
4233
  "name": null,
@@ -4601,9 +4242,117 @@
4601
4242
  }
4602
4243
  ],
4603
4244
  "inputFields": null,
4604
- "interfaces": [
4605
-
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
+ }
4606
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": [],
4317
+ "type": {
4318
+ "kind": "NON_NULL",
4319
+ "name": null,
4320
+ "ofType": {
4321
+ "kind": "LIST",
4322
+ "name": null,
4323
+ "ofType": {
4324
+ "kind": "NON_NULL",
4325
+ "name": null,
4326
+ "ofType": {
4327
+ "kind": "SCALAR",
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": [],
4607
4356
  "enumValues": null,
4608
4357
  "possibleTypes": null
4609
4358
  },
@@ -4664,9 +4413,7 @@
4664
4413
  {
4665
4414
  "name": "bill",
4666
4415
  "description": null,
4667
- "args": [
4668
-
4669
- ],
4416
+ "args": [],
4670
4417
  "type": {
4671
4418
  "kind": "OBJECT",
4672
4419
  "name": "Bill",
@@ -4678,9 +4425,7 @@
4678
4425
  {
4679
4426
  "name": "clientMutationId",
4680
4427
  "description": "A unique identifier for the client performing the mutation.",
4681
- "args": [
4682
-
4683
- ],
4428
+ "args": [],
4684
4429
  "type": {
4685
4430
  "kind": "SCALAR",
4686
4431
  "name": "String",
@@ -4692,9 +4437,7 @@
4692
4437
  {
4693
4438
  "name": "errors",
4694
4439
  "description": null,
4695
- "args": [
4696
-
4697
- ],
4440
+ "args": [],
4698
4441
  "type": {
4699
4442
  "kind": "NON_NULL",
4700
4443
  "name": null,
@@ -4718,9 +4461,7 @@
4718
4461
  {
4719
4462
  "name": "informationRequest",
4720
4463
  "description": null,
4721
- "args": [
4722
-
4723
- ],
4464
+ "args": [],
4724
4465
  "type": {
4725
4466
  "kind": "OBJECT",
4726
4467
  "name": "InformationRequest",
@@ -4732,9 +4473,7 @@
4732
4473
  {
4733
4474
  "name": "negotiation",
4734
4475
  "description": null,
4735
- "args": [
4736
-
4737
- ],
4476
+ "args": [],
4738
4477
  "type": {
4739
4478
  "kind": "OBJECT",
4740
4479
  "name": "Negotiation",
@@ -4746,9 +4485,7 @@
4746
4485
  {
4747
4486
  "name": "success",
4748
4487
  "description": null,
4749
- "args": [
4750
-
4751
- ],
4488
+ "args": [],
4752
4489
  "type": {
4753
4490
  "kind": "NON_NULL",
4754
4491
  "name": null,
@@ -4763,9 +4500,7 @@
4763
4500
  }
4764
4501
  ],
4765
4502
  "inputFields": null,
4766
- "interfaces": [
4767
-
4768
- ],
4503
+ "interfaces": [],
4769
4504
  "enumValues": null,
4770
4505
  "possibleTypes": null
4771
4506
  },
@@ -4911,9 +4646,117 @@
4911
4646
  }
4912
4647
  ],
4913
4648
  "inputFields": null,
4914
- "interfaces": [
4915
-
4649
+ "interfaces": [],
4650
+ "enumValues": null,
4651
+ "possibleTypes": null
4652
+ },
4653
+ {
4654
+ "kind": "INPUT_OBJECT",
4655
+ "name": "StopNegotiatingInput",
4656
+ "description": "Autogenerated input type of StopNegotiating",
4657
+ "fields": null,
4658
+ "inputFields": [
4659
+ {
4660
+ "name": "id",
4661
+ "description": null,
4662
+ "type": {
4663
+ "kind": "NON_NULL",
4664
+ "name": null,
4665
+ "ofType": {
4666
+ "kind": "SCALAR",
4667
+ "name": "ID",
4668
+ "ofType": null
4669
+ }
4670
+ },
4671
+ "defaultValue": null
4672
+ },
4673
+ {
4674
+ "name": "clientMutationId",
4675
+ "description": "A unique identifier for the client performing the mutation.",
4676
+ "type": {
4677
+ "kind": "SCALAR",
4678
+ "name": "String",
4679
+ "ofType": null
4680
+ },
4681
+ "defaultValue": null
4682
+ }
4683
+ ],
4684
+ "interfaces": null,
4685
+ "enumValues": null,
4686
+ "possibleTypes": null
4687
+ },
4688
+ {
4689
+ "kind": "OBJECT",
4690
+ "name": "StopNegotiatingPayload",
4691
+ "description": "Autogenerated return type of StopNegotiating",
4692
+ "fields": [
4693
+ {
4694
+ "name": "bill",
4695
+ "description": null,
4696
+ "args": [],
4697
+ "type": {
4698
+ "kind": "OBJECT",
4699
+ "name": "Bill",
4700
+ "ofType": null
4701
+ },
4702
+ "isDeprecated": false,
4703
+ "deprecationReason": null
4704
+ },
4705
+ {
4706
+ "name": "clientMutationId",
4707
+ "description": "A unique identifier for the client performing the mutation.",
4708
+ "args": [],
4709
+ "type": {
4710
+ "kind": "SCALAR",
4711
+ "name": "String",
4712
+ "ofType": null
4713
+ },
4714
+ "isDeprecated": false,
4715
+ "deprecationReason": null
4716
+ },
4717
+ {
4718
+ "name": "errors",
4719
+ "description": null,
4720
+ "args": [],
4721
+ "type": {
4722
+ "kind": "NON_NULL",
4723
+ "name": null,
4724
+ "ofType": {
4725
+ "kind": "LIST",
4726
+ "name": null,
4727
+ "ofType": {
4728
+ "kind": "NON_NULL",
4729
+ "name": null,
4730
+ "ofType": {
4731
+ "kind": "SCALAR",
4732
+ "name": "String",
4733
+ "ofType": null
4734
+ }
4735
+ }
4736
+ }
4737
+ },
4738
+ "isDeprecated": false,
4739
+ "deprecationReason": null
4740
+ },
4741
+ {
4742
+ "name": "success",
4743
+ "description": null,
4744
+ "args": [],
4745
+ "type": {
4746
+ "kind": "NON_NULL",
4747
+ "name": null,
4748
+ "ofType": {
4749
+ "kind": "SCALAR",
4750
+ "name": "Boolean",
4751
+ "ofType": null
4752
+ }
4753
+ },
4754
+ "isDeprecated": false,
4755
+ "deprecationReason": null
4756
+ }
4916
4757
  ],
4758
+ "inputFields": null,
4759
+ "interfaces": [],
4917
4760
  "enumValues": null,
4918
4761
  "possibleTypes": null
4919
4762
  },
@@ -4984,9 +4827,7 @@
4984
4827
  {
4985
4828
  "name": "clientMutationId",
4986
4829
  "description": "A unique identifier for the client performing the mutation.",
4987
- "args": [
4988
-
4989
- ],
4830
+ "args": [],
4990
4831
  "type": {
4991
4832
  "kind": "SCALAR",
4992
4833
  "name": "String",
@@ -4998,9 +4839,7 @@
4998
4839
  {
4999
4840
  "name": "customer",
5000
4841
  "description": null,
5001
- "args": [
5002
-
5003
- ],
4842
+ "args": [],
5004
4843
  "type": {
5005
4844
  "kind": "OBJECT",
5006
4845
  "name": "Customer",
@@ -5012,9 +4851,7 @@
5012
4851
  {
5013
4852
  "name": "errors",
5014
4853
  "description": null,
5015
- "args": [
5016
-
5017
- ],
4854
+ "args": [],
5018
4855
  "type": {
5019
4856
  "kind": "NON_NULL",
5020
4857
  "name": null,
@@ -5038,9 +4875,7 @@
5038
4875
  {
5039
4876
  "name": "success",
5040
4877
  "description": null,
5041
- "args": [
5042
-
5043
- ],
4878
+ "args": [],
5044
4879
  "type": {
5045
4880
  "kind": "NON_NULL",
5046
4881
  "name": null,
@@ -5055,9 +4890,7 @@
5055
4890
  }
5056
4891
  ],
5057
4892
  "inputFields": null,
5058
- "interfaces": [
5059
-
5060
- ],
4893
+ "interfaces": [],
5061
4894
  "enumValues": null,
5062
4895
  "possibleTypes": null
5063
4896
  },
@@ -5110,9 +4943,7 @@
5110
4943
  {
5111
4944
  "name": "clientMutationId",
5112
4945
  "description": "A unique identifier for the client performing the mutation.",
5113
- "args": [
5114
-
5115
- ],
4946
+ "args": [],
5116
4947
  "type": {
5117
4948
  "kind": "SCALAR",
5118
4949
  "name": "String",
@@ -5124,9 +4955,7 @@
5124
4955
  {
5125
4956
  "name": "errors",
5126
4957
  "description": null,
5127
- "args": [
5128
-
5129
- ],
4958
+ "args": [],
5130
4959
  "type": {
5131
4960
  "kind": "NON_NULL",
5132
4961
  "name": null,
@@ -5150,9 +4979,7 @@
5150
4979
  {
5151
4980
  "name": "partner",
5152
4981
  "description": null,
5153
- "args": [
5154
-
5155
- ],
4982
+ "args": [],
5156
4983
  "type": {
5157
4984
  "kind": "NON_NULL",
5158
4985
  "name": null,
@@ -5168,9 +4995,7 @@
5168
4995
  {
5169
4996
  "name": "success",
5170
4997
  "description": null,
5171
- "args": [
5172
-
5173
- ],
4998
+ "args": [],
5174
4999
  "type": {
5175
5000
  "kind": "NON_NULL",
5176
5001
  "name": null,
@@ -5185,9 +5010,7 @@
5185
5010
  }
5186
5011
  ],
5187
5012
  "inputFields": null,
5188
- "interfaces": [
5189
-
5190
- ],
5013
+ "interfaces": [],
5191
5014
  "enumValues": null,
5192
5015
  "possibleTypes": null
5193
5016
  },
@@ -5200,7 +5023,16 @@
5200
5023
  "name": "args",
5201
5024
  "description": null,
5202
5025
  "args": [
5203
-
5026
+ {
5027
+ "name": "includeDeprecated",
5028
+ "description": null,
5029
+ "type": {
5030
+ "kind": "SCALAR",
5031
+ "name": "Boolean",
5032
+ "ofType": null
5033
+ },
5034
+ "defaultValue": "false"
5035
+ }
5204
5036
  ],
5205
5037
  "type": {
5206
5038
  "kind": "NON_NULL",
@@ -5225,9 +5057,7 @@
5225
5057
  {
5226
5058
  "name": "description",
5227
5059
  "description": null,
5228
- "args": [
5229
-
5230
- ],
5060
+ "args": [],
5231
5061
  "type": {
5232
5062
  "kind": "SCALAR",
5233
5063
  "name": "String",
@@ -5239,9 +5069,7 @@
5239
5069
  {
5240
5070
  "name": "locations",
5241
5071
  "description": null,
5242
- "args": [
5243
-
5244
- ],
5072
+ "args": [],
5245
5073
  "type": {
5246
5074
  "kind": "NON_NULL",
5247
5075
  "name": null,
@@ -5265,9 +5093,7 @@
5265
5093
  {
5266
5094
  "name": "name",
5267
5095
  "description": null,
5268
- "args": [
5269
-
5270
- ],
5096
+ "args": [],
5271
5097
  "type": {
5272
5098
  "kind": "NON_NULL",
5273
5099
  "name": null,
@@ -5283,9 +5109,7 @@
5283
5109
  {
5284
5110
  "name": "onField",
5285
5111
  "description": null,
5286
- "args": [
5287
-
5288
- ],
5112
+ "args": [],
5289
5113
  "type": {
5290
5114
  "kind": "NON_NULL",
5291
5115
  "name": null,
@@ -5301,9 +5125,7 @@
5301
5125
  {
5302
5126
  "name": "onFragment",
5303
5127
  "description": null,
5304
- "args": [
5305
-
5306
- ],
5128
+ "args": [],
5307
5129
  "type": {
5308
5130
  "kind": "NON_NULL",
5309
5131
  "name": null,
@@ -5319,9 +5141,7 @@
5319
5141
  {
5320
5142
  "name": "onOperation",
5321
5143
  "description": null,
5322
- "args": [
5323
-
5324
- ],
5144
+ "args": [],
5325
5145
  "type": {
5326
5146
  "kind": "NON_NULL",
5327
5147
  "name": null,
@@ -5336,9 +5156,7 @@
5336
5156
  }
5337
5157
  ],
5338
5158
  "inputFields": null,
5339
- "interfaces": [
5340
-
5341
- ],
5159
+ "interfaces": [],
5342
5160
  "enumValues": null,
5343
5161
  "possibleTypes": null
5344
5162
  },
@@ -5469,9 +5287,7 @@
5469
5287
  {
5470
5288
  "name": "deprecationReason",
5471
5289
  "description": null,
5472
- "args": [
5473
-
5474
- ],
5290
+ "args": [],
5475
5291
  "type": {
5476
5292
  "kind": "SCALAR",
5477
5293
  "name": "String",
@@ -5483,9 +5299,7 @@
5483
5299
  {
5484
5300
  "name": "description",
5485
5301
  "description": null,
5486
- "args": [
5487
-
5488
- ],
5302
+ "args": [],
5489
5303
  "type": {
5490
5304
  "kind": "SCALAR",
5491
5305
  "name": "String",
@@ -5497,9 +5311,7 @@
5497
5311
  {
5498
5312
  "name": "isDeprecated",
5499
5313
  "description": null,
5500
- "args": [
5501
-
5502
- ],
5314
+ "args": [],
5503
5315
  "type": {
5504
5316
  "kind": "NON_NULL",
5505
5317
  "name": null,
@@ -5515,9 +5327,7 @@
5515
5327
  {
5516
5328
  "name": "name",
5517
5329
  "description": null,
5518
- "args": [
5519
-
5520
- ],
5330
+ "args": [],
5521
5331
  "type": {
5522
5332
  "kind": "NON_NULL",
5523
5333
  "name": null,
@@ -5532,9 +5342,7 @@
5532
5342
  }
5533
5343
  ],
5534
5344
  "inputFields": null,
5535
- "interfaces": [
5536
-
5537
- ],
5345
+ "interfaces": [],
5538
5346
  "enumValues": null,
5539
5347
  "possibleTypes": null
5540
5348
  },
@@ -5547,7 +5355,16 @@
5547
5355
  "name": "args",
5548
5356
  "description": null,
5549
5357
  "args": [
5550
-
5358
+ {
5359
+ "name": "includeDeprecated",
5360
+ "description": null,
5361
+ "type": {
5362
+ "kind": "SCALAR",
5363
+ "name": "Boolean",
5364
+ "ofType": null
5365
+ },
5366
+ "defaultValue": "false"
5367
+ }
5551
5368
  ],
5552
5369
  "type": {
5553
5370
  "kind": "NON_NULL",
@@ -5572,9 +5389,7 @@
5572
5389
  {
5573
5390
  "name": "deprecationReason",
5574
5391
  "description": null,
5575
- "args": [
5576
-
5577
- ],
5392
+ "args": [],
5578
5393
  "type": {
5579
5394
  "kind": "SCALAR",
5580
5395
  "name": "String",
@@ -5586,9 +5401,7 @@
5586
5401
  {
5587
5402
  "name": "description",
5588
5403
  "description": null,
5589
- "args": [
5590
-
5591
- ],
5404
+ "args": [],
5592
5405
  "type": {
5593
5406
  "kind": "SCALAR",
5594
5407
  "name": "String",
@@ -5600,9 +5413,7 @@
5600
5413
  {
5601
5414
  "name": "isDeprecated",
5602
5415
  "description": null,
5603
- "args": [
5604
-
5605
- ],
5416
+ "args": [],
5606
5417
  "type": {
5607
5418
  "kind": "NON_NULL",
5608
5419
  "name": null,
@@ -5618,9 +5429,7 @@
5618
5429
  {
5619
5430
  "name": "name",
5620
5431
  "description": null,
5621
- "args": [
5622
-
5623
- ],
5432
+ "args": [],
5624
5433
  "type": {
5625
5434
  "kind": "NON_NULL",
5626
5435
  "name": null,
@@ -5636,9 +5445,7 @@
5636
5445
  {
5637
5446
  "name": "type",
5638
5447
  "description": null,
5639
- "args": [
5640
-
5641
- ],
5448
+ "args": [],
5642
5449
  "type": {
5643
5450
  "kind": "NON_NULL",
5644
5451
  "name": null,
@@ -5653,9 +5460,7 @@
5653
5460
  }
5654
5461
  ],
5655
5462
  "inputFields": null,
5656
- "interfaces": [
5657
-
5658
- ],
5463
+ "interfaces": [],
5659
5464
  "enumValues": null,
5660
5465
  "possibleTypes": null
5661
5466
  },
@@ -5667,9 +5472,19 @@
5667
5472
  {
5668
5473
  "name": "defaultValue",
5669
5474
  "description": "A GraphQL-formatted string representing the default value for this input value.",
5670
- "args": [
5671
-
5672
- ],
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": [],
5673
5488
  "type": {
5674
5489
  "kind": "SCALAR",
5675
5490
  "name": "String",
@@ -5681,9 +5496,7 @@
5681
5496
  {
5682
5497
  "name": "description",
5683
5498
  "description": null,
5684
- "args": [
5685
-
5686
- ],
5499
+ "args": [],
5687
5500
  "type": {
5688
5501
  "kind": "SCALAR",
5689
5502
  "name": "String",
@@ -5692,12 +5505,26 @@
5692
5505
  "isDeprecated": false,
5693
5506
  "deprecationReason": null
5694
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
+ },
5695
5524
  {
5696
5525
  "name": "name",
5697
5526
  "description": null,
5698
- "args": [
5699
-
5700
- ],
5527
+ "args": [],
5701
5528
  "type": {
5702
5529
  "kind": "NON_NULL",
5703
5530
  "name": null,
@@ -5713,9 +5540,7 @@
5713
5540
  {
5714
5541
  "name": "type",
5715
5542
  "description": null,
5716
- "args": [
5717
-
5718
- ],
5543
+ "args": [],
5719
5544
  "type": {
5720
5545
  "kind": "NON_NULL",
5721
5546
  "name": null,
@@ -5730,9 +5555,7 @@
5730
5555
  }
5731
5556
  ],
5732
5557
  "inputFields": null,
5733
- "interfaces": [
5734
-
5735
- ],
5558
+ "interfaces": [],
5736
5559
  "enumValues": null,
5737
5560
  "possibleTypes": null
5738
5561
  },
@@ -5744,9 +5567,7 @@
5744
5567
  {
5745
5568
  "name": "directives",
5746
5569
  "description": "A list of all directives supported by this server.",
5747
- "args": [
5748
-
5749
- ],
5570
+ "args": [],
5750
5571
  "type": {
5751
5572
  "kind": "NON_NULL",
5752
5573
  "name": null,
@@ -5770,9 +5591,7 @@
5770
5591
  {
5771
5592
  "name": "mutationType",
5772
5593
  "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
5773
- "args": [
5774
-
5775
- ],
5594
+ "args": [],
5776
5595
  "type": {
5777
5596
  "kind": "OBJECT",
5778
5597
  "name": "__Type",
@@ -5784,9 +5603,7 @@
5784
5603
  {
5785
5604
  "name": "queryType",
5786
5605
  "description": "The type that query operations will be rooted at.",
5787
- "args": [
5788
-
5789
- ],
5606
+ "args": [],
5790
5607
  "type": {
5791
5608
  "kind": "NON_NULL",
5792
5609
  "name": null,
@@ -5802,9 +5619,7 @@
5802
5619
  {
5803
5620
  "name": "subscriptionType",
5804
5621
  "description": "If this server support subscription, the type that subscription operations will be rooted at.",
5805
- "args": [
5806
-
5807
- ],
5622
+ "args": [],
5808
5623
  "type": {
5809
5624
  "kind": "OBJECT",
5810
5625
  "name": "__Type",
@@ -5816,9 +5631,7 @@
5816
5631
  {
5817
5632
  "name": "types",
5818
5633
  "description": "A list of all types supported by this server.",
5819
- "args": [
5820
-
5821
- ],
5634
+ "args": [],
5822
5635
  "type": {
5823
5636
  "kind": "NON_NULL",
5824
5637
  "name": null,
@@ -5841,9 +5654,7 @@
5841
5654
  }
5842
5655
  ],
5843
5656
  "inputFields": null,
5844
- "interfaces": [
5845
-
5846
- ],
5657
+ "interfaces": [],
5847
5658
  "enumValues": null,
5848
5659
  "possibleTypes": null
5849
5660
  },
@@ -5855,9 +5666,7 @@
5855
5666
  {
5856
5667
  "name": "description",
5857
5668
  "description": null,
5858
- "args": [
5859
-
5860
- ],
5669
+ "args": [],
5861
5670
  "type": {
5862
5671
  "kind": "SCALAR",
5863
5672
  "name": "String",
@@ -5932,7 +5741,16 @@
5932
5741
  "name": "inputFields",
5933
5742
  "description": null,
5934
5743
  "args": [
5935
-
5744
+ {
5745
+ "name": "includeDeprecated",
5746
+ "description": null,
5747
+ "type": {
5748
+ "kind": "SCALAR",
5749
+ "name": "Boolean",
5750
+ "ofType": null
5751
+ },
5752
+ "defaultValue": "false"
5753
+ }
5936
5754
  ],
5937
5755
  "type": {
5938
5756
  "kind": "LIST",
@@ -5953,9 +5771,7 @@
5953
5771
  {
5954
5772
  "name": "interfaces",
5955
5773
  "description": null,
5956
- "args": [
5957
-
5958
- ],
5774
+ "args": [],
5959
5775
  "type": {
5960
5776
  "kind": "LIST",
5961
5777
  "name": null,
@@ -5975,9 +5791,7 @@
5975
5791
  {
5976
5792
  "name": "kind",
5977
5793
  "description": null,
5978
- "args": [
5979
-
5980
- ],
5794
+ "args": [],
5981
5795
  "type": {
5982
5796
  "kind": "NON_NULL",
5983
5797
  "name": null,
@@ -5993,9 +5807,7 @@
5993
5807
  {
5994
5808
  "name": "name",
5995
5809
  "description": null,
5996
- "args": [
5997
-
5998
- ],
5810
+ "args": [],
5999
5811
  "type": {
6000
5812
  "kind": "SCALAR",
6001
5813
  "name": "String",
@@ -6007,9 +5819,7 @@
6007
5819
  {
6008
5820
  "name": "ofType",
6009
5821
  "description": null,
6010
- "args": [
6011
-
6012
- ],
5822
+ "args": [],
6013
5823
  "type": {
6014
5824
  "kind": "OBJECT",
6015
5825
  "name": "__Type",
@@ -6021,9 +5831,7 @@
6021
5831
  {
6022
5832
  "name": "possibleTypes",
6023
5833
  "description": null,
6024
- "args": [
6025
-
6026
- ],
5834
+ "args": [],
6027
5835
  "type": {
6028
5836
  "kind": "LIST",
6029
5837
  "name": null,
@@ -6042,9 +5850,7 @@
6042
5850
  }
6043
5851
  ],
6044
5852
  "inputFields": null,
6045
- "interfaces": [
6046
-
6047
- ],
5853
+ "interfaces": [],
6048
5854
  "enumValues": null,
6049
5855
  "possibleTypes": null
6050
5856
  },
@@ -6164,7 +5970,9 @@
6164
5970
  "description": "Marks an element of a GraphQL schema as no longer supported.",
6165
5971
  "locations": [
6166
5972
  "FIELD_DEFINITION",
6167
- "ENUM_VALUE"
5973
+ "ENUM_VALUE",
5974
+ "ARGUMENT_DEFINITION",
5975
+ "INPUT_FIELD_DEFINITION"
6168
5976
  ],
6169
5977
  "args": [
6170
5978
  {