billfixers-partner 1.1.2 → 1.1.3

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: 2a9b6988e869f55dc9463f0273d068bb8a1adda3aed92bef72e6769bf2f7a054
4
- data.tar.gz: a7844f1537a2ab3a2d6af2067f9cc123ad3c449cb634865a692bebab2216b18e
3
+ metadata.gz: 0502075a20dd8ce469eaf99ac0c82af520bd30cdc191104966442c7c5441847a
4
+ data.tar.gz: 0da7348c6e5797fb999d87aef93e990138076a6fe0572b1b4ed5b3a315d7fa34
5
5
  SHA512:
6
- metadata.gz: 64dd15090d303e8924b1bb5b38f465f550565f086ff8aedc000d34dea18dcf513a276806cdd457fa99a3d99e6c506ba25ace6f02e059b6cdfb0fda0ca1d8a993
7
- data.tar.gz: fef336eb014ef857f9fed470475f7fc31daf582d392213699c0fef189af81a5dce9dacddf7c5bfba17dea346849dc4c8a95cd666102d9422c74a9796d45c7404
6
+ metadata.gz: 0de40ffd16e308841a205b53e604a851635a74f1301817257fff94e7804f1e4c436a15871d4e6ca9f92b2dcba575b91c082e58ba6dd9791a87c456cc3ca72a31
7
+ data.tar.gz: 10982080daa94e2b27f751c9b2a3812599a9d4e2f89b1ef8f6d500dc8e13da0f5c3d05fa974777bcecc6c6710cf2778cd61f43250e64523a87eded414c4daf0c
@@ -115,6 +115,12 @@ module Billfixers
115
115
  result.bill
116
116
  end
117
117
 
118
+ def renegotiate_bill(bill_id)
119
+ response = @gql.query(RENEGOTIATE_BILL_MUTATION, { id: bill_id })
120
+
121
+ response.data.renegotiate_bill
122
+ end
123
+
118
124
  def cancel_bill(bill_id)
119
125
  response = @gql.query(CANCEL_BILL_MUTATION, { id: bill_id })
120
126
 
@@ -227,6 +227,18 @@ module Billfixers
227
227
  }
228
228
  )
229
229
 
