billfixers-partner 1.1.6 → 1.2.2

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: b11169e195ae824bb0ff39afd8b8c4ce77a25a3891c2916d80bbd74a7e39d14c
4
- data.tar.gz: 56f6827c6ab40511c8add769c8affae2e717bc1a4b88fe86fe5d31c02497352d
3
+ metadata.gz: e7d12e56bf129882d6ddef147159b3198c165637d41f0657ff653be42373dfef
4
+ data.tar.gz: 1796071a1890cf3f9e62bfc70b34eb8a16592378f242daeed16e5fad69d096f7
5
5
  SHA512:
6
- metadata.gz: 525033f40bcafa20272f126e4df098c023ae4665d2514147cb262384acb00679b210a59319eaec7d3025304da021045e9278f07d6ca5b71598a52afe1d85161b
7
- data.tar.gz: f765a97ab08b9591e9a43f5364fff01a9fc844c96698ed1c527e5af0efa8e403a83ebd0290567f37170b4a61ce52369ef3e0c43322daa1f83d382273cf8aece7
6
+ metadata.gz: 11ee2105e90732d03a1beed6de0d64d2588dfb7fe8c9f15a746c44e7df867f491a091c8f003233b037159857cbb882dc79d1eab4040e26f929e8760c6897dc1d
7
+ data.tar.gz: 5cfbc11ea962e112cb9c0eab0c69d264209dcc029b5c5d2afbbc0b3bfc793dd9ee3aacb80f4c344977351ef26a5ba68f756c6a737946f24f6bb17c585dc5ba4f
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .byebug_history
10
+ *.gem
@@ -6,14 +6,15 @@ require 'graphlient'
6
6
  module Billfixers
7
7
  module Partner
8
8
  class Client
9
- def initialize(email:, token:, test_mode: false)
10
- endpoint = test_mode ? 'https://billfixers-staging.herokuapp.com/partner/graphql' : 'https://billfixers.herokuapp.com/partner/graphql'
9
+ def initialize(api_key:)
10
+ test_mode = api_key.start_with?('test_')
11
+
12
+ endpoint = test_mode ? 'https://billfixers-partner-sandbox.herokuapp.com/partner/graphql' : 'https://billfixers.herokuapp.com/partner/graphql'
11
13
 
12
14
  @gql = Graphlient::Client.new(endpoint,
13
15
  schema_path: File.join(File.dirname(__FILE__), '../../../partner_schema.json'),
14
16
  headers: {
15
- "X-PartnerUser-Email": email,
16
- "X-PartnerUser-Token": token
17
+ "X-Partner-ApiKey": api_key
17
18
  })
18
19
  end
19
20
 
@@ -103,9 +104,10 @@ module Billfixers
103
104
  result.customer
104
105
  end
105
106
 
106
- def create_bill(customer_id, params)
107
+ def create_bill(customer_id, provider_id, params)
107
108
  response = @gql.query(CREATE_BILL_MUTATION, {
108
109
  customer_id: customer_id,
110
+ provider_id: provider_id,
109
111
  bill: camelize(params)
110
112
  })
111
113
 
@@ -115,6 +117,18 @@ module Billfixers
115
117
  result.bill
116
118
  end
117
119
 
120
+ def update_bill(bill_id, params)
121
+ response = @gql.query(UPDATE_BILL_MUTATION, {
122
+ bill_id: bill_id,
123
+ bill: camelize(params)
124
+ })
125
+
126
+ result = response.data.update_bill
127
+ raise Error, result.errors.join(' ') unless result.success
128
+
129
+ result.bill
130
+ end
131
+
118
132
  def renegotiate_bill(bill_id)
119
133
  response = @gql.query(RENEGOTIATE_BILL_MUTATION, { id: bill_id })
120
134
 
@@ -48,6 +48,8 @@ module Billfixers
48
48
  totalSavings
49
49
  createdAt
50
50
  updatedAt
51
+ autoRenegotiate
52
+ allowsContract
51
53
 
52
54
  items {
53
55
  #{BILL_ITEM_FRAGMENT}
@@ -209,8 +211,20 @@ module Billfixers
209
211
  )
210
212
 
