billfixers-partner 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcdd58bc96c5b5dc10a45b98ac41711551c37408924b4a893708d8c9a90e5fc9
4
- data.tar.gz: 3a372b539781ed326342a8e7ba0a02dfa98320fabf70d2e066b261a657c960ef
3
+ metadata.gz: d53a90d8b2d8baf0d1d69d6c76c7cb5050c68e83dc2a4a768aab05ce83127dd5
4
+ data.tar.gz: '0085f538e06226e2c05968d4d8f2994ffd3f14a3d985323a623dc723886884d9'
5
5
  SHA512:
6
- metadata.gz: 381f81260b220bf52c916c021e3fdbb27379a8b1ed251095d451e6cea4ba58c5d664ef43344e1ed98bd1b1880df0976b43403fc230b924cf47bc8e66317a2357
7
- data.tar.gz: ee5dc4794443830f81b5dfd29bc364b1400f0a7a9d616f75699977e89c6818b88157c24cbeb9fa3af15b9662c3dcc77d207bf63062dda6b39fc782de3257c701
6
+ metadata.gz: a365323e7fb244046c62424bc8cbc003552dc77ac5007cafedbc465ee0ddacb5be5d7b21dc556041d60934566c2703240c75e656a2d18ed337c76d201f421365
7
+ data.tar.gz: cc80f1cc5c56f5d84f65f205166c6626291472777503f7df79b1ae7f1094ea12f087c08264324e9db755df6151306d4f6222364cb26c20e8526e83f43c7841d7
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # Billfixers::Partner
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/billfixers/partner`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -22,15 +18,14 @@ Or install it yourself as:
22
18
 
23
19
  ## Usage
24
20
 
25
- TODO: Write usage instructions here
21
+ Please visit <https://partner.billfixers.com> to see our documentation.
26
22
 
27
- ## Development
23
+ <!-- ## Development
28
24
 
29
25
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
26
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). -->
34
28
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/billfixers-partner.
29
+ <!-- ## Contributing
36
30
 
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/billfixers-partner. -->
@@ -103,8 +103,9 @@ module Billfixers
103
103
  result.customer
104
104
  end
105
105
 
106
- def create_bill(params)
106
+ def create_bill(customer_id, params)
107
107
  response = @gql.query(CREATE_BILL_MUTATION, {
108
+ customer_id: customer_id,
108
109
  bill: camelize(params)
109
110
  })
110
111
 
@@ -133,11 +134,27 @@ module Billfixers
133
134
  response = @gql.query(REJECT_OFFER_MUTATION, { id: offer_id })
134
135
 
135
136
  result = response.data.reject_offer
137
+ # binding.pry
136
138
  raise Error, result.errors.join(' ') unless result.success
137
139
 
138
140
  result.offer
139
141
  end
140
142
 
143
+ def respond_to_information_request(information_request_id, params)
144
+ response = @gql.query(
145
+ RESPOND_TO_INFORMATION_REQUEST,
146
+ {
147
+ id: information_request_id,
148
+ information_request: camelize(params)
149
+ }
150
+ )
151
+
152
+ result = response.data.respond_to_information_request
153
+ raise Error, result.errors.join(' ') unless result.success
154
+
155
+ result.information_request
156
+ end
157
+
141
158
  private
142
159
 
143
160
  def camelize(hsh)
@@ -203,8 +203,8 @@ module Billfixers
203
203
  )
204
204
 
205
205
  CREATE_BILL_MUTATION = %(
206
- mutation($bill: BillAttributes!) {
207
- CreateBill(input: { bill: $bill }) {
206
+ mutation($customer_id: ID!, $bill: BillAttributes!) {
207
+ CreateBill(input: { customerId: $customer_id, bill: $bill }) {
208
208
  success
209
209
  errors
210
210
  bill {
@@ -245,5 +245,20 @@ module Billfixers
245
245
  }
246
246
  }
247
247
  )
248
+
249
+ RESPOND_TO_INFORMATION_REQUEST = %(
250
+ mutation($id: ID!, $ir: InformationRequestAttributes!) {
251
+ RespondToInformationRequest(input: {
252
+ id: $id,
253
+ informationRequest: $ir
254
+ }) {
255
+ success
256
+ errors
257
+ informationRequest {
258
+ #{INFORMATION_REQUEST_FRAGMENT}
259
+ }
260
+ }
261
+ }
262
+ )
248
263
  end
249
264
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Billfixers
2
4
  module Partner
3
- VERSION = '1.0.0'.freeze
5
+ VERSION = '1.1.0'
4
6
  end
5
7
  end
data/partner_schema.json CHANGED
@@ -52,7 +52,9 @@
52
52
  {
53
53
  "name": "clientMutationId",
54
54
  "description": "A unique identifier for the client performing the mutation.",
55
- "args": [],
55
+ "args": [
56
+
57
+ ],
56
58
  "type": {
57
59
  "kind": "SCALAR",
58
60
  "name": "String",
@@ -64,7 +66,9 @@
64
66
  {
65
67
  "name": "errors",
66
68
  "description": null,
67
- "args": [],
69
+ "args": [
70
+
71
+ ],
68
72
  "type": {
69
73
  "kind": "NON_NULL",
70
74
  "name": null,
@@ -88,7 +92,9 @@
88
92
  {
89
93
  "name": "offer",
90
94
  "description": null,
91
- "args": [],
95
+ "args": [
96
+
97
+ ],
92
98
  "type": {
93
99
  "kind": "OBJECT",
94
100
  "name": "Offer",
@@ -100,7 +106,9 @@
100
106
  {
101
107
  "name": "success",
102
108
  "description": null,
103
- "args": [],
109
+ "args": [
110
+
111
+ ],
104
112
  "type": {
105
113
  "kind": "NON_NULL",
106
114
  "name": null,
@@ -115,7 +123,9 @@
115
123
  }
116
124
  ],
117
125
  "inputFields": null,
118
- "interfaces": [],
126
+ "interfaces": [
127
+
128
+ ],
119
129
  "enumValues": null,
120
130
  "possibleTypes": null
121
131
  },
@@ -127,7 +137,9 @@
127
137
  {
128
138
  "name": "createdAt",
129
139
  "description": "The date the record was created",
130
- "args": [],
140
+ "args": [
141
+
142
+ ],
131
143
  "type": {
132
144
  "kind": "NON_NULL",
133
145
  "name": null,
@@ -143,7 +155,9 @@
143
155
  {
144
156
  "name": "customer",
145
157
  "description": null,
146
- "args": [],
158
+ "args": [
159
+
160
+ ],
147
161
  "type": {
148
162
  "kind": "NON_NULL",
149
163
  "name": null,
@@ -156,10 +170,30 @@
156
170
  "isDeprecated": false,
157
171
  "deprecationReason": null
158
172
  },
173
+ {
174
+ "name": "customerId",
175
+ "description": "Billfixer's alpha-numeric Customer ID",
176
+ "args": [
177
+
178
+ ],
179
+ "type": {
180
+ "kind": "NON_NULL",
181
+ "name": null,
182
+ "ofType": {
183
+ "kind": "SCALAR",
184
+ "name": "ID",
185
+ "ofType": null
186
+ }
187
+ },
188
+ "isDeprecated": false,
189
+ "deprecationReason": null
190
+ },
159
191
  {
160
192
  "name": "id",
161
193
  "description": "Alpha-numeric unique identifier",
162
- "args": [],
194
+ "args": [
195
+
196
+ ],
163
197
  "type": {
164
198
  "kind": "NON_NULL",
165
199
  "name": null,
@@ -175,7 +209,9 @@
175
209
  {
176
210
  "name": "items",
177
211
  "description": "The items on the bill",
178
- "args": [],
212
+ "args": [
213
+
214
+ ],
179
215
  "type": {
180
216
  "kind": "NON_NULL",
181
217
  "name": null,
@@ -199,7 +235,9 @@
199
235
  {
200
236
  "name": "offers",
201
237
  "description": null,
202
- "args": [],
238
+ "args": [
239
+
240
+ ],
203
241
  "type": {
204
242
  "kind": "NON_NULL",
205
243
  "name": null,
@@ -223,7 +261,9 @@
223
261
  {
224
262
  "name": "provider",
225
263
  "description": null,
226
- "args": [],
264
+ "args": [
265
+
266
+ ],
227
267
  "type": {
228
268
  "kind": "NON_NULL",
229
269
  "name": null,
@@ -239,7 +279,9 @@
239
279
  {
240
280
  "name": "providerId",
241
281
  "description": "Billfixer's alpha-numeric Provider ID",
242
- "args": [],
282
+ "args": [
283
+
284
+ ],
243
285
  "type": {
244
286
  "kind": "NON_NULL",
245
287
  "name": null,
@@ -255,7 +297,9 @@
255
297
  {
256
298
  "name": "status",
257
299
  "description": "Status of the bill",
258
- "args": [],
300
+ "args": [
301
+
302
+ ],
259
303
  "type": {
260
304
  "kind": "NON_NULL",
261
305
  "name": null,
@@ -271,7 +315,9 @@
271
315
  {
272
316
  "name": "title",
273
317
  "description": "Title of the bill",
274
- "args": [],
318
+ "args": [
319
+
320
+ ],
275
321
  "type": {
276
322
  "kind": "NON_NULL",
277
323
  "name": null,
@@ -287,7 +333,9 @@
287
333
  {
288
334
  "name": "totalSavings",
289
335
  "description": "The total value gained from negotiations",
290
- "args": [],
336
+ "args": [
337
+
338
+ ],
291
339
  "type": {
292
340
  "kind": "NON_NULL",
293
341
  "name": null,
@@ -303,7 +351,9 @@
303
351
  {
304
352
  "name": "updatedAt",
305
353
  "description": "The last time the record was updated",
306
- "args": [],
354
+ "args": [
355
+
356
+ ],
307
357
  "type": {
308
358
  "kind": "NON_NULL",
309
359
  "name": null,
@@ -318,7 +368,9 @@
318
368
  }
319
369
  ],
320
370
  "inputFields": null,
321
- "interfaces": [],
371
+ "interfaces": [
372
+
373
+ ],
322
374
  "enumValues": null,
323
375
  "possibleTypes": null
324
376
  },
@@ -401,16 +453,12 @@
401
453
  "defaultValue": null
402
454
  },
403
455
  {
404
- "name": "customer",
456
+ "name": "createdVia",
405
457
  "description": null,
406
458
  "type": {
407
- "kind": "NON_NULL",
408
- "name": null,
409
- "ofType": {
410
- "kind": "INPUT_OBJECT",
411
- "name": "CustomerAttributes",
412
- "ofType": null
413
- }
459
+ "kind": "SCALAR",
460
+ "name": "String",
461
+ "ofType": null
414
462
  },
415
463
  "defaultValue": null
416
464
  }
@@ -427,7 +475,9 @@
427
475
  {
428
476
  "name": "edges",
429
477
  "description": "A list of edges.",
430
- "args": [],
478
+ "args": [
479
+
480
+ ],
431
481
  "type": {
432
482
  "kind": "NON_NULL",
433
483
  "name": null,
@@ -451,7 +501,9 @@
451
501
  {
452
502
  "name": "nodes",
453
503
  "description": "A list of nodes.",
454
- "args": [],
504
+ "args": [
505
+
506
+ ],
455
507
  "type": {
456
508
  "kind": "NON_NULL",
457
509
  "name": null,
@@ -475,7 +527,9 @@
475
527
  {
476
528
  "name": "pageInfo",
477
529
  "description": "Information to aid in pagination.",
478
- "args": [],
530
+ "args": [
531
+
532
+ ],
479
533
  "type": {
480
534
  "kind": "NON_NULL",
481
535
  "name": null,
@@ -491,7 +545,9 @@
491
545
  {
492
546
  "name": "totalCount",
493
547
  "description": null,
494
- "args": [],
548
+ "args": [
549
+
550
+ ],
495
551
  "type": {
496
552
  "kind": "NON_NULL",
497
553
  "name": null,
@@ -507,7 +563,9 @@
507
563
  {
508
564
  "name": "totalSavings",
509
565
  "description": null,
510
- "args": [],
566
+ "args": [
567
+
568
+ ],
511
569
  "type": {
512
570
  "kind": "NON_NULL",
513
571
  "name": null,
@@ -522,7 +580,9 @@
522
580
  }
523
581
  ],
524
582
  "inputFields": null,
525
- "interfaces": [],
583
+ "interfaces": [
584
+
585
+ ],
526
586
  "enumValues": null,
527
587
  "possibleTypes": null
528
588
  },
@@ -534,7 +594,9 @@
534
594
  {
535
595
  "name": "cursor",
536
596
  "description": "A cursor for use in pagination.",
537
- "args": [],
597
+ "args": [
598
+
599
+ ],
538
600
  "type": {
539
601
  "kind": "NON_NULL",
540
602
  "name": null,
@@ -550,7 +612,9 @@
550
612
  {
551
613
  "name": "node",
552
614
  "description": "The item at the end of the edge.",
553
- "args": [],
615
+ "args": [
616
+
617
+ ],
554
618
  "type": {
555
619
  "kind": "OBJECT",
556
620
  "name": "Bill",
@@ -561,7 +625,9 @@
561
625
  }
562
626
  ],
563
627
  "inputFields": null,
564
- "interfaces": [],
628
+ "interfaces": [
629
+
630
+ ],
565
631
  "enumValues": null,
566
632
  "possibleTypes": null
567
633
  },
@@ -618,7 +684,9 @@
618
684
  {
619
685
  "name": "clientMutationId",
620
686
  "description": "A unique identifier for the client performing the mutation.",
621
- "args": [],
687
+ "args": [
688
+
689
+ ],
622
690
  "type": {
623
691
  "kind": "SCALAR",
624
692
  "name": "String",
@@ -630,7 +698,9 @@
630
698
  {
631
699
  "name": "success",
632
700
  "description": null,
633
- "args": [],
701
+ "args": [
702
+
703
+ ],
634
704
  "type": {
635
705
  "kind": "NON_NULL",
636
706
  "name": null,
@@ -645,7 +715,9 @@
645
715
  }
646
716
  ],
647
717
  "inputFields": null,
648
- "interfaces": [],
718
+ "interfaces": [
719
+
720
+ ],
649
721
  "enumValues": null,
650
722
  "possibleTypes": null
651
723
  },
@@ -655,6 +727,20 @@
655
727
  "description": "Autogenerated input type of CreateBill",
656
728
  "fields": null,
657
729
  "inputFields": [
730
+ {
731
+ "name": "customerId",
732
+ "description": null,
733
+ "type": {
734
+ "kind": "NON_NULL",
735
+ "name": null,
736
+ "ofType": {
737
+ "kind": "SCALAR",
738
+ "name": "ID",
739
+ "ofType": null
740
+ }
741
+ },
742
+ "defaultValue": null
743
+ },
658
744
  {
659
745
  "name": "bill",
660
746
  "description": null,
@@ -692,7 +778,9 @@
692
778
  {
693
779
  "name": "bill",
694
780
  "description": null,
695
- "args": [],
781
+ "args": [
782
+
783
+ ],
696
784
  "type": {
697
785
  "kind": "OBJECT",
698
786
  "name": "Bill",
@@ -704,7 +792,9 @@
704
792
  {
705
793
  "name": "clientMutationId",
706
794
  "description": "A unique identifier for the client performing the mutation.",
707
- "args": [],
795
+ "args": [
796
+
797
+ ],
708
798
  "type": {
709
799
  "kind": "SCALAR",
710
800
  "name": "String",
@@ -716,7 +806,9 @@
716
806
  {
717
807
  "name": "errors",
718
808
  "description": null,
719
- "args": [],
809
+ "args": [
810
+
811
+ ],
720
812
  "type": {
721
813
  "kind": "NON_NULL",
722
814
  "name": null,
@@ -740,7 +832,9 @@
740
832
  {
741
833
  "name": "success",
742
834
  "description": null,
743
- "args": [],
835
+ "args": [
836
+
837
+ ],
744
838
  "type": {
745
839
  "kind": "NON_NULL",
746
840
  "name": null,
@@ -755,7 +849,9 @@
755
849
  }
756
850
  ],
757
851
  "inputFields": null,
758
- "interfaces": [],
852
+ "interfaces": [
853
+
854
+ ],
759
855
  "enumValues": null,
760
856
  "possibleTypes": null
761
857
  },
@@ -802,7 +898,9 @@
802
898
  {
803
899
  "name": "clientMutationId",
804
900
  "description": "A unique identifier for the client performing the mutation.",
805
- "args": [],
901
+ "args": [
902
+
903
+ ],
806
904
  "type": {
807
905
  "kind": "SCALAR",
808
906
  "name": "String",
@@ -814,7 +912,9 @@
814
912
  {
815
913
  "name": "customer",
816
914
  "description": null,
817
- "args": [],
915
+ "args": [
916
+
917
+ ],
818
918
  "type": {
819
919
  "kind": "OBJECT",
820
920
  "name": "Customer",
@@ -826,7 +926,9 @@
826
926
  {
827
927
  "name": "errors",
828
928
  "description": null,
829
- "args": [],
929
+ "args": [
930
+
931
+ ],
830
932
  "type": {
831
933
  "kind": "NON_NULL",
832
934
  "name": null,
@@ -850,7 +952,9 @@
850
952
  {
851
953
  "name": "success",
852
954
  "description": null,
853
- "args": [],
955
+ "args": [
956
+
957
+ ],
854
958
  "type": {
855
959
  "kind": "NON_NULL",
856
960
  "name": null,
@@ -865,7 +969,9 @@
865
969
  }
866
970
  ],
867
971
  "inputFields": null,
868
- "interfaces": [],
972
+ "interfaces": [
973
+
974
+ ],
869
975
  "enumValues": null,
870
976
  "possibleTypes": null
871
977
  },
@@ -877,7 +983,9 @@
877
983
  {
878
984
  "name": "avatarUrl",
879
985
  "description": null,
880
- "args": [],
986
+ "args": [
987
+
988
+ ],
881
989
  "type": {
882
990
  "kind": "NON_NULL",
883
991
  "name": null,
@@ -893,7 +1001,9 @@
893
1001
  {
894
1002
  "name": "b2b",
895
1003
  "description": null,
896
- "args": [],
1004
+ "args": [
1005
+
1006
+ ],
897
1007
  "type": {
898
1008
  "kind": "NON_NULL",
899
1009
  "name": null,
@@ -966,7 +1076,9 @@
966
1076
  {
967
1077
  "name": "createdAt",
968
1078
  "description": null,
969
- "args": [],
1079
+ "args": [
1080
+
1081
+ ],
970
1082
  "type": {
971
1083
  "kind": "NON_NULL",
972
1084
  "name": null,
@@ -982,7 +1094,9 @@
982
1094
  {
983
1095
  "name": "email",
984
1096
  "description": null,
985
- "args": [],
1097
+ "args": [
1098
+
1099
+ ],
986
1100
  "type": {
987
1101
  "kind": "NON_NULL",
988
1102
  "name": null,
@@ -998,7 +1112,9 @@
998
1112
  {
999
1113
  "name": "firstName",
1000
1114
  "description": null,
1001
- "args": [],
1115
+ "args": [
1116
+
1117
+ ],
1002
1118
  "type": {
1003
1119
  "kind": "SCALAR",
1004
1120
  "name": "String",
@@ -1010,7 +1126,9 @@
1010
1126
  {
1011
1127
  "name": "id",
1012
1128
  "description": null,
1013
- "args": [],
1129
+ "args": [
1130
+
1131
+ ],
1014
1132
  "type": {
1015
1133
  "kind": "NON_NULL",
1016
1134
  "name": null,
@@ -1026,7 +1144,9 @@
1026
1144
  {
1027
1145
  "name": "lastName",
1028
1146
  "description": null,
1029
- "args": [],
1147
+ "args": [
1148
+
1149
+ ],
1030
1150
  "type": {
1031
1151
  "kind": "SCALAR",
1032
1152
  "name": "String",
@@ -1038,7 +1158,9 @@
1038
1158
  {
1039
1159
  "name": "name",
1040
1160
  "description": null,
1041
- "args": [],
1161
+ "args": [
1162
+
1163
+ ],
1042
1164
  "type": {
1043
1165
  "kind": "NON_NULL",
1044
1166
  "name": null,
@@ -1054,7 +1176,9 @@
1054
1176
  {
1055
1177
  "name": "phoneNumber",
1056
1178
  "description": null,
1057
- "args": [],
1179
+ "args": [
1180
+
1181
+ ],
1058
1182
  "type": {
1059
1183
  "kind": "SCALAR",
1060
1184
  "name": "String",
@@ -1066,7 +1190,9 @@
1066
1190
  {
1067
1191
  "name": "updatedAt",
1068
1192
  "description": null,
1069
- "args": [],
1193
+ "args": [
1194
+
1195
+ ],
1070
1196
  "type": {
1071
1197
  "kind": "NON_NULL",
1072
1198
  "name": null,
@@ -1081,7 +1207,9 @@
1081
1207
  }
1082
1208
  ],
1083
1209
  "inputFields": null,
1084
- "interfaces": [],
1210
+ "interfaces": [
1211
+
1212
+ ],
1085
1213
  "enumValues": null,
1086
1214
  "possibleTypes": null
1087
1215
  },
@@ -1184,7 +1312,9 @@
1184
1312
  {
1185
1313
  "name": "edges",
1186
1314
  "description": "A list of edges.",
1187
- "args": [],
1315
+ "args": [
1316
+
1317
+ ],
1188
1318
  "type": {
1189
1319
  "kind": "NON_NULL",
1190
1320
  "name": null,
@@ -1208,7 +1338,9 @@
1208
1338
  {
1209
1339
  "name": "nodes",
1210
1340
  "description": "A list of nodes.",
1211
- "args": [],
1341
+ "args": [
1342
+
1343
+ ],
1212
1344
  "type": {
1213
1345
  "kind": "NON_NULL",
1214
1346
  "name": null,
@@ -1232,7 +1364,9 @@
1232
1364
  {
1233
1365
  "name": "pageInfo",
1234
1366
  "description": "Information to aid in pagination.",
1235
- "args": [],
1367
+ "args": [
1368
+
1369
+ ],
1236
1370
  "type": {
1237
1371
  "kind": "NON_NULL",
1238
1372
  "name": null,
@@ -1248,7 +1382,9 @@
1248
1382
  {
1249
1383
  "name": "totalCount",
1250
1384
  "description": null,
1251
- "args": [],
1385
+ "args": [
1386
+
1387
+ ],
1252
1388
  "type": {
1253
1389
  "kind": "NON_NULL",
1254
1390
  "name": null,
@@ -1263,7 +1399,9 @@
1263
1399
  }
1264
1400
  ],
1265
1401
  "inputFields": null,
1266
- "interfaces": [],
1402
+ "interfaces": [
1403
+
1404
+ ],
1267
1405
  "enumValues": null,
1268
1406
  "possibleTypes": null
1269
1407
  },
@@ -1275,7 +1413,9 @@
1275
1413
  {
1276
1414
  "name": "cursor",
1277
1415
  "description": "A cursor for use in pagination.",
1278
- "args": [],
1416
+ "args": [
1417
+
1418
+ ],
1279
1419
  "type": {
1280
1420
  "kind": "NON_NULL",
1281
1421
  "name": null,
@@ -1291,7 +1431,9 @@
1291
1431
  {
1292
1432
  "name": "node",
1293
1433
  "description": "The item at the end of the edge.",
1294
- "args": [],
1434
+ "args": [
1435
+
1436
+ ],
1295
1437
  "type": {
1296
1438
  "kind": "OBJECT",
1297
1439
  "name": "Customer",
@@ -1302,7 +1444,9 @@
1302
1444
  }
1303
1445
  ],
1304
1446
  "inputFields": null,
1305
- "interfaces": [],
1447
+ "interfaces": [
1448
+
1449
+ ],
1306
1450
  "enumValues": null,
1307
1451
  "possibleTypes": null
1308
1452
  },
@@ -1324,7 +1468,9 @@
1324
1468
  {
1325
1469
  "name": "email",
1326
1470
  "description": null,
1327
- "args": [],
1471
+ "args": [
1472
+
1473
+ ],
1328
1474
  "type": {
1329
1475
  "kind": "NON_NULL",
1330
1476
  "name": null,
@@ -1340,7 +1486,9 @@
1340
1486
  {
1341
1487
  "name": "firstName",
1342
1488
  "description": null,
1343
- "args": [],
1489
+ "args": [
1490
+
1491
+ ],
1344
1492
  "type": {
1345
1493
  "kind": "NON_NULL",
1346
1494
  "name": null,
@@ -1356,7 +1504,9 @@
1356
1504
  {
1357
1505
  "name": "firstNameLastInitial",
1358
1506
  "description": null,
1359
- "args": [],
1507
+ "args": [
1508
+
1509
+ ],
1360
1510
  "type": {
1361
1511
  "kind": "NON_NULL",
1362
1512
  "name": null,
@@ -1372,7 +1522,9 @@
1372
1522
  {
1373
1523
  "name": "id",
1374
1524
  "description": null,
1375
- "args": [],
1525
+ "args": [
1526
+
1527
+ ],
1376
1528
  "type": {
1377
1529
  "kind": "NON_NULL",
1378
1530
  "name": null,
@@ -1388,7 +1540,9 @@
1388
1540
  {
1389
1541
  "name": "lastName",
1390
1542
  "description": null,
1391
- "args": [],
1543
+ "args": [
1544
+
1545
+ ],
1392
1546
  "type": {
1393
1547
  "kind": "NON_NULL",
1394
1548
  "name": null,
@@ -1404,7 +1558,9 @@
1404
1558
  {
1405
1559
  "name": "name",
1406
1560
  "description": null,
1407
- "args": [],
1561
+ "args": [
1562
+
1563
+ ],
1408
1564
  "type": {
1409
1565
  "kind": "NON_NULL",
1410
1566
  "name": null,
@@ -1420,7 +1576,9 @@
1420
1576
  {
1421
1577
  "name": "phoneNumber",
1422
1578
  "description": null,
1423
- "args": [],
1579
+ "args": [
1580
+
1581
+ ],
1424
1582
  "type": {
1425
1583
  "kind": "SCALAR",
1426
1584
  "name": "String",
@@ -1431,7 +1589,9 @@
1431
1589
  }
1432
1590
  ],
1433
1591
  "inputFields": null,
1434
- "interfaces": [],
1592
+ "interfaces": [
1593
+
1594
+ ],
1435
1595
  "enumValues": null,
1436
1596
  "possibleTypes": null
1437
1597
  },
@@ -1453,7 +1613,9 @@
1453
1613
  {
1454
1614
  "name": "grandeUrl",
1455
1615
  "description": null,
1456
- "args": [],
1616
+ "args": [
1617
+
1618
+ ],
1457
1619
  "type": {
1458
1620
  "kind": "NON_NULL",
1459
1621
  "name": null,
@@ -1469,7 +1631,9 @@
1469
1631
  {
1470
1632
  "name": "iconUrl",
1471
1633
  "description": null,
1472
- "args": [],
1634
+ "args": [
1635
+
1636
+ ],
1473
1637
  "type": {
1474
1638
  "kind": "NON_NULL",
1475
1639
  "name": null,
@@ -1485,7 +1649,9 @@
1485
1649
  {
1486
1650
  "name": "id",
1487
1651
  "description": null,
1488
- "args": [],
1652
+ "args": [
1653
+
1654
+ ],
1489
1655
  "type": {
1490
1656
  "kind": "SCALAR",
1491
1657
  "name": "ID",
@@ -1497,7 +1663,9 @@
1497
1663
  {
1498
1664
  "name": "imageProcessed",
1499
1665
  "description": null,
1500
- "args": [],
1666
+ "args": [
1667
+
1668
+ ],
1501
1669
  "type": {
1502
1670
  "kind": "NON_NULL",
1503
1671
  "name": null,
@@ -1513,7 +1681,9 @@
1513
1681
  {
1514
1682
  "name": "largeUrl",
1515
1683
  "description": null,
1516
- "args": [],
1684
+ "args": [
1685
+
1686
+ ],
1517
1687
  "type": {
1518
1688
  "kind": "NON_NULL",
1519
1689
  "name": null,
@@ -1529,7 +1699,9 @@
1529
1699
  {
1530
1700
  "name": "mediumUrl",
1531
1701
  "description": null,
1532
- "args": [],
1702
+ "args": [
1703
+
1704
+ ],
1533
1705
  "type": {
1534
1706
  "kind": "NON_NULL",
1535
1707
  "name": null,
@@ -1545,7 +1717,9 @@
1545
1717
  {
1546
1718
  "name": "originalUrl",
1547
1719
  "description": null,
1548
- "args": [],
1720
+ "args": [
1721
+
1722
+ ],
1549
1723
  "type": {
1550
1724
  "kind": "NON_NULL",
1551
1725
  "name": null,
@@ -1561,7 +1735,9 @@
1561
1735
  {
1562
1736
  "name": "smallUrl",
1563
1737
  "description": null,
1564
- "args": [],
1738
+ "args": [
1739
+
1740
+ ],
1565
1741
  "type": {
1566
1742
  "kind": "NON_NULL",
1567
1743
  "name": null,
@@ -1577,7 +1753,9 @@
1577
1753
  {
1578
1754
  "name": "thumbnailUrl",
1579
1755
  "description": null,
1580
- "args": [],
1756
+ "args": [
1757
+
1758
+ ],
1581
1759
  "type": {
1582
1760
  "kind": "NON_NULL",
1583
1761
  "name": null,
@@ -1593,7 +1771,9 @@
1593
1771
  {
1594
1772
  "name": "tinyUrl",
1595
1773
  "description": null,
1596
- "args": [],
1774
+ "args": [
1775
+
1776
+ ],
1597
1777
  "type": {
1598
1778
  "kind": "NON_NULL",
1599
1779
  "name": null,
@@ -1608,7 +1788,9 @@
1608
1788
  }
1609
1789
  ],
1610
1790
  "inputFields": null,
1611
- "interfaces": [],
1791
+ "interfaces": [
1792
+
1793
+ ],
1612
1794
  "enumValues": null,
1613
1795
  "possibleTypes": null
1614
1796
  },
@@ -1620,7 +1802,9 @@
1620
1802
  {
1621
1803
  "name": "content",
1622
1804
  "description": null,
1623
- "args": [],
1805
+ "args": [
1806
+
1807
+ ],
1624
1808
  "type": {
1625
1809
  "kind": "NON_NULL",
1626
1810
  "name": null,
@@ -1636,7 +1820,9 @@
1636
1820
  {
1637
1821
  "name": "contentHtml",
1638
1822
  "description": null,
1639
- "args": [],
1823
+ "args": [
1824
+
1825
+ ],
1640
1826
  "type": {
1641
1827
  "kind": "NON_NULL",
1642
1828
  "name": null,
@@ -1652,7 +1838,9 @@
1652
1838
  {
1653
1839
  "name": "createdAt",
1654
1840
  "description": null,
1655
- "args": [],
1841
+ "args": [
1842
+
1843
+ ],
1656
1844
  "type": {
1657
1845
  "kind": "NON_NULL",
1658
1846
  "name": null,
@@ -1668,7 +1856,9 @@
1668
1856
  {
1669
1857
  "name": "fields",
1670
1858
  "description": null,
1671
- "args": [],
1859
+ "args": [
1860
+
1861
+ ],
1672
1862
  "type": {
1673
1863
  "kind": "NON_NULL",
1674
1864
  "name": null,
@@ -1692,7 +1882,9 @@
1692
1882
  {
1693
1883
  "name": "id",
1694
1884
  "description": null,
1695
- "args": [],
1885
+ "args": [
1886
+
1887
+ ],
1696
1888
  "type": {
1697
1889
  "kind": "NON_NULL",
1698
1890
  "name": null,
@@ -1708,7 +1900,9 @@
1708
1900
  {
1709
1901
  "name": "respondedAt",
1710
1902
  "description": null,
1711
- "args": [],
1903
+ "args": [
1904
+
1905
+ ],
1712
1906
  "type": {
1713
1907
  "kind": "SCALAR",
1714
1908
  "name": "DateTime",
@@ -1720,7 +1914,9 @@
1720
1914
  {
1721
1915
  "name": "updatedAt",
1722
1916
  "description": null,
1723
- "args": [],
1917
+ "args": [
1918
+
1919
+ ],
1724
1920
  "type": {
1725
1921
  "kind": "NON_NULL",
1726
1922
  "name": null,
@@ -1735,7 +1931,9 @@
1735
1931
  }
1736
1932
  ],
1737
1933
  "inputFields": null,
1738
- "interfaces": [],
1934
+ "interfaces": [
1935
+
1936
+ ],
1739
1937
  "enumValues": null,
1740
1938
  "possibleTypes": null
1741
1939
  },
@@ -1780,7 +1978,9 @@
1780
1978
  {
1781
1979
  "name": "edges",
1782
1980
  "description": "A list of edges.",
1783
- "args": [],
1981
+ "args": [
1982
+
1983
+ ],
1784
1984
  "type": {
1785
1985
  "kind": "NON_NULL",
1786
1986
  "name": null,
@@ -1804,7 +2004,9 @@
1804
2004
  {
1805
2005
  "name": "nodes",
1806
2006
  "description": "A list of nodes.",
1807
- "args": [],
2007
+ "args": [
2008
+
2009
+ ],
1808
2010
  "type": {
1809
2011
  "kind": "NON_NULL",
1810
2012
  "name": null,
@@ -1828,7 +2030,9 @@
1828
2030
  {
1829
2031
  "name": "pageInfo",
1830
2032
  "description": "Information to aid in pagination.",
1831
- "args": [],
2033
+ "args": [
2034
+
2035
+ ],
1832
2036
  "type": {
1833
2037
  "kind": "NON_NULL",
1834
2038
  "name": null,
@@ -1844,7 +2048,9 @@
1844
2048
  {
1845
2049
  "name": "totalCount",
1846
2050
  "description": null,
1847
- "args": [],
2051
+ "args": [
2052
+
2053
+ ],
1848
2054
  "type": {
1849
2055
  "kind": "NON_NULL",
1850
2056
  "name": null,
@@ -1859,7 +2065,9 @@
1859
2065
  }
1860
2066
  ],
1861
2067
  "inputFields": null,
1862
- "interfaces": [],
2068
+ "interfaces": [
2069
+
2070
+ ],
1863
2071
  "enumValues": null,
1864
2072
  "possibleTypes": null
1865
2073
  },
@@ -1871,7 +2079,9 @@
1871
2079
  {
1872
2080
  "name": "cursor",
1873
2081
  "description": "A cursor for use in pagination.",
1874
- "args": [],
2082
+ "args": [
2083
+
2084
+ ],
1875
2085
  "type": {
1876
2086
  "kind": "NON_NULL",
1877
2087
  "name": null,
@@ -1887,7 +2097,9 @@
1887
2097
  {
1888
2098
  "name": "node",
1889
2099
  "description": "The item at the end of the edge.",
1890
- "args": [],
2100
+ "args": [
2101
+
2102
+ ],
1891
2103
  "type": {
1892
2104
  "kind": "OBJECT",
1893
2105
  "name": "InformationRequest",
@@ -1898,7 +2110,9 @@
1898
2110
  }
1899
2111
  ],
1900
2112
  "inputFields": null,
1901
- "interfaces": [],
2113
+ "interfaces": [
2114
+
2115
+ ],
1902
2116
  "enumValues": null,
1903
2117
  "possibleTypes": null
1904
2118
  },
@@ -1910,7 +2124,9 @@
1910
2124
  {
1911
2125
  "name": "createdAt",
1912
2126
  "description": null,
1913
- "args": [],
2127
+ "args": [
2128
+
2129
+ ],
1914
2130
  "type": {
1915
2131
  "kind": "NON_NULL",
1916
2132
  "name": null,
@@ -1926,7 +2142,9 @@
1926
2142
  {
1927
2143
  "name": "dataType",
1928
2144
  "description": null,
1929
- "args": [],
2145
+ "args": [
2146
+
2147
+ ],
1930
2148
  "type": {
1931
2149
  "kind": "NON_NULL",
1932
2150
  "name": null,
@@ -1942,7 +2160,9 @@
1942
2160
  {
1943
2161
  "name": "id",
1944
2162
  "description": null,
1945
- "args": [],
2163
+ "args": [
2164
+
2165
+ ],
1946
2166
  "type": {
1947
2167
  "kind": "NON_NULL",
1948
2168
  "name": null,
@@ -1958,7 +2178,9 @@
1958
2178
  {
1959
2179
  "name": "label",
1960
2180
  "description": null,
1961
- "args": [],
2181
+ "args": [
2182
+
2183
+ ],
1962
2184
  "type": {
1963
2185
  "kind": "NON_NULL",
1964
2186
  "name": null,
@@ -1974,7 +2196,9 @@
1974
2196
  {
1975
2197
  "name": "placeholder",
1976
2198
  "description": null,
1977
- "args": [],
2199
+ "args": [
2200
+
2201
+ ],
1978
2202
  "type": {
1979
2203
  "kind": "NON_NULL",
1980
2204
  "name": null,
@@ -1990,7 +2214,9 @@
1990
2214
  {
1991
2215
  "name": "updatedAt",
1992
2216
  "description": null,
1993
- "args": [],
2217
+ "args": [
2218
+
2219
+ ],
1994
2220
  "type": {
1995
2221
  "kind": "NON_NULL",
1996
2222
  "name": null,
@@ -2006,7 +2232,9 @@
2006
2232
  {
2007
2233
  "name": "value",
2008
2234
  "description": null,
2009
- "args": [],
2235
+ "args": [
2236
+
2237
+ ],
2010
2238
  "type": {
2011
2239
  "kind": "SCALAR",
2012
2240
  "name": "String",
@@ -2017,7 +2245,9 @@
2017
2245
  }
2018
2246
  ],
2019
2247
  "inputFields": null,
2020
- "interfaces": [],
2248
+ "interfaces": [
2249
+
2250
+ ],
2021
2251
  "enumValues": null,
2022
2252
  "possibleTypes": null
2023
2253
  },
@@ -2078,7 +2308,9 @@
2078
2308
  {
2079
2309
  "name": "createdAt",
2080
2310
  "description": "The date the record was created",
2081
- "args": [],
2311
+ "args": [
2312
+
2313
+ ],
2082
2314
  "type": {
2083
2315
  "kind": "NON_NULL",
2084
2316
  "name": null,
@@ -2094,7 +2326,9 @@
2094
2326
  {
2095
2327
  "name": "duration",
2096
2328
  "description": "The length of time in months that an item's savings is good for",
2097
- "args": [],
2329
+ "args": [
2330
+
2331
+ ],
2098
2332
  "type": {
2099
2333
  "kind": "NON_NULL",
2100
2334
  "name": null,
@@ -2110,7 +2344,9 @@
2110
2344
  {
2111
2345
  "name": "name",
2112
2346
  "description": "Name of the good or service",
2113
- "args": [],
2347
+ "args": [
2348
+
2349
+ ],
2114
2350
  "type": {
2115
2351
  "kind": "NON_NULL",
2116
2352
  "name": null,
@@ -2126,7 +2362,9 @@
2126
2362
  {
2127
2363
  "name": "postPrice",
2128
2364
  "description": "The post-negotiation price",
2129
- "args": [],
2365
+ "args": [
2366
+
2367
+ ],
2130
2368
  "type": {
2131
2369
  "kind": "NON_NULL",
2132
2370
  "name": null,
@@ -2142,7 +2380,9 @@
2142
2380
  {
2143
2381
  "name": "prePrice",
2144
2382
  "description": "The pre-negotiation price",
2145
- "args": [],
2383
+ "args": [
2384
+
2385
+ ],
2146
2386
  "type": {
2147
2387
  "kind": "NON_NULL",
2148
2388
  "name": null,
@@ -2158,7 +2398,9 @@
2158
2398
  {
2159
2399
  "name": "savings",
2160
2400
  "description": "The difference between the prePrice and the postPrice",
2161
- "args": [],
2401
+ "args": [
2402
+
2403
+ ],
2162
2404
  "type": {
2163
2405
  "kind": "NON_NULL",
2164
2406
  "name": null,
@@ -2174,7 +2416,9 @@
2174
2416
  {
2175
2417
  "name": "savingsEndOn",
2176
2418
  "description": "The date the discount/savings end",
2177
- "args": [],
2419
+ "args": [
2420
+
2421
+ ],
2178
2422
  "type": {
2179
2423
  "kind": "NON_NULL",
2180
2424
  "name": null,
@@ -2190,7 +2434,9 @@
2190
2434
  {
2191
2435
  "name": "savingsStartOn",
2192
2436
  "description": "The date the discount/savings start",
2193
- "args": [],
2437
+ "args": [
2438
+
2439
+ ],
2194
2440
  "type": {
2195
2441
  "kind": "NON_NULL",
2196
2442
  "name": null,
@@ -2206,7 +2452,9 @@
2206
2452
  {
2207
2453
  "name": "underContract",
2208
2454
  "description": "Indicates the item is under contract",
2209
- "args": [],
2455
+ "args": [
2456
+
2457
+ ],
2210
2458
  "type": {
2211
2459
  "kind": "NON_NULL",
2212
2460
  "name": null,
@@ -2222,7 +2470,9 @@
2222
2470
  {
2223
2471
  "name": "updatedAt",
2224
2472
  "description": "The last time the record was updated",
2225
- "args": [],
2473
+ "args": [
2474
+
2475
+ ],
2226
2476
  "type": {
2227
2477
  "kind": "NON_NULL",
2228
2478
  "name": null,
@@ -2237,7 +2487,9 @@
2237
2487
  }
2238
2488
  ],
2239
2489
  "inputFields": null,
2240
- "interfaces": [],
2490
+ "interfaces": [
2491
+
2492
+ ],
2241
2493
  "enumValues": null,
2242
2494
  "possibleTypes": null
2243
2495
  },
@@ -2444,22 +2696,53 @@
2444
2696
  },
2445
2697
  "isDeprecated": false,
2446
2698
  "deprecationReason": null
2447
- }
2448
- ],
2449
- "inputFields": null,
2450
- "interfaces": [],
2451
- "enumValues": null,
2452
- "possibleTypes": null
2453
- },
2454
- {
2455
- "kind": "OBJECT",
2456
- "name": "Negotiation",
2457
- "description": null,
2699
+ },
2700
+ {
2701
+ "name": "UpdateWebhookUrls",
2702
+ "description": null,
2703
+ "args": [
2704
+ {
2705
+ "name": "input",
2706
+ "description": null,
2707
+ "type": {
2708
+ "kind": "NON_NULL",
2709
+ "name": null,
2710
+ "ofType": {
2711
+ "kind": "INPUT_OBJECT",
2712
+ "name": "UpdateWebhookUrlsInput",
2713
+ "ofType": null
2714
+ }
2715
+ },
2716
+ "defaultValue": null
2717
+ }
2718
+ ],
2719
+ "type": {
2720
+ "kind": "OBJECT",
2721
+ "name": "UpdateWebhookUrlsPayload",
2722
+ "ofType": null
2723
+ },
2724
+ "isDeprecated": false,
2725
+ "deprecationReason": null
2726
+ }
2727
+ ],
2728
+ "inputFields": null,
2729
+ "interfaces": [
2730
+
2731
+ ],
2732
+ "enumValues": null,
2733
+ "possibleTypes": null
2734
+ },
2735
+ {
2736
+ "kind": "OBJECT",
2737
+ "name": "Negotiation",
2738
+ "description": null,
2458
2739
  "fields": [
2459
2740
  {
2460
2741
  "name": "billId",
2461
2742
  "description": null,
2462
- "args": [],
2743
+ "args": [
2744
+
2745
+ ],
2463
2746
  "type": {
2464
2747
  "kind": "NON_NULL",
2465
2748
  "name": null,
@@ -2475,7 +2758,9 @@
2475
2758
  {
2476
2759
  "name": "cancelledAt",
2477
2760
  "description": null,
2478
- "args": [],
2761
+ "args": [
2762
+
2763
+ ],
2479
2764
  "type": {
2480
2765
  "kind": "SCALAR",
2481
2766
  "name": "DateTime",
@@ -2487,7 +2772,9 @@
2487
2772
  {
2488
2773
  "name": "compedAt",
2489
2774
  "description": null,
2490
- "args": [],
2775
+ "args": [
2776
+
2777
+ ],
2491
2778
  "type": {
2492
2779
  "kind": "SCALAR",
2493
2780
  "name": "DateTime",
@@ -2499,7 +2786,9 @@
2499
2786
  {
2500
2787
  "name": "createdAt",
2501
2788
  "description": null,
2502
- "args": [],
2789
+ "args": [
2790
+
2791
+ ],
2503
2792
  "type": {
2504
2793
  "kind": "NON_NULL",
2505
2794
  "name": null,
@@ -2515,7 +2804,9 @@
2515
2804
  {
2516
2805
  "name": "deletedAt",
2517
2806
  "description": null,
2518
- "args": [],
2807
+ "args": [
2808
+
2809
+ ],
2519
2810
  "type": {
2520
2811
  "kind": "SCALAR",
2521
2812
  "name": "DateTime",
@@ -2527,7 +2818,9 @@
2527
2818
  {
2528
2819
  "name": "failedAt",
2529
2820
  "description": null,
2530
- "args": [],
2821
+ "args": [
2822
+
2823
+ ],
2531
2824
  "type": {
2532
2825
  "kind": "SCALAR",
2533
2826
  "name": "DateTime",
@@ -2539,7 +2832,9 @@
2539
2832
  {
2540
2833
  "name": "fixedAt",
2541
2834
  "description": null,
2542
- "args": [],
2835
+ "args": [
2836
+
2837
+ ],
2543
2838
  "type": {
2544
2839
  "kind": "SCALAR",
2545
2840
  "name": "DateTime",
@@ -2551,7 +2846,9 @@
2551
2846
  {
2552
2847
  "name": "fixerIds",
2553
2848
  "description": null,
2554
- "args": [],
2849
+ "args": [
2850
+
2851
+ ],
2555
2852
  "type": {
2556
2853
  "kind": "NON_NULL",
2557
2854
  "name": null,
@@ -2575,7 +2872,9 @@
2575
2872
  {
2576
2873
  "name": "fixers",
2577
2874
  "description": null,
2578
- "args": [],
2875
+ "args": [
2876
+
2877
+ ],
2579
2878
  "type": {
2580
2879
  "kind": "NON_NULL",
2581
2880
  "name": null,
@@ -2599,7 +2898,9 @@
2599
2898
  {
2600
2899
  "name": "id",
2601
2900
  "description": null,
2602
- "args": [],
2901
+ "args": [
2902
+
2903
+ ],
2603
2904
  "type": {
2604
2905
  "kind": "NON_NULL",
2605
2906
  "name": null,
@@ -2615,7 +2916,9 @@
2615
2916
  {
2616
2917
  "name": "informationRequests",
2617
2918
  "description": null,
2618
- "args": [],
2919
+ "args": [
2920
+
2921
+ ],
2619
2922
  "type": {
2620
2923
  "kind": "NON_NULL",
2621
2924
  "name": null,
@@ -2639,7 +2942,9 @@
2639
2942
  {
2640
2943
  "name": "invoicedAt",
2641
2944
  "description": null,
2642
- "args": [],
2945
+ "args": [
2946
+
2947
+ ],
2643
2948
  "type": {
2644
2949
  "kind": "SCALAR",
2645
2950
  "name": "DateTime",
@@ -2651,7 +2956,9 @@
2651
2956
  {
2652
2957
  "name": "items",
2653
2958
  "description": null,
2654
- "args": [],
2959
+ "args": [
2960
+
2961
+ ],
2655
2962
  "type": {
2656
2963
  "kind": "NON_NULL",
2657
2964
  "name": null,
@@ -2675,7 +2982,9 @@
2675
2982
  {
2676
2983
  "name": "negotiationNumber",
2677
2984
  "description": null,
2678
- "args": [],
2985
+ "args": [
2986
+
2987
+ ],
2679
2988
  "type": {
2680
2989
  "kind": "NON_NULL",
2681
2990
  "name": null,
@@ -2691,7 +3000,9 @@
2691
3000
  {
2692
3001
  "name": "requestedConsentAt",
2693
3002
  "description": null,
2694
- "args": [],
3003
+ "args": [
3004
+
3005
+ ],
2695
3006
  "type": {
2696
3007
  "kind": "SCALAR",
2697
3008
  "name": "DateTime",
@@ -2703,7 +3014,9 @@
2703
3014
  {
2704
3015
  "name": "requestedInformationAt",
2705
3016
  "description": null,
2706
- "args": [],
3017
+ "args": [
3018
+
3019
+ ],
2707
3020
  "type": {
2708
3021
  "kind": "SCALAR",
2709
3022
  "name": "DateTime",
@@ -2715,7 +3028,9 @@
2715
3028
  {
2716
3029
  "name": "startedAt",
2717
3030
  "description": null,
2718
- "args": [],
3031
+ "args": [
3032
+
3033
+ ],
2719
3034
  "type": {
2720
3035
  "kind": "SCALAR",
2721
3036
  "name": "DateTime",
@@ -2727,7 +3042,9 @@
2727
3042
  {
2728
3043
  "name": "state",
2729
3044
  "description": null,
2730
- "args": [],
3045
+ "args": [
3046
+
3047
+ ],
2731
3048
  "type": {
2732
3049
  "kind": "NON_NULL",
2733
3050
  "name": null,
@@ -2743,7 +3060,9 @@
2743
3060
  {
2744
3061
  "name": "tags",
2745
3062
  "description": null,
2746
- "args": [],
3063
+ "args": [
3064
+
3065
+ ],
2747
3066
  "type": {
2748
3067
  "kind": "NON_NULL",
2749
3068
  "name": null,
@@ -2767,7 +3086,9 @@
2767
3086
  {
2768
3087
  "name": "totalSavings",
2769
3088
  "description": null,
2770
- "args": [],
3089
+ "args": [
3090
+
3091
+ ],
2771
3092
  "type": {
2772
3093
  "kind": "NON_NULL",
2773
3094
  "name": null,
@@ -2783,7 +3104,9 @@
2783
3104
  {
2784
3105
  "name": "updatedAt",
2785
3106
  "description": null,
2786
- "args": [],
3107
+ "args": [
3108
+
3109
+ ],
2787
3110
  "type": {
2788
3111
  "kind": "NON_NULL",
2789
3112
  "name": null,
@@ -2798,7 +3121,9 @@
2798
3121
  }
2799
3122
  ],
2800
3123
  "inputFields": null,
2801
- "interfaces": [],
3124
+ "interfaces": [
3125
+
3126
+ ],
2802
3127
  "enumValues": null,
2803
3128
  "possibleTypes": null
2804
3129
  },
@@ -2810,7 +3135,9 @@
2810
3135
  {
2811
3136
  "name": "acceptedAt",
2812
3137
  "description": null,
2813
- "args": [],
3138
+ "args": [
3139
+
3140
+ ],
2814
3141
  "type": {
2815
3142
  "kind": "SCALAR",
2816
3143
  "name": "DateTime",
@@ -2822,7 +3149,9 @@
2822
3149
  {
2823
3150
  "name": "bill",
2824
3151
  "description": null,
2825
- "args": [],
3152
+ "args": [
3153
+
3154
+ ],
2826
3155
  "type": {
2827
3156
  "kind": "NON_NULL",
2828
3157
  "name": null,
@@ -2838,7 +3167,9 @@
2838
3167
  {
2839
3168
  "name": "content",
2840
3169
  "description": null,
2841
- "args": [],
3170
+ "args": [
3171
+
3172
+ ],
2842
3173
  "type": {
2843
3174
  "kind": "NON_NULL",
2844
3175
  "name": null,
@@ -2854,7 +3185,9 @@
2854
3185
  {
2855
3186
  "name": "contentHtml",
2856
3187
  "description": null,
2857
- "args": [],
3188
+ "args": [
3189
+
3190
+ ],
2858
3191
  "type": {
2859
3192
  "kind": "NON_NULL",
2860
3193
  "name": null,
@@ -2870,7 +3203,9 @@
2870
3203
  {
2871
3204
  "name": "createdAt",
2872
3205
  "description": null,
2873
- "args": [],
3206
+ "args": [
3207
+
3208
+ ],
2874
3209
  "type": {
2875
3210
  "kind": "NON_NULL",
2876
3211
  "name": null,
@@ -2886,7 +3221,9 @@
2886
3221
  {
2887
3222
  "name": "customer",
2888
3223
  "description": null,
2889
- "args": [],
3224
+ "args": [
3225
+
3226
+ ],
2890
3227
  "type": {
2891
3228
  "kind": "NON_NULL",
2892
3229
  "name": null,
@@ -2902,7 +3239,9 @@
2902
3239
  {
2903
3240
  "name": "id",
2904
3241
  "description": "Alpha-numeric unique identifier",
2905
- "args": [],
3242
+ "args": [
3243
+
3244
+ ],
2906
3245
  "type": {
2907
3246
  "kind": "NON_NULL",
2908
3247
  "name": null,
@@ -2918,7 +3257,9 @@
2918
3257
  {
2919
3258
  "name": "rejectedAt",
2920
3259
  "description": null,
2921
- "args": [],
3260
+ "args": [
3261
+
3262
+ ],
2922
3263
  "type": {
2923
3264
  "kind": "SCALAR",
2924
3265
  "name": "DateTime",
@@ -2930,7 +3271,9 @@
2930
3271
  {
2931
3272
  "name": "status",
2932
3273
  "description": null,
2933
- "args": [],
3274
+ "args": [
3275
+
3276
+ ],
2934
3277
  "type": {
2935
3278
  "kind": "NON_NULL",
2936
3279
  "name": null,
@@ -2946,7 +3289,9 @@
2946
3289
  {
2947
3290
  "name": "updatedAt",
2948
3291
  "description": null,
2949
- "args": [],
3292
+ "args": [
3293
+
3294
+ ],
2950
3295
  "type": {
2951
3296
  "kind": "NON_NULL",
2952
3297
  "name": null,
@@ -2961,7 +3306,9 @@
2961
3306
  }
2962
3307
  ],
2963
3308
  "inputFields": null,
2964
- "interfaces": [],
3309
+ "interfaces": [
3310
+
3311
+ ],
2965
3312
  "enumValues": null,
2966
3313
  "possibleTypes": null
2967
3314
  },
@@ -2973,7 +3320,9 @@
2973
3320
  {
2974
3321
  "name": "edges",
2975
3322
  "description": "A list of edges.",
2976
- "args": [],
3323
+ "args": [
3324
+
3325
+ ],
2977
3326
  "type": {
2978
3327
  "kind": "NON_NULL",
2979
3328
  "name": null,
@@ -2997,7 +3346,9 @@
2997
3346
  {
2998
3347
  "name": "nodes",
2999
3348
  "description": "A list of nodes.",
3000
- "args": [],
3349
+ "args": [
3350
+
3351
+ ],
3001
3352
  "type": {
3002
3353
  "kind": "NON_NULL",
3003
3354
  "name": null,
@@ -3021,7 +3372,9 @@
3021
3372
  {
3022
3373
  "name": "pageInfo",
3023
3374
  "description": "Information to aid in pagination.",
3024
- "args": [],
3375
+ "args": [
3376
+
3377
+ ],
3025
3378
  "type": {
3026
3379
  "kind": "NON_NULL",
3027
3380
  "name": null,
@@ -3037,7 +3390,9 @@
3037
3390
  {
3038
3391
  "name": "totalCount",
3039
3392
  "description": null,
3040
- "args": [],
3393
+ "args": [
3394
+
3395
+ ],
3041
3396
  "type": {
3042
3397
  "kind": "NON_NULL",
3043
3398
  "name": null,
@@ -3052,7 +3407,9 @@
3052
3407
  }
3053
3408
  ],
3054
3409
  "inputFields": null,
3055
- "interfaces": [],
3410
+ "interfaces": [
3411
+
3412
+ ],
3056
3413
  "enumValues": null,
3057
3414
  "possibleTypes": null
3058
3415
  },
@@ -3064,7 +3421,9 @@
3064
3421
  {
3065
3422
  "name": "cursor",
3066
3423
  "description": "A cursor for use in pagination.",
3067
- "args": [],
3424
+ "args": [
3425
+
3426
+ ],
3068
3427
  "type": {
3069
3428
  "kind": "NON_NULL",
3070
3429
  "name": null,
@@ -3080,7 +3439,9 @@
3080
3439
  {
3081
3440
  "name": "node",
3082
3441
  "description": "The item at the end of the edge.",
3083
- "args": [],
3442
+ "args": [
3443
+
3444
+ ],
3084
3445
  "type": {
3085
3446
  "kind": "OBJECT",
3086
3447
  "name": "Offer",
@@ -3091,7 +3452,9 @@
3091
3452
  }
3092
3453
  ],
3093
3454
  "inputFields": null,
3094
- "interfaces": [],
3455
+ "interfaces": [
3456
+
3457
+ ],
3095
3458
  "enumValues": null,
3096
3459
  "possibleTypes": null
3097
3460
  },
@@ -3103,7 +3466,9 @@
3103
3466
  {
3104
3467
  "name": "endCursor",
3105
3468
  "description": "When paginating forwards, the cursor to continue.",
3106
- "args": [],
3469
+ "args": [
3470
+
3471
+ ],
3107
3472
  "type": {
3108
3473
  "kind": "SCALAR",
3109
3474
  "name": "String",
@@ -3115,7 +3480,9 @@
3115
3480
  {
3116
3481
  "name": "hasNextPage",
3117
3482
  "description": "When paginating forwards, are there more items?",
3118
- "args": [],
3483
+ "args": [
3484
+
3485
+ ],
3119
3486
  "type": {
3120
3487
  "kind": "NON_NULL",
3121
3488
  "name": null,
@@ -3131,7 +3498,9 @@
3131
3498
  {
3132
3499
  "name": "hasPreviousPage",
3133
3500
  "description": "When paginating backwards, are there more items?",
3134
- "args": [],
3501
+ "args": [
3502
+
3503
+ ],
3135
3504
  "type": {
3136
3505
  "kind": "NON_NULL",
3137
3506
  "name": null,
@@ -3147,7 +3516,9 @@
3147
3516
  {
3148
3517
  "name": "startCursor",
3149
3518
  "description": "When paginating backwards, the cursor to continue.",
3150
- "args": [],
3519
+ "args": [
3520
+
3521
+ ],
3151
3522
  "type": {
3152
3523
  "kind": "SCALAR",
3153
3524
  "name": "String",
@@ -3158,7 +3529,104 @@
3158
3529
  }
3159
3530
  ],
3160
3531
  "inputFields": null,
3161
- "interfaces": [],
3532
+ "interfaces": [
3533
+
3534
+ ],
3535
+ "enumValues": null,
3536
+ "possibleTypes": null
3537
+ },
3538
+ {
3539
+ "kind": "OBJECT",
3540
+ "name": "Partner",
3541
+ "description": null,
3542
+ "fields": [
3543
+ {
3544
+ "name": "createdAt",
3545
+ "description": null,
3546
+ "args": [
3547
+
3548
+ ],
3549
+ "type": {
3550
+ "kind": "NON_NULL",
3551
+ "name": null,
3552
+ "ofType": {
3553
+ "kind": "SCALAR",
3554
+ "name": "DateTime",
3555
+ "ofType": null
3556
+ }
3557
+ },
3558
+ "isDeprecated": false,
3559
+ "deprecationReason": null
3560
+ },
3561
+ {
3562
+ "name": "id",
3563
+ "description": "Alpha-numeric unique identifier",
3564
+ "args": [
3565
+
3566
+ ],
3567
+ "type": {
3568
+ "kind": "NON_NULL",
3569
+ "name": null,
3570
+ "ofType": {
3571
+ "kind": "SCALAR",
3572
+ "name": "String",
3573
+ "ofType": null
3574
+ }
3575
+ },
3576
+ "isDeprecated": false,
3577
+ "deprecationReason": null
3578
+ },
3579
+ {
3580
+ "name": "liveWebhookUrl",
3581
+ "description": "Webhook URL for live/production requests",
3582
+ "args": [
3583
+
3584
+ ],
3585
+ "type": {
3586
+ "kind": "SCALAR",
3587
+ "name": "String",
3588
+ "ofType": null
3589
+ },
3590
+ "isDeprecated": false,
3591
+ "deprecationReason": null
3592
+ },
3593
+ {
3594
+ "name": "testWebhookUrl",
3595
+ "description": "Webhook URL for test/development requests",
3596
+ "args": [
3597
+
3598
+ ],
3599
+ "type": {
3600
+ "kind": "SCALAR",
3601
+ "name": "String",
3602
+ "ofType": null
3603
+ },
3604
+ "isDeprecated": false,
3605
+ "deprecationReason": null
3606
+ },
3607
+ {
3608
+ "name": "updatedAt",
3609
+ "description": null,
3610
+ "args": [
3611
+
3612
+ ],
3613
+ "type": {
3614
+ "kind": "NON_NULL",
3615
+ "name": null,
3616
+ "ofType": {
3617
+ "kind": "SCALAR",
3618
+ "name": "DateTime",
3619
+ "ofType": null
3620
+ }
3621
+ },
3622
+ "isDeprecated": false,
3623
+ "deprecationReason": null
3624
+ }
3625
+ ],
3626
+ "inputFields": null,
3627
+ "interfaces": [
3628
+
3629
+ ],
3162
3630
  "enumValues": null,
3163
3631
  "possibleTypes": null
3164
3632
  },
@@ -3170,7 +3638,9 @@
3170
3638
  {
3171
3639
  "name": "billFields",
3172
3640
  "description": null,
3173
- "args": [],
3641
+ "args": [
3642
+
3643
+ ],
3174
3644
  "type": {
3175
3645
  "kind": "NON_NULL",
3176
3646
  "name": null,
@@ -3194,7 +3664,9 @@
3194
3664
  {
3195
3665
  "name": "createdAt",
3196
3666
  "description": null,
3197
- "args": [],
3667
+ "args": [
3668
+
3669
+ ],
3198
3670
  "type": {
3199
3671
  "kind": "NON_NULL",
3200
3672
  "name": null,
@@ -3210,7 +3682,9 @@
3210
3682
  {
3211
3683
  "name": "id",
3212
3684
  "description": null,
3213
- "args": [],
3685
+ "args": [
3686
+
3687
+ ],
3214
3688
  "type": {
3215
3689
  "kind": "NON_NULL",
3216
3690
  "name": null,
@@ -3226,7 +3700,9 @@
3226
3700
  {
3227
3701
  "name": "logo",
3228
3702
  "description": null,
3229
- "args": [],
3703
+ "args": [
3704
+
3705
+ ],
3230
3706
  "type": {
3231
3707
  "kind": "OBJECT",
3232
3708
  "name": "Image",
@@ -3238,7 +3714,9 @@
3238
3714
  {
3239
3715
  "name": "name",
3240
3716
  "description": null,
3241
- "args": [],
3717
+ "args": [
3718
+
3719
+ ],
3242
3720
  "type": {
3243
3721
  "kind": "NON_NULL",
3244
3722
  "name": null,
@@ -3254,7 +3732,9 @@
3254
3732
  {
3255
3733
  "name": "services",
3256
3734
  "description": null,
3257
- "args": [],
3735
+ "args": [
3736
+
3737
+ ],
3258
3738
  "type": {
3259
3739
  "kind": "NON_NULL",
3260
3740
  "name": null,
@@ -3278,7 +3758,9 @@
3278
3758
  {
3279
3759
  "name": "updatedAt",
3280
3760
  "description": null,
3281
- "args": [],
3761
+ "args": [
3762
+
3763
+ ],
3282
3764
  "type": {
3283
3765
  "kind": "NON_NULL",
3284
3766
  "name": null,
@@ -3293,7 +3775,9 @@
3293
3775
  }
3294
3776
  ],
3295
3777
  "inputFields": null,
3296
- "interfaces": [],
3778
+ "interfaces": [
3779
+
3780
+ ],
3297
3781
  "enumValues": null,
3298
3782
  "possibleTypes": null
3299
3783
  },
@@ -3329,6 +3813,24 @@
3329
3813
  "isDeprecated": false,
3330
3814
  "deprecationReason": null
3331
3815
  },
3816
+ {
3817
+ "name": "FindCurrentPartner",
3818
+ "description": null,
3819
+ "args": [
3820
+
3821
+ ],
3822
+ "type": {
3823
+ "kind": "NON_NULL",
3824
+ "name": null,
3825
+ "ofType": {
3826
+ "kind": "OBJECT",
3827
+ "name": "Partner",
3828
+ "ofType": null
3829
+ }
3830
+ },
3831
+ "isDeprecated": false,
3832
+ "deprecationReason": null
3833
+ },
3332
3834
  {
3333
3835
  "name": "FindCustomer",
3334
3836
  "description": null,
@@ -3858,7 +4360,9 @@
3858
4360
  {
3859
4361
  "name": "ListProviders",
3860
4362
  "description": null,
3861
- "args": [],
4363
+ "args": [
4364
+
4365
+ ],
3862
4366
  "type": {
3863
4367
  "kind": "NON_NULL",
3864
4368
  "name": null,
@@ -3881,7 +4385,9 @@
3881
4385
  }
3882
4386
  ],
3883
4387
  "inputFields": null,
3884
- "interfaces": [],
4388
+ "interfaces": [
4389
+
4390
+ ],
3885
4391
  "enumValues": null,
3886
4392
  "possibleTypes": null
3887
4393
  },
@@ -3928,7 +4434,9 @@
3928
4434
  {
3929
4435
  "name": "clientMutationId",
3930
4436
  "description": "A unique identifier for the client performing the mutation.",
3931
- "args": [],
4437
+ "args": [
4438
+
4439
+ ],
3932
4440
  "type": {
3933
4441
  "kind": "SCALAR",
3934
4442
  "name": "String",
@@ -3940,7 +4448,9 @@
3940
4448
  {
3941
4449
  "name": "errors",
3942
4450
  "description": null,
3943
- "args": [],
4451
+ "args": [
4452
+
4453
+ ],
3944
4454
  "type": {
3945
4455
  "kind": "NON_NULL",
3946
4456
  "name": null,
@@ -3964,7 +4474,9 @@
3964
4474
  {
3965
4475
  "name": "offer",
3966
4476
  "description": null,
3967
- "args": [],
4477
+ "args": [
4478
+
4479
+ ],
3968
4480
  "type": {
3969
4481
  "kind": "OBJECT",
3970
4482
  "name": "Offer",
@@ -3976,7 +4488,9 @@
3976
4488
  {
3977
4489
  "name": "success",
3978
4490
  "description": null,
3979
- "args": [],
4491
+ "args": [
4492
+
4493
+ ],
3980
4494
  "type": {
3981
4495
  "kind": "NON_NULL",
3982
4496
  "name": null,
@@ -3991,7 +4505,9 @@
3991
4505
  }
3992
4506
  ],
3993
4507
  "inputFields": null,
3994
- "interfaces": [],
4508
+ "interfaces": [
4509
+
4510
+ ],
3995
4511
  "enumValues": null,
3996
4512
  "possibleTypes": null
3997
4513
  },
@@ -4052,7 +4568,9 @@
4052
4568
  {
4053
4569
  "name": "bill",
4054
4570
  "description": null,
4055
- "args": [],
4571
+ "args": [
4572
+
4573
+ ],
4056
4574
  "type": {
4057
4575
  "kind": "OBJECT",
4058
4576
  "name": "Bill",
@@ -4064,7 +4582,9 @@
4064
4582
  {
4065
4583
  "name": "clientMutationId",
4066
4584
  "description": "A unique identifier for the client performing the mutation.",
4067
- "args": [],
4585
+ "args": [
4586
+
4587
+ ],
4068
4588
  "type": {
4069
4589
  "kind": "SCALAR",
4070
4590
  "name": "String",
@@ -4076,7 +4596,9 @@
4076
4596
  {
4077
4597
  "name": "errors",
4078
4598
  "description": null,
4079
- "args": [],
4599
+ "args": [
4600
+
4601
+ ],
4080
4602
  "type": {
4081
4603
  "kind": "NON_NULL",
4082
4604
  "name": null,
@@ -4100,7 +4622,9 @@
4100
4622
  {
4101
4623
  "name": "informationRequest",
4102
4624
  "description": null,
4103
- "args": [],
4625
+ "args": [
4626
+
4627
+ ],
4104
4628
  "type": {
4105
4629
  "kind": "OBJECT",
4106
4630
  "name": "InformationRequest",
@@ -4112,7 +4636,9 @@
4112
4636
  {
4113
4637
  "name": "negotiation",
4114
4638
  "description": null,
4115
- "args": [],
4639
+ "args": [
4640
+
4641
+ ],
4116
4642
  "type": {
4117
4643
  "kind": "OBJECT",
4118
4644
  "name": "Negotiation",
@@ -4120,10 +4646,30 @@
4120
4646
  },
4121
4647
  "isDeprecated": false,
4122
4648
  "deprecationReason": null
4649
+ },
4650
+ {
4651
+ "name": "success",
4652
+ "description": null,
4653
+ "args": [
4654
+
4655
+ ],
4656
+ "type": {
4657
+ "kind": "NON_NULL",
4658
+ "name": null,
4659
+ "ofType": {
4660
+ "kind": "SCALAR",
4661
+ "name": "Boolean",
4662
+ "ofType": null
4663
+ }
4664
+ },
4665
+ "isDeprecated": false,
4666
+ "deprecationReason": null
4123
4667
  }
4124
4668
  ],
4125
4669
  "inputFields": null,
4126
- "interfaces": [],
4670
+ "interfaces": [
4671
+
4672
+ ],
4127
4673
  "enumValues": null,
4128
4674
  "possibleTypes": null
4129
4675
  },
@@ -4194,7 +4740,9 @@
4194
4740
  {
4195
4741
  "name": "clientMutationId",
4196
4742
  "description": "A unique identifier for the client performing the mutation.",
4197
- "args": [],
4743
+ "args": [
4744
+
4745
+ ],
4198
4746
  "type": {
4199
4747
  "kind": "SCALAR",
4200
4748
  "name": "String",
@@ -4206,7 +4754,9 @@
4206
4754
  {
4207
4755
  "name": "customer",
4208
4756
  "description": null,
4209
- "args": [],
4757
+ "args": [
4758
+
4759
+ ],
4210
4760
  "type": {
4211
4761
  "kind": "OBJECT",
4212
4762
  "name": "Customer",
@@ -4218,7 +4768,9 @@
4218
4768
  {
4219
4769
  "name": "errors",
4220
4770
  "description": null,
4221
- "args": [],
4771
+ "args": [
4772
+
4773
+ ],
4222
4774
  "type": {
4223
4775
  "kind": "NON_NULL",
4224
4776
  "name": null,
@@ -4242,7 +4794,9 @@
4242
4794
  {
4243
4795
  "name": "success",
4244
4796
  "description": null,
4245
- "args": [],
4797
+ "args": [
4798
+
4799
+ ],
4246
4800
  "type": {
4247
4801
  "kind": "NON_NULL",
4248
4802
  "name": null,
@@ -4257,7 +4811,139 @@
4257
4811
  }
4258
4812
  ],
4259
4813
  "inputFields": null,
4260
- "interfaces": [],
4814
+ "interfaces": [
4815
+
4816
+ ],
4817
+ "enumValues": null,
4818
+ "possibleTypes": null
4819
+ },
4820
+ {
4821
+ "kind": "INPUT_OBJECT",
4822
+ "name": "UpdateWebhookUrlsInput",
4823
+ "description": "Autogenerated input type of UpdateWebhookUrls",
4824
+ "fields": null,
4825
+ "inputFields": [
4826
+ {
4827
+ "name": "liveWebhookUrl",
4828
+ "description": null,
4829
+ "type": {
4830
+ "kind": "SCALAR",
4831
+ "name": "String",
4832
+ "ofType": null
4833
+ },
4834
+ "defaultValue": null
4835
+ },
4836
+ {
4837
+ "name": "testWebhookUrl",
4838
+ "description": null,
4839
+ "type": {
4840
+ "kind": "SCALAR",
4841
+ "name": "String",
4842
+ "ofType": null
4843
+ },
4844
+ "defaultValue": null
4845
+ },
4846
+ {
4847
+ "name": "clientMutationId",
4848
+ "description": "A unique identifier for the client performing the mutation.",
4849
+ "type": {
4850
+ "kind": "SCALAR",
4851
+ "name": "String",
4852
+ "ofType": null
4853
+ },
4854
+ "defaultValue": null
4855
+ }
4856
+ ],
4857
+ "interfaces": null,
4858
+ "enumValues": null,
4859
+ "possibleTypes": null
4860
+ },
4861
+ {
4862
+ "kind": "OBJECT",
4863
+ "name": "UpdateWebhookUrlsPayload",
4864
+ "description": "Autogenerated return type of UpdateWebhookUrls",
4865
+ "fields": [
4866
+ {
4867
+ "name": "clientMutationId",
4868
+ "description": "A unique identifier for the client performing the mutation.",
4869
+ "args": [
4870
+
4871
+ ],
4872
+ "type": {
4873
+ "kind": "SCALAR",
4874
+ "name": "String",
4875
+ "ofType": null
4876
+ },
4877
+ "isDeprecated": false,
4878
+ "deprecationReason": null
4879
+ },
4880
+ {
4881
+ "name": "errors",
4882
+ "description": null,
4883
+ "args": [
4884
+
4885
+ ],
4886
+ "type": {
4887
+ "kind": "NON_NULL",
4888
+ "name": null,
4889
+ "ofType": {
4890
+ "kind": "LIST",
4891
+ "name": null,
4892
+ "ofType": {
4893
+ "kind": "NON_NULL",
4894
+ "name": null,
4895
+ "ofType": {
4896
+ "kind": "SCALAR",
4897
+ "name": "String",
4898
+ "ofType": null
4899
+ }
4900
+ }
4901
+ }
4902
+ },
4903
+ "isDeprecated": false,
4904
+ "deprecationReason": null
4905
+ },
4906
+ {
4907
+ "name": "partner",
4908
+ "description": null,
4909
+ "args": [
4910
+
4911
+ ],
4912
+ "type": {
4913
+ "kind": "NON_NULL",
4914
+ "name": null,
4915
+ "ofType": {
4916
+ "kind": "OBJECT",
4917
+ "name": "Partner",
4918
+ "ofType": null
4919
+ }
4920
+ },
4921
+ "isDeprecated": false,
4922
+ "deprecationReason": null
4923
+ },
4924
+ {
4925
+ "name": "success",
4926
+ "description": null,
4927
+ "args": [
4928
+
4929
+ ],
4930
+ "type": {
4931
+ "kind": "NON_NULL",
4932
+ "name": null,
4933
+ "ofType": {
4934
+ "kind": "SCALAR",
4935
+ "name": "Boolean",
4936
+ "ofType": null
4937
+ }
4938
+ },
4939
+ "isDeprecated": false,
4940
+ "deprecationReason": null
4941
+ }
4942
+ ],
4943
+ "inputFields": null,
4944
+ "interfaces": [
4945
+
4946
+ ],
4261
4947
  "enumValues": null,
4262
4948
  "possibleTypes": null
4263
4949
  },
@@ -4269,7 +4955,9 @@
4269
4955
  {
4270
4956
  "name": "args",
4271
4957
  "description": null,
4272
- "args": [],
4958
+ "args": [
4959
+
4960
+ ],
4273
4961
  "type": {
4274
4962
  "kind": "NON_NULL",
4275
4963
  "name": null,
@@ -4293,7 +4981,9 @@
4293
4981
  {
4294
4982
  "name": "description",
4295
4983
  "description": null,
4296
- "args": [],
4984
+ "args": [
4985
+
4986
+ ],
4297
4987
  "type": {
4298
4988
  "kind": "SCALAR",
4299
4989
  "name": "String",
@@ -4305,7 +4995,9 @@
4305
4995
  {
4306
4996
  "name": "locations",
4307
4997
  "description": null,
4308
- "args": [],
4998
+ "args": [
4999
+
5000
+ ],
4309
5001
  "type": {
4310
5002
  "kind": "NON_NULL",
4311
5003
  "name": null,
@@ -4329,7 +5021,9 @@
4329
5021
  {
4330
5022
  "name": "name",
4331
5023
  "description": null,
4332
- "args": [],
5024
+ "args": [
5025
+
5026
+ ],
4333
5027
  "type": {
4334
5028
  "kind": "NON_NULL",
4335
5029
  "name": null,
@@ -4345,7 +5039,9 @@
4345
5039
  {
4346
5040
  "name": "onField",
4347
5041
  "description": null,
4348
- "args": [],
5042
+ "args": [
5043
+
5044
+ ],
4349
5045
  "type": {
4350
5046
  "kind": "NON_NULL",
4351
5047
  "name": null,
@@ -4361,7 +5057,9 @@
4361
5057
  {
4362
5058
  "name": "onFragment",
4363
5059
  "description": null,
4364
- "args": [],
5060
+ "args": [
5061
+
5062
+ ],
4365
5063
  "type": {
4366
5064
  "kind": "NON_NULL",
4367
5065
  "name": null,
@@ -4377,7 +5075,9 @@
4377
5075
  {
4378
5076
  "name": "onOperation",
4379
5077
  "description": null,
4380
- "args": [],
5078
+ "args": [
5079
+
5080
+ ],
4381
5081
  "type": {
4382
5082
  "kind": "NON_NULL",
4383
5083
  "name": null,
@@ -4392,7 +5092,9 @@
4392
5092
  }
4393
5093
  ],
4394
5094
  "inputFields": null,
4395
- "interfaces": [],
5095
+ "interfaces": [
5096
+
5097
+ ],
4396
5098
  "enumValues": null,
4397
5099
  "possibleTypes": null
4398
5100
  },
@@ -4523,7 +5225,9 @@
4523
5225
  {
4524
5226
  "name": "deprecationReason",
4525
5227
  "description": null,
4526
- "args": [],
5228
+ "args": [
5229
+
5230
+ ],
4527
5231
  "type": {
4528
5232
  "kind": "SCALAR",
4529
5233
  "name": "String",
@@ -4535,7 +5239,9 @@
4535
5239
  {
4536
5240
  "name": "description",
4537
5241
  "description": null,
4538
- "args": [],
5242
+ "args": [
5243
+
5244
+ ],
4539
5245
  "type": {
4540
5246
  "kind": "SCALAR",
4541
5247
  "name": "String",
@@ -4547,7 +5253,9 @@
4547
5253
  {
4548
5254
  "name": "isDeprecated",
4549
5255
  "description": null,
4550
- "args": [],
5256
+ "args": [
5257
+
5258
+ ],
4551
5259
  "type": {
4552
5260
  "kind": "NON_NULL",
4553
5261
  "name": null,
@@ -4563,7 +5271,9 @@
4563
5271
  {
4564
5272
  "name": "name",
4565
5273
  "description": null,
4566
- "args": [],
5274
+ "args": [
5275
+
5276
+ ],
4567
5277
  "type": {
4568
5278
  "kind": "NON_NULL",
4569
5279
  "name": null,
@@ -4578,7 +5288,9 @@
4578
5288
  }
4579
5289
  ],
4580
5290
  "inputFields": null,
4581
- "interfaces": [],
5291
+ "interfaces": [
5292
+
5293
+ ],
4582
5294
  "enumValues": null,
4583
5295
  "possibleTypes": null
4584
5296
  },
@@ -4590,7 +5302,9 @@
4590
5302
  {
4591
5303
  "name": "args",
4592
5304
  "description": null,
4593
- "args": [],
5305
+ "args": [
5306
+
5307
+ ],
4594
5308
  "type": {
4595
5309
  "kind": "NON_NULL",
4596
5310
  "name": null,
@@ -4614,7 +5328,9 @@
4614
5328
  {
4615
5329
  "name": "deprecationReason",
4616
5330
  "description": null,
4617
- "args": [],
5331
+ "args": [
5332
+
5333
+ ],
4618
5334
  "type": {
4619
5335
  "kind": "SCALAR",
4620
5336
  "name": "String",
@@ -4626,7 +5342,9 @@
4626
5342
  {
4627
5343
  "name": "description",
4628
5344
  "description": null,
4629
- "args": [],
5345
+ "args": [
5346
+
5347
+ ],
4630
5348
  "type": {
4631
5349
  "kind": "SCALAR",
4632
5350
  "name": "String",
@@ -4638,7 +5356,9 @@
4638
5356
  {
4639
5357
  "name": "isDeprecated",
4640
5358
  "description": null,
4641
- "args": [],
5359
+ "args": [
5360
+
5361
+ ],
4642
5362
  "type": {
4643
5363
  "kind": "NON_NULL",
4644
5364
  "name": null,
@@ -4654,7 +5374,9 @@
4654
5374
  {
4655
5375
  "name": "name",
4656
5376
  "description": null,
4657
- "args": [],
5377
+ "args": [
5378
+
5379
+ ],
4658
5380
  "type": {
4659
5381
  "kind": "NON_NULL",
4660
5382
  "name": null,
@@ -4670,7 +5392,9 @@
4670
5392
  {
4671
5393
  "name": "type",
4672
5394
  "description": null,
4673
- "args": [],
5395
+ "args": [
5396
+
5397
+ ],
4674
5398
  "type": {
4675
5399
  "kind": "NON_NULL",
4676
5400
  "name": null,
@@ -4685,7 +5409,9 @@
4685
5409
  }
4686
5410
  ],
4687
5411
  "inputFields": null,
4688
- "interfaces": [],
5412
+ "interfaces": [
5413
+
5414
+ ],
4689
5415
  "enumValues": null,
4690
5416
  "possibleTypes": null
4691
5417
  },
@@ -4697,7 +5423,9 @@
4697
5423
  {
4698
5424
  "name": "defaultValue",
4699
5425
  "description": "A GraphQL-formatted string representing the default value for this input value.",
4700
- "args": [],
5426
+ "args": [
5427
+
5428
+ ],
4701
5429
  "type": {
4702
5430
  "kind": "SCALAR",
4703
5431
  "name": "String",
@@ -4709,7 +5437,9 @@
4709
5437
  {
4710
5438
  "name": "description",
4711
5439
  "description": null,
4712
- "args": [],
5440
+ "args": [
5441
+
5442
+ ],
4713
5443
  "type": {
4714
5444
  "kind": "SCALAR",
4715
5445
  "name": "String",
@@ -4721,7 +5451,9 @@
4721
5451
  {
4722
5452
  "name": "name",
4723
5453
  "description": null,
4724
- "args": [],
5454
+ "args": [
5455
+
5456
+ ],
4725
5457
  "type": {
4726
5458
  "kind": "NON_NULL",
4727
5459
  "name": null,
@@ -4737,7 +5469,9 @@
4737
5469
  {
4738
5470
  "name": "type",
4739
5471
  "description": null,
4740
- "args": [],
5472
+ "args": [
5473
+
5474
+ ],
4741
5475
  "type": {
4742
5476
  "kind": "NON_NULL",
4743
5477
  "name": null,
@@ -4752,7 +5486,9 @@
4752
5486
  }
4753
5487
  ],
4754
5488
  "inputFields": null,
4755
- "interfaces": [],
5489
+ "interfaces": [
5490
+
5491
+ ],
4756
5492
  "enumValues": null,
4757
5493
  "possibleTypes": null
4758
5494
  },
@@ -4764,7 +5500,9 @@
4764
5500
  {
4765
5501
  "name": "directives",
4766
5502
  "description": "A list of all directives supported by this server.",
4767
- "args": [],
5503
+ "args": [
5504
+
5505
+ ],
4768
5506
  "type": {
4769
5507
  "kind": "NON_NULL",
4770
5508
  "name": null,
@@ -4788,7 +5526,9 @@
4788
5526
  {
4789
5527
  "name": "mutationType",
4790
5528
  "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
4791
- "args": [],
5529
+ "args": [
5530
+
5531
+ ],
4792
5532
  "type": {
4793
5533
  "kind": "OBJECT",
4794
5534
  "name": "__Type",
@@ -4800,7 +5540,9 @@
4800
5540
  {
4801
5541
  "name": "queryType",
4802
5542
  "description": "The type that query operations will be rooted at.",
4803
- "args": [],
5543
+ "args": [
5544
+
5545
+ ],
4804
5546
  "type": {
4805
5547
  "kind": "NON_NULL",
4806
5548
  "name": null,
@@ -4816,7 +5558,9 @@
4816
5558
  {
4817
5559
  "name": "subscriptionType",
4818
5560
  "description": "If this server support subscription, the type that subscription operations will be rooted at.",
4819
- "args": [],
5561
+ "args": [
5562
+
5563
+ ],
4820
5564
  "type": {
4821
5565
  "kind": "OBJECT",
4822
5566
  "name": "__Type",
@@ -4828,7 +5572,9 @@
4828
5572
  {
4829
5573
  "name": "types",
4830
5574
  "description": "A list of all types supported by this server.",
4831
- "args": [],
5575
+ "args": [
5576
+
5577
+ ],
4832
5578
  "type": {
4833
5579
  "kind": "NON_NULL",
4834
5580
  "name": null,
@@ -4851,7 +5597,9 @@
4851
5597
  }
4852
5598
  ],
4853
5599
  "inputFields": null,
4854
- "interfaces": [],
5600
+ "interfaces": [
5601
+
5602
+ ],
4855
5603
  "enumValues": null,
4856
5604
  "possibleTypes": null
4857
5605
  },
@@ -4863,7 +5611,9 @@
4863
5611
  {
4864
5612
  "name": "description",
4865
5613
  "description": null,
4866
- "args": [],
5614
+ "args": [
5615
+
5616
+ ],
4867
5617
  "type": {
4868
5618
  "kind": "SCALAR",
4869
5619
  "name": "String",
@@ -4937,7 +5687,9 @@
4937
5687
  {
4938
5688
  "name": "inputFields",
4939
5689
  "description": null,
4940
- "args": [],
5690
+ "args": [
5691
+
5692
+ ],
4941
5693
  "type": {
4942
5694
  "kind": "LIST",
4943
5695
  "name": null,
@@ -4957,7 +5709,9 @@
4957
5709
  {
4958
5710
  "name": "interfaces",
4959
5711
  "description": null,
4960
- "args": [],
5712
+ "args": [
5713
+
5714
+ ],
4961
5715
  "type": {
4962
5716
  "kind": "LIST",
4963
5717
  "name": null,
@@ -4977,7 +5731,9 @@
4977
5731
  {
4978
5732
  "name": "kind",
4979
5733
  "description": null,
4980
- "args": [],
5734
+ "args": [
5735
+
5736
+ ],
4981
5737
  "type": {
4982
5738
  "kind": "NON_NULL",
4983
5739
  "name": null,
@@ -4993,7 +5749,9 @@
4993
5749
  {
4994
5750
  "name": "name",
4995
5751
  "description": null,
4996
- "args": [],
5752
+ "args": [
5753
+
5754
+ ],
4997
5755
  "type": {
4998
5756
  "kind": "SCALAR",
4999
5757
  "name": "String",
@@ -5005,7 +5763,9 @@
5005
5763
  {
5006
5764
  "name": "ofType",
5007
5765
  "description": null,
5008
- "args": [],
5766
+ "args": [
5767
+
5768
+ ],
5009
5769
  "type": {
5010
5770
  "kind": "OBJECT",
5011
5771
  "name": "__Type",
@@ -5017,7 +5777,9 @@
5017
5777
  {
5018
5778
  "name": "possibleTypes",
5019
5779
  "description": null,
5020
- "args": [],
5780
+ "args": [
5781
+
5782
+ ],
5021
5783
  "type": {
5022
5784
  "kind": "LIST",
5023
5785
  "name": null,
@@ -5036,7 +5798,9 @@
5036
5798
  }
5037
5799
  ],
5038
5800
  "inputFields": null,
5039
- "interfaces": [],
5801
+ "interfaces": [
5802
+
5803
+ ],
5040
5804
  "enumValues": null,
5041
5805
  "possibleTypes": null
5042
5806
  },
@@ -5104,7 +5868,11 @@
5104
5868
  {
5105
5869
  "name": "include",
5106
5870
  "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
5107
- "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
5871
+ "locations": [
5872
+ "FIELD",
5873
+ "FRAGMENT_SPREAD",
5874
+ "INLINE_FRAGMENT"
5875
+ ],
5108
5876
  "args": [
5109
5877
  {
5110
5878
  "name": "if",
@@ -5125,7 +5893,11 @@
5125
5893
  {
5126
5894
  "name": "skip",
5127
5895
  "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
5128
- "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
5896
+ "locations": [
5897
+ "FIELD",
5898
+ "FRAGMENT_SPREAD",
5899
+ "INLINE_FRAGMENT"
5900
+ ],
5129
5901
  "args": [
5130
5902
  {
5131
5903
  "name": "if",
@@ -5146,7 +5918,10 @@
5146
5918
  {
5147
5919
  "name": "deprecated",
5148
5920
  "description": "Marks an element of a GraphQL schema as no longer supported.",
5149
- "locations": ["FIELD_DEFINITION", "ENUM_VALUE"],
5921
+ "locations": [
5922
+ "FIELD_DEFINITION",
5923
+ "ENUM_VALUE"
5924
+ ],
5150
5925
  "args": [
5151
5926
  {
5152
5927
  "name": "reason",
@@ -5163,4 +5938,4 @@
5163
5938
  ]
5164
5939
  }
5165
5940
  }
5166
- }
5941
+ }