230
+ RENEGOTIATE_BILL_MUTATION = %(
231
+ mutation($id: ID!) {
232
+ RenegotiateBill(input: { id: $id }) {
233
+ success
234
+ errors
235
+ bill {
236
+ #{BILL_FRAGMENT}
237
+ }
238
+ }
239
+ }
240
+ )
241
+
230
242
  ACCEPT_OFFER_MUTATION = %(
231
243
  mutation($id: ID!) {
232
244
  AcceptOffer(input: { id: $id }) {
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Billfixers
4
4
  module Partner
5
- VERSION = '1.1.2'
5
+ VERSION = '1.1.3'
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
  },
@@ -137,9 +127,7 @@
137
127
  {
138
128
  "name": "createdAt",
139
129
  "description": "The date the record was created",
140
- "args": [
141
-
142
- ],
130
+ "args": [],
143
131
  "type": {
144
132
  "kind": "NON_NULL",
145
133
  "name": null,
@@ -155,9 +143,7 @@
155
143
  {
156
144
  "name": "customer",
157
145
  "description": null,
158
- "args": [
159
-
160
- ],
146
+ "args": [],
161
147
  "type": {
162
148
  "kind": "NON_NULL",
163
149
  "name": null,
@@ -173,9 +159,7 @@
173
159
  {
174
160
  "name": "customerId",
175
161
  "description": "Billfixer's alpha-numeric Customer ID",
176
- "args": [
177
-
178
- ],
162
+ "args": [],
179
163
  "type": {
180
164
  "kind": "NON_NULL",
181
165
  "name": null,
@@ -191,9 +175,7 @@
191
175
  {
192
176
  "name": "id",
193
177
  "description": "Alpha-numeric unique identifier",
194
- "args": [
195
-
196
- ],
178
+ "args": [],
197
179
  "type": {
198
180
  "kind": "NON_NULL",
199
181
  "name": null,
@@ -209,9 +191,7 @@
209
191
  {
210
192
  "name": "items",
211
193
  "description": "The items on the bill",
212
- "args": [
213
-
214
- ],
194
+ "args": [],
215
195
  "type": {
216
196
  "kind": "NON_NULL",
217
197
  "name": null,
@@ -235,9 +215,7 @@
235
215
  {
236
216
  "name": "offers",
237
217
  "description": null,
238
- "args": [
239
-
240
- ],
218
+ "args": [],
241
219
  "type": {
242
220
  "kind": "NON_NULL",
243
221
  "name": null,
@@ -261,9 +239,7 @@
261
239
  {
262
240
  "name": "provider",
263
241
  "description": null,
264
- "args": [
265
-
266
- ],
242
+ "args": [],
267
243
  "type": {
268
244
  "kind": "NON_NULL",
269
245
  "name": null,
@@ -279,9 +255,7 @@
279
255
  {
280
256
  "name": "providerId",
281
257
  "description": "Billfixer's alpha-numeric Provider ID",
282
- "args": [
283
-
284
- ],
258
+ "args": [],
285
259
  "type": {
286
260
  "kind": "NON_NULL",
287
261
  "name": null,
@@ -297,9 +271,7 @@
297
271
  {
298
272
  "name": "status",
299
273
  "description": "Status of the bill",
300
- "args": [
301
-
302
- ],
274
+ "args": [],
303
275
  "type": {
304
276
  "kind": "NON_NULL",
305
277
  "name": null,
@@ -315,9 +287,7 @@
315
287
  {
316
288
  "name": "title",
317
289
  "description": "Title of the bill",
318
- "args": [
319
-
320
- ],
290
+ "args": [],
321
291
  "type": {
322
292
  "kind": "NON_NULL",
323
293
  "name": null,
@@ -333,9 +303,7 @@
333
303
  {
334
304
  "name": "totalSavings",
335
305
  "description": "The total value gained from negotiations",
336
- "args": [
337
-
338
- ],
306
+ "args": [],
339
307
  "type": {
340
308
  "kind": "NON_NULL",
341
309
  "name": null,
@@ -351,9 +319,7 @@
351
319
  {
352
320
  "name": "updatedAt",
353
321
  "description": "The last time the record was updated",
354
- "args": [
355
-
356
- ],
322
+ "args": [],
357
323
  "type": {
358
324
  "kind": "NON_NULL",
359
325
  "name": null,
@@ -368,9 +334,7 @@
368
334
  }
369
335
  ],
370
336
  "inputFields": null,
371
- "interfaces": [
372
-
373
- ],
337
+ "interfaces": [],
374
338
  "enumValues": null,
375
339
  "possibleTypes": null
376
340
  },
@@ -475,9 +439,7 @@
475
439
  {
476
440
  "name": "edges",
477
441
  "description": "A list of edges.",
478
- "args": [
479
-
480
- ],
442
+ "args": [],
481
443
  "type": {
482
444
  "kind": "NON_NULL",
483
445
  "name": null,
@@ -501,9 +463,7 @@
501
463
  {
502
464
  "name": "nodes",
503
465
  "description": "A list of nodes.",
504
- "args": [
505
-
506
- ],
466
+ "args": [],
507
467
  "type": {
508
468
  "kind": "NON_NULL",
509
469
  "name": null,
@@ -527,9 +487,7 @@
527
487
  {
528
488
  "name": "pageInfo",
529
489
  "description": "Information to aid in pagination.",
530
- "args": [
531
-
532
- ],
490
+ "args": [],
533
491
  "type": {
534
492
  "kind": "NON_NULL",
535
493
  "name": null,
@@ -545,9 +503,7 @@
545
503
  {
546
504
  "name": "totalCount",
547
505
  "description": null,
548
- "args": [
549
-
550
- ],
506
+ "args": [],
551
507
  "type": {
552
508
  "kind": "NON_NULL",
553
509
  "name": null,
@@ -563,9 +519,7 @@
563
519
  {
564
520
  "name": "totalSavings",
565
521
  "description": null,
566
- "args": [
567
-
568
- ],
522
+ "args": [],
569
523
  "type": {
570
524
  "kind": "NON_NULL",
571
525
  "name": null,
@@ -580,9 +534,7 @@
580
534
  }
581
535
  ],
582
536
  "inputFields": null,
583
- "interfaces": [
584
-
585
- ],
537
+ "interfaces": [],
586
538
  "enumValues": null,
587
539
  "possibleTypes": null
588
540
  },
@@ -594,9 +546,7 @@
594
546
  {
595
547
  "name": "cursor",
596
548
  "description": "A cursor for use in pagination.",
597
- "args": [
598
-
599
- ],
549
+ "args": [],
600
550
  "type": {
601
551
  "kind": "NON_NULL",
602
552
  "name": null,
@@ -612,9 +562,7 @@
612
562
  {
613
563
  "name": "node",
614
564
  "description": "The item at the end of the edge.",
615
- "args": [
616
-
617
- ],
565
+ "args": [],
618
566
  "type": {
619
567
  "kind": "OBJECT",
620
568
  "name": "Bill",
@@ -625,9 +573,7 @@
625
573
  }
626
574
  ],
627
575
  "inputFields": null,
628
- "interfaces": [
629
-
630
- ],
576
+ "interfaces": [],
631
577
  "enumValues": null,
632
578
  "possibleTypes": null
633
579
  },
@@ -684,9 +630,7 @@
684
630
  {
685
631
  "name": "clientMutationId",
686
632
  "description": "A unique identifier for the client performing the mutation.",
687
- "args": [
688
-
689
- ],
633
+ "args": [],
690
634
  "type": {
691
635
  "kind": "SCALAR",
692
636
  "name": "String",
@@ -698,9 +642,7 @@
698
642
  {
699
643
  "name": "success",
700
644
  "description": null,
701
- "args": [
702
-
703
- ],
645
+ "args": [],
704
646
  "type": {
705
647
  "kind": "NON_NULL",
706
648
  "name": null,
@@ -715,9 +657,7 @@
715
657
  }
716
658
  ],
717
659
  "inputFields": null,
718
- "interfaces": [
719
-
720
- ],
660
+ "interfaces": [],
721
661
  "enumValues": null,
722
662
  "possibleTypes": null
723
663
  },
@@ -778,9 +718,7 @@
778
718
  {
779
719
  "name": "bill",
780
720
  "description": null,
781
- "args": [
782
-
783
- ],
721
+ "args": [],
784
722
  "type": {
785
723
  "kind": "OBJECT",
786
724
  "name": "Bill",
@@ -792,9 +730,7 @@
792
730
  {
793
731
  "name": "clientMutationId",
794
732
  "description": "A unique identifier for the client performing the mutation.",
795
- "args": [
796
-
797
- ],
733
+ "args": [],
798
734
  "type": {
799
735
  "kind": "SCALAR",
800
736
  "name": "String",
@@ -806,9 +742,7 @@
806
742
  {
807
743
  "name": "errors",
808
744
  "description": null,
809
- "args": [
810
-
811
- ],
745
+ "args": [],
812
746
  "type": {
813
747
  "kind": "NON_NULL",
814
748
  "name": null,
@@ -832,9 +766,7 @@
832
766
  {
833
767
  "name": "success",
834
768
  "description": null,
835
- "args": [
836
-
837
- ],
769
+ "args": [],
838
770
  "type": {
839
771
  "kind": "NON_NULL",
840
772
  "name": null,
@@ -849,9 +781,7 @@
849
781
  }
850
782
  ],
851
783
  "inputFields": null,
852
- "interfaces": [
853
-
854
- ],
784
+ "interfaces": [],
855
785
  "enumValues": null,
856
786
  "possibleTypes": null
857
787
  },
@@ -898,9 +828,7 @@
898
828
  {
899
829
  "name": "clientMutationId",
900
830
  "description": "A unique identifier for the client performing the mutation.",
901
- "args": [
902
-
903
- ],
831
+ "args": [],
904
832
  "type": {
905
833
  "kind": "SCALAR",
906
834
  "name": "String",
@@ -912,9 +840,7 @@
912
840
  {
913
841
  "name": "customer",
914
842
  "description": null,
915
- "args": [
916
-
917
- ],
843
+ "args": [],
918
844
  "type": {
919
845
  "kind": "OBJECT",
920
846
  "name": "Customer",
@@ -926,9 +852,7 @@
926
852
  {
927
853
  "name": "errors",
928
854
  "description": null,
929
- "args": [
930
-
931
- ],
855
+ "args": [],
932
856
  "type": {
933
857
  "kind": "NON_NULL",
934
858
  "name": null,
@@ -952,9 +876,7 @@
952
876
  {
953
877
  "name": "success",
954
878
  "description": null,
955
- "args": [
956
-
957
- ],
879
+ "args": [],
958
880
  "type": {
959
881
  "kind": "NON_NULL",
960
882
  "name": null,
@@ -969,9 +891,7 @@
969
891
  }
970
892
  ],
971
893
  "inputFields": null,
972
- "interfaces": [
973
-
974
- ],
894
+ "interfaces": [],
975
895
  "enumValues": null,
976
896
  "possibleTypes": null
977
897
  },
@@ -983,9 +903,7 @@
983
903
  {
984
904
  "name": "avatarUrl",
985
905
  "description": null,
986
- "args": [
987
-
988
- ],
906
+ "args": [],
989
907
  "type": {
990
908
  "kind": "NON_NULL",
991
909
  "name": null,
@@ -1001,9 +919,7 @@
1001
919
  {
1002
920
  "name": "b2b",
1003
921
  "description": null,
1004
- "args": [
1005
-
1006
- ],
922
+ "args": [],
1007
923
  "type": {
1008
924
  "kind": "NON_NULL",
1009
925
  "name": null,
@@ -1076,9 +992,7 @@
1076
992
  {
1077
993
  "name": "createdAt",
1078
994
  "description": null,
1079
- "args": [
1080
-
1081
- ],
995
+ "args": [],
1082
996
  "type": {
1083
997
  "kind": "NON_NULL",
1084
998
  "name": null,
@@ -1094,9 +1008,7 @@
1094
1008
  {
1095
1009
  "name": "email",
1096
1010
  "description": null,
1097
- "args": [
1098
-
1099
- ],
1011
+ "args": [],
1100
1012
  "type": {
1101
1013
  "kind": "NON_NULL",
1102
1014
  "name": null,
@@ -1112,9 +1024,7 @@
1112
1024
  {
1113
1025
  "name": "firstName",
1114
1026
  "description": null,
1115
- "args": [
1116
-
1117
- ],
1027
+ "args": [],
1118
1028
  "type": {
1119
1029
  "kind": "SCALAR",
1120
1030
  "name": "String",
@@ -1126,9 +1036,7 @@
1126
1036
  {
1127
1037
  "name": "id",
1128
1038
  "description": null,
1129
- "args": [
1130
-
1131
- ],
1039
+ "args": [],
1132
1040
  "type": {
1133
1041
  "kind": "NON_NULL",
1134
1042
  "name": null,
@@ -1144,9 +1052,7 @@
1144
1052
  {
1145
1053
  "name": "lastName",
1146
1054
  "description": null,
1147
- "args": [
1148
-
1149
- ],
1055
+ "args": [],
1150
1056
  "type": {
1151
1057
  "kind": "SCALAR",
1152
1058
  "name": "String",
@@ -1158,9 +1064,7 @@
1158
1064
  {
1159
1065
  "name": "name",
1160
1066
  "description": null,
1161
- "args": [
1162
-
1163
- ],
1067
+ "args": [],
1164
1068
  "type": {
1165
1069
  "kind": "NON_NULL",
1166
1070
  "name": null,
@@ -1176,9 +1080,7 @@
1176
1080
  {
1177
1081
  "name": "phoneNumber",
1178
1082
  "description": null,
1179
- "args": [
1180
-
1181
- ],
1083
+ "args": [],
1182
1084
  "type": {
1183
1085
  "kind": "SCALAR",
1184
1086
  "name": "String",
@@ -1190,9 +1092,7 @@
1190
1092
  {
1191
1093
  "name": "updatedAt",
1192
1094
  "description": null,
1193
- "args": [
1194
-
1195
- ],
1095
+ "args": [],
1196
1096
  "type": {
1197
1097
  "kind": "NON_NULL",
1198
1098
  "name": null,
@@ -1207,9 +1107,7 @@
1207
1107
  }
1208
1108
  ],
1209
1109
  "inputFields": null,
1210
- "interfaces": [
1211
-
1212
- ],
1110
+ "interfaces": [],
1213
1111
  "enumValues": null,
1214
1112
  "possibleTypes": null
1215
1113
  },
@@ -1312,9 +1210,7 @@
1312
1210
  {
1313
1211
  "name": "edges",
1314
1212
  "description": "A list of edges.",
1315
- "args": [
1316
-
1317
- ],
1213
+ "args": [],
1318
1214
  "type": {
1319
1215
  "kind": "NON_NULL",
1320
1216
  "name": null,
@@ -1338,9 +1234,7 @@
1338
1234
  {
1339
1235
  "name": "nodes",
1340
1236
  "description": "A list of nodes.",
1341
- "args": [
1342
-
1343
- ],
1237
+ "args": [],
1344
1238
  "type": {
1345
1239
  "kind": "NON_NULL",
1346
1240
  "name": null,
@@ -1364,9 +1258,7 @@
1364
1258
  {
1365
1259
  "name": "pageInfo",
1366
1260
  "description": "Information to aid in pagination.",
1367
- "args": [
1368
-
1369
- ],
1261
+ "args": [],
1370
1262
  "type": {
1371
1263
  "kind": "NON_NULL",
1372
1264
  "name": null,
@@ -1382,9 +1274,7 @@
1382
1274
  {
1383
1275
  "name": "totalCount",
1384
1276
  "description": null,
1385
- "args": [
1386
-
1387
- ],
1277
+ "args": [],
1388
1278
  "type": {
1389
1279
  "kind": "NON_NULL",
1390
1280
  "name": null,
@@ -1399,9 +1289,7 @@
1399
1289
  }
1400
1290
  ],
1401
1291
  "inputFields": null,
1402
- "interfaces": [
1403
-
1404
- ],
1292
+ "interfaces": [],
1405
1293
  "enumValues": null,
1406
1294
  "possibleTypes": null
1407
1295
  },
@@ -1413,9 +1301,7 @@
1413
1301
  {
1414
1302
  "name": "cursor",
1415
1303
  "description": "A cursor for use in pagination.",
1416
- "args": [
1417
-
1418
- ],
1304
+ "args": [],
1419
1305
  "type": {
1420
1306
  "kind": "NON_NULL",
1421
1307
  "name": null,
@@ -1431,9 +1317,7 @@
1431
1317
  {
1432
1318
  "name": "node",
1433
1319
  "description": "The item at the end of the edge.",
1434
- "args": [
1435
-
1436
- ],
1320
+ "args": [],
1437
1321
  "type": {
1438
1322
  "kind": "OBJECT",
1439
1323
  "name": "Customer",
@@ -1444,9 +1328,7 @@
1444
1328
  }
1445
1329
  ],
1446
1330
  "inputFields": null,
1447
- "interfaces": [
1448
-
1449
- ],
1331
+ "interfaces": [],
1450
1332
  "enumValues": null,
1451
1333
  "possibleTypes": null
1452
1334
  },
@@ -1468,9 +1350,7 @@
1468
1350
  {
1469
1351
  "name": "email",
1470
1352
  "description": null,
1471
- "args": [
1472
-
1473
- ],
1353
+ "args": [],
1474
1354
  "type": {
1475
1355
  "kind": "NON_NULL",
1476
1356
  "name": null,
@@ -1486,9 +1366,7 @@
1486
1366
  {
1487
1367
  "name": "firstName",
1488
1368
  "description": null,
1489
- "args": [
1490
-
1491
- ],
1369
+ "args": [],
1492
1370
  "type": {
1493
1371
  "kind": "NON_NULL",
1494
1372
  "name": null,
@@ -1504,9 +1382,7 @@
1504
1382
  {
1505
1383
  "name": "firstNameLastInitial",
1506
1384
  "description": null,
1507
- "args": [
1508
-
1509
- ],
1385
+ "args": [],
1510
1386
  "type": {
1511
1387
  "kind": "NON_NULL",
1512
1388
  "name": null,
@@ -1522,9 +1398,7 @@
1522
1398
  {
1523
1399
  "name": "id",
1524
1400
  "description": null,
1525
- "args": [
1526
-
1527
- ],
1401
+ "args": [],
1528
1402
  "type": {
1529
1403
  "kind": "NON_NULL",
1530
1404
  "name": null,
@@ -1540,9 +1414,7 @@
1540
1414
  {
1541
1415
  "name": "lastName",
1542
1416
  "description": null,
1543
- "args": [
1544
-
1545
- ],
1417
+ "args": [],
1546
1418
  "type": {
1547
1419
  "kind": "NON_NULL",
1548
1420
  "name": null,
@@ -1558,9 +1430,7 @@
1558
1430
  {
1559
1431
  "name": "name",
1560
1432
  "description": null,
1561
- "args": [
1562
-
1563
- ],
1433
+ "args": [],
1564
1434
  "type": {
1565
1435
  "kind": "NON_NULL",
1566
1436
  "name": null,
@@ -1576,9 +1446,7 @@
1576
1446
  {
1577
1447
  "name": "phoneNumber",
1578
1448
  "description": null,
1579
- "args": [
1580
-
1581
- ],
1449
+ "args": [],
1582
1450
  "type": {
1583
1451
  "kind": "SCALAR",
1584
1452
  "name": "String",
@@ -1589,9 +1457,7 @@
1589
1457
  }
1590
1458
  ],
1591
1459
  "inputFields": null,
1592
- "interfaces": [
1593
-
1594
- ],
1460
+ "interfaces": [],
1595
1461
  "enumValues": null,
1596
1462
  "possibleTypes": null
1597
1463
  },
@@ -1623,9 +1489,7 @@
1623
1489
  {
1624
1490
  "name": "grandeUrl",
1625
1491
  "description": null,
1626
- "args": [
1627
-
1628
- ],
1492
+ "args": [],
1629
1493
  "type": {
1630
1494
  "kind": "NON_NULL",
1631
1495
  "name": null,
@@ -1641,9 +1505,7 @@
1641
1505
  {
1642
1506
  "name": "iconUrl",
1643
1507
  "description": null,
1644
- "args": [
1645
-
1646
- ],
1508
+ "args": [],
1647
1509
  "type": {
1648
1510
  "kind": "NON_NULL",
1649
1511
  "name": null,
@@ -1659,9 +1521,7 @@
1659
1521
  {
1660
1522
  "name": "id",
1661
1523
  "description": null,
1662
- "args": [
1663
-
1664
- ],
1524
+ "args": [],
1665
1525
  "type": {
1666
1526
  "kind": "SCALAR",
1667
1527
  "name": "ID",
@@ -1673,9 +1533,7 @@
1673
1533
  {
1674
1534
  "name": "imageProcessed",
1675
1535
  "description": null,
1676
- "args": [
1677
-
1678
- ],
1536
+ "args": [],
1679
1537
  "type": {
1680
1538
  "kind": "NON_NULL",
1681
1539
  "name": null,
@@ -1691,9 +1549,7 @@
1691
1549
  {
1692
1550
  "name": "largeUrl",
1693
1551
  "description": null,
1694
- "args": [
1695
-
1696
- ],
1552
+ "args": [],
1697
1553
  "type": {
1698
1554
  "kind": "NON_NULL",
1699
1555
  "name": null,
@@ -1709,9 +1565,7 @@
1709
1565
  {
1710
1566
  "name": "mediumUrl",
1711
1567
  "description": null,
1712
- "args": [
1713
-
1714
- ],
1568
+ "args": [],
1715
1569
  "type": {
1716
1570
  "kind": "NON_NULL",
1717
1571
  "name": null,
@@ -1727,9 +1581,7 @@
1727
1581
  {
1728
1582
  "name": "originalUrl",
1729
1583
  "description": null,
1730
- "args": [
1731
-
1732
- ],
1584
+ "args": [],
1733
1585
  "type": {
1734
1586
  "kind": "NON_NULL",
1735
1587
  "name": null,
@@ -1745,9 +1597,7 @@
1745
1597
  {
1746
1598
  "name": "smallUrl",
1747
1599
  "description": null,
1748
- "args": [
1749
-
1750
- ],
1600
+ "args": [],
1751
1601
  "type": {
1752
1602
  "kind": "NON_NULL",
1753
1603
  "name": null,
@@ -1763,9 +1613,7 @@
1763
1613
  {
1764
1614
  "name": "thumbnailUrl",
1765
1615
  "description": null,
1766
- "args": [
1767
-
1768
- ],
1616
+ "args": [],
1769
1617
  "type": {
1770
1618
  "kind": "NON_NULL",
1771
1619
  "name": null,
@@ -1781,9 +1629,7 @@
1781
1629
  {
1782
1630
  "name": "tinyUrl",
1783
1631
  "description": null,
1784
- "args": [
1785
-
1786
- ],
1632
+ "args": [],
1787
1633
  "type": {
1788
1634
  "kind": "NON_NULL",
1789
1635
  "name": null,
@@ -1798,9 +1644,7 @@
1798
1644
  }
1799
1645
  ],
1800
1646
  "inputFields": null,
1801
- "interfaces": [
1802
-
1803
- ],
1647
+ "interfaces": [],
1804
1648
  "enumValues": null,
1805
1649
  "possibleTypes": null
1806
1650
  },
@@ -1812,9 +1656,7 @@
1812
1656
  {
1813
1657
  "name": "content",
1814
1658
  "description": null,
1815
- "args": [
1816
-
1817
- ],
1659
+ "args": [],
1818
1660
  "type": {
1819
1661
  "kind": "NON_NULL",
1820
1662
  "name": null,
@@ -1830,9 +1672,7 @@
1830
1672
  {
1831
1673
  "name": "contentHtml",
1832
1674
  "description": null,
1833
- "args": [
1834
-
1835
- ],
1675
+ "args": [],
1836
1676
  "type": {
1837
1677
  "kind": "NON_NULL",
1838
1678
  "name": null,
@@ -1848,9 +1688,7 @@
1848
1688
  {
1849
1689
  "name": "createdAt",
1850
1690
  "description": null,
1851
- "args": [
1852
-
1853
- ],
1691
+ "args": [],
1854
1692
  "type": {
1855
1693
  "kind": "NON_NULL",
1856
1694
  "name": null,
@@ -1866,9 +1704,7 @@
1866
1704
  {
1867
1705
  "name": "fields",
1868
1706
  "description": null,
1869
- "args": [
1870
-
1871
- ],
1707
+ "args": [],
1872
1708
  "type": {
1873
1709
  "kind": "NON_NULL",
1874
1710
  "name": null,
@@ -1892,9 +1728,7 @@
1892
1728
  {
1893
1729
  "name": "id",
1894
1730
  "description": null,
1895
- "args": [
1896
-
1897
- ],
1731
+ "args": [],
1898
1732
  "type": {
1899
1733
  "kind": "NON_NULL",
1900
1734
  "name": null,
@@ -1910,9 +1744,7 @@
1910
1744
  {
1911
1745
  "name": "respondedAt",
1912
1746
  "description": null,
1913
- "args": [
1914
-
1915
- ],
1747
+ "args": [],
1916
1748
  "type": {
1917
1749
  "kind": "SCALAR",
1918
1750
  "name": "DateTime",
@@ -1924,9 +1756,7 @@
1924
1756
  {
1925
1757
  "name": "updatedAt",
1926
1758
  "description": null,
1927
- "args": [
1928
-
1929
- ],
1759
+ "args": [],
1930
1760
  "type": {
1931
1761
  "kind": "NON_NULL",
1932
1762
  "name": null,
@@ -1941,9 +1771,7 @@
1941
1771
  }
1942
1772
  ],
1943
1773
  "inputFields": null,
1944
- "interfaces": [
1945
-
1946
- ],
1774
+ "interfaces": [],
1947
1775
  "enumValues": null,
1948
1776
  "possibleTypes": null
1949
1777
  },
@@ -1988,9 +1816,7 @@
1988
1816
  {
1989
1817
  "name": "edges",
1990
1818
  "description": "A list of edges.",
1991
- "args": [
1992
-
1993
- ],
1819
+ "args": [],
1994
1820
  "type": {
1995
1821
  "kind": "NON_NULL",
1996
1822
  "name": null,
@@ -2014,9 +1840,7 @@
2014
1840
  {
2015
1841
  "name": "nodes",
2016
1842
  "description": "A list of nodes.",
2017
- "args": [
2018
-
2019
- ],
1843
+ "args": [],
2020
1844
  "type": {
2021
1845
  "kind": "NON_NULL",
2022
1846
  "name": null,
@@ -2040,9 +1864,7 @@
2040
1864
  {
2041
1865
  "name": "pageInfo",
2042
1866
  "description": "Information to aid in pagination.",
2043
- "args": [
2044
-
2045
- ],
1867
+ "args": [],
2046
1868
  "type": {
2047
1869
  "kind": "NON_NULL",
2048
1870
  "name": null,
@@ -2058,9 +1880,7 @@
2058
1880
  {
2059
1881
  "name": "totalCount",
2060
1882
  "description": null,
2061
- "args": [
2062
-
2063
- ],
1883
+ "args": [],
2064
1884
  "type": {
2065
1885
  "kind": "NON_NULL",
2066
1886
  "name": null,
@@ -2075,9 +1895,7 @@
2075
1895
  }
2076
1896
  ],
2077
1897
  "inputFields": null,
2078
- "interfaces": [
2079
-
2080
- ],
1898
+ "interfaces": [],
2081
1899
  "enumValues": null,
2082
1900
  "possibleTypes": null
2083
1901
  },
@@ -2089,9 +1907,7 @@
2089
1907
  {
2090
1908
  "name": "cursor",
2091
1909
  "description": "A cursor for use in pagination.",
2092
- "args": [
2093
-
2094
- ],
1910
+ "args": [],
2095
1911
  "type": {
2096
1912
  "kind": "NON_NULL",
2097
1913
  "name": null,
@@ -2107,9 +1923,7 @@
2107
1923
  {
2108
1924
  "name": "node",
2109
1925
  "description": "The item at the end of the edge.",
2110
- "args": [
2111
-
2112
- ],
1926
+ "args": [],
2113
1927
  "type": {
2114
1928
  "kind": "OBJECT",
2115
1929
  "name": "InformationRequest",
@@ -2120,9 +1934,7 @@
2120
1934
  }
2121
1935
  ],
2122
1936
  "inputFields": null,
2123
- "interfaces": [
2124
-
2125
- ],
1937
+ "interfaces": [],
2126
1938
  "enumValues": null,
2127
1939
  "possibleTypes": null
2128
1940
  },
@@ -2134,9 +1946,7 @@
2134
1946
  {
2135
1947
  "name": "createdAt",
2136
1948
  "description": null,
2137
- "args": [
2138
-
2139
- ],
1949
+ "args": [],
2140
1950
  "type": {
2141
1951
  "kind": "NON_NULL",
2142
1952
  "name": null,
@@ -2152,9 +1962,7 @@
2152
1962
  {
2153
1963
  "name": "dataType",
2154
1964
  "description": null,
2155
- "args": [
2156
-
2157
- ],
1965
+ "args": [],
2158
1966
  "type": {
2159
1967
  "kind": "NON_NULL",
2160
1968
  "name": null,
@@ -2170,9 +1978,7 @@
2170
1978
  {
2171
1979
  "name": "id",
2172
1980
  "description": null,
2173
- "args": [
2174
-
2175
- ],
1981
+ "args": [],
2176
1982
  "type": {
2177
1983
  "kind": "NON_NULL",
2178
1984
  "name": null,
@@ -2188,9 +1994,7 @@
2188
1994
  {
2189
1995
  "name": "label",
2190
1996
  "description": null,
2191
- "args": [
2192
-
2193
- ],
1997
+ "args": [],
2194
1998
  "type": {
2195
1999
  "kind": "NON_NULL",
2196
2000
  "name": null,
@@ -2206,9 +2010,7 @@
2206
2010
  {
2207
2011
  "name": "placeholder",
2208
2012
  "description": null,
2209
- "args": [
2210
-
2211
- ],
2013
+ "args": [],
2212
2014
  "type": {
2213
2015
  "kind": "NON_NULL",
2214
2016
  "name": null,
@@ -2224,9 +2026,7 @@
2224
2026
  {
2225
2027
  "name": "updatedAt",
2226
2028
  "description": null,
2227
- "args": [
2228
-
2229
- ],
2029
+ "args": [],
2230
2030
  "type": {
2231
2031
  "kind": "NON_NULL",
2232
2032
  "name": null,
@@ -2242,9 +2042,7 @@
2242
2042
  {
2243
2043
  "name": "value",
2244
2044
  "description": null,
2245
- "args": [
2246
-
2247
- ],
2045
+ "args": [],
2248
2046
  "type": {
2249
2047
  "kind": "SCALAR",
2250
2048
  "name": "String",
@@ -2255,9 +2053,7 @@
2255
2053
  }
2256
2054
  ],
2257
2055
  "inputFields": null,
2258
- "interfaces": [
2259
-
2260
- ],
2056
+ "interfaces": [],
2261
2057
  "enumValues": null,
2262
2058
  "possibleTypes": null
2263
2059
  },
@@ -2318,9 +2114,7 @@
2318
2114
  {
2319
2115
  "name": "createdAt",
2320
2116
  "description": "The date the record was created",
2321
- "args": [
2322
-
2323
- ],
2117
+ "args": [],
2324
2118
  "type": {
2325
2119
  "kind": "NON_NULL",
2326
2120
  "name": null,
@@ -2336,9 +2130,7 @@
2336
2130
  {
2337
2131
  "name": "duration",
2338
2132
  "description": "The length of time in months that an item's savings is good for",
2339
- "args": [
2340
-
2341
- ],
2133
+ "args": [],
2342
2134
  "type": {
2343
2135
  "kind": "NON_NULL",
2344
2136
  "name": null,
@@ -2354,9 +2146,7 @@
2354
2146
  {
2355
2147
  "name": "name",
2356
2148
  "description": "Name of the good or service",
2357
- "args": [
2358
-
2359
- ],
2149
+ "args": [],
2360
2150
  "type": {
2361
2151
  "kind": "NON_NULL",
2362
2152
  "name": null,
@@ -2372,9 +2162,7 @@
2372
2162
  {
2373
2163
  "name": "postPrice",
2374
2164
  "description": "The post-negotiation price",
2375
- "args": [
2376
-
2377
- ],
2165
+ "args": [],
2378
2166
  "type": {
2379
2167
  "kind": "NON_NULL",
2380
2168
  "name": null,
@@ -2390,9 +2178,7 @@
2390
2178
  {
2391
2179
  "name": "prePrice",
2392
2180
  "description": "The pre-negotiation price",
2393
- "args": [
2394
-
2395
- ],
2181
+ "args": [],
2396
2182
  "type": {
2397
2183
  "kind": "NON_NULL",
2398
2184
  "name": null,
@@ -2408,9 +2194,7 @@
2408
2194
  {
2409
2195
  "name": "savings",
2410
2196
  "description": "The difference between the prePrice and the postPrice",
2411
- "args": [
2412
-
2413
- ],
2197
+ "args": [],
2414
2198
  "type": {
2415
2199
  "kind": "NON_NULL",
2416
2200
  "name": null,
@@ -2426,9 +2210,7 @@
2426
2210
  {
2427
2211
  "name": "savingsEndOn",
2428
2212
  "description": "The date the discount/savings end",
2429
- "args": [
2430
-
2431
- ],
2213
+ "args": [],
2432
2214
  "type": {
2433
2215
  "kind": "NON_NULL",
2434
2216
  "name": null,
@@ -2444,9 +2226,7 @@
2444
2226
  {
2445
2227
  "name": "savingsStartOn",
2446
2228
  "description": "The date the discount/savings start",
2447
- "args": [
2448
-
2449
- ],
2229
+ "args": [],
2450
2230
  "type": {
2451
2231
  "kind": "NON_NULL",
2452
2232
  "name": null,
@@ -2462,9 +2242,7 @@
2462
2242
  {
2463
2243
  "name": "type",
2464
2244
  "description": "The type of item",
2465
- "args": [
2466
-
2467
- ],
2245
+ "args": [],
2468
2246
  "type": {
2469
2247
  "kind": "NON_NULL",
2470
2248
  "name": null,
@@ -2480,9 +2258,7 @@
2480
2258
  {
2481
2259
  "name": "underContract",
2482
2260
  "description": "Indicates the item is under contract",
2483
- "args": [
2484
-
2485
- ],
2261
+ "args": [],
2486
2262
  "type": {
2487
2263
  "kind": "NON_NULL",
2488
2264
  "name": null,
@@ -2498,9 +2274,7 @@
2498
2274
  {
2499
2275
  "name": "updatedAt",
2500
2276
  "description": "The last time the record was updated",
2501
- "args": [
2502
-
2503
- ],
2277
+ "args": [],
2504
2278
  "type": {
2505
2279
  "kind": "NON_NULL",
2506
2280
  "name": null,
@@ -2515,9 +2289,7 @@
2515
2289
  }
2516
2290
  ],
2517
2291
  "inputFields": null,
2518
- "interfaces": [
2519
-
2520
- ],
2292
+ "interfaces": [],
2521
2293
  "enumValues": null,
2522
2294
  "possibleTypes": null
2523
2295
  },
@@ -2671,6 +2443,33 @@
2671
2443
  "isDeprecated": false,
2672
2444
  "deprecationReason": null
2673
2445
  },
2446
+ {
2447
+ "name": "RenegotiateBill",
2448
+ "description": null,
2449
+ "args": [
2450
+ {
2451
+ "name": "input",
2452
+ "description": null,
2453
+ "type": {
2454
+ "kind": "NON_NULL",
2455
+ "name": null,
2456
+ "ofType": {
2457
+ "kind": "INPUT_OBJECT",
2458
+ "name": "RenegotiateBillInput",
2459
+ "ofType": null
2460
+ }
2461
+ },
2462
+ "defaultValue": null
2463
+ }
2464
+ ],
2465
+ "type": {
2466
+ "kind": "OBJECT",
2467
+ "name": "RenegotiateBillPayload",
2468
+ "ofType": null
2469
+ },
2470
+ "isDeprecated": false,
2471
+ "deprecationReason": null
2472
+ },
2674
2473
  {
2675
2474
  "name": "RespondToInformationRequest",
2676
2475
  "description": null,
@@ -2754,9 +2553,7 @@
2754
2553
  }
2755
2554
  ],
2756
2555
  "inputFields": null,
2757
- "interfaces": [
2758
-
2759
- ],
2556
+ "interfaces": [],
2760
2557
  "enumValues": null,
2761
2558
  "possibleTypes": null
2762
2559
  },
@@ -2768,9 +2565,7 @@
2768
2565
  {
2769
2566
  "name": "billId",
2770
2567
  "description": null,
2771
- "args": [
2772
-
2773
- ],
2568
+ "args": [],
2774
2569
  "type": {
2775
2570
  "kind": "NON_NULL",
2776
2571
  "name": null,
@@ -2786,9 +2581,7 @@
2786
2581
  {
2787
2582
  "name": "cancelledAt",
2788
2583
  "description": null,
2789
- "args": [
2790
-
2791
- ],
2584
+ "args": [],
2792
2585
  "type": {
2793
2586
  "kind": "SCALAR",
2794
2587
  "name": "DateTime",
@@ -2800,9 +2593,7 @@
2800
2593
  {
2801
2594
  "name": "compedAt",
2802
2595
  "description": null,
2803
- "args": [
2804
-
2805
- ],
2596
+ "args": [],
2806
2597
  "type": {
2807
2598
  "kind": "SCALAR",
2808
2599
  "name": "DateTime",
@@ -2814,9 +2605,7 @@
2814
2605
  {
2815
2606
  "name": "createdAt",
2816
2607
  "description": null,
2817
- "args": [
2818
-
2819
- ],
2608
+ "args": [],
2820
2609
  "type": {
2821
2610
  "kind": "NON_NULL",
2822
2611
  "name": null,
@@ -2832,9 +2621,7 @@
2832
2621
  {
2833
2622
  "name": "deletedAt",
2834
2623
  "description": null,
2835
- "args": [
2836
-
2837
- ],
2624
+ "args": [],
2838
2625
  "type": {
2839
2626
  "kind": "SCALAR",
2840
2627
  "name": "DateTime",
@@ -2846,9 +2633,7 @@
2846
2633
  {
2847
2634
  "name": "failedAt",
2848
2635
  "description": null,
2849
- "args": [
2850
-
2851
- ],
2636
+ "args": [],
2852
2637
  "type": {
2853
2638
  "kind": "SCALAR",
2854
2639
  "name": "DateTime",
@@ -2860,9 +2645,7 @@
2860
2645
  {
2861
2646
  "name": "fixedAt",
2862
2647
  "description": null,
2863
- "args": [
2864
-
2865
- ],
2648
+ "args": [],
2866
2649
  "type": {
2867
2650
  "kind": "SCALAR",
2868
2651
  "name": "DateTime",
@@ -2874,9 +2657,7 @@
2874
2657
  {
2875
2658
  "name": "fixerIds",
2876
2659
  "description": null,
2877
- "args": [
2878
-
2879
- ],
2660
+ "args": [],
2880
2661
  "type": {
2881
2662
  "kind": "NON_NULL",
2882
2663
  "name": null,
@@ -2900,9 +2681,7 @@
2900
2681
  {
2901
2682
  "name": "fixers",
2902
2683
  "description": null,
2903
- "args": [
2904
-
2905
- ],
2684
+ "args": [],
2906
2685
  "type": {
2907
2686
  "kind": "NON_NULL",
2908
2687
  "name": null,
@@ -2926,9 +2705,7 @@
2926
2705
  {
2927
2706
  "name": "id",
2928
2707
  "description": null,
2929
- "args": [
2930
-
2931
- ],
2708
+ "args": [],
2932
2709
  "type": {
2933
2710
  "kind": "NON_NULL",
2934
2711
  "name": null,
@@ -2944,9 +2721,7 @@
2944
2721
  {
2945
2722
  "name": "informationRequests",
2946
2723
  "description": null,
2947
- "args": [
2948
-
2949
- ],
2724
+ "args": [],
2950
2725
  "type": {
2951
2726
  "kind": "NON_NULL",
2952
2727
  "name": null,
@@ -2970,9 +2745,7 @@
2970
2745
  {
2971
2746
  "name": "invoicedAt",
2972
2747
  "description": null,
2973
- "args": [
2974
-
2975
- ],
2748
+ "args": [],
2976
2749
  "type": {
2977
2750
  "kind": "SCALAR",
2978
2751
  "name": "DateTime",
@@ -2984,9 +2757,7 @@
2984
2757
  {
2985
2758
  "name": "items",
2986
2759
  "description": null,
2987
- "args": [
2988
-
2989
- ],
2760
+ "args": [],
2990
2761
  "type": {
2991
2762
  "kind": "NON_NULL",
2992
2763
  "name": null,
@@ -3010,9 +2781,7 @@
3010
2781
  {
3011
2782
  "name": "negotiationNumber",
3012
2783
  "description": null,
3013
- "args": [
3014
-
3015
- ],
2784
+ "args": [],
3016
2785
  "type": {
3017
2786
  "kind": "NON_NULL",
3018
2787
  "name": null,
@@ -3028,9 +2797,7 @@
3028
2797
  {
3029
2798
  "name": "requestedConsentAt",
3030
2799
  "description": null,
3031
- "args": [
3032
-
3033
- ],
2800
+ "args": [],
3034
2801
  "type": {
3035
2802
  "kind": "SCALAR",
3036
2803
  "name": "DateTime",
@@ -3042,9 +2809,7 @@
3042
2809
  {
3043
2810
  "name": "requestedInformationAt",
3044
2811
  "description": null,
3045
- "args": [
3046
-
3047
- ],
2812
+ "args": [],
3048
2813
  "type": {
3049
2814
  "kind": "SCALAR",
3050
2815
  "name": "DateTime",
@@ -3056,9 +2821,7 @@
3056
2821
  {
3057
2822
  "name": "startedAt",
3058
2823
  "description": null,
3059
- "args": [
3060
-
3061
- ],
2824
+ "args": [],
3062
2825
  "type": {
3063
2826
  "kind": "SCALAR",
3064
2827
  "name": "DateTime",
@@ -3070,9 +2833,7 @@
3070
2833
  {
3071
2834
  "name": "state",
3072
2835
  "description": null,
3073
- "args": [
3074
-
3075
- ],
2836
+ "args": [],
3076
2837
  "type": {
3077
2838
  "kind": "NON_NULL",
3078
2839
  "name": null,
@@ -3088,9 +2849,7 @@
3088
2849
  {
3089
2850
  "name": "tags",
3090
2851
  "description": null,
3091
- "args": [
3092
-
3093
- ],
2852
+ "args": [],
3094
2853
  "type": {
3095
2854
  "kind": "NON_NULL",
3096
2855
  "name": null,
@@ -3114,9 +2873,7 @@
3114
2873
  {
3115
2874
  "name": "totalSavings",
3116
2875
  "description": null,
3117
- "args": [
3118
-
3119
- ],
2876
+ "args": [],
3120
2877
  "type": {
3121
2878
  "kind": "NON_NULL",
3122
2879
  "name": null,
@@ -3132,9 +2889,7 @@
3132
2889
  {
3133
2890
  "name": "updatedAt",
3134
2891
  "description": null,
3135
- "args": [
3136
-
3137
- ],
2892
+ "args": [],
3138
2893
  "type": {
3139
2894
  "kind": "NON_NULL",
3140
2895
  "name": null,
@@ -3149,9 +2904,7 @@
3149
2904
  }
3150
2905
  ],
3151
2906
  "inputFields": null,
3152
- "interfaces": [
3153
-
3154
- ],
2907
+ "interfaces": [],
3155
2908
  "enumValues": null,
3156
2909
  "possibleTypes": null
3157
2910
  },
@@ -3163,9 +2916,7 @@
3163
2916
  {
3164
2917
  "name": "acceptedAt",
3165
2918
  "description": null,
3166
- "args": [
3167
-
3168
- ],
2919
+ "args": [],
3169
2920
  "type": {
3170
2921
  "kind": "SCALAR",
3171
2922
  "name": "DateTime",
@@ -3177,9 +2928,7 @@
3177
2928
  {
3178
2929
  "name": "bill",
3179
2930
  "description": null,
3180
- "args": [
3181
-
3182
- ],
2931
+ "args": [],
3183
2932
  "type": {
3184
2933
  "kind": "NON_NULL",
3185
2934
  "name": null,
@@ -3195,9 +2944,7 @@
3195
2944
  {
3196
2945
  "name": "content",
3197
2946
  "description": null,
3198
- "args": [
3199
-
3200
- ],
2947
+ "args": [],
3201
2948
  "type": {
3202
2949
  "kind": "NON_NULL",
3203
2950
  "name": null,
@@ -3213,9 +2960,7 @@
3213
2960
  {
3214
2961
  "name": "contentHtml",
3215
2962
  "description": null,
3216
- "args": [
3217
-
3218
- ],
2963
+ "args": [],
3219
2964
  "type": {
3220
2965
  "kind": "NON_NULL",
3221
2966
  "name": null,
@@ -3231,9 +2976,7 @@
3231
2976
  {
3232
2977
  "name": "createdAt",
3233
2978
  "description": null,
3234
- "args": [
3235
-
3236
- ],
2979
+ "args": [],
3237
2980
  "type": {
3238
2981
  "kind": "NON_NULL",
3239
2982
  "name": null,
@@ -3249,9 +2992,7 @@
3249
2992
  {
3250
2993
  "name": "customer",
3251
2994
  "description": null,
3252
- "args": [
3253
-
3254
- ],
2995
+ "args": [],
3255
2996
  "type": {
3256
2997
  "kind": "NON_NULL",
3257
2998
  "name": null,
@@ -3267,9 +3008,7 @@
3267
3008
  {
3268
3009
  "name": "id",
3269
3010
  "description": "Alpha-numeric unique identifier",
3270
- "args": [
3271
-
3272
- ],
3011
+ "args": [],
3273
3012
  "type": {
3274
3013
  "kind": "NON_NULL",
3275
3014
  "name": null,
@@ -3285,9 +3024,7 @@
3285
3024
  {
3286
3025
  "name": "rejectedAt",
3287
3026
  "description": null,
3288
- "args": [
3289
-
3290
- ],
3027
+ "args": [],
3291
3028
  "type": {
3292
3029
  "kind": "SCALAR",
3293
3030
  "name": "DateTime",
@@ -3299,9 +3036,7 @@
3299
3036
  {
3300
3037
  "name": "status",
3301
3038
  "description": null,
3302
- "args": [
3303
-
3304
- ],
3039
+ "args": [],
3305
3040
  "type": {
3306
3041
  "kind": "NON_NULL",
3307
3042
  "name": null,
@@ -3317,9 +3052,7 @@
3317
3052
  {
3318
3053
  "name": "updatedAt",
3319
3054
  "description": null,
3320
- "args": [
3321
-
3322
- ],
3055
+ "args": [],
3323
3056
  "type": {
3324
3057
  "kind": "NON_NULL",
3325
3058
  "name": null,
@@ -3334,9 +3067,7 @@
3334
3067
  }
3335
3068
  ],
3336
3069
  "inputFields": null,
3337
- "interfaces": [
3338
-
3339
- ],
3070
+ "interfaces": [],
3340
3071
  "enumValues": null,
3341
3072
  "possibleTypes": null
3342
3073
  },
@@ -3348,9 +3079,7 @@
3348
3079
  {
3349
3080
  "name": "edges",
3350
3081
  "description": "A list of edges.",
3351
- "args": [
3352
-
3353
- ],
3082
+ "args": [],
3354
3083
  "type": {
3355
3084
  "kind": "NON_NULL",
3356
3085
  "name": null,
@@ -3374,9 +3103,7 @@
3374
3103
  {
3375
3104
  "name": "nodes",
3376
3105
  "description": "A list of nodes.",
3377
- "args": [
3378
-
3379
- ],
3106
+ "args": [],
3380
3107
  "type": {
3381
3108
  "kind": "NON_NULL",
3382
3109
  "name": null,
@@ -3400,9 +3127,7 @@
3400
3127
  {
3401
3128
  "name": "pageInfo",
3402
3129
  "description": "Information to aid in pagination.",
3403
- "args": [
3404
-
3405
- ],
3130
+ "args": [],
3406
3131
  "type": {
3407
3132
  "kind": "NON_NULL",
3408
3133
  "name": null,
@@ -3418,9 +3143,7 @@
3418
3143
  {
3419
3144
  "name": "totalCount",
3420
3145
  "description": null,
3421
- "args": [
3422
-
3423
- ],
3146
+ "args": [],
3424
3147
  "type": {
3425
3148
  "kind": "NON_NULL",
3426
3149
  "name": null,
@@ -3435,9 +3158,7 @@
3435
3158
  }
3436
3159
  ],
3437
3160
  "inputFields": null,
3438
- "interfaces": [
3439
-
3440
- ],
3161
+ "interfaces": [],
3441
3162
  "enumValues": null,
3442
3163
  "possibleTypes": null
3443
3164
  },
@@ -3449,9 +3170,7 @@
3449
3170
  {
3450
3171
  "name": "cursor",
3451
3172
  "description": "A cursor for use in pagination.",
3452
- "args": [
3453
-
3454
- ],
3173
+ "args": [],
3455
3174
  "type": {
3456
3175
  "kind": "NON_NULL",
3457
3176
  "name": null,
@@ -3467,9 +3186,7 @@
3467
3186
  {
3468
3187
  "name": "node",
3469
3188
  "description": "The item at the end of the edge.",
3470
- "args": [
3471
-
3472
- ],
3189
+ "args": [],
3473
3190
  "type": {
3474
3191
  "kind": "OBJECT",
3475
3192
  "name": "Offer",
@@ -3480,9 +3197,7 @@
3480
3197
  }
3481
3198
  ],
3482
3199
  "inputFields": null,
3483
- "interfaces": [
3484
-
3485
- ],
3200
+ "interfaces": [],
3486
3201
  "enumValues": null,
3487
3202
  "possibleTypes": null
3488
3203
  },
@@ -3494,9 +3209,7 @@
3494
3209
  {
3495
3210
  "name": "endCursor",
3496
3211
  "description": "When paginating forwards, the cursor to continue.",
3497
- "args": [
3498
-
3499
- ],
3212
+ "args": [],
3500
3213
  "type": {
3501
3214
  "kind": "SCALAR",
3502
3215
  "name": "String",
@@ -3508,9 +3221,7 @@
3508
3221
  {
3509
3222
  "name": "hasNextPage",
3510
3223
  "description": "When paginating forwards, are there more items?",
3511
- "args": [
3512
-
3513
- ],
3224
+ "args": [],
3514
3225
  "type": {
3515
3226
  "kind": "NON_NULL",
3516
3227
  "name": null,
@@ -3526,9 +3237,7 @@
3526
3237
  {
3527
3238
  "name": "hasPreviousPage",
3528
3239
  "description": "When paginating backwards, are there more items?",
3529
- "args": [
3530
-
3531
- ],
3240
+ "args": [],
3532
3241
  "type": {
3533
3242
  "kind": "NON_NULL",
3534
3243
  "name": null,
@@ -3544,9 +3253,7 @@
3544
3253
  {
3545
3254
  "name": "startCursor",
3546
3255
  "description": "When paginating backwards, the cursor to continue.",
3547
- "args": [
3548
-
3549
- ],
3256
+ "args": [],
3550
3257
  "type": {
3551
3258
  "kind": "SCALAR",
3552
3259
  "name": "String",
@@ -3557,9 +3264,7 @@
3557
3264
  }
3558
3265
  ],
3559
3266
  "inputFields": null,
3560
- "interfaces": [
3561
-
3562
- ],
3267
+ "interfaces": [],
3563
3268
  "enumValues": null,
3564
3269
  "possibleTypes": null
3565
3270
  },
@@ -3571,9 +3276,7 @@
3571
3276
  {
3572
3277
  "name": "createdAt",
3573
3278
  "description": null,
3574
- "args": [
3575
-
3576
- ],
3279
+ "args": [],
3577
3280
  "type": {
3578
3281
  "kind": "NON_NULL",
3579
3282
  "name": null,
@@ -3589,9 +3292,7 @@
3589
3292
  {
3590
3293
  "name": "id",
3591
3294
  "description": "Alpha-numeric unique identifier",
3592
- "args": [
3593
-
3594
- ],
3295
+ "args": [],
3595
3296
  "type": {
3596
3297
  "kind": "NON_NULL",
3597
3298
  "name": null,
@@ -3607,9 +3308,7 @@
3607
3308
  {
3608
3309
  "name": "liveWebhookUrl",
3609
3310
  "description": "Webhook URL for live/production requests",
3610
- "args": [
3611
-
3612
- ],
3311
+ "args": [],
3613
3312
  "type": {
3614
3313
  "kind": "SCALAR",
3615
3314
  "name": "String",
@@ -3621,9 +3320,7 @@
3621
3320
  {
3622
3321
  "name": "name",
3623
3322
  "description": "Name of the partner",
3624
- "args": [
3625
-
3626
- ],
3323
+ "args": [],
3627
3324
  "type": {
3628
3325
  "kind": "NON_NULL",
3629
3326
  "name": null,
@@ -3639,9 +3336,7 @@
3639
3336
  {
3640
3337
  "name": "referralCode",
3641
3338
  "description": "The partner's referral code",
3642
- "args": [
3643
-
3644
- ],
3339
+ "args": [],
3645
3340
  "type": {
3646
3341
  "kind": "SCALAR",
3647
3342
  "name": "String",
@@ -3653,9 +3348,7 @@
3653
3348
  {
3654
3349
  "name": "referralLink",
3655
3350
  "description": "The partner's referral link",
3656
- "args": [
3657
-
3658
- ],
3351
+ "args": [],
3659
3352
  "type": {
3660
3353
  "kind": "NON_NULL",
3661
3354
  "name": null,
@@ -3671,9 +3364,7 @@
3671
3364
  {
3672
3365
  "name": "testWebhookUrl",
3673
3366
  "description": "Webhook URL for test/development requests",
3674
- "args": [
3675
-
3676
- ],
3367
+ "args": [],
3677
3368
  "type": {
3678
3369
  "kind": "SCALAR",
3679
3370
  "name": "String",
@@ -3685,9 +3376,7 @@
3685
3376
  {
3686
3377
  "name": "updatedAt",
3687
3378
  "description": null,
3688
- "args": [
3689
-
3690
- ],
3379
+ "args": [],
3691
3380
  "type": {
3692
3381
  "kind": "NON_NULL",
3693
3382
  "name": null,
@@ -3702,9 +3391,7 @@
3702
3391
  }
3703
3392
  ],
3704
3393
  "inputFields": null,
3705
- "interfaces": [
3706
-
3707
- ],
3394
+ "interfaces": [],
3708
3395
  "enumValues": null,
3709
3396
  "possibleTypes": null
3710
3397
  },
@@ -3716,9 +3403,7 @@
3716
3403
  {
3717
3404
  "name": "billFields",
3718
3405
  "description": null,
3719
- "args": [
3720
-
3721
- ],
3406
+ "args": [],
3722
3407
  "type": {
3723
3408
  "kind": "NON_NULL",
3724
3409
  "name": null,
@@ -3742,9 +3427,7 @@
3742
3427
  {
3743
3428
  "name": "createdAt",
3744
3429
  "description": null,
3745
- "args": [
3746
-
3747
- ],
3430
+ "args": [],
3748
3431
  "type": {
3749
3432
  "kind": "NON_NULL",
3750
3433
  "name": null,
@@ -3760,9 +3443,7 @@
3760
3443
  {
3761
3444
  "name": "id",
3762
3445
  "description": null,
3763
- "args": [
3764
-
3765
- ],
3446
+ "args": [],
3766
3447
  "type": {
3767
3448
  "kind": "NON_NULL",
3768
3449
  "name": null,
@@ -3778,9 +3459,7 @@
3778
3459
  {
3779
3460
  "name": "logo",
3780
3461
  "description": null,
3781
- "args": [
3782
-
3783
- ],
3462
+ "args": [],
3784
3463
  "type": {
3785
3464
  "kind": "OBJECT",
3786
3465
  "name": "Image",
@@ -3792,9 +3471,7 @@
3792
3471
  {
3793
3472
  "name": "name",
3794
3473
  "description": null,
3795
- "args": [
3796
-
3797
- ],
3474
+ "args": [],
3798
3475
  "type": {
3799
3476
  "kind": "NON_NULL",
3800
3477
  "name": null,
@@ -3810,9 +3487,7 @@
3810
3487
  {
3811
3488
  "name": "services",
3812
3489
  "description": null,
3813
- "args": [
3814
-
3815
- ],
3490
+ "args": [],
3816
3491
  "type": {
3817
3492
  "kind": "NON_NULL",
3818
3493
  "name": null,
@@ -3836,9 +3511,7 @@
3836
3511
  {
3837
3512
  "name": "updatedAt",
3838
3513
  "description": null,
3839
- "args": [
3840
-
3841
- ],
3514
+ "args": [],
3842
3515
  "type": {
3843
3516
  "kind": "NON_NULL",
3844
3517
  "name": null,
@@ -3853,9 +3526,7 @@
3853
3526
  }
3854
3527
  ],
3855
3528
  "inputFields": null,
3856
- "interfaces": [
3857
-
3858
- ],
3529
+ "interfaces": [],
3859
3530
  "enumValues": null,
3860
3531
  "possibleTypes": null
3861
3532
  },
@@ -3867,9 +3538,7 @@
3867
3538
  {
3868
3539
  "name": "CalculateSavingsEstimate",
3869
3540
  "description": null,
3870
- "args": [
3871
-
3872
- ],
3541
+ "args": [],
3873
3542
  "type": {
3874
3543
  "kind": "NON_NULL",
3875
3544
  "name": null,
@@ -3912,9 +3581,7 @@
3912
3581
  {
3913
3582
  "name": "FindCurrentPartner",
3914
3583
  "description": null,
3915
- "args": [
3916
-
3917
- ],
3584
+ "args": [],
3918
3585
  "type": {
3919
3586
  "kind": "NON_NULL",
3920
3587
  "name": null,
@@ -4456,9 +4123,7 @@
4456
4123
  {
4457
4124
  "name": "ListProviders",
4458
4125
  "description": null,
4459
- "args": [
4460
-
4461
- ],
4126
+ "args": [],
4462
4127
  "type": {
4463
4128
  "kind": "NON_NULL",
4464
4129
  "name": null,
@@ -4481,9 +4146,7 @@
4481
4146
  }
4482
4147
  ],
4483
4148
  "inputFields": null,
4484
- "interfaces": [
4485
-
4486
- ],
4149
+ "interfaces": [],
4487
4150
  "enumValues": null,
4488
4151
  "possibleTypes": null
4489
4152
  },
@@ -4530,9 +4193,7 @@
4530
4193
  {
4531
4194
  "name": "clientMutationId",
4532
4195
  "description": "A unique identifier for the client performing the mutation.",
4533
- "args": [
4534
-
4535
- ],
4196
+ "args": [],
4536
4197
  "type": {
4537
4198
  "kind": "SCALAR",
4538
4199
  "name": "String",
@@ -4544,9 +4205,7 @@
4544
4205
  {
4545
4206
  "name": "errors",
4546
4207
  "description": null,
4547
- "args": [
4548
-
4549
- ],
4208
+ "args": [],
4550
4209
  "type": {
4551
4210
  "kind": "NON_NULL",
4552
4211
  "name": null,
@@ -4570,9 +4229,7 @@
4570
4229
  {
4571
4230
  "name": "offer",
4572
4231
  "description": null,
4573
- "args": [
4574
-
4575
- ],
4232
+ "args": [],
4576
4233
  "type": {
4577
4234
  "kind": "OBJECT",
4578
4235
  "name": "Offer",
@@ -4584,9 +4241,7 @@
4584
4241
  {
4585
4242
  "name": "success",
4586
4243
  "description": null,
4587
- "args": [
4588
-
4589
- ],
4244
+ "args": [],
4590
4245
  "type": {
4591
4246
  "kind": "NON_NULL",
4592
4247
  "name": null,
@@ -4601,9 +4256,117 @@
4601
4256
  }
4602
4257
  ],
4603
4258
  "inputFields": null,
4604
- "interfaces": [
4605
-
4259
+ "interfaces": [],
4260
+ "enumValues": null,
4261
+ "possibleTypes": null
4262
+ },
4263
+ {
4264
+ "kind": "INPUT_OBJECT",
4265
+ "name": "RenegotiateBillInput",
4266
+ "description": "Autogenerated input type of RenegotiateBill",
4267
+ "fields": null,
4268
+ "inputFields": [
4269
+ {
4270
+ "name": "id",
4271
+ "description": "Id of the bill that should be renegotiated",
4272
+ "type": {
4273
+ "kind": "NON_NULL",
4274
+ "name": null,
4275
+ "ofType": {
4276
+ "kind": "SCALAR",
4277
+ "name": "ID",
4278
+ "ofType": null
4279
+ }
4280
+ },
4281
+ "defaultValue": null
4282
+ },
4283
+ {
4284
+ "name": "clientMutationId",
4285
+ "description": "A unique identifier for the client performing the mutation.",
4286
+ "type": {
4287
+ "kind": "SCALAR",
4288
+ "name": "String",
4289
+ "ofType": null
4290
+ },
4291
+ "defaultValue": null
4292
+ }
4606
4293
  ],
4294
+ "interfaces": null,
4295
+ "enumValues": null,
4296
+ "possibleTypes": null
4297
+ },
4298
+ {
4299
+ "kind": "OBJECT",
4300
+ "name": "RenegotiateBillPayload",
4301
+ "description": "Autogenerated return type of RenegotiateBill",
4302
+ "fields": [
4303
+ {
4304
+ "name": "bill",
4305
+ "description": null,
4306
+ "args": [],
4307
+ "type": {
4308
+ "kind": "OBJECT",
4309
+ "name": "Bill",
4310
+ "ofType": null
4311
+ },
4312
+ "isDeprecated": false,
4313
+ "deprecationReason": null
4314
+ },
4315
+ {
4316
+ "name": "clientMutationId",
4317
+ "description": "A unique identifier for the client performing the mutation.",
4318
+ "args": [],
4319
+ "type": {
4320
+ "kind": "SCALAR",
4321
+ "name": "String",
4322
+ "ofType": null
4323
+ },
4324
+ "isDeprecated": false,
4325
+ "deprecationReason": null
4326
+ },
4327
+ {
4328
+ "name": "errors",
4329
+ "description": null,
4330
+ "args": [],
4331
+ "type": {
4332
+ "kind": "NON_NULL",
4333
+ "name": null,
4334
+ "ofType": {
4335
+ "kind": "LIST",
4336
+ "name": null,
4337
+ "ofType": {
4338
+ "kind": "NON_NULL",
4339
+ "name": null,
4340
+ "ofType": {
4341
+ "kind": "SCALAR",
4342
+ "name": "String",
4343
+ "ofType": null
4344
+ }
4345
+ }
4346
+ }
4347
+ },
4348
+ "isDeprecated": false,
4349
+ "deprecationReason": null
4350
+ },
4351
+ {
4352
+ "name": "success",
4353
+ "description": null,
4354
+ "args": [],
4355
+ "type": {
4356
+ "kind": "NON_NULL",
4357
+ "name": null,
4358
+ "ofType": {
4359
+ "kind": "SCALAR",
4360
+ "name": "Boolean",
4361
+ "ofType": null
4362
+ }
4363
+ },
4364
+ "isDeprecated": false,
4365
+ "deprecationReason": null
4366
+ }
4367
+ ],
4368
+ "inputFields": null,
4369
+ "interfaces": [],
4607
4370
  "enumValues": null,
4608
4371
  "possibleTypes": null
4609
4372
  },
@@ -4664,9 +4427,7 @@
4664
4427
  {
4665
4428
  "name": "bill",
4666
4429
  "description": null,
4667
- "args": [
4668
-
4669
- ],
4430
+ "args": [],
4670
4431
  "type": {
4671
4432
  "kind": "OBJECT",
4672
4433
  "name": "Bill",
@@ -4678,9 +4439,7 @@
4678
4439
  {
4679
4440
  "name": "clientMutationId",
4680
4441
  "description": "A unique identifier for the client performing the mutation.",
4681
- "args": [
4682
-
4683
- ],
4442
+ "args": [],
4684
4443
  "type": {
4685
4444
  "kind": "SCALAR",
4686
4445
  "name": "String",
@@ -4692,9 +4451,7 @@
4692
4451
  {
4693
4452
  "name": "errors",
4694
4453
  "description": null,
4695
- "args": [
4696
-
4697
- ],
4454
+ "args": [],
4698
4455
  "type": {
4699
4456
  "kind": "NON_NULL",
4700
4457
  "name": null,
@@ -4718,9 +4475,7 @@
4718
4475
  {
4719
4476
  "name": "informationRequest",
4720
4477
  "description": null,
4721
- "args": [
4722
-
4723
- ],
4478
+ "args": [],
4724
4479
  "type": {
4725
4480
  "kind": "OBJECT",
4726
4481
  "name": "InformationRequest",
@@ -4732,9 +4487,7 @@
4732
4487
  {
4733
4488
  "name": "negotiation",
4734
4489
  "description": null,
4735
- "args": [
4736
-
4737
- ],
4490
+ "args": [],
4738
4491
  "type": {
4739
4492
  "kind": "OBJECT",
4740
4493
  "name": "Negotiation",
@@ -4746,9 +4499,7 @@
4746
4499
  {
4747
4500
  "name": "success",
4748
4501
  "description": null,
4749
- "args": [
4750
-
4751
- ],
4502
+ "args": [],
4752
4503
  "type": {
4753
4504
  "kind": "NON_NULL",
4754
4505
  "name": null,
@@ -4763,9 +4514,7 @@
4763
4514
  }
4764
4515
  ],
4765
4516
  "inputFields": null,
4766
- "interfaces": [
4767
-
4768
- ],
4517
+ "interfaces": [],
4769
4518
  "enumValues": null,
4770
4519
  "possibleTypes": null
4771
4520
  },
@@ -4911,9 +4660,7 @@
4911
4660
  }
4912
4661
  ],
4913
4662
  "inputFields": null,
4914
- "interfaces": [
4915
-
4916
- ],
4663
+ "interfaces": [],
4917
4664
  "enumValues": null,
4918
4665
  "possibleTypes": null
4919
4666
  },
@@ -4984,9 +4731,7 @@
4984
4731
  {
4985
4732
  "name": "clientMutationId",
4986
4733
  "description": "A unique identifier for the client performing the mutation.",
4987
- "args": [
4988
-
4989
- ],
4734
+ "args": [],
4990
4735
  "type": {
4991
4736
  "kind": "SCALAR",
4992
4737
  "name": "String",
@@ -4998,9 +4743,7 @@
4998
4743
  {
4999
4744
  "name": "customer",
5000
4745
  "description": null,
5001
- "args": [
5002
-
5003
- ],
4746
+ "args": [],
5004
4747
  "type": {
5005
4748
  "kind": "OBJECT",
5006
4749
  "name": "Customer",
@@ -5012,9 +4755,7 @@
5012
4755
  {
5013
4756
  "name": "errors",
5014
4757
  "description": null,
5015
- "args": [
5016
-
5017
- ],
4758
+ "args": [],
5018
4759
  "type": {
5019
4760
  "kind": "NON_NULL",
5020
4761
  "name": null,
@@ -5038,9 +4779,7 @@
5038
4779
  {
5039
4780
  "name": "success",
5040
4781
  "description": null,
5041
- "args": [
5042
-
5043
- ],
4782
+ "args": [],
5044
4783
  "type": {
5045
4784
  "kind": "NON_NULL",
5046
4785
  "name": null,
@@ -5055,9 +4794,7 @@
5055
4794
  }
5056
4795
  ],
5057
4796
  "inputFields": null,
5058
- "interfaces": [
5059
-
5060
- ],
4797
+ "interfaces": [],
5061
4798
  "enumValues": null,
5062
4799
  "possibleTypes": null
5063
4800
  },
@@ -5110,9 +4847,7 @@
5110
4847
  {
5111
4848
  "name": "clientMutationId",
5112
4849
  "description": "A unique identifier for the client performing the mutation.",
5113
- "args": [
5114
-
5115
- ],
4850
+ "args": [],
5116
4851
  "type": {
5117
4852
  "kind": "SCALAR",
5118
4853
  "name": "String",
@@ -5124,9 +4859,7 @@
5124
4859
  {
5125
4860
  "name": "errors",
5126
4861
  "description": null,
5127
- "args": [
5128
-
5129
- ],
4862
+ "args": [],
5130
4863
  "type": {
5131
4864
  "kind": "NON_NULL",
5132
4865
  "name": null,
@@ -5150,9 +4883,7 @@
5150
4883
  {
5151
4884
  "name": "partner",
5152
4885
  "description": null,
5153
- "args": [
5154
-
5155
- ],
4886
+ "args": [],
5156
4887
  "type": {
5157
4888
  "kind": "NON_NULL",
5158
4889
  "name": null,
@@ -5168,9 +4899,7 @@
5168
4899
  {
5169
4900
  "name": "success",
5170
4901
  "description": null,
5171
- "args": [
5172
-
5173
- ],
4902
+ "args": [],
5174
4903
  "type": {
5175
4904
  "kind": "NON_NULL",
5176
4905
  "name": null,
@@ -5185,9 +4914,7 @@
5185
4914
  }
5186
4915
  ],
5187
4916
  "inputFields": null,
5188
- "interfaces": [
5189
-
5190
- ],
4917
+ "interfaces": [],
5191
4918
  "enumValues": null,
5192
4919
  "possibleTypes": null
5193
4920
  },
@@ -5199,9 +4926,7 @@
5199
4926
  {
5200
4927
  "name": "args",
5201
4928
  "description": null,
5202
- "args": [
5203
-
5204
- ],
4929
+ "args": [],
5205
4930
  "type": {
5206
4931
  "kind": "NON_NULL",
5207
4932
  "name": null,
@@ -5225,9 +4950,7 @@
5225
4950
  {
5226
4951
  "name": "description",
5227
4952
  "description": null,
5228
- "args": [
5229
-
5230
- ],
4953
+ "args": [],
5231
4954
  "type": {
5232
4955
  "kind": "SCALAR",
5233
4956
  "name": "String",
@@ -5239,9 +4962,7 @@
5239
4962
  {
5240
4963
  "name": "locations",
5241
4964
  "description": null,
5242
- "args": [
5243
-
5244
- ],
4965
+ "args": [],
5245
4966
  "type": {
5246
4967
  "kind": "NON_NULL",
5247
4968
  "name": null,
@@ -5265,9 +4986,7 @@
5265
4986
  {
5266
4987
  "name": "name",
5267
4988
  "description": null,
5268
- "args": [
5269
-
5270
- ],
4989
+ "args": [],
5271
4990
  "type": {
5272
4991
  "kind": "NON_NULL",
5273
4992
  "name": null,
@@ -5283,9 +5002,7 @@
5283
5002
  {
5284
5003
  "name": "onField",
5285
5004
  "description": null,
5286
- "args": [
5287
-
5288
- ],
5005
+ "args": [],
5289
5006
  "type": {
5290
5007
  "kind": "NON_NULL",
5291
5008
  "name": null,
@@ -5301,9 +5018,7 @@
5301
5018
  {
5302
5019
  "name": "onFragment",
5303
5020
  "description": null,
5304
- "args": [
5305
-
5306
- ],
5021
+ "args": [],
5307
5022
  "type": {
5308
5023
  "kind": "NON_NULL",
5309
5024
  "name": null,
@@ -5319,9 +5034,7 @@
5319
5034
  {
5320
5035
  "name": "onOperation",
5321
5036
  "description": null,
5322
- "args": [
5323
-
5324
- ],
5037
+ "args": [],
5325
5038
  "type": {
5326
5039
  "kind": "NON_NULL",
5327
5040
  "name": null,
@@ -5336,9 +5049,7 @@
5336
5049
  }
5337
5050
  ],
5338
5051
  "inputFields": null,
5339
- "interfaces": [
5340
-
5341
- ],
5052
+ "interfaces": [],
5342
5053
  "enumValues": null,
5343
5054
  "possibleTypes": null
5344
5055
  },
@@ -5469,9 +5180,7 @@
5469
5180
  {
5470
5181
  "name": "deprecationReason",
5471
5182
  "description": null,
5472
- "args": [
5473
-
5474
- ],
5183
+ "args": [],
5475
5184
  "type": {
5476
5185
  "kind": "SCALAR",
5477
5186
  "name": "String",
@@ -5483,9 +5192,7 @@
5483
5192
  {
5484
5193
  "name": "description",
5485
5194
  "description": null,
5486
- "args": [
5487
-
5488
- ],
5195
+ "args": [],
5489
5196
  "type": {
5490
5197
  "kind": "SCALAR",
5491
5198
  "name": "String",
@@ -5497,9 +5204,7 @@
5497
5204
  {
5498
5205
  "name": "isDeprecated",
5499
5206
  "description": null,
5500
- "args": [
5501
-
5502
- ],
5207
+ "args": [],
5503
5208
  "type": {
5504
5209
  "kind": "NON_NULL",
5505
5210
  "name": null,
@@ -5515,9 +5220,7 @@
5515
5220
  {
5516
5221
  "name": "name",
5517
5222
  "description": null,
5518
- "args": [
5519
-
5520
- ],
5223
+ "args": [],
5521
5224
  "type": {
5522
5225
  "kind": "NON_NULL",
5523
5226
  "name": null,
@@ -5532,9 +5235,7 @@
5532
5235
  }
5533
5236
  ],
5534
5237
  "inputFields": null,
5535
- "interfaces": [
5536
-
5537
- ],
5238
+ "interfaces": [],
5538
5239
  "enumValues": null,
5539
5240
  "possibleTypes": null
5540
5241
  },
@@ -5546,9 +5247,7 @@
5546
5247
  {
5547
5248
  "name": "args",
5548
5249
  "description": null,
5549
- "args": [
5550
-
5551
- ],
5250
+ "args": [],
5552
5251
  "type": {
5553
5252
  "kind": "NON_NULL",
5554
5253
  "name": null,
@@ -5572,9 +5271,7 @@
5572
5271
  {
5573
5272
  "name": "deprecationReason",
5574
5273
  "description": null,
5575
- "args": [
5576
-
5577
- ],
5274
+ "args": [],
5578
5275
  "type": {
5579
5276
  "kind": "SCALAR",
5580
5277
  "name": "String",
@@ -5586,9 +5283,7 @@
5586
5283
  {
5587
5284
  "name": "description",
5588
5285
  "description": null,
5589
- "args": [
5590
-
5591
- ],
5286
+ "args": [],
5592
5287
  "type": {
5593
5288
  "kind": "SCALAR",
5594
5289
  "name": "String",
@@ -5600,9 +5295,7 @@
5600
5295
  {
5601
5296
  "name": "isDeprecated",
5602
5297
  "description": null,
5603
- "args": [
5604
-
5605
- ],
5298
+ "args": [],
5606
5299
  "type": {
5607
5300
  "kind": "NON_NULL",
5608
5301
  "name": null,
@@ -5618,9 +5311,7 @@
5618
5311
  {
5619
5312
  "name": "name",
5620
5313
  "description": null,
5621
- "args": [
5622
-
5623
- ],
5314
+ "args": [],
5624
5315
  "type": {
5625
5316
  "kind": "NON_NULL",
5626
5317
  "name": null,
@@ -5636,9 +5327,7 @@
5636
5327
  {
5637
5328
  "name": "type",
5638
5329
  "description": null,
5639
- "args": [
5640
-
5641
- ],
5330
+ "args": [],
5642
5331
  "type": {
5643
5332
  "kind": "NON_NULL",
5644
5333
  "name": null,
@@ -5653,9 +5342,7 @@
5653
5342
  }
5654
5343
  ],
5655
5344
  "inputFields": null,
5656
- "interfaces": [
5657
-
5658
- ],
5345
+ "interfaces": [],
5659
5346
  "enumValues": null,
5660
5347
  "possibleTypes": null
5661
5348
  },
@@ -5667,9 +5354,7 @@
5667
5354
  {
5668
5355
  "name": "defaultValue",
5669
5356
  "description": "A GraphQL-formatted string representing the default value for this input value.",
5670
- "args": [
5671
-
5672
- ],
5357
+ "args": [],
5673
5358
  "type": {
5674
5359
  "kind": "SCALAR",
5675
5360
  "name": "String",
@@ -5681,9 +5366,7 @@
5681
5366
  {
5682
5367
  "name": "description",
5683
5368
  "description": null,
5684
- "args": [
5685
-
5686
- ],
5369
+ "args": [],
5687
5370
  "type": {
5688
5371
  "kind": "SCALAR",
5689
5372
  "name": "String",
@@ -5695,9 +5378,7 @@
5695
5378
  {
5696
5379
  "name": "name",
5697
5380
  "description": null,
5698
- "args": [
5699
-
5700
- ],
5381
+ "args": [],
5701
5382
  "type": {
5702
5383
  "kind": "NON_NULL",
5703
5384
  "name": null,
@@ -5713,9 +5394,7 @@
5713
5394
  {
5714
5395
  "name": "type",
5715
5396
  "description": null,
5716
- "args": [
5717
-
5718
- ],
5397
+ "args": [],
5719
5398
  "type": {
5720
5399
  "kind": "NON_NULL",
5721
5400
  "name": null,
@@ -5730,9 +5409,7 @@
5730
5409
  }
5731
5410
  ],
5732
5411
  "inputFields": null,
5733
- "interfaces": [
5734
-
5735
- ],
5412
+ "interfaces": [],
5736
5413
  "enumValues": null,
5737
5414
  "possibleTypes": null
5738
5415
  },
@@ -5744,9 +5421,7 @@
5744
5421
  {
5745
5422
  "name": "directives",
5746
5423
  "description": "A list of all directives supported by this server.",
5747
- "args": [
5748
-
5749
- ],
5424
+ "args": [],
5750
5425
  "type": {
5751
5426
  "kind": "NON_NULL",
5752
5427
  "name": null,
@@ -5770,9 +5445,7 @@
5770
5445
  {
5771
5446
  "name": "mutationType",
5772
5447
  "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
5773
- "args": [
5774
-
5775
- ],
5448
+ "args": [],
5776
5449
  "type": {
5777
5450
  "kind": "OBJECT",
5778
5451
  "name": "__Type",
@@ -5784,9 +5457,7 @@
5784
5457
  {
5785
5458
  "name": "queryType",
5786
5459
  "description": "The type that query operations will be rooted at.",
5787
- "args": [
5788
-
5789
- ],
5460
+ "args": [],
5790
5461
  "type": {
5791
5462
  "kind": "NON_NULL",
5792
5463
  "name": null,
@@ -5802,9 +5473,7 @@
5802
5473
  {
5803
5474
  "name": "subscriptionType",
5804
5475
  "description": "If this server support subscription, the type that subscription operations will be rooted at.",
5805
- "args": [
5806
-
5807
- ],
5476
+ "args": [],
5808
5477
  "type": {
5809
5478
  "kind": "OBJECT",
5810
5479
  "name": "__Type",
@@ -5816,9 +5485,7 @@
5816
5485
  {
5817
5486
  "name": "types",
5818
5487
  "description": "A list of all types supported by this server.",
5819
- "args": [
5820
-
5821
- ],
5488
+ "args": [],
5822
5489
  "type": {
5823
5490
  "kind": "NON_NULL",
5824
5491
  "name": null,
@@ -5841,9 +5508,7 @@
5841
5508
  }
5842
5509
  ],
5843
5510
  "inputFields": null,
5844
- "interfaces": [
5845
-
5846
- ],
5511
+ "interfaces": [],
5847
5512
  "enumValues": null,
5848
5513
  "possibleTypes": null
5849
5514
  },
@@ -5855,9 +5520,7 @@
5855
5520
  {
5856
5521
  "name": "description",
5857
5522
  "description": null,
5858
- "args": [
5859
-
5860
- ],
5523
+ "args": [],
5861
5524
  "type": {
5862
5525
  "kind": "SCALAR",
5863
5526
  "name": "String",
@@ -5931,9 +5594,7 @@
5931
5594
  {
5932
5595
  "name": "inputFields",
5933
5596
  "description": null,
5934
- "args": [
5935
-
5936
- ],
5597
+ "args": [],
5937
5598
  "type": {
5938
5599
  "kind": "LIST",
5939
5600
  "name": null,
@@ -5953,9 +5614,7 @@
5953
5614
  {
5954
5615
  "name": "interfaces",
5955
5616
  "description": null,
5956
- "args": [
5957
-
5958
- ],
5617
+ "args": [],
5959
5618
  "type": {
5960
5619
  "kind": "LIST",
5961
5620
  "name": null,
@@ -5975,9 +5634,7 @@
5975
5634
  {
5976
5635
  "name": "kind",
5977
5636
  "description": null,
5978
- "args": [
5979
-
5980
- ],
5637
+ "args": [],
5981
5638
  "type": {
5982
5639
  "kind": "NON_NULL",
5983
5640
  "name": null,
@@ -5993,9 +5650,7 @@
5993
5650
  {
5994
5651
  "name": "name",
5995
5652
  "description": null,
5996
- "args": [
5997
-
5998
- ],
5653
+ "args": [],
5999
5654
  "type": {
6000
5655
  "kind": "SCALAR",
6001
5656
  "name": "String",
@@ -6007,9 +5662,7 @@
6007
5662
  {
6008
5663
  "name": "ofType",
6009
5664
  "description": null,
6010
- "args": [
6011
-
6012
- ],
5665
+ "args": [],
6013
5666
  "type": {
6014
5667
  "kind": "OBJECT",
6015
5668
  "name": "__Type",
@@ -6021,9 +5674,7 @@
6021
5674
  {
6022
5675
  "name": "possibleTypes",
6023
5676
  "description": null,
6024
- "args": [
6025
-
6026
- ],
5677
+ "args": [],
6027
5678
  "type": {
6028
5679
  "kind": "LIST",
6029
5680
  "name": null,
@@ -6042,9 +5693,7 @@
6042
5693
  }
6043
5694
  ],
6044
5695
  "inputFields": null,
6045
- "interfaces": [
6046
-
6047
- ],
5696
+ "interfaces": [],
6048
5697
  "enumValues": null,
6049
5698
  "possibleTypes": null
6050
5699
  },