211
213
  CREATE_BILL_MUTATION = %(
212
- mutation($customer_id: ID!, $bill: BillAttributes!) {
213
- CreateBill(input: { customerId: $customer_id, bill: $bill }) {
214
+ mutation($customer_id: ID!, $provider_id: ID!, $bill: BillAttributes!) {
215
+ CreateBill(input: { customerId: $customer_id, providerId: $provider_id, bill: $bill }) {
216
+ success
217
+ errors
218
+ bill {
219
+ #{BILL_FRAGMENT}
220
+ }
221
+ }
222
+ }
223
+ )
224
+
225
+ UPDATE_BILL_MUTATION = %(
226
+ mutation($bill_id: ID!, $bill: BillAttributes!) {
227
+ UpdateBill(input: { billId: $bill_id, bill: $bill }) {
214
228
  success
215
229
  errors
216
230
  bill {
@@ -285,21 +299,21 @@ module Billfixers
285
299
 
286
300
  CALCULATE_SAVINGS_ESTIMATE = %(
287
301
  query(
288
- $providerId: ID!
289
- $currentMonthlyAmount: Float!
302
+ $provider_id: ID!
303
+ $current_monthly_amount: Float!
290
304
  ) {
291
305
  CalculateSavingsEstimate {
292
306
  estimatedAnnualSavings(
293
- providerId: $providerId
294
- currentMonthlyAmount: $currentMonthlyAmount
307
+ providerId: $provider_id
308
+ currentMonthlyAmount: $current_monthly_amount
295
309
  )
296
310
  estimatedMonthlySavings(
297
- providerId: $providerId
298
- currentMonthlyAmount: $currentMonthlyAmount
311
+ providerId: $provider_id
312
+ currentMonthlyAmount: $current_monthly_amount
299
313
  )
300
314
  percentageSavings(
301
- providerId: $providerId
302
- currentMonthlyAmount: $currentMonthlyAmount
315
+ providerId: $provider_id
316
+ currentMonthlyAmount: $current_monthly_amount
303
317
  )
304
318
  }
305
319
  }
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Billfixers
4
4
  module Partner
5
- VERSION = '1.1.6'
5
+ VERSION = '1.2.2'
6
6
  end
7
7
  end
data/partner_schema.json CHANGED
@@ -216,6 +216,50 @@
216
216
  "isDeprecated": false,
217
217
  "deprecationReason": null
218
218
  },
219
+ {
220
+ "name": "documentlessAllowed",
221
+ "description": "Allows documentless submission of a bill",
222
+ "args": [],
223
+ "type": {
224
+ "kind": "NON_NULL",
225
+ "name": null,
226
+ "ofType": {
227
+ "kind": "SCALAR",
228
+ "name": "Boolean",
229
+ "ofType": null
230
+ }
231
+ },
232
+ "isDeprecated": false,
233
+ "deprecationReason": null
234
+ },
235
+ {
236
+ "name": "documentlessInfo",
237
+ "description": "A JSON object containing fields needed for documentless negotiation related to this bill's provider.",
238
+ "args": [],
239
+ "type": {
240
+ "kind": "SCALAR",
241
+ "name": "JSON",
242
+ "ofType": null
243
+ },
244
+ "isDeprecated": false,
245
+ "deprecationReason": null
246
+ },
247
+ {
248
+ "name": "grossSavings",
249
+ "description": "The lifetime value gained from negotiations",
250
+ "args": [],
251
+ "type": {
252
+ "kind": "NON_NULL",
253
+ "name": null,
254
+ "ofType": {
255
+ "kind": "SCALAR",
256
+ "name": "Money",
257
+ "ofType": null
258
+ }
259
+ },
260
+ "isDeprecated": false,
261
+ "deprecationReason": null
262
+ },
219
263
  {
220
264
  "name": "id",
221
265
  "description": "Alpha-numeric unique identifier",
@@ -232,6 +276,30 @@
232
276
  "isDeprecated": false,
233
277
  "deprecationReason": null
234
278
  },
279
+ {
280
+ "name": "informationRequests",
281
+ "description": null,
282
+ "args": [],
283
+ "type": {
284
+ "kind": "NON_NULL",
285
+ "name": null,
286
+ "ofType": {
287
+ "kind": "LIST",
288
+ "name": null,
289
+ "ofType": {
290
+ "kind": "NON_NULL",
291
+ "name": null,
292
+ "ofType": {
293
+ "kind": "OBJECT",
294
+ "name": "InformationRequest",
295
+ "ofType": null
296
+ }
297
+ }
298
+ }
299
+ },
300
+ "isDeprecated": false,
301
+ "deprecationReason": null
302
+ },
235
303
  {
236
304
  "name": "items",
237
305
  "description": "The items on the bill",
@@ -346,7 +414,7 @@
346
414
  },
347
415
  {
348
416
  "name": "totalSavings",
349
- "description": "The total value gained from negotiations",
417
+ "description": "The current value gained from negotiations",
350
418
  "args": [],
351
419
  "type": {
352
420
  "kind": "NON_NULL",
@@ -388,20 +456,6 @@
388
456
  "description": "Attributes for creating or updating a bill",
389
457
  "fields": null,
390
458
  "inputFields": [
391
- {
392
- "name": "providerId",
393
- "description": "The ID of the Provider",
394
- "type": {
395
- "kind": "NON_NULL",
396
- "name": null,
397
- "ofType": {
398
- "kind": "SCALAR",
399
- "name": "ID",
400
- "ofType": null
401
- }
402
- },
403
- "defaultValue": null
404
- },
405
459
  {
406
460
  "name": "last4ssn",
407
461
  "description": "The last 4 digits of the customer's social security number",
@@ -459,16 +513,6 @@
459
513
  }
460
514
  },
461
515
  "defaultValue": null
462
- },
463
- {
464
- "name": "createdVia",
465
- "description": null,
466
- "type": {
467
- "kind": "SCALAR",
468
- "name": "String",
469
- "ofType": null
470
- },
471
- "defaultValue": null
472
516
  }
473
517
  ],
474
518
  "interfaces": null,
@@ -639,7 +683,21 @@
639
683
  "inputFields": [
640
684
  {
641
685
  "name": "customerId",
642
- "description": null,
686
+ "description": "The ID of the customer",
687
+ "type": {
688
+ "kind": "NON_NULL",
689
+ "name": null,
690
+ "ofType": {
691
+ "kind": "SCALAR",
692
+ "name": "ID",
693
+ "ofType": null
694
+ }
695
+ },
696
+ "defaultValue": null
697
+ },
698
+ {
699
+ "name": "providerId",
700
+ "description": "The ID of the provider",
643
701
  "type": {
644
702
  "kind": "NON_NULL",
645
703
  "name": null,
@@ -870,6 +928,22 @@
870
928
  "name": "Customer",
871
929
  "description": "The person being billed by a provider",
872
930
  "fields": [
931
+ {
932
+ "name": "allTimeGrossSavings",
933
+ "description": null,
934
+ "args": [],
935
+ "type": {
936
+ "kind": "NON_NULL",
937
+ "name": null,
938
+ "ofType": {
939
+ "kind": "SCALAR",
940
+ "name": "Money",
941
+ "ofType": null
942
+ }
943
+ },
944
+ "isDeprecated": false,
945
+ "deprecationReason": null
946
+ },
873
947
  {
874
948
  "name": "avatarUrl",
875
949
  "description": null,
@@ -902,6 +976,22 @@
902
976
  "isDeprecated": false,
903
977
  "deprecationReason": null
904
978
  },
979
+ {
980
+ "name": "billCount",
981
+ "description": null,
982
+ "args": [],
983
+ "type": {
984
+ "kind": "NON_NULL",
985
+ "name": null,
986
+ "ofType": {
987
+ "kind": "SCALAR",
988
+ "name": "Int",
989
+ "ofType": null
990
+ }
991
+ },
992
+ "isDeprecated": false,
993
+ "deprecationReason": null
994
+ },
905
995
  {
906
996
  "name": "bills",
907
997
  "description": null,
@@ -980,13 +1070,9 @@
980
1070
  "description": null,
981
1071
  "args": [],
982
1072
  "type": {
983
- "kind": "NON_NULL",
984
- "name": null,
985
- "ofType": {
986
- "kind": "SCALAR",
987
- "name": "String",
988
- "ofType": null
989
- }
1073
+ "kind": "SCALAR",
1074
+ "name": "String",
1075
+ "ofType": null
990
1076
  },
991
1077
  "isDeprecated": false,
992
1078
  "deprecationReason": null
@@ -1059,6 +1145,38 @@
1059
1145
  "isDeprecated": false,
1060
1146
  "deprecationReason": null
1061
1147
  },
1148
+ {
1149
+ "name": "readyBillCount",
1150
+ "description": null,
1151
+ "args": [],
1152
+ "type": {
1153
+ "kind": "NON_NULL",
1154
+ "name": null,
1155
+ "ofType": {
1156
+ "kind": "SCALAR",
1157
+ "name": "Int",
1158
+ "ofType": null
1159
+ }
1160
+ },
1161
+ "isDeprecated": false,
1162
+ "deprecationReason": null
1163
+ },
1164
+ {
1165
+ "name": "type",
1166
+ "description": null,
1167
+ "args": [],
1168
+ "type": {
1169
+ "kind": "NON_NULL",
1170
+ "name": null,
1171
+ "ofType": {
1172
+ "kind": "SCALAR",
1173
+ "name": "String",
1174
+ "ofType": null
1175
+ }
1176
+ },
1177
+ "isDeprecated": false,
1178
+ "deprecationReason": null
1179
+ },
1062
1180
  {
1063
1181
  "name": "updatedAt",
1064
1182
  "description": null,
@@ -1107,16 +1225,6 @@
1107
1225
  },
1108
1226
  "defaultValue": null
1109
1227
  },
1110
- {
1111
- "name": "externalId",
1112
- "description": null,
1113
- "type": {
1114
- "kind": "SCALAR",
1115
- "name": "String",
1116
- "ofType": null
1117
- },
1118
- "defaultValue": null
1119
- },
1120
1228
  {
1121
1229
  "name": "firstName",
1122
1230
  "description": null,
@@ -2113,6 +2221,22 @@
2113
2221
  "isDeprecated": false,
2114
2222
  "deprecationReason": null
2115
2223
  },
2224
+ {
2225
+ "name": "expired",
2226
+ "description": "Whether or not the savings for this item have expired",
2227
+ "args": [],
2228
+ "type": {
2229
+ "kind": "NON_NULL",
2230
+ "name": null,
2231
+ "ofType": {
2232
+ "kind": "SCALAR",
2233
+ "name": "Boolean",
2234
+ "ofType": null
2235
+ }
2236
+ },
2237
+ "isDeprecated": false,
2238
+ "deprecationReason": null
2239
+ },
2116
2240
  {
2117
2241
  "name": "name",
2118
2242
  "description": "Name of the good or service",
@@ -2263,6 +2387,16 @@
2263
2387
  "enumValues": null,
2264
2388
  "possibleTypes": null
2265
2389
  },
2390
+ {
2391
+ "kind": "SCALAR",
2392
+ "name": "JSON",
2393
+ "description": "Represents untyped JSON",
2394
+ "fields": null,
2395
+ "inputFields": null,
2396
+ "interfaces": null,
2397
+ "enumValues": null,
2398
+ "possibleTypes": null
2399
+ },
2266
2400
  {
2267
2401
  "kind": "SCALAR",
2268
2402
  "name": "Money",
@@ -2359,6 +2493,33 @@
2359
2493
  "isDeprecated": false,
2360
2494
  "deprecationReason": null
2361
2495
  },
2496
+ {
2497
+ "name": "ProvideDocumentlessInfo",
2498
+ "description": null,
2499
+ "args": [
2500
+ {
2501
+ "name": "input",
2502
+ "description": "Parameters for ProvideDocumentlessInfo",
2503
+ "type": {
2504
+ "kind": "NON_NULL",
2505
+ "name": null,
2506
+ "ofType": {
2507
+ "kind": "INPUT_OBJECT",
2508
+ "name": "ProvideDocumentlessInfoInput",
2509
+ "ofType": null
2510
+ }
2511
+ },
2512
+ "defaultValue": null
2513
+ }
2514
+ ],
2515
+ "type": {
2516
+ "kind": "OBJECT",
2517
+ "name": "ProvideDocumentlessInfoPayload",
2518
+ "ofType": null
2519
+ },
2520
+ "isDeprecated": false,
2521
+ "deprecationReason": null
2522
+ },
2362
2523
  {
2363
2524
  "name": "RejectOffer",
2364
2525
  "description": "Reject an offer",
@@ -2441,18 +2602,18 @@
2441
2602
  "deprecationReason": null
2442
2603
  },
2443
2604
  {
2444
- "name": "StopNegotiating",
2605
+ "name": "SandboxGenerateNegotiation",
2445
2606
  "description": null,
2446
2607
  "args": [
2447
2608
  {
2448
2609
  "name": "input",
2449
- "description": "Parameters for StopNegotiating",
2610
+ "description": "Parameters for SandboxGenerateNegotiation",
2450
2611
  "type": {
2451
2612
  "kind": "NON_NULL",
2452
2613
  "name": null,
2453
2614
  "ofType": {
2454
2615
  "kind": "INPUT_OBJECT",
2455
- "name": "StopNegotiatingInput",
2616
+ "name": "SandboxGenerateNegotiationInput",
2456
2617
  "ofType": null
2457
2618
  }
2458
2619
  },
@@ -2461,25 +2622,25 @@
2461
2622
  ],
2462
2623
  "type": {
2463
2624
  "kind": "OBJECT",
2464
- "name": "StopNegotiatingPayload",
2625
+ "name": "SandboxGenerateNegotiationPayload",
2465
2626
  "ofType": null
2466
2627
  },
2467
2628
  "isDeprecated": false,
2468
2629
  "deprecationReason": null
2469
2630
  },
2470
2631
  {
2471
- "name": "UpdateCustomer",
2632
+ "name": "SandboxResetBill",
2472
2633
  "description": null,
2473
2634
  "args": [
2474
2635
  {
2475
2636
  "name": "input",
2476
- "description": "Parameters for UpdateCustomer",
2637
+ "description": "Parameters for SandboxResetBill",
2477
2638
  "type": {
2478
2639
  "kind": "NON_NULL",
2479
2640
  "name": null,
2480
2641
  "ofType": {
2481
2642
  "kind": "INPUT_OBJECT",
2482
- "name": "UpdateCustomerInput",
2643
+ "name": "SandboxResetBillInput",
2483
2644
  "ofType": null
2484
2645
  }
2485
2646
  },
@@ -2488,25 +2649,25 @@
2488
2649
  ],
2489
2650
  "type": {
2490
2651
  "kind": "OBJECT",
2491
- "name": "UpdateCustomerPayload",
2652
+ "name": "SandboxResetBillPayload",
2492
2653
  "ofType": null
2493
2654
  },
2494
2655
  "isDeprecated": false,
2495
2656
  "deprecationReason": null
2496
2657
  },
2497
2658
  {
2498
- "name": "UpdateWebhookUrls",
2659
+ "name": "SandboxTransitionNegotiation",
2499
2660
  "description": null,
2500
2661
  "args": [
2501
2662
  {
2502
2663
  "name": "input",
2503
- "description": "Parameters for UpdateWebhookUrls",
2664
+ "description": "Parameters for SandboxTransitionNegotiation",
2504
2665
  "type": {
2505
2666
  "kind": "NON_NULL",
2506
2667
  "name": null,
2507
2668
  "ofType": {
2508
2669
  "kind": "INPUT_OBJECT",
2509
- "name": "UpdateWebhookUrlsInput",
2670
+ "name": "SandboxTransitionNegotiationInput",
2510
2671
  "ofType": null
2511
2672
  }
2512
2673
  },
@@ -2515,33 +2676,141 @@
2515
2676
  ],
2516
2677
  "type": {
2517
2678
  "kind": "OBJECT",
2518
- "name": "UpdateWebhookUrlsPayload",
2679
+ "name": "SandboxTransitionNegotiationPayload",
2519
2680
  "ofType": null
2520
2681
  },
2521
2682
  "isDeprecated": false,
2522
2683
  "deprecationReason": null
2523
- }
2524
- ],
2525
- "inputFields": null,
2526
- "interfaces": [],
2527
- "enumValues": null,
2528
- "possibleTypes": null
2529
- },
2530
- {
2531
- "kind": "OBJECT",
2532
- "name": "Negotiation",
2533
- "description": null,
2534
- "fields": [
2684
+ },
2535
2685
  {
2536
- "name": "billId",
2686
+ "name": "StopNegotiating",
2537
2687
  "description": null,
2538
- "args": [],
2539
- "type": {
2540
- "kind": "NON_NULL",
2541
- "name": null,
2542
- "ofType": {
2543
- "kind": "SCALAR",
2544
- "name": "ID",
2688
+ "args": [
2689
+ {
2690
+ "name": "input",
2691
+ "description": "Parameters for StopNegotiating",
2692
+ "type": {
2693
+ "kind": "NON_NULL",
2694
+ "name": null,
2695
+ "ofType": {
2696
+ "kind": "INPUT_OBJECT",
2697
+ "name": "StopNegotiatingInput",
2698
+ "ofType": null
2699
+ }
2700
+ },
2701
+ "defaultValue": null
2702
+ }
2703
+ ],
2704
+ "type": {
2705
+ "kind": "OBJECT",
2706
+ "name": "StopNegotiatingPayload",
2707
+ "ofType": null
2708
+ },
2709
+ "isDeprecated": false,
2710
+ "deprecationReason": null
2711
+ },
2712
+ {
2713
+ "name": "UpdateBill",
2714
+ "description": null,
2715
+ "args": [
2716
+ {
2717
+ "name": "input",
2718
+ "description": "Parameters for UpdateBill",
2719
+ "type": {
2720
+ "kind": "NON_NULL",
2721
+ "name": null,
2722
+ "ofType": {
2723
+ "kind": "INPUT_OBJECT",
2724
+ "name": "UpdateBillInput",
2725
+ "ofType": null
2726
+ }
2727
+ },
2728
+ "defaultValue": null
2729
+ }
2730
+ ],
2731
+ "type": {
2732
+ "kind": "OBJECT",
2733
+ "name": "UpdateBillPayload",
2734
+ "ofType": null
2735
+ },
2736
+ "isDeprecated": false,
2737
+ "deprecationReason": null
2738
+ },
2739
+ {
2740
+ "name": "UpdateCustomer",
2741
+ "description": null,
2742
+ "args": [
2743
+ {
2744
+ "name": "input",
2745
+ "description": "Parameters for UpdateCustomer",
2746
+ "type": {
2747
+ "kind": "NON_NULL",
2748
+ "name": null,
2749
+ "ofType": {
2750
+ "kind": "INPUT_OBJECT",
2751
+ "name": "UpdateCustomerInput",
2752
+ "ofType": null
2753
+ }
2754
+ },
2755
+ "defaultValue": null
2756
+ }
2757
+ ],
2758
+ "type": {
2759
+ "kind": "OBJECT",
2760
+ "name": "UpdateCustomerPayload",
2761
+ "ofType": null
2762
+ },
2763
+ "isDeprecated": false,
2764
+ "deprecationReason": null
2765
+ },
2766
+ {
2767
+ "name": "UpdateWebhookUrls",
2768
+ "description": null,
2769
+ "args": [
2770
+ {
2771
+ "name": "input",
2772
+ "description": "Parameters for UpdateWebhookUrls",
2773
+ "type": {
2774
+ "kind": "NON_NULL",
2775
+ "name": null,
2776
+ "ofType": {
2777
+ "kind": "INPUT_OBJECT",
2778
+ "name": "UpdateWebhookUrlsInput",
2779
+ "ofType": null
2780
+ }
2781
+ },
2782
+ "defaultValue": null
2783
+ }
2784
+ ],
2785
+ "type": {
2786
+ "kind": "OBJECT",
2787
+ "name": "UpdateWebhookUrlsPayload",
2788
+ "ofType": null
2789
+ },
2790
+ "isDeprecated": false,
2791
+ "deprecationReason": null
2792
+ }
2793
+ ],
2794
+ "inputFields": null,
2795
+ "interfaces": [],
2796
+ "enumValues": null,
2797
+ "possibleTypes": null
2798
+ },
2799
+ {
2800
+ "kind": "OBJECT",
2801
+ "name": "Negotiation",
2802
+ "description": null,
2803
+ "fields": [
2804
+ {
2805
+ "name": "billId",
2806
+ "description": null,
2807
+ "args": [],
2808
+ "type": {
2809
+ "kind": "NON_NULL",
2810
+ "name": null,
2811
+ "ofType": {
2812
+ "kind": "SCALAR",
2813
+ "name": "ID",
2545
2814
  "ofType": null
2546
2815
  }
2547
2816
  },
@@ -2878,6 +3147,140 @@
2878
3147
  "enumValues": null,
2879
3148
  "possibleTypes": null
2880
3149
  },
3150
+ {
3151
+ "kind": "OBJECT",
3152
+ "name": "NegotiationConnection",
3153
+ "description": "The connection type for Negotiation.",
3154
+ "fields": [
3155
+ {
3156
+ "name": "edges",
3157
+ "description": "A list of edges.",
3158
+ "args": [],
3159
+ "type": {
3160
+ "kind": "NON_NULL",
3161
+ "name": null,
3162
+ "ofType": {
3163
+ "kind": "LIST",
3164
+ "name": null,
3165
+ "ofType": {
3166
+ "kind": "NON_NULL",
3167
+ "name": null,
3168
+ "ofType": {
3169
+ "kind": "OBJECT",
3170
+ "name": "NegotiationEdge",
3171
+ "ofType": null
3172
+ }
3173
+ }
3174
+ }
3175
+ },
3176
+ "isDeprecated": false,
3177
+ "deprecationReason": null
3178
+ },
3179
+ {
3180
+ "name": "nodes",
3181
+ "description": "A list of nodes.",
3182
+ "args": [],
3183
+ "type": {
3184
+ "kind": "NON_NULL",
3185
+ "name": null,
3186
+ "ofType": {
3187
+ "kind": "LIST",
3188
+ "name": null,
3189
+ "ofType": {
3190
+ "kind": "NON_NULL",
3191
+ "name": null,
3192
+ "ofType": {
3193
+ "kind": "OBJECT",
3194
+ "name": "Negotiation",
3195
+ "ofType": null
3196
+ }
3197
+ }
3198
+ }
3199
+ },
3200
+ "isDeprecated": false,
3201
+ "deprecationReason": null
3202
+ },
3203
+ {
3204
+ "name": "pageInfo",
3205
+ "description": "Information to aid in pagination.",
3206
+ "args": [],
3207
+ "type": {
3208
+ "kind": "NON_NULL",
3209
+ "name": null,
3210
+ "ofType": {
3211
+ "kind": "OBJECT",
3212
+ "name": "PageInfo",
3213
+ "ofType": null
3214
+ }
3215
+ },
3216
+ "isDeprecated": false,
3217
+ "deprecationReason": null
3218
+ },
3219
+ {
3220
+ "name": "totalCount",
3221
+ "description": null,
3222
+ "args": [],
3223
+ "type": {
3224
+ "kind": "NON_NULL",
3225
+ "name": null,
3226
+ "ofType": {
3227
+ "kind": "SCALAR",
3228
+ "name": "Int",
3229
+ "ofType": null
3230
+ }
3231
+ },
3232
+ "isDeprecated": false,
3233
+ "deprecationReason": null
3234
+ }
3235
+ ],
3236
+ "inputFields": null,
3237
+ "interfaces": [],
3238
+ "enumValues": null,
3239
+ "possibleTypes": null
3240
+ },
3241
+ {
3242
+ "kind": "OBJECT",
3243
+ "name": "NegotiationEdge",
3244
+ "description": "An edge in a connection.",
3245
+ "fields": [
3246
+ {
3247
+ "name": "cursor",
3248
+ "description": "A cursor for use in pagination.",
3249
+ "args": [],
3250
+ "type": {
3251
+ "kind": "NON_NULL",
3252
+ "name": null,
3253
+ "ofType": {
3254
+ "kind": "SCALAR",
3255
+ "name": "String",
3256
+ "ofType": null
3257
+ }
3258
+ },
3259
+ "isDeprecated": false,
3260
+ "deprecationReason": null
3261
+ },
3262
+ {
3263
+ "name": "node",
3264
+ "description": "The item at the end of the edge.",
3265
+ "args": [],
3266
+ "type": {
3267
+ "kind": "NON_NULL",
3268
+ "name": null,
3269
+ "ofType": {
3270
+ "kind": "OBJECT",
3271
+ "name": "Negotiation",
3272
+ "ofType": null
3273
+ }
3274
+ },
3275
+ "isDeprecated": false,
3276
+ "deprecationReason": null
3277
+ }
3278
+ ],
3279
+ "inputFields": null,
3280
+ "interfaces": [],
3281
+ "enumValues": null,
3282
+ "possibleTypes": null
3283
+ },
2881
3284
  {
2882
3285
  "kind": "OBJECT",
2883
3286
  "name": "Offer",
@@ -3260,15 +3663,15 @@
3260
3663
  "description": null,
3261
3664
  "fields": [
3262
3665
  {
3263
- "name": "createdAt",
3264
- "description": null,
3666
+ "name": "apiKey",
3667
+ "description": "Live API key",
3265
3668
  "args": [],
3266
3669
  "type": {
3267
3670
  "kind": "NON_NULL",
3268
3671
  "name": null,
3269
3672
  "ofType": {
3270
3673
  "kind": "SCALAR",
3271
- "name": "DateTime",
3674
+ "name": "String",
3272
3675
  "ofType": null
3273
3676
  }
3274
3677
  },
@@ -3276,15 +3679,15 @@
3276
3679
  "deprecationReason": null
3277
3680
  },
3278
3681
  {
3279
- "name": "id",
3280
- "description": "Alpha-numeric unique identifier",
3682
+ "name": "averageSavingsPerBill",
3683
+ "description": null,
3281
3684
  "args": [],
3282
3685
  "type": {
3283
3686
  "kind": "NON_NULL",
3284
3687
  "name": null,
3285
3688
  "ofType": {
3286
3689
  "kind": "SCALAR",
3287
- "name": "String",
3690
+ "name": "Money",
3288
3691
  "ofType": null
3289
3692
  }
3290
3693
  },
@@ -3292,27 +3695,31 @@
3292
3695
  "deprecationReason": null
3293
3696
  },
3294
3697
  {
3295
- "name": "liveWebhookUrl",
3296
- "description": "Webhook URL for live/production requests",
3698
+ "name": "averageSavingsPerCustomer",
3699
+ "description": null,
3297
3700
  "args": [],
3298
3701
  "type": {
3299
- "kind": "SCALAR",
3300
- "name": "String",
3301
- "ofType": null
3702
+ "kind": "NON_NULL",
3703
+ "name": null,
3704
+ "ofType": {
3705
+ "kind": "SCALAR",
3706
+ "name": "Money",
3707
+ "ofType": null
3708
+ }
3302
3709
  },
3303
3710
  "isDeprecated": false,
3304
3711
  "deprecationReason": null
3305
3712
  },
3306
3713
  {
3307
- "name": "name",
3308
- "description": "Name of the partner",
3714
+ "name": "averageSavingsPerReadyBill",
3715
+ "description": null,
3309
3716
  "args": [],
3310
3717
  "type": {
3311
3718
  "kind": "NON_NULL",
3312
3719
  "name": null,
3313
3720
  "ofType": {
3314
3721
  "kind": "SCALAR",
3315
- "name": "String",
3722
+ "name": "Money",
3316
3723
  "ofType": null
3317
3724
  }
3318
3725
  },
@@ -3320,27 +3727,31 @@
3320
3727
  "deprecationReason": null
3321
3728
  },
3322
3729
  {
3323
- "name": "referralCode",
3324
- "description": "The partner's referral code",
3730
+ "name": "billCount",
3731
+ "description": null,
3325
3732
  "args": [],
3326
3733
  "type": {
3327
- "kind": "SCALAR",
3328
- "name": "String",
3329
- "ofType": null
3734
+ "kind": "NON_NULL",
3735
+ "name": null,
3736
+ "ofType": {
3737
+ "kind": "SCALAR",
3738
+ "name": "Int",
3739
+ "ofType": null
3740
+ }
3330
3741
  },
3331
3742
  "isDeprecated": false,
3332
3743
  "deprecationReason": null
3333
3744
  },
3334
3745
  {
3335
- "name": "referralLink",
3336
- "description": "The partner's referral link",
3746
+ "name": "createdAt",
3747
+ "description": null,
3337
3748
  "args": [],
3338
3749
  "type": {
3339
3750
  "kind": "NON_NULL",
3340
3751
  "name": null,
3341
3752
  "ofType": {
3342
3753
  "kind": "SCALAR",
3343
- "name": "String",
3754
+ "name": "DateTime",
3344
3755
  "ofType": null
3345
3756
  }
3346
3757
  },
@@ -3348,19 +3759,23 @@
3348
3759
  "deprecationReason": null
3349
3760
  },
3350
3761
  {
3351
- "name": "testWebhookUrl",
3352
- "description": "Webhook URL for test/development requests",
3762
+ "name": "customerCount",
3763
+ "description": null,
3353
3764
  "args": [],
3354
3765
  "type": {
3355
- "kind": "SCALAR",
3356
- "name": "String",
3357
- "ofType": null
3766
+ "kind": "NON_NULL",
3767
+ "name": null,
3768
+ "ofType": {
3769
+ "kind": "SCALAR",
3770
+ "name": "Int",
3771
+ "ofType": null
3772
+ }
3358
3773
  },
3359
3774
  "isDeprecated": false,
3360
3775
  "deprecationReason": null
3361
3776
  },
3362
3777
  {
3363
- "name": "updatedAt",
3778
+ "name": "customersWithReadyBillsCount",
3364
3779
  "description": null,
3365
3780
  "args": [],
3366
3781
  "type": {
@@ -3368,58 +3783,39 @@
3368
3783
  "name": null,
3369
3784
  "ofType": {
3370
3785
  "kind": "SCALAR",
3371
- "name": "DateTime",
3786
+ "name": "Int",
3372
3787
  "ofType": null
3373
3788
  }
3374
3789
  },
3375
3790
  "isDeprecated": false,
3376
3791
  "deprecationReason": null
3377
- }
3378
- ],
3379
- "inputFields": null,
3380
- "interfaces": [],
3381
- "enumValues": null,
3382
- "possibleTypes": null
3383
- },
3384
- {
3385
- "kind": "OBJECT",
3386
- "name": "Provider",
3387
- "description": null,
3388
- "fields": [
3792
+ },
3389
3793
  {
3390
- "name": "billFields",
3794
+ "name": "customersWithoutReadyBillsCount",
3391
3795
  "description": null,
3392
3796
  "args": [],
3393
3797
  "type": {
3394
3798
  "kind": "NON_NULL",
3395
3799
  "name": null,
3396
3800
  "ofType": {
3397
- "kind": "LIST",
3398
- "name": null,
3399
- "ofType": {
3400
- "kind": "NON_NULL",
3401
- "name": null,
3402
- "ofType": {
3403
- "kind": "SCALAR",
3404
- "name": "String",
3405
- "ofType": null
3406
- }
3407
- }
3801
+ "kind": "SCALAR",
3802
+ "name": "Int",
3803
+ "ofType": null
3408
3804
  }
3409
3805
  },
3410
3806
  "isDeprecated": false,
3411
3807
  "deprecationReason": null
3412
3808
  },
3413
3809
  {
3414
- "name": "createdAt",
3415
- "description": null,
3810
+ "name": "id",
3811
+ "description": "Alpha-numeric unique identifier",
3416
3812
  "args": [],
3417
3813
  "type": {
3418
3814
  "kind": "NON_NULL",
3419
3815
  "name": null,
3420
3816
  "ofType": {
3421
3817
  "kind": "SCALAR",
3422
- "name": "DateTime",
3818
+ "name": "String",
3423
3819
  "ofType": null
3424
3820
  }
3425
3821
  },
@@ -3427,7 +3823,7 @@
3427
3823
  "deprecationReason": null
3428
3824
  },
3429
3825
  {
3430
- "name": "id",
3826
+ "name": "lastNinetyDaysSignups",
3431
3827
  "description": null,
3432
3828
  "args": [],
3433
3829
  "type": {
@@ -3435,7 +3831,7 @@
3435
3831
  "name": null,
3436
3832
  "ofType": {
3437
3833
  "kind": "SCALAR",
3438
- "name": "ID",
3834
+ "name": "Int",
3439
3835
  "ofType": null
3440
3836
  }
3441
3837
  },
@@ -3443,19 +3839,23 @@
3443
3839
  "deprecationReason": null
3444
3840
  },
3445
3841
  {
3446
- "name": "logo",
3842
+ "name": "lastSevenDaysSignups",
3447
3843
  "description": null,
3448
3844
  "args": [],
3449
3845
  "type": {
3450
- "kind": "OBJECT",
3451
- "name": "Image",
3452
- "ofType": null
3846
+ "kind": "NON_NULL",
3847
+ "name": null,
3848
+ "ofType": {
3849
+ "kind": "SCALAR",
3850
+ "name": "Int",
3851
+ "ofType": null
3852
+ }
3453
3853
  },
3454
3854
  "isDeprecated": false,
3455
3855
  "deprecationReason": null
3456
3856
  },
3457
3857
  {
3458
- "name": "name",
3858
+ "name": "lastThirtyDaysSignups",
3459
3859
  "description": null,
3460
3860
  "args": [],
3461
3861
  "type": {
@@ -3463,7 +3863,7 @@
3463
3863
  "name": null,
3464
3864
  "ofType": {
3465
3865
  "kind": "SCALAR",
3466
- "name": "String",
3866
+ "name": "Int",
3467
3867
  "ofType": null
3468
3868
  }
3469
3869
  },
@@ -3471,66 +3871,43 @@
3471
3871
  "deprecationReason": null
3472
3872
  },
3473
3873
  {
3474
- "name": "services",
3475
- "description": null,
3874
+ "name": "liveWebhookUrl",
3875
+ "description": "Webhook URL for live/production requests",
3476
3876
  "args": [],
3477
3877
  "type": {
3478
- "kind": "NON_NULL",
3479
- "name": null,
3480
- "ofType": {
3481
- "kind": "LIST",
3482
- "name": null,
3483
- "ofType": {
3484
- "kind": "NON_NULL",
3485
- "name": null,
3486
- "ofType": {
3487
- "kind": "SCALAR",
3488
- "name": "String",
3489
- "ofType": null
3490
- }
3491
- }
3492
- }
3878
+ "kind": "SCALAR",
3879
+ "name": "String",
3880
+ "ofType": null
3493
3881
  },
3494
3882
  "isDeprecated": false,
3495
3883
  "deprecationReason": null
3496
3884
  },
3497
3885
  {
3498
- "name": "updatedAt",
3499
- "description": null,
3886
+ "name": "name",
3887
+ "description": "Name of the partner",
3500
3888
  "args": [],
3501
3889
  "type": {
3502
3890
  "kind": "NON_NULL",
3503
3891
  "name": null,
3504
3892
  "ofType": {
3505
3893
  "kind": "SCALAR",
3506
- "name": "DateTime",
3894
+ "name": "String",
3507
3895
  "ofType": null
3508
3896
  }
3509
3897
  },
3510
3898
  "isDeprecated": false,
3511
3899
  "deprecationReason": null
3512
- }
3513
- ],
3514
- "inputFields": null,
3515
- "interfaces": [],
3516
- "enumValues": null,
3517
- "possibleTypes": null
3518
- },
3519
- {
3520
- "kind": "OBJECT",
3521
- "name": "Query",
3522
- "description": null,
3523
- "fields": [
3900
+ },
3524
3901
  {
3525
- "name": "CalculateSavingsEstimate",
3902
+ "name": "readyBillCount",
3526
3903
  "description": null,
3527
3904
  "args": [],
3528
3905
  "type": {
3529
3906
  "kind": "NON_NULL",
3530
3907
  "name": null,
3531
3908
  "ofType": {
3532
- "kind": "OBJECT",
3533
- "name": "SavingsEstimate",
3909
+ "kind": "SCALAR",
3910
+ "name": "Int",
3534
3911
  "ofType": null
3535
3912
  }
3536
3913
  },
@@ -3538,42 +3915,27 @@
3538
3915
  "deprecationReason": null
3539
3916
  },
3540
3917
  {
3541
- "name": "FindBill",
3542
- "description": null,
3543
- "args": [
3544
- {
3545
- "name": "id",
3546
- "description": null,
3547
- "type": {
3548
- "kind": "NON_NULL",
3549
- "name": null,
3550
- "ofType": {
3551
- "kind": "SCALAR",
3552
- "name": "ID",
3553
- "ofType": null
3554
- }
3555
- },
3556
- "defaultValue": null
3557
- }
3558
- ],
3918
+ "name": "referralCode",
3919
+ "description": "The partner's referral code",
3920
+ "args": [],
3559
3921
  "type": {
3560
- "kind": "OBJECT",
3561
- "name": "Bill",
3922
+ "kind": "SCALAR",
3923
+ "name": "String",
3562
3924
  "ofType": null
3563
3925
  },
3564
3926
  "isDeprecated": false,
3565
3927
  "deprecationReason": null
3566
3928
  },
3567
3929
  {
3568
- "name": "FindCurrentPartner",
3569
- "description": null,
3930
+ "name": "referralLink",
3931
+ "description": "The partner's referral link",
3570
3932
  "args": [],
3571
3933
  "type": {
3572
3934
  "kind": "NON_NULL",
3573
3935
  "name": null,
3574
3936
  "ofType": {
3575
- "kind": "OBJECT",
3576
- "name": "Partner",
3937
+ "kind": "SCALAR",
3938
+ "name": "String",
3577
3939
  "ofType": null
3578
3940
  }
3579
3941
  },
@@ -3581,311 +3943,234 @@
3581
3943
  "deprecationReason": null
3582
3944
  },
3583
3945
  {
3584
- "name": "FindCustomer",
3585
- "description": null,
3586
- "args": [
3587
- {
3588
- "name": "id",
3589
- "description": null,
3590
- "type": {
3591
- "kind": "NON_NULL",
3592
- "name": null,
3593
- "ofType": {
3594
- "kind": "SCALAR",
3595
- "name": "ID",
3596
- "ofType": null
3597
- }
3598
- },
3599
- "defaultValue": null
3946
+ "name": "testApiKey",
3947
+ "description": "Test API key",
3948
+ "args": [],
3949
+ "type": {
3950
+ "kind": "NON_NULL",
3951
+ "name": null,
3952
+ "ofType": {
3953
+ "kind": "SCALAR",
3954
+ "name": "String",
3955
+ "ofType": null
3600
3956
  }
3601
- ],
3957
+ },
3958
+ "isDeprecated": false,
3959
+ "deprecationReason": null
3960
+ },
3961
+ {
3962
+ "name": "testWebhookUrl",
3963
+ "description": "Webhook URL for test/development requests",
3964
+ "args": [],
3602
3965
  "type": {
3603
- "kind": "OBJECT",
3604
- "name": "Customer",
3966
+ "kind": "SCALAR",
3967
+ "name": "String",
3605
3968
  "ofType": null
3606
3969
  },
3607
3970
  "isDeprecated": false,
3608
3971
  "deprecationReason": null
3609
3972
  },
3610
3973
  {
3611
- "name": "FindInformationRequest",
3974
+ "name": "totalSavings",
3612
3975
  "description": null,
3613
- "args": [
3614
- {
3615
- "name": "id",
3616
- "description": null,
3617
- "type": {
3618
- "kind": "NON_NULL",
3619
- "name": null,
3620
- "ofType": {
3621
- "kind": "SCALAR",
3622
- "name": "ID",
3623
- "ofType": null
3624
- }
3625
- },
3626
- "defaultValue": null
3627
- }
3628
- ],
3976
+ "args": [],
3629
3977
  "type": {
3630
- "kind": "OBJECT",
3631
- "name": "InformationRequest",
3632
- "ofType": null
3978
+ "kind": "NON_NULL",
3979
+ "name": null,
3980
+ "ofType": {
3981
+ "kind": "SCALAR",
3982
+ "name": "Money",
3983
+ "ofType": null
3984
+ }
3633
3985
  },
3634
3986
  "isDeprecated": false,
3635
3987
  "deprecationReason": null
3636
3988
  },
3637
3989
  {
3638
- "name": "FindOffer",
3990
+ "name": "updatedAt",
3639
3991
  "description": null,
3640
- "args": [
3641
- {
3642
- "name": "id",
3643
- "description": null,
3644
- "type": {
3645
- "kind": "NON_NULL",
3646
- "name": null,
3647
- "ofType": {
3648
- "kind": "SCALAR",
3649
- "name": "ID",
3650
- "ofType": null
3651
- }
3652
- },
3653
- "defaultValue": null
3992
+ "args": [],
3993
+ "type": {
3994
+ "kind": "NON_NULL",
3995
+ "name": null,
3996
+ "ofType": {
3997
+ "kind": "SCALAR",
3998
+ "name": "DateTime",
3999
+ "ofType": null
3654
4000
  }
3655
- ],
4001
+ },
4002
+ "isDeprecated": false,
4003
+ "deprecationReason": null
4004
+ }
4005
+ ],
4006
+ "inputFields": null,
4007
+ "interfaces": [],
4008
+ "enumValues": null,
4009
+ "possibleTypes": null
4010
+ },
4011
+ {
4012
+ "kind": "INPUT_OBJECT",
4013
+ "name": "ProvideDocumentlessInfoInput",
4014
+ "description": "Autogenerated input type of ProvideDocumentlessInfo",
4015
+ "fields": null,
4016
+ "inputFields": [
4017
+ {
4018
+ "name": "billId",
4019
+ "description": null,
4020
+ "type": {
4021
+ "kind": "NON_NULL",
4022
+ "name": null,
4023
+ "ofType": {
4024
+ "kind": "SCALAR",
4025
+ "name": "ID",
4026
+ "ofType": null
4027
+ }
4028
+ },
4029
+ "defaultValue": null
4030
+ },
4031
+ {
4032
+ "name": "documentlessInfo",
4033
+ "description": null,
4034
+ "type": {
4035
+ "kind": "NON_NULL",
4036
+ "name": null,
4037
+ "ofType": {
4038
+ "kind": "SCALAR",
4039
+ "name": "JSON",
4040
+ "ofType": null
4041
+ }
4042
+ },
4043
+ "defaultValue": null
4044
+ },
4045
+ {
4046
+ "name": "clientMutationId",
4047
+ "description": "A unique identifier for the client performing the mutation.",
4048
+ "type": {
4049
+ "kind": "SCALAR",
4050
+ "name": "String",
4051
+ "ofType": null
4052
+ },
4053
+ "defaultValue": null
4054
+ }
4055
+ ],
4056
+ "interfaces": null,
4057
+ "enumValues": null,
4058
+ "possibleTypes": null
4059
+ },
4060
+ {
4061
+ "kind": "OBJECT",
4062
+ "name": "ProvideDocumentlessInfoPayload",
4063
+ "description": "Autogenerated return type of ProvideDocumentlessInfo",
4064
+ "fields": [
4065
+ {
4066
+ "name": "bill",
4067
+ "description": null,
4068
+ "args": [],
3656
4069
  "type": {
3657
4070
  "kind": "OBJECT",
3658
- "name": "Offer",
4071
+ "name": "Bill",
3659
4072
  "ofType": null
3660
4073
  },
3661
4074
  "isDeprecated": false,
3662
4075
  "deprecationReason": null
3663
4076
  },
3664
4077
  {
3665
- "name": "FindProvider",
4078
+ "name": "clientMutationId",
4079
+ "description": "A unique identifier for the client performing the mutation.",
4080
+ "args": [],
4081
+ "type": {
4082
+ "kind": "SCALAR",
4083
+ "name": "String",
4084
+ "ofType": null
4085
+ },
4086
+ "isDeprecated": false,
4087
+ "deprecationReason": null
4088
+ },
4089
+ {
4090
+ "name": "errors",
3666
4091
  "description": null,
3667
- "args": [
3668
- {
3669
- "name": "id",
3670
- "description": null,
3671
- "type": {
4092
+ "args": [],
4093
+ "type": {
4094
+ "kind": "NON_NULL",
4095
+ "name": null,
4096
+ "ofType": {
4097
+ "kind": "LIST",
4098
+ "name": null,
4099
+ "ofType": {
3672
4100
  "kind": "NON_NULL",
3673
4101
  "name": null,
3674
4102
  "ofType": {
3675
4103
  "kind": "SCALAR",
3676
- "name": "ID",
4104
+ "name": "String",
3677
4105
  "ofType": null
3678
4106
  }
3679
- },
3680
- "defaultValue": null
4107
+ }
3681
4108
  }
3682
- ],
3683
- "type": {
3684
- "kind": "OBJECT",
3685
- "name": "Provider",
3686
- "ofType": null
3687
4109
  },
3688
4110
  "isDeprecated": false,
3689
4111
  "deprecationReason": null
3690
4112
  },
3691
4113
  {
3692
- "name": "ListBills",
4114
+ "name": "success",
3693
4115
  "description": null,
3694
- "args": [
3695
- {
3696
- "name": "sortBy",
3697
- "description": null,
3698
- "type": {
3699
- "kind": "SCALAR",
3700
- "name": "String",
3701
- "ofType": null
3702
- },
3703
- "defaultValue": "\"created_at\""
3704
- },
3705
- {
3706
- "name": "sortDirection",
3707
- "description": null,
3708
- "type": {
3709
- "kind": "SCALAR",
3710
- "name": "String",
3711
- "ofType": null
3712
- },
3713
- "defaultValue": "\"desc\""
3714
- },
3715
- {
3716
- "name": "limit",
3717
- "description": null,
3718
- "type": {
3719
- "kind": "SCALAR",
3720
- "name": "Int",
3721
- "ofType": null
3722
- },
3723
- "defaultValue": "25"
3724
- },
3725
- {
3726
- "name": "offset",
3727
- "description": null,
3728
- "type": {
3729
- "kind": "SCALAR",
3730
- "name": "Int",
3731
- "ofType": null
3732
- },
3733
- "defaultValue": "0"
3734
- },
3735
- {
3736
- "name": "customerId",
3737
- "description": null,
3738
- "type": {
3739
- "kind": "SCALAR",
3740
- "name": "ID",
3741
- "ofType": null
3742
- },
3743
- "defaultValue": null
3744
- },
3745
- {
3746
- "name": "after",
3747
- "description": "Returns the elements in the list that come after the specified cursor.",
3748
- "type": {
3749
- "kind": "SCALAR",
3750
- "name": "String",
3751
- "ofType": null
3752
- },
3753
- "defaultValue": null
3754
- },
3755
- {
3756
- "name": "before",
3757
- "description": "Returns the elements in the list that come before the specified cursor.",
3758
- "type": {
3759
- "kind": "SCALAR",
3760
- "name": "String",
3761
- "ofType": null
3762
- },
3763
- "defaultValue": null
3764
- },
3765
- {
3766
- "name": "first",
3767
- "description": "Returns the first _n_ elements from the list.",
3768
- "type": {
3769
- "kind": "SCALAR",
3770
- "name": "Int",
3771
- "ofType": null
3772
- },
3773
- "defaultValue": null
3774
- },
3775
- {
3776
- "name": "last",
3777
- "description": "Returns the last _n_ elements from the list.",
3778
- "type": {
3779
- "kind": "SCALAR",
3780
- "name": "Int",
3781
- "ofType": null
3782
- },
3783
- "defaultValue": null
3784
- }
3785
- ],
4116
+ "args": [],
3786
4117
  "type": {
3787
4118
  "kind": "NON_NULL",
3788
4119
  "name": null,
3789
4120
  "ofType": {
3790
- "kind": "OBJECT",
3791
- "name": "BillConnection",
4121
+ "kind": "SCALAR",
4122
+ "name": "Boolean",
3792
4123
  "ofType": null
3793
4124
  }
3794
4125
  },
3795
4126
  "isDeprecated": false,
3796
4127
  "deprecationReason": null
3797
- },
4128
+ }
4129
+ ],
4130
+ "inputFields": null,
4131
+ "interfaces": [],
4132
+ "enumValues": null,
4133
+ "possibleTypes": null
4134
+ },
4135
+ {
4136
+ "kind": "OBJECT",
4137
+ "name": "Provider",
4138
+ "description": null,
4139
+ "fields": [
3798
4140
  {
3799
- "name": "ListCustomers",
4141
+ "name": "billFields",
3800
4142
  "description": null,
3801
- "args": [
3802
- {
3803
- "name": "sortBy",
3804
- "description": null,
3805
- "type": {
3806
- "kind": "SCALAR",
3807
- "name": "String",
3808
- "ofType": null
3809
- },
3810
- "defaultValue": null
3811
- },
3812
- {
3813
- "name": "sortDirection",
3814
- "description": null,
3815
- "type": {
3816
- "kind": "SCALAR",
3817
- "name": "String",
3818
- "ofType": null
3819
- },
3820
- "defaultValue": null
3821
- },
3822
- {
3823
- "name": "limit",
3824
- "description": null,
3825
- "type": {
3826
- "kind": "SCALAR",
3827
- "name": "Int",
3828
- "ofType": null
3829
- },
3830
- "defaultValue": null
3831
- },
3832
- {
3833
- "name": "offset",
3834
- "description": null,
3835
- "type": {
3836
- "kind": "SCALAR",
3837
- "name": "Int",
3838
- "ofType": null
3839
- },
3840
- "defaultValue": null
3841
- },
3842
- {
3843
- "name": "after",
3844
- "description": "Returns the elements in the list that come after the specified cursor.",
3845
- "type": {
3846
- "kind": "SCALAR",
3847
- "name": "String",
3848
- "ofType": null
3849
- },
3850
- "defaultValue": null
3851
- },
3852
- {
3853
- "name": "before",
3854
- "description": "Returns the elements in the list that come before the specified cursor.",
3855
- "type": {
3856
- "kind": "SCALAR",
3857
- "name": "String",
3858
- "ofType": null
3859
- },
3860
- "defaultValue": null
3861
- },
3862
- {
3863
- "name": "first",
3864
- "description": "Returns the first _n_ elements from the list.",
3865
- "type": {
3866
- "kind": "SCALAR",
3867
- "name": "Int",
3868
- "ofType": null
3869
- },
3870
- "defaultValue": null
3871
- },
3872
- {
3873
- "name": "last",
3874
- "description": "Returns the last _n_ elements from the list.",
3875
- "type": {
3876
- "kind": "SCALAR",
3877
- "name": "Int",
3878
- "ofType": null
3879
- },
3880
- "defaultValue": null
4143
+ "args": [],
4144
+ "type": {
4145
+ "kind": "NON_NULL",
4146
+ "name": null,
4147
+ "ofType": {
4148
+ "kind": "LIST",
4149
+ "name": null,
4150
+ "ofType": {
4151
+ "kind": "NON_NULL",
4152
+ "name": null,
4153
+ "ofType": {
4154
+ "kind": "SCALAR",
4155
+ "name": "String",
4156
+ "ofType": null
4157
+ }
4158
+ }
3881
4159
  }
3882
- ],
4160
+ },
4161
+ "isDeprecated": false,
4162
+ "deprecationReason": null
4163
+ },
4164
+ {
4165
+ "name": "createdAt",
4166
+ "description": null,
4167
+ "args": [],
3883
4168
  "type": {
3884
4169
  "kind": "NON_NULL",
3885
4170
  "name": null,
3886
4171
  "ofType": {
3887
- "kind": "OBJECT",
3888
- "name": "CustomerConnection",
4172
+ "kind": "SCALAR",
4173
+ "name": "DateTime",
3889
4174
  "ofType": null
3890
4175
  }
3891
4176
  },
@@ -3893,106 +4178,59 @@
3893
4178
  "deprecationReason": null
3894
4179
  },
3895
4180
  {
3896
- "name": "ListInformationRequests",
4181
+ "name": "documentlessAllowed",
4182
+ "description": "Allows documentless submission of a bill",
4183
+ "args": [],
4184
+ "type": {
4185
+ "kind": "NON_NULL",
4186
+ "name": null,
4187
+ "ofType": {
4188
+ "kind": "SCALAR",
4189
+ "name": "Boolean",
4190
+ "ofType": null
4191
+ }
4192
+ },
4193
+ "isDeprecated": false,
4194
+ "deprecationReason": null
4195
+ },
4196
+ {
4197
+ "name": "id",
3897
4198
  "description": null,
3898
- "args": [
3899
- {
3900
- "name": "sortBy",
3901
- "description": null,
3902
- "type": {
3903
- "kind": "SCALAR",
3904
- "name": "String",
3905
- "ofType": null
3906
- },
3907
- "defaultValue": "\"created_at\""
3908
- },
3909
- {
3910
- "name": "sortDirection",
3911
- "description": null,
3912
- "type": {
3913
- "kind": "SCALAR",
3914
- "name": "String",
3915
- "ofType": null
3916
- },
3917
- "defaultValue": "\"desc\""
3918
- },
3919
- {
3920
- "name": "limit",
3921
- "description": null,
3922
- "type": {
3923
- "kind": "SCALAR",
3924
- "name": "Int",
3925
- "ofType": null
3926
- },
3927
- "defaultValue": "25"
3928
- },
3929
- {
3930
- "name": "offset",
3931
- "description": null,
3932
- "type": {
3933
- "kind": "SCALAR",
3934
- "name": "Int",
3935
- "ofType": null
3936
- },
3937
- "defaultValue": "0"
3938
- },
3939
- {
3940
- "name": "customerId",
3941
- "description": null,
3942
- "type": {
3943
- "kind": "SCALAR",
3944
- "name": "ID",
3945
- "ofType": null
3946
- },
3947
- "defaultValue": null
3948
- },
3949
- {
3950
- "name": "after",
3951
- "description": "Returns the elements in the list that come after the specified cursor.",
3952
- "type": {
3953
- "kind": "SCALAR",
3954
- "name": "String",
3955
- "ofType": null
3956
- },
3957
- "defaultValue": null
3958
- },
3959
- {
3960
- "name": "before",
3961
- "description": "Returns the elements in the list that come before the specified cursor.",
3962
- "type": {
3963
- "kind": "SCALAR",
3964
- "name": "String",
3965
- "ofType": null
3966
- },
3967
- "defaultValue": null
3968
- },
3969
- {
3970
- "name": "first",
3971
- "description": "Returns the first _n_ elements from the list.",
3972
- "type": {
3973
- "kind": "SCALAR",
3974
- "name": "Int",
3975
- "ofType": null
3976
- },
3977
- "defaultValue": null
3978
- },
3979
- {
3980
- "name": "last",
3981
- "description": "Returns the last _n_ elements from the list.",
3982
- "type": {
3983
- "kind": "SCALAR",
3984
- "name": "Int",
3985
- "ofType": null
3986
- },
3987
- "defaultValue": null
4199
+ "args": [],
4200
+ "type": {
4201
+ "kind": "NON_NULL",
4202
+ "name": null,
4203
+ "ofType": {
4204
+ "kind": "SCALAR",
4205
+ "name": "ID",
4206
+ "ofType": null
3988
4207
  }
3989
- ],
4208
+ },
4209
+ "isDeprecated": false,
4210
+ "deprecationReason": null
4211
+ },
4212
+ {
4213
+ "name": "logo",
4214
+ "description": null,
4215
+ "args": [],
4216
+ "type": {
4217
+ "kind": "OBJECT",
4218
+ "name": "Image",
4219
+ "ofType": null
4220
+ },
4221
+ "isDeprecated": false,
4222
+ "deprecationReason": null
4223
+ },
4224
+ {
4225
+ "name": "name",
4226
+ "description": null,
4227
+ "args": [],
3990
4228
  "type": {
3991
4229
  "kind": "NON_NULL",
3992
4230
  "name": null,
3993
4231
  "ofType": {
3994
- "kind": "OBJECT",
3995
- "name": "InformationRequestConnection",
4232
+ "kind": "SCALAR",
4233
+ "name": "String",
3996
4234
  "ofType": null
3997
4235
  }
3998
4236
  },
@@ -4000,35 +4238,775 @@
4000
4238
  "deprecationReason": null
4001
4239
  },
4002
4240
  {
4003
- "name": "ListOffers",
4241
+ "name": "providerBillFields",
4004
4242
  "description": null,
4005
- "args": [
4006
- {
4007
- "name": "status",
4008
- "description": null,
4009
- "type": {
4010
- "kind": "SCALAR",
4011
- "name": "String",
4012
- "ofType": null
4013
- },
4014
- "defaultValue": null
4015
- },
4016
- {
4017
- "name": "customerId",
4018
- "description": null,
4019
- "type": {
4020
- "kind": "SCALAR",
4021
- "name": "ID",
4022
- "ofType": null
4023
- },
4024
- "defaultValue": null
4025
- },
4026
- {
4027
- "name": "billId",
4028
- "description": null,
4029
- "type": {
4030
- "kind": "SCALAR",
4031
- "name": "ID",
4243
+ "args": [],
4244
+ "type": {
4245
+ "kind": "NON_NULL",
4246
+ "name": null,
4247
+ "ofType": {
4248
+ "kind": "LIST",
4249
+ "name": null,
4250
+ "ofType": {
4251
+ "kind": "NON_NULL",
4252
+ "name": null,
4253
+ "ofType": {
4254
+ "kind": "OBJECT",
4255
+ "name": "ProviderBillField",
4256
+ "ofType": null
4257
+ }
4258
+ }
4259
+ }
4260
+ },
4261
+ "isDeprecated": false,
4262
+ "deprecationReason": null
4263
+ },
4264
+ {
4265
+ "name": "services",
4266
+ "description": null,
4267
+ "args": [],
4268
+ "type": {
4269
+ "kind": "NON_NULL",
4270
+ "name": null,
4271
+ "ofType": {
4272
+ "kind": "LIST",
4273
+ "name": null,
4274
+ "ofType": {
4275
+ "kind": "NON_NULL",
4276
+ "name": null,
4277
+ "ofType": {
4278
+ "kind": "SCALAR",
4279
+ "name": "String",
4280
+ "ofType": null
4281
+ }
4282
+ }
4283
+ }
4284
+ },
4285
+ "isDeprecated": false,
4286
+ "deprecationReason": null
4287
+ },
4288
+ {
4289
+ "name": "updatedAt",
4290
+ "description": null,
4291
+ "args": [],
4292
+ "type": {
4293
+ "kind": "NON_NULL",
4294
+ "name": null,
4295
+ "ofType": {
4296
+ "kind": "SCALAR",
4297
+ "name": "DateTime",
4298
+ "ofType": null
4299
+ }
4300
+ },
4301
+ "isDeprecated": false,
4302
+ "deprecationReason": null
4303
+ }
4304
+ ],
4305
+ "inputFields": null,
4306
+ "interfaces": [],
4307
+ "enumValues": null,
4308
+ "possibleTypes": null
4309
+ },
4310
+ {
4311
+ "kind": "OBJECT",
4312
+ "name": "ProviderBillField",
4313
+ "description": null,
4314
+ "fields": [
4315
+ {
4316
+ "name": "createdAt",
4317
+ "description": null,
4318
+ "args": [],
4319
+ "type": {
4320
+ "kind": "NON_NULL",
4321
+ "name": null,
4322
+ "ofType": {
4323
+ "kind": "SCALAR",
4324
+ "name": "DateTime",
4325
+ "ofType": null
4326
+ }
4327
+ },
4328
+ "isDeprecated": false,
4329
+ "deprecationReason": null
4330
+ },
4331
+ {
4332
+ "name": "dataType",
4333
+ "description": null,
4334
+ "args": [],
4335
+ "type": {
4336
+ "kind": "NON_NULL",
4337
+ "name": null,
4338
+ "ofType": {
4339
+ "kind": "SCALAR",
4340
+ "name": "String",
4341
+ "ofType": null
4342
+ }
4343
+ },
4344
+ "isDeprecated": false,
4345
+ "deprecationReason": null
4346
+ },
4347
+ {
4348
+ "name": "formatHashString",
4349
+ "description": null,
4350
+ "args": [],
4351
+ "type": {
4352
+ "kind": "SCALAR",
4353
+ "name": "String",
4354
+ "ofType": null
4355
+ },
4356
+ "isDeprecated": false,
4357
+ "deprecationReason": null
4358
+ },
4359
+ {
4360
+ "name": "helpText",
4361
+ "description": null,
4362
+ "args": [],
4363
+ "type": {
4364
+ "kind": "SCALAR",
4365
+ "name": "String",
4366
+ "ofType": null
4367
+ },
4368
+ "isDeprecated": false,
4369
+ "deprecationReason": null
4370
+ },
4371
+ {
4372
+ "name": "id",
4373
+ "description": null,
4374
+ "args": [],
4375
+ "type": {
4376
+ "kind": "NON_NULL",
4377
+ "name": null,
4378
+ "ofType": {
4379
+ "kind": "SCALAR",
4380
+ "name": "ID",
4381
+ "ofType": null
4382
+ }
4383
+ },
4384
+ "isDeprecated": false,
4385
+ "deprecationReason": null
4386
+ },
4387
+ {
4388
+ "name": "label",
4389
+ "description": null,
4390
+ "args": [],
4391
+ "type": {
4392
+ "kind": "NON_NULL",
4393
+ "name": null,
4394
+ "ofType": {
4395
+ "kind": "SCALAR",
4396
+ "name": "String",
4397
+ "ofType": null
4398
+ }
4399
+ },
4400
+ "isDeprecated": false,
4401
+ "deprecationReason": null
4402
+ },
4403
+ {
4404
+ "name": "name",
4405
+ "description": null,
4406
+ "args": [],
4407
+ "type": {
4408
+ "kind": "NON_NULL",
4409
+ "name": null,
4410
+ "ofType": {
4411
+ "kind": "SCALAR",
4412
+ "name": "String",
4413
+ "ofType": null
4414
+ }
4415
+ },
4416
+ "isDeprecated": false,
4417
+ "deprecationReason": null
4418
+ },
4419
+ {
4420
+ "name": "placeholder",
4421
+ "description": null,
4422
+ "args": [],
4423
+ "type": {
4424
+ "kind": "SCALAR",
4425
+ "name": "String",
4426
+ "ofType": null
4427
+ },
4428
+ "isDeprecated": false,
4429
+ "deprecationReason": null
4430
+ },
4431
+ {
4432
+ "name": "providerId",
4433
+ "description": null,
4434
+ "args": [],
4435
+ "type": {
4436
+ "kind": "NON_NULL",
4437
+ "name": null,
4438
+ "ofType": {
4439
+ "kind": "SCALAR",
4440
+ "name": "ID",
4441
+ "ofType": null
4442
+ }
4443
+ },
4444
+ "isDeprecated": false,
4445
+ "deprecationReason": null
4446
+ },
4447
+ {
4448
+ "name": "required",
4449
+ "description": null,
4450
+ "args": [],
4451
+ "type": {
4452
+ "kind": "NON_NULL",
4453
+ "name": null,
4454
+ "ofType": {
4455
+ "kind": "SCALAR",
4456
+ "name": "Boolean",
4457
+ "ofType": null
4458
+ }
4459
+ },
4460
+ "isDeprecated": false,
4461
+ "deprecationReason": null
4462
+ },
4463
+ {
4464
+ "name": "requiredResponseLength",
4465
+ "description": null,
4466
+ "args": [],
4467
+ "type": {
4468
+ "kind": "SCALAR",
4469
+ "name": "Int",
4470
+ "ofType": null
4471
+ },
4472
+ "isDeprecated": false,
4473
+ "deprecationReason": null
4474
+ },
4475
+ {
4476
+ "name": "updatedAt",
4477
+ "description": null,
4478
+ "args": [],
4479
+ "type": {
4480
+ "kind": "NON_NULL",
4481
+ "name": null,
4482
+ "ofType": {
4483
+ "kind": "SCALAR",
4484
+ "name": "DateTime",
4485
+ "ofType": null
4486
+ }
4487
+ },
4488
+ "isDeprecated": false,
4489
+ "deprecationReason": null
4490
+ }
4491
+ ],
4492
+ "inputFields": null,
4493
+ "interfaces": [],
4494
+ "enumValues": null,
4495
+ "possibleTypes": null
4496
+ },
4497
+ {
4498
+ "kind": "OBJECT",
4499
+ "name": "Query",
4500
+ "description": null,
4501
+ "fields": [
4502
+ {
4503
+ "name": "CalculateSavingsEstimate",
4504
+ "description": null,
4505
+ "args": [],
4506
+ "type": {
4507
+ "kind": "NON_NULL",
4508
+ "name": null,
4509
+ "ofType": {
4510
+ "kind": "OBJECT",
4511
+ "name": "SavingsEstimate",
4512
+ "ofType": null
4513
+ }
4514
+ },
4515
+ "isDeprecated": false,
4516
+ "deprecationReason": null
4517
+ },
4518
+ {
4519
+ "name": "FindBill",
4520
+ "description": null,
4521
+ "args": [
4522
+ {
4523
+ "name": "id",
4524
+ "description": null,
4525
+ "type": {
4526
+ "kind": "NON_NULL",
4527
+ "name": null,
4528
+ "ofType": {
4529
+ "kind": "SCALAR",
4530
+ "name": "ID",
4531
+ "ofType": null
4532
+ }
4533
+ },
4534
+ "defaultValue": null
4535
+ }
4536
+ ],
4537
+ "type": {
4538
+ "kind": "OBJECT",
4539
+ "name": "Bill",
4540
+ "ofType": null
4541
+ },
4542
+ "isDeprecated": false,
4543
+ "deprecationReason": null
4544
+ },
4545
+ {
4546
+ "name": "FindCurrentPartner",
4547
+ "description": null,
4548
+ "args": [],
4549
+ "type": {
4550
+ "kind": "NON_NULL",
4551
+ "name": null,
4552
+ "ofType": {
4553
+ "kind": "OBJECT",
4554
+ "name": "Partner",
4555
+ "ofType": null
4556
+ }
4557
+ },
4558
+ "isDeprecated": false,
4559
+ "deprecationReason": null
4560
+ },
4561
+ {
4562
+ "name": "FindCustomer",
4563
+ "description": null,
4564
+ "args": [
4565
+ {
4566
+ "name": "id",
4567
+ "description": null,
4568
+ "type": {
4569
+ "kind": "NON_NULL",
4570
+ "name": null,
4571
+ "ofType": {
4572
+ "kind": "SCALAR",
4573
+ "name": "ID",
4574
+ "ofType": null
4575
+ }
4576
+ },
4577
+ "defaultValue": null
4578
+ }
4579
+ ],
4580
+ "type": {
4581
+ "kind": "OBJECT",
4582
+ "name": "Customer",
4583
+ "ofType": null
4584
+ },
4585
+ "isDeprecated": false,
4586
+ "deprecationReason": null
4587
+ },
4588
+ {
4589
+ "name": "FindInformationRequest",
4590
+ "description": null,
4591
+ "args": [
4592
+ {
4593
+ "name": "id",
4594
+ "description": null,
4595
+ "type": {
4596
+ "kind": "NON_NULL",
4597
+ "name": null,
4598
+ "ofType": {
4599
+ "kind": "SCALAR",
4600
+ "name": "ID",
4601
+ "ofType": null
4602
+ }
4603
+ },
4604
+ "defaultValue": null
4605
+ }
4606
+ ],
4607
+ "type": {
4608
+ "kind": "OBJECT",
4609
+ "name": "InformationRequest",
4610
+ "ofType": null
4611
+ },
4612
+ "isDeprecated": false,
4613
+ "deprecationReason": null
4614
+ },
4615
+ {
4616
+ "name": "FindOffer",
4617
+ "description": null,
4618
+ "args": [
4619
+ {
4620
+ "name": "id",
4621
+ "description": null,
4622
+ "type": {
4623
+ "kind": "NON_NULL",
4624
+ "name": null,
4625
+ "ofType": {
4626
+ "kind": "SCALAR",
4627
+ "name": "ID",
4628
+ "ofType": null
4629
+ }
4630
+ },
4631
+ "defaultValue": null
4632
+ }
4633
+ ],
4634
+ "type": {
4635
+ "kind": "OBJECT",
4636
+ "name": "Offer",
4637
+ "ofType": null
4638
+ },
4639
+ "isDeprecated": false,
4640
+ "deprecationReason": null
4641
+ },
4642
+ {
4643
+ "name": "FindProvider",
4644
+ "description": null,
4645
+ "args": [
4646
+ {
4647
+ "name": "id",
4648
+ "description": null,
4649
+ "type": {
4650
+ "kind": "NON_NULL",
4651
+ "name": null,
4652
+ "ofType": {
4653
+ "kind": "SCALAR",
4654
+ "name": "ID",
4655
+ "ofType": null
4656
+ }
4657
+ },
4658
+ "defaultValue": null
4659
+ }
4660
+ ],
4661
+ "type": {
4662
+ "kind": "OBJECT",
4663
+ "name": "Provider",
4664
+ "ofType": null
4665
+ },
4666
+ "isDeprecated": false,
4667
+ "deprecationReason": null
4668
+ },
4669
+ {
4670
+ "name": "ListBills",
4671
+ "description": null,
4672
+ "args": [
4673
+ {
4674
+ "name": "sortBy",
4675
+ "description": null,
4676
+ "type": {
4677
+ "kind": "SCALAR",
4678
+ "name": "String",
4679
+ "ofType": null
4680
+ },
4681
+ "defaultValue": "\"created_at\""
4682
+ },
4683
+ {
4684
+ "name": "sortDirection",
4685
+ "description": null,
4686
+ "type": {
4687
+ "kind": "SCALAR",
4688
+ "name": "String",
4689
+ "ofType": null
4690
+ },
4691
+ "defaultValue": "\"desc\""
4692
+ },
4693
+ {
4694
+ "name": "limit",
4695
+ "description": null,
4696
+ "type": {
4697
+ "kind": "SCALAR",
4698
+ "name": "Int",
4699
+ "ofType": null
4700
+ },
4701
+ "defaultValue": "25"
4702
+ },
4703
+ {
4704
+ "name": "offset",
4705
+ "description": null,
4706
+ "type": {
4707
+ "kind": "SCALAR",
4708
+ "name": "Int",
4709
+ "ofType": null
4710
+ },
4711
+ "defaultValue": "0"
4712
+ },
4713
+ {
4714
+ "name": "customerId",
4715
+ "description": null,
4716
+ "type": {
4717
+ "kind": "SCALAR",
4718
+ "name": "ID",
4719
+ "ofType": null
4720
+ },
4721
+ "defaultValue": null
4722
+ },
4723
+ {
4724
+ "name": "after",
4725
+ "description": "Returns the elements in the list that come after the specified cursor.",
4726
+ "type": {
4727
+ "kind": "SCALAR",
4728
+ "name": "String",
4729
+ "ofType": null
4730
+ },
4731
+ "defaultValue": null
4732
+ },
4733
+ {
4734
+ "name": "before",
4735
+ "description": "Returns the elements in the list that come before the specified cursor.",
4736
+ "type": {
4737
+ "kind": "SCALAR",
4738
+ "name": "String",
4739
+ "ofType": null
4740
+ },
4741
+ "defaultValue": null
4742
+ },
4743
+ {
4744
+ "name": "first",
4745
+ "description": "Returns the first _n_ elements from the list.",
4746
+ "type": {
4747
+ "kind": "SCALAR",
4748
+ "name": "Int",
4749
+ "ofType": null
4750
+ },
4751
+ "defaultValue": null
4752
+ },
4753
+ {
4754
+ "name": "last",
4755
+ "description": "Returns the last _n_ elements from the list.",
4756
+ "type": {
4757
+ "kind": "SCALAR",
4758
+ "name": "Int",
4759
+ "ofType": null
4760
+ },
4761
+ "defaultValue": null
4762
+ }
4763
+ ],
4764
+ "type": {
4765
+ "kind": "NON_NULL",
4766
+ "name": null,
4767
+ "ofType": {
4768
+ "kind": "OBJECT",
4769
+ "name": "BillConnection",
4770
+ "ofType": null
4771
+ }
4772
+ },
4773
+ "isDeprecated": false,
4774
+ "deprecationReason": null
4775
+ },
4776
+ {
4777
+ "name": "ListCustomers",
4778
+ "description": null,
4779
+ "args": [
4780
+ {
4781
+ "name": "sortBy",
4782
+ "description": null,
4783
+ "type": {
4784
+ "kind": "SCALAR",
4785
+ "name": "String",
4786
+ "ofType": null
4787
+ },
4788
+ "defaultValue": null
4789
+ },
4790
+ {
4791
+ "name": "sortDirection",
4792
+ "description": null,
4793
+ "type": {
4794
+ "kind": "SCALAR",
4795
+ "name": "String",
4796
+ "ofType": null
4797
+ },
4798
+ "defaultValue": null
4799
+ },
4800
+ {
4801
+ "name": "limit",
4802
+ "description": null,
4803
+ "type": {
4804
+ "kind": "SCALAR",
4805
+ "name": "Int",
4806
+ "ofType": null
4807
+ },
4808
+ "defaultValue": null
4809
+ },
4810
+ {
4811
+ "name": "offset",
4812
+ "description": null,
4813
+ "type": {
4814
+ "kind": "SCALAR",
4815
+ "name": "Int",
4816
+ "ofType": null
4817
+ },
4818
+ "defaultValue": null
4819
+ },
4820
+ {
4821
+ "name": "after",
4822
+ "description": "Returns the elements in the list that come after the specified cursor.",
4823
+ "type": {
4824
+ "kind": "SCALAR",
4825
+ "name": "String",
4826
+ "ofType": null
4827
+ },
4828
+ "defaultValue": null
4829
+ },
4830
+ {
4831
+ "name": "before",
4832
+ "description": "Returns the elements in the list that come before the specified cursor.",
4833
+ "type": {
4834
+ "kind": "SCALAR",
4835
+ "name": "String",
4836
+ "ofType": null
4837
+ },
4838
+ "defaultValue": null
4839
+ },
4840
+ {
4841
+ "name": "first",
4842
+ "description": "Returns the first _n_ elements from the list.",
4843
+ "type": {
4844
+ "kind": "SCALAR",
4845
+ "name": "Int",
4846
+ "ofType": null
4847
+ },
4848
+ "defaultValue": null
4849
+ },
4850
+ {
4851
+ "name": "last",
4852
+ "description": "Returns the last _n_ elements from the list.",
4853
+ "type": {
4854
+ "kind": "SCALAR",
4855
+ "name": "Int",
4856
+ "ofType": null
4857
+ },
4858
+ "defaultValue": null
4859
+ }
4860
+ ],
4861
+ "type": {
4862
+ "kind": "NON_NULL",
4863
+ "name": null,
4864
+ "ofType": {
4865
+ "kind": "OBJECT",
4866
+ "name": "CustomerConnection",
4867
+ "ofType": null
4868
+ }
4869
+ },
4870
+ "isDeprecated": false,
4871
+ "deprecationReason": null
4872
+ },
4873
+ {
4874
+ "name": "ListInformationRequests",
4875
+ "description": null,
4876
+ "args": [
4877
+ {
4878
+ "name": "sortBy",
4879
+ "description": null,
4880
+ "type": {
4881
+ "kind": "SCALAR",
4882
+ "name": "String",
4883
+ "ofType": null
4884
+ },
4885
+ "defaultValue": "\"created_at\""
4886
+ },
4887
+ {
4888
+ "name": "sortDirection",
4889
+ "description": null,
4890
+ "type": {
4891
+ "kind": "SCALAR",
4892
+ "name": "String",
4893
+ "ofType": null
4894
+ },
4895
+ "defaultValue": "\"desc\""
4896
+ },
4897
+ {
4898
+ "name": "limit",
4899
+ "description": null,
4900
+ "type": {
4901
+ "kind": "SCALAR",
4902
+ "name": "Int",
4903
+ "ofType": null
4904
+ },
4905
+ "defaultValue": "25"
4906
+ },
4907
+ {
4908
+ "name": "offset",
4909
+ "description": null,
4910
+ "type": {
4911
+ "kind": "SCALAR",
4912
+ "name": "Int",
4913
+ "ofType": null
4914
+ },
4915
+ "defaultValue": "0"
4916
+ },
4917
+ {
4918
+ "name": "customerId",
4919
+ "description": null,
4920
+ "type": {
4921
+ "kind": "SCALAR",
4922
+ "name": "ID",
4923
+ "ofType": null
4924
+ },
4925
+ "defaultValue": null
4926
+ },
4927
+ {
4928
+ "name": "after",
4929
+ "description": "Returns the elements in the list that come after the specified cursor.",
4930
+ "type": {
4931
+ "kind": "SCALAR",
4932
+ "name": "String",
4933
+ "ofType": null
4934
+ },
4935
+ "defaultValue": null
4936
+ },
4937
+ {
4938
+ "name": "before",
4939
+ "description": "Returns the elements in the list that come before the specified cursor.",
4940
+ "type": {
4941
+ "kind": "SCALAR",
4942
+ "name": "String",
4943
+ "ofType": null
4944
+ },
4945
+ "defaultValue": null
4946
+ },
4947
+ {
4948
+ "name": "first",
4949
+ "description": "Returns the first _n_ elements from the list.",
4950
+ "type": {
4951
+ "kind": "SCALAR",
4952
+ "name": "Int",
4953
+ "ofType": null
4954
+ },
4955
+ "defaultValue": null
4956
+ },
4957
+ {
4958
+ "name": "last",
4959
+ "description": "Returns the last _n_ elements from the list.",
4960
+ "type": {
4961
+ "kind": "SCALAR",
4962
+ "name": "Int",
4963
+ "ofType": null
4964
+ },
4965
+ "defaultValue": null
4966
+ }
4967
+ ],
4968
+ "type": {
4969
+ "kind": "NON_NULL",
4970
+ "name": null,
4971
+ "ofType": {
4972
+ "kind": "OBJECT",
4973
+ "name": "InformationRequestConnection",
4974
+ "ofType": null
4975
+ }
4976
+ },
4977
+ "isDeprecated": false,
4978
+ "deprecationReason": null
4979
+ },
4980
+ {
4981
+ "name": "ListOffers",
4982
+ "description": null,
4983
+ "args": [
4984
+ {
4985
+ "name": "status",
4986
+ "description": null,
4987
+ "type": {
4988
+ "kind": "SCALAR",
4989
+ "name": "String",
4990
+ "ofType": null
4991
+ },
4992
+ "defaultValue": null
4993
+ },
4994
+ {
4995
+ "name": "customerId",
4996
+ "description": null,
4997
+ "type": {
4998
+ "kind": "SCALAR",
4999
+ "name": "ID",
5000
+ "ofType": null
5001
+ },
5002
+ "defaultValue": null
5003
+ },
5004
+ {
5005
+ "name": "billId",
5006
+ "description": null,
5007
+ "type": {
5008
+ "kind": "SCALAR",
5009
+ "name": "ID",
4032
5010
  "ofType": null
4033
5011
  },
4034
5012
  "defaultValue": null
@@ -4093,21 +5071,420 @@
4093
5071
  },
4094
5072
  "defaultValue": null
4095
5073
  }
4096
- ],
5074
+ ],
5075
+ "type": {
5076
+ "kind": "NON_NULL",
5077
+ "name": null,
5078
+ "ofType": {
5079
+ "kind": "OBJECT",
5080
+ "name": "OfferConnection",
5081
+ "ofType": null
5082
+ }
5083
+ },
5084
+ "isDeprecated": false,
5085
+ "deprecationReason": null
5086
+ },
5087
+ {
5088
+ "name": "ListProviders",
5089
+ "description": null,
5090
+ "args": [],
5091
+ "type": {
5092
+ "kind": "NON_NULL",
5093
+ "name": null,
5094
+ "ofType": {
5095
+ "kind": "LIST",
5096
+ "name": null,
5097
+ "ofType": {
5098
+ "kind": "NON_NULL",
5099
+ "name": null,
5100
+ "ofType": {
5101
+ "kind": "OBJECT",
5102
+ "name": "Provider",
5103
+ "ofType": null
5104
+ }
5105
+ }
5106
+ }
5107
+ },
5108
+ "isDeprecated": false,
5109
+ "deprecationReason": null
5110
+ },
5111
+ {
5112
+ "name": "SandboxListNegotiationsForBill",
5113
+ "description": null,
5114
+ "args": [
5115
+ {
5116
+ "name": "billId",
5117
+ "description": "",
5118
+ "type": {
5119
+ "kind": "NON_NULL",
5120
+ "name": null,
5121
+ "ofType": {
5122
+ "kind": "SCALAR",
5123
+ "name": "ID",
5124
+ "ofType": null
5125
+ }
5126
+ },
5127
+ "defaultValue": null
5128
+ },
5129
+ {
5130
+ "name": "after",
5131
+ "description": "Returns the elements in the list that come after the specified cursor.",
5132
+ "type": {
5133
+ "kind": "SCALAR",
5134
+ "name": "String",
5135
+ "ofType": null
5136
+ },
5137
+ "defaultValue": null
5138
+ },
5139
+ {
5140
+ "name": "before",
5141
+ "description": "Returns the elements in the list that come before the specified cursor.",
5142
+ "type": {
5143
+ "kind": "SCALAR",
5144
+ "name": "String",
5145
+ "ofType": null
5146
+ },
5147
+ "defaultValue": null
5148
+ },
5149
+ {
5150
+ "name": "first",
5151
+ "description": "Returns the first _n_ elements from the list.",
5152
+ "type": {
5153
+ "kind": "SCALAR",
5154
+ "name": "Int",
5155
+ "ofType": null
5156
+ },
5157
+ "defaultValue": null
5158
+ },
5159
+ {
5160
+ "name": "last",
5161
+ "description": "Returns the last _n_ elements from the list.",
5162
+ "type": {
5163
+ "kind": "SCALAR",
5164
+ "name": "Int",
5165
+ "ofType": null
5166
+ },
5167
+ "defaultValue": null
5168
+ }
5169
+ ],
5170
+ "type": {
5171
+ "kind": "NON_NULL",
5172
+ "name": null,
5173
+ "ofType": {
5174
+ "kind": "OBJECT",
5175
+ "name": "NegotiationConnection",
5176
+ "ofType": null
5177
+ }
5178
+ },
5179
+ "isDeprecated": false,
5180
+ "deprecationReason": null
5181
+ }
5182
+ ],
5183
+ "inputFields": null,
5184
+ "interfaces": [],
5185
+ "enumValues": null,
5186
+ "possibleTypes": null
5187
+ },
5188
+ {
5189
+ "kind": "INPUT_OBJECT",
5190
+ "name": "RejectOfferInput",
5191
+ "description": "Autogenerated input type of RejectOffer",
5192
+ "fields": null,
5193
+ "inputFields": [
5194
+ {
5195
+ "name": "id",
5196
+ "description": null,
5197
+ "type": {
5198
+ "kind": "NON_NULL",
5199
+ "name": null,
5200
+ "ofType": {
5201
+ "kind": "SCALAR",
5202
+ "name": "ID",
5203
+ "ofType": null
5204
+ }
5205
+ },
5206
+ "defaultValue": null
5207
+ },
5208
+ {
5209
+ "name": "clientMutationId",
5210
+ "description": "A unique identifier for the client performing the mutation.",
5211
+ "type": {
5212
+ "kind": "SCALAR",
5213
+ "name": "String",
5214
+ "ofType": null
5215
+ },
5216
+ "defaultValue": null
5217
+ }
5218
+ ],
5219
+ "interfaces": null,
5220
+ "enumValues": null,
5221
+ "possibleTypes": null
5222
+ },
5223
+ {
5224
+ "kind": "OBJECT",
5225
+ "name": "RejectOfferPayload",
5226
+ "description": "Autogenerated return type of RejectOffer",
5227
+ "fields": [
5228
+ {
5229
+ "name": "clientMutationId",
5230
+ "description": "A unique identifier for the client performing the mutation.",
5231
+ "args": [],
5232
+ "type": {
5233
+ "kind": "SCALAR",
5234
+ "name": "String",
5235
+ "ofType": null
5236
+ },
5237
+ "isDeprecated": false,
5238
+ "deprecationReason": null
5239
+ },
5240
+ {
5241
+ "name": "errors",
5242
+ "description": null,
5243
+ "args": [],
5244
+ "type": {
5245
+ "kind": "NON_NULL",
5246
+ "name": null,
5247
+ "ofType": {
5248
+ "kind": "LIST",
5249
+ "name": null,
5250
+ "ofType": {
5251
+ "kind": "NON_NULL",
5252
+ "name": null,
5253
+ "ofType": {
5254
+ "kind": "SCALAR",
5255
+ "name": "String",
5256
+ "ofType": null
5257
+ }
5258
+ }
5259
+ }
5260
+ },
5261
+ "isDeprecated": false,
5262
+ "deprecationReason": null
5263
+ },
5264
+ {
5265
+ "name": "offer",
5266
+ "description": null,
5267
+ "args": [],
5268
+ "type": {
5269
+ "kind": "OBJECT",
5270
+ "name": "Offer",
5271
+ "ofType": null
5272
+ },
5273
+ "isDeprecated": false,
5274
+ "deprecationReason": null
5275
+ },
5276
+ {
5277
+ "name": "success",
5278
+ "description": null,
5279
+ "args": [],
5280
+ "type": {
5281
+ "kind": "NON_NULL",
5282
+ "name": null,
5283
+ "ofType": {
5284
+ "kind": "SCALAR",
5285
+ "name": "Boolean",
5286
+ "ofType": null
5287
+ }
5288
+ },
5289
+ "isDeprecated": false,
5290
+ "deprecationReason": null
5291
+ }
5292
+ ],
5293
+ "inputFields": null,
5294
+ "interfaces": [],
5295
+ "enumValues": null,
5296
+ "possibleTypes": null
5297
+ },
5298
+ {
5299
+ "kind": "INPUT_OBJECT",
5300
+ "name": "RenegotiateBillInput",
5301
+ "description": "Autogenerated input type of RenegotiateBill",
5302
+ "fields": null,
5303
+ "inputFields": [
5304
+ {
5305
+ "name": "id",
5306
+ "description": "Id of the bill that should be renegotiated",
5307
+ "type": {
5308
+ "kind": "NON_NULL",
5309
+ "name": null,
5310
+ "ofType": {
5311
+ "kind": "SCALAR",
5312
+ "name": "ID",
5313
+ "ofType": null
5314
+ }
5315
+ },
5316
+ "defaultValue": null
5317
+ },
5318
+ {
5319
+ "name": "clientMutationId",
5320
+ "description": "A unique identifier for the client performing the mutation.",
5321
+ "type": {
5322
+ "kind": "SCALAR",
5323
+ "name": "String",
5324
+ "ofType": null
5325
+ },
5326
+ "defaultValue": null
5327
+ }
5328
+ ],
5329
+ "interfaces": null,
5330
+ "enumValues": null,
5331
+ "possibleTypes": null
5332
+ },
5333
+ {
5334
+ "kind": "OBJECT",
5335
+ "name": "RenegotiateBillPayload",
5336
+ "description": "Autogenerated return type of RenegotiateBill",
5337
+ "fields": [
5338
+ {
5339
+ "name": "bill",
5340
+ "description": null,
5341
+ "args": [],
5342
+ "type": {
5343
+ "kind": "OBJECT",
5344
+ "name": "Bill",
5345
+ "ofType": null
5346
+ },
5347
+ "isDeprecated": false,
5348
+ "deprecationReason": null
5349
+ },
5350
+ {
5351
+ "name": "clientMutationId",
5352
+ "description": "A unique identifier for the client performing the mutation.",
5353
+ "args": [],
5354
+ "type": {
5355
+ "kind": "SCALAR",
5356
+ "name": "String",
5357
+ "ofType": null
5358
+ },
5359
+ "isDeprecated": false,
5360
+ "deprecationReason": null
5361
+ },
5362
+ {
5363
+ "name": "errors",
5364
+ "description": null,
5365
+ "args": [],
5366
+ "type": {
5367
+ "kind": "NON_NULL",
5368
+ "name": null,
5369
+ "ofType": {
5370
+ "kind": "LIST",
5371
+ "name": null,
5372
+ "ofType": {
5373
+ "kind": "NON_NULL",
5374
+ "name": null,
5375
+ "ofType": {
5376
+ "kind": "SCALAR",
5377
+ "name": "String",
5378
+ "ofType": null
5379
+ }
5380
+ }
5381
+ }
5382
+ },
5383
+ "isDeprecated": false,
5384
+ "deprecationReason": null
5385
+ },
5386
+ {
5387
+ "name": "success",
5388
+ "description": null,
5389
+ "args": [],
5390
+ "type": {
5391
+ "kind": "NON_NULL",
5392
+ "name": null,
5393
+ "ofType": {
5394
+ "kind": "SCALAR",
5395
+ "name": "Boolean",
5396
+ "ofType": null
5397
+ }
5398
+ },
5399
+ "isDeprecated": false,
5400
+ "deprecationReason": null
5401
+ }
5402
+ ],
5403
+ "inputFields": null,
5404
+ "interfaces": [],
5405
+ "enumValues": null,
5406
+ "possibleTypes": null
5407
+ },
5408
+ {
5409
+ "kind": "INPUT_OBJECT",
5410
+ "name": "RespondToInformationRequestInput",
5411
+ "description": "Autogenerated input type of RespondToInformationRequest",
5412
+ "fields": null,
5413
+ "inputFields": [
5414
+ {
5415
+ "name": "id",
5416
+ "description": "Id of the information request",
5417
+ "type": {
5418
+ "kind": "NON_NULL",
5419
+ "name": null,
5420
+ "ofType": {
5421
+ "kind": "SCALAR",
5422
+ "name": "ID",
5423
+ "ofType": null
5424
+ }
5425
+ },
5426
+ "defaultValue": null
5427
+ },
5428
+ {
5429
+ "name": "informationRequest",
5430
+ "description": null,
5431
+ "type": {
5432
+ "kind": "NON_NULL",
5433
+ "name": null,
5434
+ "ofType": {
5435
+ "kind": "INPUT_OBJECT",
5436
+ "name": "InformationRequestAttributes",
5437
+ "ofType": null
5438
+ }
5439
+ },
5440
+ "defaultValue": null
5441
+ },
5442
+ {
5443
+ "name": "clientMutationId",
5444
+ "description": "A unique identifier for the client performing the mutation.",
5445
+ "type": {
5446
+ "kind": "SCALAR",
5447
+ "name": "String",
5448
+ "ofType": null
5449
+ },
5450
+ "defaultValue": null
5451
+ }
5452
+ ],
5453
+ "interfaces": null,
5454
+ "enumValues": null,
5455
+ "possibleTypes": null
5456
+ },
5457
+ {
5458
+ "kind": "OBJECT",
5459
+ "name": "RespondToInformationRequestPayload",
5460
+ "description": "Autogenerated return type of RespondToInformationRequest",
5461
+ "fields": [
5462
+ {
5463
+ "name": "bill",
5464
+ "description": null,
5465
+ "args": [],
5466
+ "type": {
5467
+ "kind": "OBJECT",
5468
+ "name": "Bill",
5469
+ "ofType": null
5470
+ },
5471
+ "isDeprecated": false,
5472
+ "deprecationReason": null
5473
+ },
5474
+ {
5475
+ "name": "clientMutationId",
5476
+ "description": "A unique identifier for the client performing the mutation.",
5477
+ "args": [],
4097
5478
  "type": {
4098
- "kind": "NON_NULL",
4099
- "name": null,
4100
- "ofType": {
4101
- "kind": "OBJECT",
4102
- "name": "OfferConnection",
4103
- "ofType": null
4104
- }
5479
+ "kind": "SCALAR",
5480
+ "name": "String",
5481
+ "ofType": null
4105
5482
  },
4106
5483
  "isDeprecated": false,
4107
5484
  "deprecationReason": null
4108
5485
  },
4109
5486
  {
4110
- "name": "ListProviders",
5487
+ "name": "errors",
4111
5488
  "description": null,
4112
5489
  "args": [],
4113
5490
  "type": {
@@ -4120,8 +5497,8 @@
4120
5497
  "kind": "NON_NULL",
4121
5498
  "name": null,
4122
5499
  "ofType": {
4123
- "kind": "OBJECT",
4124
- "name": "Provider",
5500
+ "kind": "SCALAR",
5501
+ "name": "String",
4125
5502
  "ofType": null
4126
5503
  }
4127
5504
  }
@@ -4129,6 +5506,46 @@
4129
5506
  },
4130
5507
  "isDeprecated": false,
4131
5508
  "deprecationReason": null
5509
+ },
5510
+ {
5511
+ "name": "informationRequest",
5512
+ "description": null,
5513
+ "args": [],
5514
+ "type": {
5515
+ "kind": "OBJECT",
5516
+ "name": "InformationRequest",
5517
+ "ofType": null
5518
+ },
5519
+ "isDeprecated": false,
5520
+ "deprecationReason": null
5521
+ },
5522
+ {
5523
+ "name": "negotiation",
5524
+ "description": null,
5525
+ "args": [],
5526
+ "type": {
5527
+ "kind": "OBJECT",
5528
+ "name": "Negotiation",
5529
+ "ofType": null
5530
+ },
5531
+ "isDeprecated": false,
5532
+ "deprecationReason": null
5533
+ },
5534
+ {
5535
+ "name": "success",
5536
+ "description": null,
5537
+ "args": [],
5538
+ "type": {
5539
+ "kind": "NON_NULL",
5540
+ "name": null,
5541
+ "ofType": {
5542
+ "kind": "SCALAR",
5543
+ "name": "Boolean",
5544
+ "ofType": null
5545
+ }
5546
+ },
5547
+ "isDeprecated": false,
5548
+ "deprecationReason": null
4132
5549
  }
4133
5550
  ],
4134
5551
  "inputFields": null,
@@ -4138,13 +5555,13 @@
4138
5555
  },
4139
5556
  {
4140
5557
  "kind": "INPUT_OBJECT",
4141
- "name": "RejectOfferInput",
4142
- "description": "Autogenerated input type of RejectOffer",
5558
+ "name": "SandboxGenerateNegotiationInput",
5559
+ "description": "Autogenerated input type of SandboxGenerateNegotiation",
4143
5560
  "fields": null,
4144
5561
  "inputFields": [
4145
5562
  {
4146
- "name": "id",
4147
- "description": null,
5563
+ "name": "billId",
5564
+ "description": "",
4148
5565
  "type": {
4149
5566
  "kind": "NON_NULL",
4150
5567
  "name": null,
@@ -4173,9 +5590,21 @@
4173
5590
  },
4174
5591
  {
4175
5592
  "kind": "OBJECT",
4176
- "name": "RejectOfferPayload",
4177
- "description": "Autogenerated return type of RejectOffer",
5593
+ "name": "SandboxGenerateNegotiationPayload",
5594
+ "description": "Autogenerated return type of SandboxGenerateNegotiation",
4178
5595
  "fields": [
5596
+ {
5597
+ "name": "bill",
5598
+ "description": null,
5599
+ "args": [],
5600
+ "type": {
5601
+ "kind": "OBJECT",
5602
+ "name": "Bill",
5603
+ "ofType": null
5604
+ },
5605
+ "isDeprecated": false,
5606
+ "deprecationReason": null
5607
+ },
4179
5608
  {
4180
5609
  "name": "clientMutationId",
4181
5610
  "description": "A unique identifier for the client performing the mutation.",
@@ -4212,18 +5641,6 @@
4212
5641
  "isDeprecated": false,
4213
5642
  "deprecationReason": null
4214
5643
  },
4215
- {
4216
- "name": "offer",
4217
- "description": null,
4218
- "args": [],
4219
- "type": {
4220
- "kind": "OBJECT",
4221
- "name": "Offer",
4222
- "ofType": null
4223
- },
4224
- "isDeprecated": false,
4225
- "deprecationReason": null
4226
- },
4227
5644
  {
4228
5645
  "name": "success",
4229
5646
  "description": null,
@@ -4248,13 +5665,13 @@
4248
5665
  },
4249
5666
  {
4250
5667
  "kind": "INPUT_OBJECT",
4251
- "name": "RenegotiateBillInput",
4252
- "description": "Autogenerated input type of RenegotiateBill",
5668
+ "name": "SandboxResetBillInput",
5669
+ "description": "Autogenerated input type of SandboxResetBill",
4253
5670
  "fields": null,
4254
5671
  "inputFields": [
4255
5672
  {
4256
- "name": "id",
4257
- "description": "Id of the bill that should be renegotiated",
5673
+ "name": "billId",
5674
+ "description": "",
4258
5675
  "type": {
4259
5676
  "kind": "NON_NULL",
4260
5677
  "name": null,
@@ -4283,8 +5700,8 @@
4283
5700
  },
4284
5701
  {
4285
5702
  "kind": "OBJECT",
4286
- "name": "RenegotiateBillPayload",
4287
- "description": "Autogenerated return type of RenegotiateBill",
5703
+ "name": "SandboxResetBillPayload",
5704
+ "description": "Autogenerated return type of SandboxResetBill",
4288
5705
  "fields": [
4289
5706
  {
4290
5707
  "name": "bill",
@@ -4358,13 +5775,13 @@
4358
5775
  },
4359
5776
  {
4360
5777
  "kind": "INPUT_OBJECT",
4361
- "name": "RespondToInformationRequestInput",
4362
- "description": "Autogenerated input type of RespondToInformationRequest",
5778
+ "name": "SandboxTransitionNegotiationInput",
5779
+ "description": "Autogenerated input type of SandboxTransitionNegotiation",
4363
5780
  "fields": null,
4364
5781
  "inputFields": [
4365
5782
  {
4366
- "name": "id",
4367
- "description": "Id of the information request",
5783
+ "name": "negId",
5784
+ "description": "Id of the negotiation that will transition",
4368
5785
  "type": {
4369
5786
  "kind": "NON_NULL",
4370
5787
  "name": null,
@@ -4377,14 +5794,14 @@
4377
5794
  "defaultValue": null
4378
5795
  },
4379
5796
  {
4380
- "name": "informationRequest",
5797
+ "name": "transition",
4381
5798
  "description": null,
4382
5799
  "type": {
4383
5800
  "kind": "NON_NULL",
4384
5801
  "name": null,
4385
5802
  "ofType": {
4386
- "kind": "INPUT_OBJECT",
4387
- "name": "InformationRequestAttributes",
5803
+ "kind": "SCALAR",
5804
+ "name": "String",
4388
5805
  "ofType": null
4389
5806
  }
4390
5807
  },
@@ -4407,21 +5824,9 @@
4407
5824
  },
4408
5825
  {
4409
5826
  "kind": "OBJECT",
4410
- "name": "RespondToInformationRequestPayload",
4411
- "description": "Autogenerated return type of RespondToInformationRequest",
5827
+ "name": "SandboxTransitionNegotiationPayload",
5828
+ "description": "Autogenerated return type of SandboxTransitionNegotiation",
4412
5829
  "fields": [
4413
- {
4414
- "name": "bill",
4415
- "description": null,
4416
- "args": [],
4417
- "type": {
4418
- "kind": "OBJECT",
4419
- "name": "Bill",
4420
- "ofType": null
4421
- },
4422
- "isDeprecated": false,
4423
- "deprecationReason": null
4424
- },
4425
5830
  {
4426
5831
  "name": "clientMutationId",
4427
5832
  "description": "A unique identifier for the client performing the mutation.",
@@ -4458,18 +5863,6 @@
4458
5863
  "isDeprecated": false,
4459
5864
  "deprecationReason": null
4460
5865
  },
4461
- {
4462
- "name": "informationRequest",
4463
- "description": null,
4464
- "args": [],
4465
- "type": {
4466
- "kind": "OBJECT",
4467
- "name": "InformationRequest",
4468
- "ofType": null
4469
- },
4470
- "isDeprecated": false,
4471
- "deprecationReason": null
4472
- },
4473
5866
  {
4474
5867
  "name": "negotiation",
4475
5868
  "description": null,
@@ -4770,6 +6163,130 @@
4770
6163
  "enumValues": null,
4771
6164
  "possibleTypes": null
4772
6165
  },
6166
+ {
6167
+ "kind": "INPUT_OBJECT",
6168
+ "name": "UpdateBillInput",
6169
+ "description": "Autogenerated input type of UpdateBill",
6170
+ "fields": null,
6171
+ "inputFields": [
6172
+ {
6173
+ "name": "billId",
6174
+ "description": null,
6175
+ "type": {
6176
+ "kind": "NON_NULL",
6177
+ "name": null,
6178
+ "ofType": {
6179
+ "kind": "SCALAR",
6180
+ "name": "ID",
6181
+ "ofType": null
6182
+ }
6183
+ },
6184
+ "defaultValue": null
6185
+ },
6186
+ {
6187
+ "name": "bill",
6188
+ "description": null,
6189
+ "type": {
6190
+ "kind": "NON_NULL",
6191
+ "name": null,
6192
+ "ofType": {
6193
+ "kind": "INPUT_OBJECT",
6194
+ "name": "BillAttributes",
6195
+ "ofType": null
6196
+ }
6197
+ },
6198
+ "defaultValue": null
6199
+ },
6200
+ {
6201
+ "name": "clientMutationId",
6202
+ "description": "A unique identifier for the client performing the mutation.",
6203
+ "type": {
6204
+ "kind": "SCALAR",
6205
+ "name": "String",
6206
+ "ofType": null
6207
+ },
6208
+ "defaultValue": null
6209
+ }
6210
+ ],
6211
+ "interfaces": null,
6212
+ "enumValues": null,
6213
+ "possibleTypes": null
6214
+ },
6215
+ {
6216
+ "kind": "OBJECT",
6217
+ "name": "UpdateBillPayload",
6218
+ "description": "Autogenerated return type of UpdateBill",
6219
+ "fields": [
6220
+ {
6221
+ "name": "bill",
6222
+ "description": null,
6223
+ "args": [],
6224
+ "type": {
6225
+ "kind": "OBJECT",
6226
+ "name": "Bill",
6227
+ "ofType": null
6228
+ },
6229
+ "isDeprecated": false,
6230
+ "deprecationReason": null
6231
+ },
6232
+ {
6233
+ "name": "clientMutationId",
6234
+ "description": "A unique identifier for the client performing the mutation.",
6235
+ "args": [],
6236
+ "type": {
6237
+ "kind": "SCALAR",
6238
+ "name": "String",
6239
+ "ofType": null
6240
+ },
6241
+ "isDeprecated": false,
6242
+ "deprecationReason": null
6243
+ },
6244
+ {
6245
+ "name": "errors",
6246
+ "description": null,
6247
+ "args": [],
6248
+ "type": {
6249
+ "kind": "NON_NULL",
6250
+ "name": null,
6251
+ "ofType": {
6252
+ "kind": "LIST",
6253
+ "name": null,
6254
+ "ofType": {
6255
+ "kind": "NON_NULL",
6256
+ "name": null,
6257
+ "ofType": {
6258
+ "kind": "SCALAR",
6259
+ "name": "String",
6260
+ "ofType": null
6261
+ }
6262
+ }
6263
+ }
6264
+ },
6265
+ "isDeprecated": false,
6266
+ "deprecationReason": null
6267
+ },
6268
+ {
6269
+ "name": "success",
6270
+ "description": null,
6271
+ "args": [],
6272
+ "type": {
6273
+ "kind": "NON_NULL",
6274
+ "name": null,
6275
+ "ofType": {
6276
+ "kind": "SCALAR",
6277
+ "name": "Boolean",
6278
+ "ofType": null
6279
+ }
6280
+ },
6281
+ "isDeprecated": false,
6282
+ "deprecationReason": null
6283
+ }
6284
+ ],
6285
+ "inputFields": null,
6286
+ "interfaces": [],
6287
+ "enumValues": null,
6288
+ "possibleTypes": null
6289
+ },
4773
6290
  {
4774
6291
  "kind": "INPUT_OBJECT",
4775
6292
  "name": "UpdateCustomerInput",