billfixers-partner 1.1.2 → 1.1.7
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 +4 -4
- data/.gitignore +1 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +3 -1
- data/lib/billfixers/partner/client.rb +27 -4
- data/lib/billfixers/partner/gql.rb +35 -4
- data/lib/billfixers/partner/version.rb +1 -1
- data/partner_schema.json +834 -895
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d694178a104c7c506bb08c5aef147484b7b3d6b1168d5e628f6e54a3d2e97a39
|
4
|
+
data.tar.gz: 252f1ec52acb3116c111c89e3d773c35e18e6f63fc6fc8c78ea9c8627ea53eaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 052be6f040d85f499bb727ada49f4e827470583d9168c8cb2930d9d0532a323b625296878f855bef7d25ab74e11ddf655bb2bc6b0fdff9c539212e89917f7a4f
|
7
|
+
data.tar.gz: dfb98fad4258124d7490a2056a2a8327e8b85516e362dda6a425ccaadb571d9b1106446141a8415df6bad892fb3a981b443f660b30a875635bc31aad7499b8bb
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
billfixers-partner (1.
|
4
|
+
billfixers-partner (1.1.4)
|
5
5
|
activesupport
|
6
6
|
graphlient
|
7
7
|
|
@@ -16,6 +16,7 @@ GEM
|
|
16
16
|
zeitwerk (~> 2.2, >= 2.2.2)
|
17
17
|
addressable (2.7.0)
|
18
18
|
public_suffix (>= 2.0.2, < 5.0)
|
19
|
+
byebug (11.1.3)
|
19
20
|
concurrent-ruby (1.1.7)
|
20
21
|
crack (0.4.3)
|
21
22
|
safe_yaml (~> 1.0.0)
|
@@ -54,6 +55,7 @@ PLATFORMS
|
|
54
55
|
DEPENDENCIES
|
55
56
|
activesupport
|
56
57
|
billfixers-partner!
|
58
|
+
byebug
|
57
59
|
graphlient
|
58
60
|
minitest (~> 5.0)
|
59
61
|
rake (~> 12.0)
|
@@ -103,9 +103,10 @@ module Billfixers
|
|
103
103
|
result.customer
|
104
104
|
end
|
105
105
|
|
106
|
-
def create_bill(customer_id, params)
|
106
|
+
def create_bill(customer_id, provider_id, params)
|
107
107
|
response = @gql.query(CREATE_BILL_MUTATION, {
|
108
108
|
customer_id: customer_id,
|
109
|
+
provider_id: provider_id,
|
109
110
|
bill: camelize(params)
|
110
111
|
})
|
111
112
|
|
@@ -115,10 +116,32 @@ module Billfixers
|
|
115
116
|
result.bill
|
116
117
|
end
|
117
118
|
|
118
|
-
def
|
119
|
-
response = @gql.query(
|
119
|
+
def update_bill(bill_id, params)
|
120
|
+
response = @gql.query(UPDATE_BILL_MUTATION, {
|
121
|
+
bill_id: bill_id,
|
122
|
+
bill: camelize(params)
|
123
|
+
})
|
124
|
+
|
125
|
+
result = response.data.update_bill
|
126
|
+
raise Error, result.errors.join(' ') unless result.success
|
127
|
+
|
128
|
+
result.bill
|
129
|
+
end
|
130
|
+
|
131
|
+
def renegotiate_bill(bill_id)
|
132
|
+
response = @gql.query(RENEGOTIATE_BILL_MUTATION, { id: bill_id })
|
133
|
+
|
134
|
+
response.data.renegotiate_bill
|
135
|
+
end
|
136
|
+
|
137
|
+
def stop_negotiating(bill_id)
|
138
|
+
response = @gql.query(STOP_NEGOTIATING_MUTATION, { id: bill_id })
|
139
|
+
|
140
|
+
result = response.data.stop_negotiating
|
141
|
+
|
142
|
+
raise Error, result.errors.join(' ') unless result.success
|
120
143
|
|
121
|
-
|
144
|
+
result
|
122
145
|
end
|
123
146
|
|
124
147
|
def accept_offer(offer_id)
|
@@ -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}
|
@@ -65,6 +67,7 @@ module Billfixers
|
|
65
67
|
status
|
66
68
|
content
|
67
69
|
contentHtml
|
70
|
+
daysUntilExpiration
|
68
71
|
createdAt
|
69
72
|
updatedAt
|
70
73
|
acceptedAt
|
@@ -208,8 +211,8 @@ module Billfixers
|
|
208
211
|
)
|
209
212
|
|
210
213
|
CREATE_BILL_MUTATION = %(
|
211
|
-
mutation($customer_id: ID!, $bill: BillAttributes!) {
|
212
|
-
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 }) {
|
213
216
|
success
|
214
217
|
errors
|
215
218
|
bill {
|
@@ -219,10 +222,38 @@ module Billfixers
|
|
219
222
|
}
|
220
223
|
)
|
221
224
|
|
222
|
-
|
225
|
+
UPDATE_BILL_MUTATION = %(
|
226
|
+
mutation($bill_id: ID!, $bill: BillAttributes!) {
|
227
|
+
UpdateBill(input: { billId: $bill_id, bill: $bill }) {
|
228
|
+
success
|
229
|
+
errors
|
230
|
+
bill {
|
231
|
+
#{BILL_FRAGMENT}
|
232
|
+
}
|
233
|
+
}
|
234
|
+
}
|
235
|
+
)
|
236
|
+
|
237
|
+
STOP_NEGOTIATING_MUTATION = %(
|
223
238
|
mutation($id: ID!) {
|
224
|
-
|
239
|
+
StopNegotiating(input: { id: $id }) {
|
225
240
|
success
|
241
|
+
errors
|
242
|
+
bill {
|
243
|
+
#{BILL_FRAGMENT}
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}
|
247
|
+
)
|
248
|
+
|
249
|
+
RENEGOTIATE_BILL_MUTATION = %(
|
250
|
+
mutation($id: ID!) {
|
251
|
+
RenegotiateBill(input: { id: $id }) {
|
252
|
+
success
|
253
|
+
errors
|
254
|
+
bill {
|
255
|
+
#{BILL_FRAGMENT}
|
256
|
+
}
|
226
257
|
}
|
227
258
|
}
|
228
259
|
)
|
data/partner_schema.json
CHANGED
@@ -52,9 +52,7 @@
|
|
52
52
|
{
|
53
53
|
"name": "clientMutationId",
|
54
54
|
"description": "A unique identifier for the client performing the mutation.",
|
55
|
-
"args": [
|
56
|
-
|
57
|
-
],
|
55
|
+
"args": [],
|
58
56
|
"type": {
|
59
57
|
"kind": "SCALAR",
|
60
58
|
"name": "String",
|
@@ -66,9 +64,7 @@
|
|
66
64
|
{
|
67
65
|
"name": "errors",
|
68
66
|
"description": null,
|
69
|
-
"args": [
|
70
|
-
|
71
|
-
],
|
67
|
+
"args": [],
|
72
68
|
"type": {
|
73
69
|
"kind": "NON_NULL",
|
74
70
|
"name": null,
|
@@ -92,9 +88,7 @@
|
|
92
88
|
{
|
93
89
|
"name": "offer",
|
94
90
|
"description": null,
|
95
|
-
"args": [
|
96
|
-
|
97
|
-
],
|
91
|
+
"args": [],
|
98
92
|
"type": {
|
99
93
|
"kind": "OBJECT",
|
100
94
|
"name": "Offer",
|
@@ -106,9 +100,7 @@
|
|
106
100
|
{
|
107
101
|
"name": "success",
|
108
102
|
"description": null,
|
109
|
-
"args": [
|
110
|
-
|
111
|
-
],
|
103
|
+
"args": [],
|
112
104
|
"type": {
|
113
105
|
"kind": "NON_NULL",
|
114
106
|
"name": null,
|
@@ -123,9 +115,7 @@
|
|
123
115
|
}
|
124
116
|
],
|
125
117
|
"inputFields": null,
|
126
|
-
"interfaces": [
|
127
|
-
|
128
|
-
],
|
118
|
+
"interfaces": [],
|
129
119
|
"enumValues": null,
|
130
120
|
"possibleTypes": null
|
131
121
|
},
|
@@ -134,12 +124,54 @@
|
|
134
124
|
"name": "Bill",
|
135
125
|
"description": null,
|
136
126
|
"fields": [
|
127
|
+
{
|
128
|
+
"name": "allowsContract",
|
129
|
+
"description": "",
|
130
|
+
"args": [],
|
131
|
+
"type": {
|
132
|
+
"kind": "NON_NULL",
|
133
|
+
"name": null,
|
134
|
+
"ofType": {
|
135
|
+
"kind": "SCALAR",
|
136
|
+
"name": "Boolean",
|
137
|
+
"ofType": null
|
138
|
+
}
|
139
|
+
},
|
140
|
+
"isDeprecated": false,
|
141
|
+
"deprecationReason": null
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"name": "autoRenegotiate",
|
145
|
+
"description": "",
|
146
|
+
"args": [],
|
147
|
+
"type": {
|
148
|
+
"kind": "NON_NULL",
|
149
|
+
"name": null,
|
150
|
+
"ofType": {
|
151
|
+
"kind": "SCALAR",
|
152
|
+
"name": "Boolean",
|
153
|
+
"ofType": null
|
154
|
+
}
|
155
|
+
},
|
156
|
+
"isDeprecated": false,
|
157
|
+
"deprecationReason": null
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"name": "cancelledAt",
|
161
|
+
"description": "The date the bill negotiations were cancelled, if present",
|
162
|
+
"args": [],
|
163
|
+
"type": {
|
164
|
+
"kind": "SCALAR",
|
165
|
+
"name": "DateTime",
|
166
|
+
"ofType": null
|
167
|
+
},
|
168
|
+
"isDeprecated": false,
|
169
|
+
"deprecationReason": null
|
170
|
+
},
|
137
171
|
{
|
138
172
|
"name": "createdAt",
|
139
173
|
"description": "The date the record was created",
|
140
|
-
"args": [
|
141
|
-
|
142
|
-
],
|
174
|
+
"args": [],
|
143
175
|
"type": {
|
144
176
|
"kind": "NON_NULL",
|
145
177
|
"name": null,
|
@@ -155,9 +187,7 @@
|
|
155
187
|
{
|
156
188
|
"name": "customer",
|
157
189
|
"description": null,
|
158
|
-
"args": [
|
159
|
-
|
160
|
-
],
|
190
|
+
"args": [],
|
161
191
|
"type": {
|
162
192
|
"kind": "NON_NULL",
|
163
193
|
"name": null,
|
@@ -173,9 +203,7 @@
|
|
173
203
|
{
|
174
204
|
"name": "customerId",
|
175
205
|
"description": "Billfixer's alpha-numeric Customer ID",
|
176
|
-
"args": [
|
177
|
-
|
178
|
-
],
|
206
|
+
"args": [],
|
179
207
|
"type": {
|
180
208
|
"kind": "NON_NULL",
|
181
209
|
"name": null,
|
@@ -191,9 +219,7 @@
|
|
191
219
|
{
|
192
220
|
"name": "id",
|
193
221
|
"description": "Alpha-numeric unique identifier",
|
194
|
-
"args": [
|
195
|
-
|
196
|
-
],
|
222
|
+
"args": [],
|
197
223
|
"type": {
|
198
224
|
"kind": "NON_NULL",
|
199
225
|
"name": null,
|
@@ -209,9 +235,7 @@
|
|
209
235
|
{
|
210
236
|
"name": "items",
|
211
237
|
"description": "The items on the bill",
|
212
|
-
"args": [
|
213
|
-
|
214
|
-
],
|
238
|
+
"args": [],
|
215
239
|
"type": {
|
216
240
|
"kind": "NON_NULL",
|
217
241
|
"name": null,
|
@@ -235,9 +259,7 @@
|
|
235
259
|
{
|
236
260
|
"name": "offers",
|
237
261
|
"description": null,
|
238
|
-
"args": [
|
239
|
-
|
240
|
-
],
|
262
|
+
"args": [],
|
241
263
|
"type": {
|
242
264
|
"kind": "NON_NULL",
|
243
265
|
"name": null,
|
@@ -261,9 +283,7 @@
|
|
261
283
|
{
|
262
284
|
"name": "provider",
|
263
285
|
"description": null,
|
264
|
-
"args": [
|
265
|
-
|
266
|
-
],
|
286
|
+
"args": [],
|
267
287
|
"type": {
|
268
288
|
"kind": "NON_NULL",
|
269
289
|
"name": null,
|
@@ -279,9 +299,7 @@
|
|
279
299
|
{
|
280
300
|
"name": "providerId",
|
281
301
|
"description": "Billfixer's alpha-numeric Provider ID",
|
282
|
-
"args": [
|
283
|
-
|
284
|
-
],
|
302
|
+
"args": [],
|
285
303
|
"type": {
|
286
304
|
"kind": "NON_NULL",
|
287
305
|
"name": null,
|
@@ -297,9 +315,7 @@
|
|
297
315
|
{
|
298
316
|
"name": "status",
|
299
317
|
"description": "Status of the bill",
|
300
|
-
"args": [
|
301
|
-
|
302
|
-
],
|
318
|
+
"args": [],
|
303
319
|
"type": {
|
304
320
|
"kind": "NON_NULL",
|
305
321
|
"name": null,
|
@@ -315,9 +331,7 @@
|
|
315
331
|
{
|
316
332
|
"name": "title",
|
317
333
|
"description": "Title of the bill",
|
318
|
-
"args": [
|
319
|
-
|
320
|
-
],
|
334
|
+
"args": [],
|
321
335
|
"type": {
|
322
336
|
"kind": "NON_NULL",
|
323
337
|
"name": null,
|
@@ -333,9 +347,7 @@
|
|
333
347
|
{
|
334
348
|
"name": "totalSavings",
|
335
349
|
"description": "The total value gained from negotiations",
|
336
|
-
"args": [
|
337
|
-
|
338
|
-
],
|
350
|
+
"args": [],
|
339
351
|
"type": {
|
340
352
|
"kind": "NON_NULL",
|
341
353
|
"name": null,
|
@@ -351,9 +363,7 @@
|
|
351
363
|
{
|
352
364
|
"name": "updatedAt",
|
353
365
|
"description": "The last time the record was updated",
|
354
|
-
"args": [
|
355
|
-
|
356
|
-
],
|
366
|
+
"args": [],
|
357
367
|
"type": {
|
358
368
|
"kind": "NON_NULL",
|
359
369
|
"name": null,
|
@@ -368,9 +378,7 @@
|
|
368
378
|
}
|
369
379
|
],
|
370
380
|
"inputFields": null,
|
371
|
-
"interfaces": [
|
372
|
-
|
373
|
-
],
|
381
|
+
"interfaces": [],
|
374
382
|
"enumValues": null,
|
375
383
|
"possibleTypes": null
|
376
384
|
},
|
@@ -380,20 +388,6 @@
|
|
380
388
|
"description": "Attributes for creating or updating a bill",
|
381
389
|
"fields": null,
|
382
390
|
"inputFields": [
|
383
|
-
{
|
384
|
-
"name": "providerId",
|
385
|
-
"description": "The ID of the Provider",
|
386
|
-
"type": {
|
387
|
-
"kind": "NON_NULL",
|
388
|
-
"name": null,
|
389
|
-
"ofType": {
|
390
|
-
"kind": "SCALAR",
|
391
|
-
"name": "ID",
|
392
|
-
"ofType": null
|
393
|
-
}
|
394
|
-
},
|
395
|
-
"defaultValue": null
|
396
|
-
},
|
397
391
|
{
|
398
392
|
"name": "last4ssn",
|
399
393
|
"description": "The last 4 digits of the customer's social security number",
|
@@ -451,16 +445,6 @@
|
|
451
445
|
}
|
452
446
|
},
|
453
447
|
"defaultValue": null
|
454
|
-
},
|
455
|
-
{
|
456
|
-
"name": "createdVia",
|
457
|
-
"description": null,
|
458
|
-
"type": {
|
459
|
-
"kind": "SCALAR",
|
460
|
-
"name": "String",
|
461
|
-
"ofType": null
|
462
|
-
},
|
463
|
-
"defaultValue": null
|
464
448
|
}
|
465
449
|
],
|
466
450
|
"interfaces": null,
|
@@ -475,9 +459,7 @@
|
|
475
459
|
{
|
476
460
|
"name": "edges",
|
477
461
|
"description": "A list of edges.",
|
478
|
-
"args": [
|
479
|
-
|
480
|
-
],
|
462
|
+
"args": [],
|
481
463
|
"type": {
|
482
464
|
"kind": "NON_NULL",
|
483
465
|
"name": null,
|
@@ -501,9 +483,7 @@
|
|
501
483
|
{
|
502
484
|
"name": "nodes",
|
503
485
|
"description": "A list of nodes.",
|
504
|
-
"args": [
|
505
|
-
|
506
|
-
],
|
486
|
+
"args": [],
|
507
487
|
"type": {
|
508
488
|
"kind": "NON_NULL",
|
509
489
|
"name": null,
|
@@ -527,9 +507,7 @@
|
|
527
507
|
{
|
528
508
|
"name": "pageInfo",
|
529
509
|
"description": "Information to aid in pagination.",
|
530
|
-
"args": [
|
531
|
-
|
532
|
-
],
|
510
|
+
"args": [],
|
533
511
|
"type": {
|
534
512
|
"kind": "NON_NULL",
|
535
513
|
"name": null,
|
@@ -545,9 +523,7 @@
|
|
545
523
|
{
|
546
524
|
"name": "totalCount",
|
547
525
|
"description": null,
|
548
|
-
"args": [
|
549
|
-
|
550
|
-
],
|
526
|
+
"args": [],
|
551
527
|
"type": {
|
552
528
|
"kind": "NON_NULL",
|
553
529
|
"name": null,
|
@@ -563,9 +539,7 @@
|
|
563
539
|
{
|
564
540
|
"name": "totalSavings",
|
565
541
|
"description": null,
|
566
|
-
"args": [
|
567
|
-
|
568
|
-
],
|
542
|
+
"args": [],
|
569
543
|
"type": {
|
570
544
|
"kind": "NON_NULL",
|
571
545
|
"name": null,
|
@@ -580,9 +554,7 @@
|
|
580
554
|
}
|
581
555
|
],
|
582
556
|
"inputFields": null,
|
583
|
-
"interfaces": [
|
584
|
-
|
585
|
-
],
|
557
|
+
"interfaces": [],
|
586
558
|
"enumValues": null,
|
587
559
|
"possibleTypes": null
|
588
560
|
},
|
@@ -594,9 +566,7 @@
|
|
594
566
|
{
|
595
567
|
"name": "cursor",
|
596
568
|
"description": "A cursor for use in pagination.",
|
597
|
-
"args": [
|
598
|
-
|
599
|
-
],
|
569
|
+
"args": [],
|
600
570
|
"type": {
|
601
571
|
"kind": "NON_NULL",
|
602
572
|
"name": null,
|
@@ -612,9 +582,7 @@
|
|
612
582
|
{
|
613
583
|
"name": "node",
|
614
584
|
"description": "The item at the end of the edge.",
|
615
|
-
"args": [
|
616
|
-
|
617
|
-
],
|
585
|
+
"args": [],
|
618
586
|
"type": {
|
619
587
|
"kind": "OBJECT",
|
620
588
|
"name": "Bill",
|
@@ -625,9 +593,7 @@
|
|
625
593
|
}
|
626
594
|
],
|
627
595
|
"inputFields": null,
|
628
|
-
"interfaces": [
|
629
|
-
|
630
|
-
],
|
596
|
+
"interfaces": [],
|
631
597
|
"enumValues": null,
|
632
598
|
"possibleTypes": null
|
633
599
|
},
|
@@ -643,93 +609,27 @@
|
|
643
609
|
},
|
644
610
|
{
|
645
611
|
"kind": "INPUT_OBJECT",
|
646
|
-
"name": "
|
647
|
-
"description": "Autogenerated input type of
|
612
|
+
"name": "CreateBillInput",
|
613
|
+
"description": "Autogenerated input type of CreateBill",
|
648
614
|
"fields": null,
|
649
615
|
"inputFields": [
|
650
616
|
{
|
651
|
-
"name": "
|
652
|
-
"description":
|
617
|
+
"name": "customerId",
|
618
|
+
"description": "The ID of the customer",
|
653
619
|
"type": {
|
654
620
|
"kind": "NON_NULL",
|
655
621
|
"name": null,
|
656
622
|
"ofType": {
|
657
623
|
"kind": "SCALAR",
|
658
|
-
"name": "
|
624
|
+
"name": "ID",
|
659
625
|
"ofType": null
|
660
626
|
}
|
661
627
|
},
|
662
628
|
"defaultValue": null
|
663
629
|
},
|
664
630
|
{
|
665
|
-
"name": "
|
666
|
-
"description": "
|
667
|
-
"type": {
|
668
|
-
"kind": "SCALAR",
|
669
|
-
"name": "String",
|
670
|
-
"ofType": null
|
671
|
-
},
|
672
|
-
"defaultValue": null
|
673
|
-
}
|
674
|
-
],
|
675
|
-
"interfaces": null,
|
676
|
-
"enumValues": null,
|
677
|
-
"possibleTypes": null
|
678
|
-
},
|
679
|
-
{
|
680
|
-
"kind": "OBJECT",
|
681
|
-
"name": "CancelBillPayload",
|
682
|
-
"description": "Autogenerated return type of CancelBill",
|
683
|
-
"fields": [
|
684
|
-
{
|
685
|
-
"name": "clientMutationId",
|
686
|
-
"description": "A unique identifier for the client performing the mutation.",
|
687
|
-
"args": [
|
688
|
-
|
689
|
-
],
|
690
|
-
"type": {
|
691
|
-
"kind": "SCALAR",
|
692
|
-
"name": "String",
|
693
|
-
"ofType": null
|
694
|
-
},
|
695
|
-
"isDeprecated": false,
|
696
|
-
"deprecationReason": null
|
697
|
-
},
|
698
|
-
{
|
699
|
-
"name": "success",
|
700
|
-
"description": null,
|
701
|
-
"args": [
|
702
|
-
|
703
|
-
],
|
704
|
-
"type": {
|
705
|
-
"kind": "NON_NULL",
|
706
|
-
"name": null,
|
707
|
-
"ofType": {
|
708
|
-
"kind": "SCALAR",
|
709
|
-
"name": "Boolean",
|
710
|
-
"ofType": null
|
711
|
-
}
|
712
|
-
},
|
713
|
-
"isDeprecated": false,
|
714
|
-
"deprecationReason": null
|
715
|
-
}
|
716
|
-
],
|
717
|
-
"inputFields": null,
|
718
|
-
"interfaces": [
|
719
|
-
|
720
|
-
],
|
721
|
-
"enumValues": null,
|
722
|
-
"possibleTypes": null
|
723
|
-
},
|
724
|
-
{
|
725
|
-
"kind": "INPUT_OBJECT",
|
726
|
-
"name": "CreateBillInput",
|
727
|
-
"description": "Autogenerated input type of CreateBill",
|
728
|
-
"fields": null,
|
729
|
-
"inputFields": [
|
730
|
-
{
|
731
|
-
"name": "customerId",
|
732
|
-
"description": null,
|
631
|
+
"name": "providerId",
|
632
|
+
"description": "The ID of the provider",
|
733
633
|
"type": {
|
734
634
|
"kind": "NON_NULL",
|
735
635
|
"name": null,
|
@@ -778,9 +678,7 @@
|
|
778
678
|
{
|
779
679
|
"name": "bill",
|
780
680
|
"description": null,
|
781
|
-
"args": [
|
782
|
-
|
783
|
-
],
|
681
|
+
"args": [],
|
784
682
|
"type": {
|
785
683
|
"kind": "OBJECT",
|
786
684
|
"name": "Bill",
|
@@ -792,9 +690,7 @@
|
|
792
690
|
{
|
793
691
|
"name": "clientMutationId",
|
794
692
|
"description": "A unique identifier for the client performing the mutation.",
|
795
|
-
"args": [
|
796
|
-
|
797
|
-
],
|
693
|
+
"args": [],
|
798
694
|
"type": {
|
799
695
|
"kind": "SCALAR",
|
800
696
|
"name": "String",
|
@@ -806,9 +702,7 @@
|
|
806
702
|
{
|
807
703
|
"name": "errors",
|
808
704
|
"description": null,
|
809
|
-
"args": [
|
810
|
-
|
811
|
-
],
|
705
|
+
"args": [],
|
812
706
|
"type": {
|
813
707
|
"kind": "NON_NULL",
|
814
708
|
"name": null,
|
@@ -832,9 +726,7 @@
|
|
832
726
|
{
|
833
727
|
"name": "success",
|
834
728
|
"description": null,
|
835
|
-
"args": [
|
836
|
-
|
837
|
-
],
|
729
|
+
"args": [],
|
838
730
|
"type": {
|
839
731
|
"kind": "NON_NULL",
|
840
732
|
"name": null,
|
@@ -849,9 +741,7 @@
|
|
849
741
|
}
|
850
742
|
],
|
851
743
|
"inputFields": null,
|
852
|
-
"interfaces": [
|
853
|
-
|
854
|
-
],
|
744
|
+
"interfaces": [],
|
855
745
|
"enumValues": null,
|
856
746
|
"possibleTypes": null
|
857
747
|
},
|
@@ -898,9 +788,7 @@
|
|
898
788
|
{
|
899
789
|
"name": "clientMutationId",
|
900
790
|
"description": "A unique identifier for the client performing the mutation.",
|
901
|
-
"args": [
|
902
|
-
|
903
|
-
],
|
791
|
+
"args": [],
|
904
792
|
"type": {
|
905
793
|
"kind": "SCALAR",
|
906
794
|
"name": "String",
|
@@ -912,9 +800,7 @@
|
|
912
800
|
{
|
913
801
|
"name": "customer",
|
914
802
|
"description": null,
|
915
|
-
"args": [
|
916
|
-
|
917
|
-
],
|
803
|
+
"args": [],
|
918
804
|
"type": {
|
919
805
|
"kind": "OBJECT",
|
920
806
|
"name": "Customer",
|
@@ -926,9 +812,7 @@
|
|
926
812
|
{
|
927
813
|
"name": "errors",
|
928
814
|
"description": null,
|
929
|
-
"args": [
|
930
|
-
|
931
|
-
],
|
815
|
+
"args": [],
|
932
816
|
"type": {
|
933
817
|
"kind": "NON_NULL",
|
934
818
|
"name": null,
|
@@ -952,9 +836,7 @@
|
|
952
836
|
{
|
953
837
|
"name": "success",
|
954
838
|
"description": null,
|
955
|
-
"args": [
|
956
|
-
|
957
|
-
],
|
839
|
+
"args": [],
|
958
840
|
"type": {
|
959
841
|
"kind": "NON_NULL",
|
960
842
|
"name": null,
|
@@ -969,9 +851,7 @@
|
|
969
851
|
}
|
970
852
|
],
|
971
853
|
"inputFields": null,
|
972
|
-
"interfaces": [
|
973
|
-
|
974
|
-
],
|
854
|
+
"interfaces": [],
|
975
855
|
"enumValues": null,
|
976
856
|
"possibleTypes": null
|
977
857
|
},
|
@@ -983,9 +863,7 @@
|
|
983
863
|
{
|
984
864
|
"name": "avatarUrl",
|
985
865
|
"description": null,
|
986
|
-
"args": [
|
987
|
-
|
988
|
-
],
|
866
|
+
"args": [],
|
989
867
|
"type": {
|
990
868
|
"kind": "NON_NULL",
|
991
869
|
"name": null,
|
@@ -1001,9 +879,7 @@
|
|
1001
879
|
{
|
1002
880
|
"name": "b2b",
|
1003
881
|
"description": null,
|
1004
|
-
"args": [
|
1005
|
-
|
1006
|
-
],
|
882
|
+
"args": [],
|
1007
883
|
"type": {
|
1008
884
|
"kind": "NON_NULL",
|
1009
885
|
"name": null,
|
@@ -1076,9 +952,7 @@
|
|
1076
952
|
{
|
1077
953
|
"name": "createdAt",
|
1078
954
|
"description": null,
|
1079
|
-
"args": [
|
1080
|
-
|
1081
|
-
],
|
955
|
+
"args": [],
|
1082
956
|
"type": {
|
1083
957
|
"kind": "NON_NULL",
|
1084
958
|
"name": null,
|
@@ -1094,9 +968,7 @@
|
|
1094
968
|
{
|
1095
969
|
"name": "email",
|
1096
970
|
"description": null,
|
1097
|
-
"args": [
|
1098
|
-
|
1099
|
-
],
|
971
|
+
"args": [],
|
1100
972
|
"type": {
|
1101
973
|
"kind": "NON_NULL",
|
1102
974
|
"name": null,
|
@@ -1112,9 +984,7 @@
|
|
1112
984
|
{
|
1113
985
|
"name": "firstName",
|
1114
986
|
"description": null,
|
1115
|
-
"args": [
|
1116
|
-
|
1117
|
-
],
|
987
|
+
"args": [],
|
1118
988
|
"type": {
|
1119
989
|
"kind": "SCALAR",
|
1120
990
|
"name": "String",
|
@@ -1126,9 +996,7 @@
|
|
1126
996
|
{
|
1127
997
|
"name": "id",
|
1128
998
|
"description": null,
|
1129
|
-
"args": [
|
1130
|
-
|
1131
|
-
],
|
999
|
+
"args": [],
|
1132
1000
|
"type": {
|
1133
1001
|
"kind": "NON_NULL",
|
1134
1002
|
"name": null,
|
@@ -1144,9 +1012,7 @@
|
|
1144
1012
|
{
|
1145
1013
|
"name": "lastName",
|
1146
1014
|
"description": null,
|
1147
|
-
"args": [
|
1148
|
-
|
1149
|
-
],
|
1015
|
+
"args": [],
|
1150
1016
|
"type": {
|
1151
1017
|
"kind": "SCALAR",
|
1152
1018
|
"name": "String",
|
@@ -1158,9 +1024,7 @@
|
|
1158
1024
|
{
|
1159
1025
|
"name": "name",
|
1160
1026
|
"description": null,
|
1161
|
-
"args": [
|
1162
|
-
|
1163
|
-
],
|
1027
|
+
"args": [],
|
1164
1028
|
"type": {
|
1165
1029
|
"kind": "NON_NULL",
|
1166
1030
|
"name": null,
|
@@ -1176,9 +1040,7 @@
|
|
1176
1040
|
{
|
1177
1041
|
"name": "phoneNumber",
|
1178
1042
|
"description": null,
|
1179
|
-
"args": [
|
1180
|
-
|
1181
|
-
],
|
1043
|
+
"args": [],
|
1182
1044
|
"type": {
|
1183
1045
|
"kind": "SCALAR",
|
1184
1046
|
"name": "String",
|
@@ -1190,9 +1052,7 @@
|
|
1190
1052
|
{
|
1191
1053
|
"name": "updatedAt",
|
1192
1054
|
"description": null,
|
1193
|
-
"args": [
|
1194
|
-
|
1195
|
-
],
|
1055
|
+
"args": [],
|
1196
1056
|
"type": {
|
1197
1057
|
"kind": "NON_NULL",
|
1198
1058
|
"name": null,
|
@@ -1207,9 +1067,7 @@
|
|
1207
1067
|
}
|
1208
1068
|
],
|
1209
1069
|
"inputFields": null,
|
1210
|
-
"interfaces": [
|
1211
|
-
|
1212
|
-
],
|
1070
|
+
"interfaces": [],
|
1213
1071
|
"enumValues": null,
|
1214
1072
|
"possibleTypes": null
|
1215
1073
|
},
|
@@ -1239,16 +1097,6 @@
|
|
1239
1097
|
},
|
1240
1098
|
"defaultValue": null
|
1241
1099
|
},
|
1242
|
-
{
|
1243
|
-
"name": "externalId",
|
1244
|
-
"description": null,
|
1245
|
-
"type": {
|
1246
|
-
"kind": "SCALAR",
|
1247
|
-
"name": "String",
|
1248
|
-
"ofType": null
|
1249
|
-
},
|
1250
|
-
"defaultValue": null
|
1251
|
-
},
|
1252
1100
|
{
|
1253
1101
|
"name": "firstName",
|
1254
1102
|
"description": null,
|
@@ -1312,9 +1160,7 @@
|
|
1312
1160
|
{
|
1313
1161
|
"name": "edges",
|
1314
1162
|
"description": "A list of edges.",
|
1315
|
-
"args": [
|
1316
|
-
|
1317
|
-
],
|
1163
|
+
"args": [],
|
1318
1164
|
"type": {
|
1319
1165
|
"kind": "NON_NULL",
|
1320
1166
|
"name": null,
|
@@ -1338,9 +1184,7 @@
|
|
1338
1184
|
{
|
1339
1185
|
"name": "nodes",
|
1340
1186
|
"description": "A list of nodes.",
|
1341
|
-
"args": [
|
1342
|
-
|
1343
|
-
],
|
1187
|
+
"args": [],
|
1344
1188
|
"type": {
|
1345
1189
|
"kind": "NON_NULL",
|
1346
1190
|
"name": null,
|
@@ -1364,9 +1208,7 @@
|
|
1364
1208
|
{
|
1365
1209
|
"name": "pageInfo",
|
1366
1210
|
"description": "Information to aid in pagination.",
|
1367
|
-
"args": [
|
1368
|
-
|
1369
|
-
],
|
1211
|
+
"args": [],
|
1370
1212
|
"type": {
|
1371
1213
|
"kind": "NON_NULL",
|
1372
1214
|
"name": null,
|
@@ -1382,9 +1224,7 @@
|
|
1382
1224
|
{
|
1383
1225
|
"name": "totalCount",
|
1384
1226
|
"description": null,
|
1385
|
-
"args": [
|
1386
|
-
|
1387
|
-
],
|
1227
|
+
"args": [],
|
1388
1228
|
"type": {
|
1389
1229
|
"kind": "NON_NULL",
|
1390
1230
|
"name": null,
|
@@ -1399,9 +1239,7 @@
|
|
1399
1239
|
}
|
1400
1240
|
],
|
1401
1241
|
"inputFields": null,
|
1402
|
-
"interfaces": [
|
1403
|
-
|
1404
|
-
],
|
1242
|
+
"interfaces": [],
|
1405
1243
|
"enumValues": null,
|
1406
1244
|
"possibleTypes": null
|
1407
1245
|
},
|
@@ -1413,9 +1251,7 @@
|
|
1413
1251
|
{
|
1414
1252
|
"name": "cursor",
|
1415
1253
|
"description": "A cursor for use in pagination.",
|
1416
|
-
"args": [
|
1417
|
-
|
1418
|
-
],
|
1254
|
+
"args": [],
|
1419
1255
|
"type": {
|
1420
1256
|
"kind": "NON_NULL",
|
1421
1257
|
"name": null,
|
@@ -1431,9 +1267,7 @@
|
|
1431
1267
|
{
|
1432
1268
|
"name": "node",
|
1433
1269
|
"description": "The item at the end of the edge.",
|
1434
|
-
"args": [
|
1435
|
-
|
1436
|
-
],
|
1270
|
+
"args": [],
|
1437
1271
|
"type": {
|
1438
1272
|
"kind": "OBJECT",
|
1439
1273
|
"name": "Customer",
|
@@ -1444,9 +1278,7 @@
|
|
1444
1278
|
}
|
1445
1279
|
],
|
1446
1280
|
"inputFields": null,
|
1447
|
-
"interfaces": [
|
1448
|
-
|
1449
|
-
],
|
1281
|
+
"interfaces": [],
|
1450
1282
|
"enumValues": null,
|
1451
1283
|
"possibleTypes": null
|
1452
1284
|
},
|
@@ -1468,9 +1300,7 @@
|
|
1468
1300
|
{
|
1469
1301
|
"name": "email",
|
1470
1302
|
"description": null,
|
1471
|
-
"args": [
|
1472
|
-
|
1473
|
-
],
|
1303
|
+
"args": [],
|
1474
1304
|
"type": {
|
1475
1305
|
"kind": "NON_NULL",
|
1476
1306
|
"name": null,
|
@@ -1486,9 +1316,7 @@
|
|
1486
1316
|
{
|
1487
1317
|
"name": "firstName",
|
1488
1318
|
"description": null,
|
1489
|
-
"args": [
|
1490
|
-
|
1491
|
-
],
|
1319
|
+
"args": [],
|
1492
1320
|
"type": {
|
1493
1321
|
"kind": "NON_NULL",
|
1494
1322
|
"name": null,
|
@@ -1504,9 +1332,7 @@
|
|
1504
1332
|
{
|
1505
1333
|
"name": "firstNameLastInitial",
|
1506
1334
|
"description": null,
|
1507
|
-
"args": [
|
1508
|
-
|
1509
|
-
],
|
1335
|
+
"args": [],
|
1510
1336
|
"type": {
|
1511
1337
|
"kind": "NON_NULL",
|
1512
1338
|
"name": null,
|
@@ -1522,9 +1348,7 @@
|
|
1522
1348
|
{
|
1523
1349
|
"name": "id",
|
1524
1350
|
"description": null,
|
1525
|
-
"args": [
|
1526
|
-
|
1527
|
-
],
|
1351
|
+
"args": [],
|
1528
1352
|
"type": {
|
1529
1353
|
"kind": "NON_NULL",
|
1530
1354
|
"name": null,
|
@@ -1540,9 +1364,7 @@
|
|
1540
1364
|
{
|
1541
1365
|
"name": "lastName",
|
1542
1366
|
"description": null,
|
1543
|
-
"args": [
|
1544
|
-
|
1545
|
-
],
|
1367
|
+
"args": [],
|
1546
1368
|
"type": {
|
1547
1369
|
"kind": "NON_NULL",
|
1548
1370
|
"name": null,
|
@@ -1558,9 +1380,7 @@
|
|
1558
1380
|
{
|
1559
1381
|
"name": "name",
|
1560
1382
|
"description": null,
|
1561
|
-
"args": [
|
1562
|
-
|
1563
|
-
],
|
1383
|
+
"args": [],
|
1564
1384
|
"type": {
|
1565
1385
|
"kind": "NON_NULL",
|
1566
1386
|
"name": null,
|
@@ -1576,9 +1396,7 @@
|
|
1576
1396
|
{
|
1577
1397
|
"name": "phoneNumber",
|
1578
1398
|
"description": null,
|
1579
|
-
"args": [
|
1580
|
-
|
1581
|
-
],
|
1399
|
+
"args": [],
|
1582
1400
|
"type": {
|
1583
1401
|
"kind": "SCALAR",
|
1584
1402
|
"name": "String",
|
@@ -1589,9 +1407,7 @@
|
|
1589
1407
|
}
|
1590
1408
|
],
|
1591
1409
|
"inputFields": null,
|
1592
|
-
"interfaces": [
|
1593
|
-
|
1594
|
-
],
|
1410
|
+
"interfaces": [],
|
1595
1411
|
"enumValues": null,
|
1596
1412
|
"possibleTypes": null
|
1597
1413
|
},
|
@@ -1623,9 +1439,7 @@
|
|
1623
1439
|
{
|
1624
1440
|
"name": "grandeUrl",
|
1625
1441
|
"description": null,
|
1626
|
-
"args": [
|
1627
|
-
|
1628
|
-
],
|
1442
|
+
"args": [],
|
1629
1443
|
"type": {
|
1630
1444
|
"kind": "NON_NULL",
|
1631
1445
|
"name": null,
|
@@ -1641,9 +1455,7 @@
|
|
1641
1455
|
{
|
1642
1456
|
"name": "iconUrl",
|
1643
1457
|
"description": null,
|
1644
|
-
"args": [
|
1645
|
-
|
1646
|
-
],
|
1458
|
+
"args": [],
|
1647
1459
|
"type": {
|
1648
1460
|
"kind": "NON_NULL",
|
1649
1461
|
"name": null,
|
@@ -1659,9 +1471,7 @@
|
|
1659
1471
|
{
|
1660
1472
|
"name": "id",
|
1661
1473
|
"description": null,
|
1662
|
-
"args": [
|
1663
|
-
|
1664
|
-
],
|
1474
|
+
"args": [],
|
1665
1475
|
"type": {
|
1666
1476
|
"kind": "SCALAR",
|
1667
1477
|
"name": "ID",
|
@@ -1673,9 +1483,7 @@
|
|
1673
1483
|
{
|
1674
1484
|
"name": "imageProcessed",
|
1675
1485
|
"description": null,
|
1676
|
-
"args": [
|
1677
|
-
|
1678
|
-
],
|
1486
|
+
"args": [],
|
1679
1487
|
"type": {
|
1680
1488
|
"kind": "NON_NULL",
|
1681
1489
|
"name": null,
|
@@ -1691,9 +1499,7 @@
|
|
1691
1499
|
{
|
1692
1500
|
"name": "largeUrl",
|
1693
1501
|
"description": null,
|
1694
|
-
"args": [
|
1695
|
-
|
1696
|
-
],
|
1502
|
+
"args": [],
|
1697
1503
|
"type": {
|
1698
1504
|
"kind": "NON_NULL",
|
1699
1505
|
"name": null,
|
@@ -1709,9 +1515,7 @@
|
|
1709
1515
|
{
|
1710
1516
|
"name": "mediumUrl",
|
1711
1517
|
"description": null,
|
1712
|
-
"args": [
|
1713
|
-
|
1714
|
-
],
|
1518
|
+
"args": [],
|
1715
1519
|
"type": {
|
1716
1520
|
"kind": "NON_NULL",
|
1717
1521
|
"name": null,
|
@@ -1727,9 +1531,7 @@
|
|
1727
1531
|
{
|
1728
1532
|
"name": "originalUrl",
|
1729
1533
|
"description": null,
|
1730
|
-
"args": [
|
1731
|
-
|
1732
|
-
],
|
1534
|
+
"args": [],
|
1733
1535
|
"type": {
|
1734
1536
|
"kind": "NON_NULL",
|
1735
1537
|
"name": null,
|
@@ -1745,9 +1547,7 @@
|
|
1745
1547
|
{
|
1746
1548
|
"name": "smallUrl",
|
1747
1549
|
"description": null,
|
1748
|
-
"args": [
|
1749
|
-
|
1750
|
-
],
|
1550
|
+
"args": [],
|
1751
1551
|
"type": {
|
1752
1552
|
"kind": "NON_NULL",
|
1753
1553
|
"name": null,
|
@@ -1763,9 +1563,7 @@
|
|
1763
1563
|
{
|
1764
1564
|
"name": "thumbnailUrl",
|
1765
1565
|
"description": null,
|
1766
|
-
"args": [
|
1767
|
-
|
1768
|
-
],
|
1566
|
+
"args": [],
|
1769
1567
|
"type": {
|
1770
1568
|
"kind": "NON_NULL",
|
1771
1569
|
"name": null,
|
@@ -1781,9 +1579,7 @@
|
|
1781
1579
|
{
|
1782
1580
|
"name": "tinyUrl",
|
1783
1581
|
"description": null,
|
1784
|
-
"args": [
|
1785
|
-
|
1786
|
-
],
|
1582
|
+
"args": [],
|
1787
1583
|
"type": {
|
1788
1584
|
"kind": "NON_NULL",
|
1789
1585
|
"name": null,
|
@@ -1798,9 +1594,7 @@
|
|
1798
1594
|
}
|
1799
1595
|
],
|
1800
1596
|
"inputFields": null,
|
1801
|
-
"interfaces": [
|
1802
|
-
|
1803
|
-
],
|
1597
|
+
"interfaces": [],
|
1804
1598
|
"enumValues": null,
|
1805
1599
|
"possibleTypes": null
|
1806
1600
|
},
|
@@ -1812,9 +1606,7 @@
|
|
1812
1606
|
{
|
1813
1607
|
"name": "content",
|
1814
1608
|
"description": null,
|
1815
|
-
"args": [
|
1816
|
-
|
1817
|
-
],
|
1609
|
+
"args": [],
|
1818
1610
|
"type": {
|
1819
1611
|
"kind": "NON_NULL",
|
1820
1612
|
"name": null,
|
@@ -1830,9 +1622,7 @@
|
|
1830
1622
|
{
|
1831
1623
|
"name": "contentHtml",
|
1832
1624
|
"description": null,
|
1833
|
-
"args": [
|
1834
|
-
|
1835
|
-
],
|
1625
|
+
"args": [],
|
1836
1626
|
"type": {
|
1837
1627
|
"kind": "NON_NULL",
|
1838
1628
|
"name": null,
|
@@ -1848,9 +1638,7 @@
|
|
1848
1638
|
{
|
1849
1639
|
"name": "createdAt",
|
1850
1640
|
"description": null,
|
1851
|
-
"args": [
|
1852
|
-
|
1853
|
-
],
|
1641
|
+
"args": [],
|
1854
1642
|
"type": {
|
1855
1643
|
"kind": "NON_NULL",
|
1856
1644
|
"name": null,
|
@@ -1866,9 +1654,7 @@
|
|
1866
1654
|
{
|
1867
1655
|
"name": "fields",
|
1868
1656
|
"description": null,
|
1869
|
-
"args": [
|
1870
|
-
|
1871
|
-
],
|
1657
|
+
"args": [],
|
1872
1658
|
"type": {
|
1873
1659
|
"kind": "NON_NULL",
|
1874
1660
|
"name": null,
|
@@ -1892,9 +1678,7 @@
|
|
1892
1678
|
{
|
1893
1679
|
"name": "id",
|
1894
1680
|
"description": null,
|
1895
|
-
"args": [
|
1896
|
-
|
1897
|
-
],
|
1681
|
+
"args": [],
|
1898
1682
|
"type": {
|
1899
1683
|
"kind": "NON_NULL",
|
1900
1684
|
"name": null,
|
@@ -1910,9 +1694,7 @@
|
|
1910
1694
|
{
|
1911
1695
|
"name": "respondedAt",
|
1912
1696
|
"description": null,
|
1913
|
-
"args": [
|
1914
|
-
|
1915
|
-
],
|
1697
|
+
"args": [],
|
1916
1698
|
"type": {
|
1917
1699
|
"kind": "SCALAR",
|
1918
1700
|
"name": "DateTime",
|
@@ -1924,9 +1706,7 @@
|
|
1924
1706
|
{
|
1925
1707
|
"name": "updatedAt",
|
1926
1708
|
"description": null,
|
1927
|
-
"args": [
|
1928
|
-
|
1929
|
-
],
|
1709
|
+
"args": [],
|
1930
1710
|
"type": {
|
1931
1711
|
"kind": "NON_NULL",
|
1932
1712
|
"name": null,
|
@@ -1941,9 +1721,7 @@
|
|
1941
1721
|
}
|
1942
1722
|
],
|
1943
1723
|
"inputFields": null,
|
1944
|
-
"interfaces": [
|
1945
|
-
|
1946
|
-
],
|
1724
|
+
"interfaces": [],
|
1947
1725
|
"enumValues": null,
|
1948
1726
|
"possibleTypes": null
|
1949
1727
|
},
|
@@ -1988,9 +1766,7 @@
|
|
1988
1766
|
{
|
1989
1767
|
"name": "edges",
|
1990
1768
|
"description": "A list of edges.",
|
1991
|
-
"args": [
|
1992
|
-
|
1993
|
-
],
|
1769
|
+
"args": [],
|
1994
1770
|
"type": {
|
1995
1771
|
"kind": "NON_NULL",
|
1996
1772
|
"name": null,
|
@@ -2014,9 +1790,7 @@
|
|
2014
1790
|
{
|
2015
1791
|
"name": "nodes",
|
2016
1792
|
"description": "A list of nodes.",
|
2017
|
-
"args": [
|
2018
|
-
|
2019
|
-
],
|
1793
|
+
"args": [],
|
2020
1794
|
"type": {
|
2021
1795
|
"kind": "NON_NULL",
|
2022
1796
|
"name": null,
|
@@ -2040,9 +1814,7 @@
|
|
2040
1814
|
{
|
2041
1815
|
"name": "pageInfo",
|
2042
1816
|
"description": "Information to aid in pagination.",
|
2043
|
-
"args": [
|
2044
|
-
|
2045
|
-
],
|
1817
|
+
"args": [],
|
2046
1818
|
"type": {
|
2047
1819
|
"kind": "NON_NULL",
|
2048
1820
|
"name": null,
|
@@ -2058,9 +1830,7 @@
|
|
2058
1830
|
{
|
2059
1831
|
"name": "totalCount",
|
2060
1832
|
"description": null,
|
2061
|
-
"args": [
|
2062
|
-
|
2063
|
-
],
|
1833
|
+
"args": [],
|
2064
1834
|
"type": {
|
2065
1835
|
"kind": "NON_NULL",
|
2066
1836
|
"name": null,
|
@@ -2075,9 +1845,7 @@
|
|
2075
1845
|
}
|
2076
1846
|
],
|
2077
1847
|
"inputFields": null,
|
2078
|
-
"interfaces": [
|
2079
|
-
|
2080
|
-
],
|
1848
|
+
"interfaces": [],
|
2081
1849
|
"enumValues": null,
|
2082
1850
|
"possibleTypes": null
|
2083
1851
|
},
|
@@ -2089,9 +1857,7 @@
|
|
2089
1857
|
{
|
2090
1858
|
"name": "cursor",
|
2091
1859
|
"description": "A cursor for use in pagination.",
|
2092
|
-
"args": [
|
2093
|
-
|
2094
|
-
],
|
1860
|
+
"args": [],
|
2095
1861
|
"type": {
|
2096
1862
|
"kind": "NON_NULL",
|
2097
1863
|
"name": null,
|
@@ -2107,9 +1873,7 @@
|
|
2107
1873
|
{
|
2108
1874
|
"name": "node",
|
2109
1875
|
"description": "The item at the end of the edge.",
|
2110
|
-
"args": [
|
2111
|
-
|
2112
|
-
],
|
1876
|
+
"args": [],
|
2113
1877
|
"type": {
|
2114
1878
|
"kind": "OBJECT",
|
2115
1879
|
"name": "InformationRequest",
|
@@ -2120,9 +1884,7 @@
|
|
2120
1884
|
}
|
2121
1885
|
],
|
2122
1886
|
"inputFields": null,
|
2123
|
-
"interfaces": [
|
2124
|
-
|
2125
|
-
],
|
1887
|
+
"interfaces": [],
|
2126
1888
|
"enumValues": null,
|
2127
1889
|
"possibleTypes": null
|
2128
1890
|
},
|
@@ -2134,9 +1896,7 @@
|
|
2134
1896
|
{
|
2135
1897
|
"name": "createdAt",
|
2136
1898
|
"description": null,
|
2137
|
-
"args": [
|
2138
|
-
|
2139
|
-
],
|
1899
|
+
"args": [],
|
2140
1900
|
"type": {
|
2141
1901
|
"kind": "NON_NULL",
|
2142
1902
|
"name": null,
|
@@ -2152,9 +1912,7 @@
|
|
2152
1912
|
{
|
2153
1913
|
"name": "dataType",
|
2154
1914
|
"description": null,
|
2155
|
-
"args": [
|
2156
|
-
|
2157
|
-
],
|
1915
|
+
"args": [],
|
2158
1916
|
"type": {
|
2159
1917
|
"kind": "NON_NULL",
|
2160
1918
|
"name": null,
|
@@ -2170,9 +1928,7 @@
|
|
2170
1928
|
{
|
2171
1929
|
"name": "id",
|
2172
1930
|
"description": null,
|
2173
|
-
"args": [
|
2174
|
-
|
2175
|
-
],
|
1931
|
+
"args": [],
|
2176
1932
|
"type": {
|
2177
1933
|
"kind": "NON_NULL",
|
2178
1934
|
"name": null,
|
@@ -2188,9 +1944,7 @@
|
|
2188
1944
|
{
|
2189
1945
|
"name": "label",
|
2190
1946
|
"description": null,
|
2191
|
-
"args": [
|
2192
|
-
|
2193
|
-
],
|
1947
|
+
"args": [],
|
2194
1948
|
"type": {
|
2195
1949
|
"kind": "NON_NULL",
|
2196
1950
|
"name": null,
|
@@ -2206,9 +1960,7 @@
|
|
2206
1960
|
{
|
2207
1961
|
"name": "placeholder",
|
2208
1962
|
"description": null,
|
2209
|
-
"args": [
|
2210
|
-
|
2211
|
-
],
|
1963
|
+
"args": [],
|
2212
1964
|
"type": {
|
2213
1965
|
"kind": "NON_NULL",
|
2214
1966
|
"name": null,
|
@@ -2224,9 +1976,7 @@
|
|
2224
1976
|
{
|
2225
1977
|
"name": "updatedAt",
|
2226
1978
|
"description": null,
|
2227
|
-
"args": [
|
2228
|
-
|
2229
|
-
],
|
1979
|
+
"args": [],
|
2230
1980
|
"type": {
|
2231
1981
|
"kind": "NON_NULL",
|
2232
1982
|
"name": null,
|
@@ -2242,9 +1992,7 @@
|
|
2242
1992
|
{
|
2243
1993
|
"name": "value",
|
2244
1994
|
"description": null,
|
2245
|
-
"args": [
|
2246
|
-
|
2247
|
-
],
|
1995
|
+
"args": [],
|
2248
1996
|
"type": {
|
2249
1997
|
"kind": "SCALAR",
|
2250
1998
|
"name": "String",
|
@@ -2255,9 +2003,7 @@
|
|
2255
2003
|
}
|
2256
2004
|
],
|
2257
2005
|
"inputFields": null,
|
2258
|
-
"interfaces": [
|
2259
|
-
|
2260
|
-
],
|
2006
|
+
"interfaces": [],
|
2261
2007
|
"enumValues": null,
|
2262
2008
|
"possibleTypes": null
|
2263
2009
|
},
|
@@ -2318,9 +2064,7 @@
|
|
2318
2064
|
{
|
2319
2065
|
"name": "createdAt",
|
2320
2066
|
"description": "The date the record was created",
|
2321
|
-
"args": [
|
2322
|
-
|
2323
|
-
],
|
2067
|
+
"args": [],
|
2324
2068
|
"type": {
|
2325
2069
|
"kind": "NON_NULL",
|
2326
2070
|
"name": null,
|
@@ -2336,9 +2080,7 @@
|
|
2336
2080
|
{
|
2337
2081
|
"name": "duration",
|
2338
2082
|
"description": "The length of time in months that an item's savings is good for",
|
2339
|
-
"args": [
|
2340
|
-
|
2341
|
-
],
|
2083
|
+
"args": [],
|
2342
2084
|
"type": {
|
2343
2085
|
"kind": "NON_NULL",
|
2344
2086
|
"name": null,
|
@@ -2354,9 +2096,7 @@
|
|
2354
2096
|
{
|
2355
2097
|
"name": "name",
|
2356
2098
|
"description": "Name of the good or service",
|
2357
|
-
"args": [
|
2358
|
-
|
2359
|
-
],
|
2099
|
+
"args": [],
|
2360
2100
|
"type": {
|
2361
2101
|
"kind": "NON_NULL",
|
2362
2102
|
"name": null,
|
@@ -2372,9 +2112,7 @@
|
|
2372
2112
|
{
|
2373
2113
|
"name": "postPrice",
|
2374
2114
|
"description": "The post-negotiation price",
|
2375
|
-
"args": [
|
2376
|
-
|
2377
|
-
],
|
2115
|
+
"args": [],
|
2378
2116
|
"type": {
|
2379
2117
|
"kind": "NON_NULL",
|
2380
2118
|
"name": null,
|
@@ -2390,9 +2128,7 @@
|
|
2390
2128
|
{
|
2391
2129
|
"name": "prePrice",
|
2392
2130
|
"description": "The pre-negotiation price",
|
2393
|
-
"args": [
|
2394
|
-
|
2395
|
-
],
|
2131
|
+
"args": [],
|
2396
2132
|
"type": {
|
2397
2133
|
"kind": "NON_NULL",
|
2398
2134
|
"name": null,
|
@@ -2408,9 +2144,7 @@
|
|
2408
2144
|
{
|
2409
2145
|
"name": "savings",
|
2410
2146
|
"description": "The difference between the prePrice and the postPrice",
|
2411
|
-
"args": [
|
2412
|
-
|
2413
|
-
],
|
2147
|
+
"args": [],
|
2414
2148
|
"type": {
|
2415
2149
|
"kind": "NON_NULL",
|
2416
2150
|
"name": null,
|
@@ -2426,9 +2160,7 @@
|
|
2426
2160
|
{
|
2427
2161
|
"name": "savingsEndOn",
|
2428
2162
|
"description": "The date the discount/savings end",
|
2429
|
-
"args": [
|
2430
|
-
|
2431
|
-
],
|
2163
|
+
"args": [],
|
2432
2164
|
"type": {
|
2433
2165
|
"kind": "NON_NULL",
|
2434
2166
|
"name": null,
|
@@ -2444,9 +2176,7 @@
|
|
2444
2176
|
{
|
2445
2177
|
"name": "savingsStartOn",
|
2446
2178
|
"description": "The date the discount/savings start",
|
2447
|
-
"args": [
|
2448
|
-
|
2449
|
-
],
|
2179
|
+
"args": [],
|
2450
2180
|
"type": {
|
2451
2181
|
"kind": "NON_NULL",
|
2452
2182
|
"name": null,
|
@@ -2462,9 +2192,7 @@
|
|
2462
2192
|
{
|
2463
2193
|
"name": "type",
|
2464
2194
|
"description": "The type of item",
|
2465
|
-
"args": [
|
2466
|
-
|
2467
|
-
],
|
2195
|
+
"args": [],
|
2468
2196
|
"type": {
|
2469
2197
|
"kind": "NON_NULL",
|
2470
2198
|
"name": null,
|
@@ -2480,9 +2208,7 @@
|
|
2480
2208
|
{
|
2481
2209
|
"name": "underContract",
|
2482
2210
|
"description": "Indicates the item is under contract",
|
2483
|
-
"args": [
|
2484
|
-
|
2485
|
-
],
|
2211
|
+
"args": [],
|
2486
2212
|
"type": {
|
2487
2213
|
"kind": "NON_NULL",
|
2488
2214
|
"name": null,
|
@@ -2498,9 +2224,7 @@
|
|
2498
2224
|
{
|
2499
2225
|
"name": "updatedAt",
|
2500
2226
|
"description": "The last time the record was updated",
|
2501
|
-
"args": [
|
2502
|
-
|
2503
|
-
],
|
2227
|
+
"args": [],
|
2504
2228
|
"type": {
|
2505
2229
|
"kind": "NON_NULL",
|
2506
2230
|
"name": null,
|
@@ -2515,9 +2239,7 @@
|
|
2515
2239
|
}
|
2516
2240
|
],
|
2517
2241
|
"inputFields": null,
|
2518
|
-
"interfaces": [
|
2519
|
-
|
2520
|
-
],
|
2242
|
+
"interfaces": [],
|
2521
2243
|
"enumValues": null,
|
2522
2244
|
"possibleTypes": null
|
2523
2245
|
},
|
@@ -2542,7 +2264,7 @@
|
|
2542
2264
|
"args": [
|
2543
2265
|
{
|
2544
2266
|
"name": "input",
|
2545
|
-
"description":
|
2267
|
+
"description": "Parameters for AcceptOffer",
|
2546
2268
|
"type": {
|
2547
2269
|
"kind": "NON_NULL",
|
2548
2270
|
"name": null,
|
@@ -2564,18 +2286,18 @@
|
|
2564
2286
|
"deprecationReason": null
|
2565
2287
|
},
|
2566
2288
|
{
|
2567
|
-
"name": "
|
2289
|
+
"name": "CreateBill",
|
2568
2290
|
"description": null,
|
2569
2291
|
"args": [
|
2570
2292
|
{
|
2571
2293
|
"name": "input",
|
2572
|
-
"description":
|
2294
|
+
"description": "Parameters for CreateBill",
|
2573
2295
|
"type": {
|
2574
2296
|
"kind": "NON_NULL",
|
2575
2297
|
"name": null,
|
2576
2298
|
"ofType": {
|
2577
2299
|
"kind": "INPUT_OBJECT",
|
2578
|
-
"name": "
|
2300
|
+
"name": "CreateBillInput",
|
2579
2301
|
"ofType": null
|
2580
2302
|
}
|
2581
2303
|
},
|
@@ -2584,25 +2306,25 @@
|
|
2584
2306
|
],
|
2585
2307
|
"type": {
|
2586
2308
|
"kind": "OBJECT",
|
2587
|
-
"name": "
|
2309
|
+
"name": "CreateBillPayload",
|
2588
2310
|
"ofType": null
|
2589
2311
|
},
|
2590
2312
|
"isDeprecated": false,
|
2591
2313
|
"deprecationReason": null
|
2592
2314
|
},
|
2593
2315
|
{
|
2594
|
-
"name": "
|
2316
|
+
"name": "CreateCustomer",
|
2595
2317
|
"description": null,
|
2596
2318
|
"args": [
|
2597
2319
|
{
|
2598
2320
|
"name": "input",
|
2599
|
-
"description":
|
2321
|
+
"description": "Parameters for CreateCustomer",
|
2600
2322
|
"type": {
|
2601
2323
|
"kind": "NON_NULL",
|
2602
2324
|
"name": null,
|
2603
2325
|
"ofType": {
|
2604
2326
|
"kind": "INPUT_OBJECT",
|
2605
|
-
"name": "
|
2327
|
+
"name": "CreateCustomerInput",
|
2606
2328
|
"ofType": null
|
2607
2329
|
}
|
2608
2330
|
},
|
@@ -2611,25 +2333,25 @@
|
|
2611
2333
|
],
|
2612
2334
|
"type": {
|
2613
2335
|
"kind": "OBJECT",
|
2614
|
-
"name": "
|
2336
|
+
"name": "CreateCustomerPayload",
|
2615
2337
|
"ofType": null
|
2616
2338
|
},
|
2617
2339
|
"isDeprecated": false,
|
2618
2340
|
"deprecationReason": null
|
2619
2341
|
},
|
2620
2342
|
{
|
2621
|
-
"name": "
|
2622
|
-
"description":
|
2343
|
+
"name": "RejectOffer",
|
2344
|
+
"description": "Reject an offer",
|
2623
2345
|
"args": [
|
2624
2346
|
{
|
2625
2347
|
"name": "input",
|
2626
|
-
"description":
|
2348
|
+
"description": "Parameters for RejectOffer",
|
2627
2349
|
"type": {
|
2628
2350
|
"kind": "NON_NULL",
|
2629
2351
|
"name": null,
|
2630
2352
|
"ofType": {
|
2631
2353
|
"kind": "INPUT_OBJECT",
|
2632
|
-
"name": "
|
2354
|
+
"name": "RejectOfferInput",
|
2633
2355
|
"ofType": null
|
2634
2356
|
}
|
2635
2357
|
},
|
@@ -2638,25 +2360,25 @@
|
|
2638
2360
|
],
|
2639
2361
|
"type": {
|
2640
2362
|
"kind": "OBJECT",
|
2641
|
-
"name": "
|
2363
|
+
"name": "RejectOfferPayload",
|
2642
2364
|
"ofType": null
|
2643
2365
|
},
|
2644
2366
|
"isDeprecated": false,
|
2645
2367
|
"deprecationReason": null
|
2646
2368
|
},
|
2647
2369
|
{
|
2648
|
-
"name": "
|
2649
|
-
"description":
|
2370
|
+
"name": "RenegotiateBill",
|
2371
|
+
"description": null,
|
2650
2372
|
"args": [
|
2651
2373
|
{
|
2652
2374
|
"name": "input",
|
2653
|
-
"description":
|
2375
|
+
"description": "Parameters for RenegotiateBill",
|
2654
2376
|
"type": {
|
2655
2377
|
"kind": "NON_NULL",
|
2656
2378
|
"name": null,
|
2657
2379
|
"ofType": {
|
2658
2380
|
"kind": "INPUT_OBJECT",
|
2659
|
-
"name": "
|
2381
|
+
"name": "RenegotiateBillInput",
|
2660
2382
|
"ofType": null
|
2661
2383
|
}
|
2662
2384
|
},
|
@@ -2665,7 +2387,7 @@
|
|
2665
2387
|
],
|
2666
2388
|
"type": {
|
2667
2389
|
"kind": "OBJECT",
|
2668
|
-
"name": "
|
2390
|
+
"name": "RenegotiateBillPayload",
|
2669
2391
|
"ofType": null
|
2670
2392
|
},
|
2671
2393
|
"isDeprecated": false,
|
@@ -2677,7 +2399,7 @@
|
|
2677
2399
|
"args": [
|
2678
2400
|
{
|
2679
2401
|
"name": "input",
|
2680
|
-
"description":
|
2402
|
+
"description": "Parameters for RespondToInformationRequest",
|
2681
2403
|
"type": {
|
2682
2404
|
"kind": "NON_NULL",
|
2683
2405
|
"name": null,
|
@@ -2698,13 +2420,67 @@
|
|
2698
2420
|
"isDeprecated": false,
|
2699
2421
|
"deprecationReason": null
|
2700
2422
|
},
|
2423
|
+
{
|
2424
|
+
"name": "StopNegotiating",
|
2425
|
+
"description": null,
|
2426
|
+
"args": [
|
2427
|
+
{
|
2428
|
+
"name": "input",
|
2429
|
+
"description": "Parameters for StopNegotiating",
|
2430
|
+
"type": {
|
2431
|
+
"kind": "NON_NULL",
|
2432
|
+
"name": null,
|
2433
|
+
"ofType": {
|
2434
|
+
"kind": "INPUT_OBJECT",
|
2435
|
+
"name": "StopNegotiatingInput",
|
2436
|
+
"ofType": null
|
2437
|
+
}
|
2438
|
+
},
|
2439
|
+
"defaultValue": null
|
2440
|
+
}
|
2441
|
+
],
|
2442
|
+
"type": {
|
2443
|
+
"kind": "OBJECT",
|
2444
|
+
"name": "StopNegotiatingPayload",
|
2445
|
+
"ofType": null
|
2446
|
+
},
|
2447
|
+
"isDeprecated": false,
|
2448
|
+
"deprecationReason": null
|
2449
|
+
},
|
2450
|
+
{
|
2451
|
+
"name": "UpdateBill",
|
2452
|
+
"description": null,
|
2453
|
+
"args": [
|
2454
|
+
{
|
2455
|
+
"name": "input",
|
2456
|
+
"description": "Parameters for UpdateBill",
|
2457
|
+
"type": {
|
2458
|
+
"kind": "NON_NULL",
|
2459
|
+
"name": null,
|
2460
|
+
"ofType": {
|
2461
|
+
"kind": "INPUT_OBJECT",
|
2462
|
+
"name": "UpdateBillInput",
|
2463
|
+
"ofType": null
|
2464
|
+
}
|
2465
|
+
},
|
2466
|
+
"defaultValue": null
|
2467
|
+
}
|
2468
|
+
],
|
2469
|
+
"type": {
|
2470
|
+
"kind": "OBJECT",
|
2471
|
+
"name": "UpdateBillPayload",
|
2472
|
+
"ofType": null
|
2473
|
+
},
|
2474
|
+
"isDeprecated": false,
|
2475
|
+
"deprecationReason": null
|
2476
|
+
},
|
2701
2477
|
{
|
2702
2478
|
"name": "UpdateCustomer",
|
2703
2479
|
"description": null,
|
2704
2480
|
"args": [
|
2705
2481
|
{
|
2706
2482
|
"name": "input",
|
2707
|
-
"description":
|
2483
|
+
"description": "Parameters for UpdateCustomer",
|
2708
2484
|
"type": {
|
2709
2485
|
"kind": "NON_NULL",
|
2710
2486
|
"name": null,
|
@@ -2731,7 +2507,7 @@
|
|
2731
2507
|
"args": [
|
2732
2508
|
{
|
2733
2509
|
"name": "input",
|
2734
|
-
"description":
|
2510
|
+
"description": "Parameters for UpdateWebhookUrls",
|
2735
2511
|
"type": {
|
2736
2512
|
"kind": "NON_NULL",
|
2737
2513
|
"name": null,
|
@@ -2754,9 +2530,7 @@
|
|
2754
2530
|
}
|
2755
2531
|
],
|
2756
2532
|
"inputFields": null,
|
2757
|
-
"interfaces": [
|
2758
|
-
|
2759
|
-
],
|
2533
|
+
"interfaces": [],
|
2760
2534
|
"enumValues": null,
|
2761
2535
|
"possibleTypes": null
|
2762
2536
|
},
|
@@ -2768,9 +2542,7 @@
|
|
2768
2542
|
{
|
2769
2543
|
"name": "billId",
|
2770
2544
|
"description": null,
|
2771
|
-
"args": [
|
2772
|
-
|
2773
|
-
],
|
2545
|
+
"args": [],
|
2774
2546
|
"type": {
|
2775
2547
|
"kind": "NON_NULL",
|
2776
2548
|
"name": null,
|
@@ -2786,9 +2558,7 @@
|
|
2786
2558
|
{
|
2787
2559
|
"name": "cancelledAt",
|
2788
2560
|
"description": null,
|
2789
|
-
"args": [
|
2790
|
-
|
2791
|
-
],
|
2561
|
+
"args": [],
|
2792
2562
|
"type": {
|
2793
2563
|
"kind": "SCALAR",
|
2794
2564
|
"name": "DateTime",
|
@@ -2800,9 +2570,7 @@
|
|
2800
2570
|
{
|
2801
2571
|
"name": "compedAt",
|
2802
2572
|
"description": null,
|
2803
|
-
"args": [
|
2804
|
-
|
2805
|
-
],
|
2573
|
+
"args": [],
|
2806
2574
|
"type": {
|
2807
2575
|
"kind": "SCALAR",
|
2808
2576
|
"name": "DateTime",
|
@@ -2814,9 +2582,7 @@
|
|
2814
2582
|
{
|
2815
2583
|
"name": "createdAt",
|
2816
2584
|
"description": null,
|
2817
|
-
"args": [
|
2818
|
-
|
2819
|
-
],
|
2585
|
+
"args": [],
|
2820
2586
|
"type": {
|
2821
2587
|
"kind": "NON_NULL",
|
2822
2588
|
"name": null,
|
@@ -2832,9 +2598,7 @@
|
|
2832
2598
|
{
|
2833
2599
|
"name": "deletedAt",
|
2834
2600
|
"description": null,
|
2835
|
-
"args": [
|
2836
|
-
|
2837
|
-
],
|
2601
|
+
"args": [],
|
2838
2602
|
"type": {
|
2839
2603
|
"kind": "SCALAR",
|
2840
2604
|
"name": "DateTime",
|
@@ -2846,9 +2610,7 @@
|
|
2846
2610
|
{
|
2847
2611
|
"name": "failedAt",
|
2848
2612
|
"description": null,
|
2849
|
-
"args": [
|
2850
|
-
|
2851
|
-
],
|
2613
|
+
"args": [],
|
2852
2614
|
"type": {
|
2853
2615
|
"kind": "SCALAR",
|
2854
2616
|
"name": "DateTime",
|
@@ -2860,9 +2622,7 @@
|
|
2860
2622
|
{
|
2861
2623
|
"name": "fixedAt",
|
2862
2624
|
"description": null,
|
2863
|
-
"args": [
|
2864
|
-
|
2865
|
-
],
|
2625
|
+
"args": [],
|
2866
2626
|
"type": {
|
2867
2627
|
"kind": "SCALAR",
|
2868
2628
|
"name": "DateTime",
|
@@ -2874,9 +2634,7 @@
|
|
2874
2634
|
{
|
2875
2635
|
"name": "fixerIds",
|
2876
2636
|
"description": null,
|
2877
|
-
"args": [
|
2878
|
-
|
2879
|
-
],
|
2637
|
+
"args": [],
|
2880
2638
|
"type": {
|
2881
2639
|
"kind": "NON_NULL",
|
2882
2640
|
"name": null,
|
@@ -2900,9 +2658,7 @@
|
|
2900
2658
|
{
|
2901
2659
|
"name": "fixers",
|
2902
2660
|
"description": null,
|
2903
|
-
"args": [
|
2904
|
-
|
2905
|
-
],
|
2661
|
+
"args": [],
|
2906
2662
|
"type": {
|
2907
2663
|
"kind": "NON_NULL",
|
2908
2664
|
"name": null,
|
@@ -2926,9 +2682,7 @@
|
|
2926
2682
|
{
|
2927
2683
|
"name": "id",
|
2928
2684
|
"description": null,
|
2929
|
-
"args": [
|
2930
|
-
|
2931
|
-
],
|
2685
|
+
"args": [],
|
2932
2686
|
"type": {
|
2933
2687
|
"kind": "NON_NULL",
|
2934
2688
|
"name": null,
|
@@ -2944,9 +2698,7 @@
|
|
2944
2698
|
{
|
2945
2699
|
"name": "informationRequests",
|
2946
2700
|
"description": null,
|
2947
|
-
"args": [
|
2948
|
-
|
2949
|
-
],
|
2701
|
+
"args": [],
|
2950
2702
|
"type": {
|
2951
2703
|
"kind": "NON_NULL",
|
2952
2704
|
"name": null,
|
@@ -2970,9 +2722,7 @@
|
|
2970
2722
|
{
|
2971
2723
|
"name": "invoicedAt",
|
2972
2724
|
"description": null,
|
2973
|
-
"args": [
|
2974
|
-
|
2975
|
-
],
|
2725
|
+
"args": [],
|
2976
2726
|
"type": {
|
2977
2727
|
"kind": "SCALAR",
|
2978
2728
|
"name": "DateTime",
|
@@ -2984,9 +2734,7 @@
|
|
2984
2734
|
{
|
2985
2735
|
"name": "items",
|
2986
2736
|
"description": null,
|
2987
|
-
"args": [
|
2988
|
-
|
2989
|
-
],
|
2737
|
+
"args": [],
|
2990
2738
|
"type": {
|
2991
2739
|
"kind": "NON_NULL",
|
2992
2740
|
"name": null,
|
@@ -3010,9 +2758,7 @@
|
|
3010
2758
|
{
|
3011
2759
|
"name": "negotiationNumber",
|
3012
2760
|
"description": null,
|
3013
|
-
"args": [
|
3014
|
-
|
3015
|
-
],
|
2761
|
+
"args": [],
|
3016
2762
|
"type": {
|
3017
2763
|
"kind": "NON_NULL",
|
3018
2764
|
"name": null,
|
@@ -3028,9 +2774,7 @@
|
|
3028
2774
|
{
|
3029
2775
|
"name": "requestedConsentAt",
|
3030
2776
|
"description": null,
|
3031
|
-
"args": [
|
3032
|
-
|
3033
|
-
],
|
2777
|
+
"args": [],
|
3034
2778
|
"type": {
|
3035
2779
|
"kind": "SCALAR",
|
3036
2780
|
"name": "DateTime",
|
@@ -3042,9 +2786,7 @@
|
|
3042
2786
|
{
|
3043
2787
|
"name": "requestedInformationAt",
|
3044
2788
|
"description": null,
|
3045
|
-
"args": [
|
3046
|
-
|
3047
|
-
],
|
2789
|
+
"args": [],
|
3048
2790
|
"type": {
|
3049
2791
|
"kind": "SCALAR",
|
3050
2792
|
"name": "DateTime",
|
@@ -3056,9 +2798,7 @@
|
|
3056
2798
|
{
|
3057
2799
|
"name": "startedAt",
|
3058
2800
|
"description": null,
|
3059
|
-
"args": [
|
3060
|
-
|
3061
|
-
],
|
2801
|
+
"args": [],
|
3062
2802
|
"type": {
|
3063
2803
|
"kind": "SCALAR",
|
3064
2804
|
"name": "DateTime",
|
@@ -3070,9 +2810,7 @@
|
|
3070
2810
|
{
|
3071
2811
|
"name": "state",
|
3072
2812
|
"description": null,
|
3073
|
-
"args": [
|
3074
|
-
|
3075
|
-
],
|
2813
|
+
"args": [],
|
3076
2814
|
"type": {
|
3077
2815
|
"kind": "NON_NULL",
|
3078
2816
|
"name": null,
|
@@ -3088,9 +2826,7 @@
|
|
3088
2826
|
{
|
3089
2827
|
"name": "tags",
|
3090
2828
|
"description": null,
|
3091
|
-
"args": [
|
3092
|
-
|
3093
|
-
],
|
2829
|
+
"args": [],
|
3094
2830
|
"type": {
|
3095
2831
|
"kind": "NON_NULL",
|
3096
2832
|
"name": null,
|
@@ -3114,9 +2850,7 @@
|
|
3114
2850
|
{
|
3115
2851
|
"name": "totalSavings",
|
3116
2852
|
"description": null,
|
3117
|
-
"args": [
|
3118
|
-
|
3119
|
-
],
|
2853
|
+
"args": [],
|
3120
2854
|
"type": {
|
3121
2855
|
"kind": "NON_NULL",
|
3122
2856
|
"name": null,
|
@@ -3132,9 +2866,7 @@
|
|
3132
2866
|
{
|
3133
2867
|
"name": "updatedAt",
|
3134
2868
|
"description": null,
|
3135
|
-
"args": [
|
3136
|
-
|
3137
|
-
],
|
2869
|
+
"args": [],
|
3138
2870
|
"type": {
|
3139
2871
|
"kind": "NON_NULL",
|
3140
2872
|
"name": null,
|
@@ -3149,9 +2881,7 @@
|
|
3149
2881
|
}
|
3150
2882
|
],
|
3151
2883
|
"inputFields": null,
|
3152
|
-
"interfaces": [
|
3153
|
-
|
3154
|
-
],
|
2884
|
+
"interfaces": [],
|
3155
2885
|
"enumValues": null,
|
3156
2886
|
"possibleTypes": null
|
3157
2887
|
},
|
@@ -3163,9 +2893,7 @@
|
|
3163
2893
|
{
|
3164
2894
|
"name": "acceptedAt",
|
3165
2895
|
"description": null,
|
3166
|
-
"args": [
|
3167
|
-
|
3168
|
-
],
|
2896
|
+
"args": [],
|
3169
2897
|
"type": {
|
3170
2898
|
"kind": "SCALAR",
|
3171
2899
|
"name": "DateTime",
|
@@ -3177,9 +2905,7 @@
|
|
3177
2905
|
{
|
3178
2906
|
"name": "bill",
|
3179
2907
|
"description": null,
|
3180
|
-
"args": [
|
3181
|
-
|
3182
|
-
],
|
2908
|
+
"args": [],
|
3183
2909
|
"type": {
|
3184
2910
|
"kind": "NON_NULL",
|
3185
2911
|
"name": null,
|
@@ -3195,9 +2921,7 @@
|
|
3195
2921
|
{
|
3196
2922
|
"name": "content",
|
3197
2923
|
"description": null,
|
3198
|
-
"args": [
|
3199
|
-
|
3200
|
-
],
|
2924
|
+
"args": [],
|
3201
2925
|
"type": {
|
3202
2926
|
"kind": "NON_NULL",
|
3203
2927
|
"name": null,
|
@@ -3213,9 +2937,7 @@
|
|
3213
2937
|
{
|
3214
2938
|
"name": "contentHtml",
|
3215
2939
|
"description": null,
|
3216
|
-
"args": [
|
3217
|
-
|
3218
|
-
],
|
2940
|
+
"args": [],
|
3219
2941
|
"type": {
|
3220
2942
|
"kind": "NON_NULL",
|
3221
2943
|
"name": null,
|
@@ -3231,9 +2953,7 @@
|
|
3231
2953
|
{
|
3232
2954
|
"name": "createdAt",
|
3233
2955
|
"description": null,
|
3234
|
-
"args": [
|
3235
|
-
|
3236
|
-
],
|
2956
|
+
"args": [],
|
3237
2957
|
"type": {
|
3238
2958
|
"kind": "NON_NULL",
|
3239
2959
|
"name": null,
|
@@ -3249,9 +2969,7 @@
|
|
3249
2969
|
{
|
3250
2970
|
"name": "customer",
|
3251
2971
|
"description": null,
|
3252
|
-
"args": [
|
3253
|
-
|
3254
|
-
],
|
2972
|
+
"args": [],
|
3255
2973
|
"type": {
|
3256
2974
|
"kind": "NON_NULL",
|
3257
2975
|
"name": null,
|
@@ -3264,12 +2982,26 @@
|
|
3264
2982
|
"isDeprecated": false,
|
3265
2983
|
"deprecationReason": null
|
3266
2984
|
},
|
2985
|
+
{
|
2986
|
+
"name": "daysUntilExpiration",
|
2987
|
+
"description": null,
|
2988
|
+
"args": [],
|
2989
|
+
"type": {
|
2990
|
+
"kind": "NON_NULL",
|
2991
|
+
"name": null,
|
2992
|
+
"ofType": {
|
2993
|
+
"kind": "SCALAR",
|
2994
|
+
"name": "Int",
|
2995
|
+
"ofType": null
|
2996
|
+
}
|
2997
|
+
},
|
2998
|
+
"isDeprecated": false,
|
2999
|
+
"deprecationReason": null
|
3000
|
+
},
|
3267
3001
|
{
|
3268
3002
|
"name": "id",
|
3269
3003
|
"description": "Alpha-numeric unique identifier",
|
3270
|
-
"args": [
|
3271
|
-
|
3272
|
-
],
|
3004
|
+
"args": [],
|
3273
3005
|
"type": {
|
3274
3006
|
"kind": "NON_NULL",
|
3275
3007
|
"name": null,
|
@@ -3285,9 +3017,7 @@
|
|
3285
3017
|
{
|
3286
3018
|
"name": "rejectedAt",
|
3287
3019
|
"description": null,
|
3288
|
-
"args": [
|
3289
|
-
|
3290
|
-
],
|
3020
|
+
"args": [],
|
3291
3021
|
"type": {
|
3292
3022
|
"kind": "SCALAR",
|
3293
3023
|
"name": "DateTime",
|
@@ -3299,9 +3029,7 @@
|
|
3299
3029
|
{
|
3300
3030
|
"name": "status",
|
3301
3031
|
"description": null,
|
3302
|
-
"args": [
|
3303
|
-
|
3304
|
-
],
|
3032
|
+
"args": [],
|
3305
3033
|
"type": {
|
3306
3034
|
"kind": "NON_NULL",
|
3307
3035
|
"name": null,
|
@@ -3317,9 +3045,7 @@
|
|
3317
3045
|
{
|
3318
3046
|
"name": "updatedAt",
|
3319
3047
|
"description": null,
|
3320
|
-
"args": [
|
3321
|
-
|
3322
|
-
],
|
3048
|
+
"args": [],
|
3323
3049
|
"type": {
|
3324
3050
|
"kind": "NON_NULL",
|
3325
3051
|
"name": null,
|
@@ -3334,9 +3060,7 @@
|
|
3334
3060
|
}
|
3335
3061
|
],
|
3336
3062
|
"inputFields": null,
|
3337
|
-
"interfaces": [
|
3338
|
-
|
3339
|
-
],
|
3063
|
+
"interfaces": [],
|
3340
3064
|
"enumValues": null,
|
3341
3065
|
"possibleTypes": null
|
3342
3066
|
},
|
@@ -3348,9 +3072,7 @@
|
|
3348
3072
|
{
|
3349
3073
|
"name": "edges",
|
3350
3074
|
"description": "A list of edges.",
|
3351
|
-
"args": [
|
3352
|
-
|
3353
|
-
],
|
3075
|
+
"args": [],
|
3354
3076
|
"type": {
|
3355
3077
|
"kind": "NON_NULL",
|
3356
3078
|
"name": null,
|
@@ -3374,9 +3096,7 @@
|
|
3374
3096
|
{
|
3375
3097
|
"name": "nodes",
|
3376
3098
|
"description": "A list of nodes.",
|
3377
|
-
"args": [
|
3378
|
-
|
3379
|
-
],
|
3099
|
+
"args": [],
|
3380
3100
|
"type": {
|
3381
3101
|
"kind": "NON_NULL",
|
3382
3102
|
"name": null,
|
@@ -3400,9 +3120,7 @@
|
|
3400
3120
|
{
|
3401
3121
|
"name": "pageInfo",
|
3402
3122
|
"description": "Information to aid in pagination.",
|
3403
|
-
"args": [
|
3404
|
-
|
3405
|
-
],
|
3123
|
+
"args": [],
|
3406
3124
|
"type": {
|
3407
3125
|
"kind": "NON_NULL",
|
3408
3126
|
"name": null,
|
@@ -3418,9 +3136,7 @@
|
|
3418
3136
|
{
|
3419
3137
|
"name": "totalCount",
|
3420
3138
|
"description": null,
|
3421
|
-
"args": [
|
3422
|
-
|
3423
|
-
],
|
3139
|
+
"args": [],
|
3424
3140
|
"type": {
|
3425
3141
|
"kind": "NON_NULL",
|
3426
3142
|
"name": null,
|
@@ -3435,9 +3151,7 @@
|
|
3435
3151
|
}
|
3436
3152
|
],
|
3437
3153
|
"inputFields": null,
|
3438
|
-
"interfaces": [
|
3439
|
-
|
3440
|
-
],
|
3154
|
+
"interfaces": [],
|
3441
3155
|
"enumValues": null,
|
3442
3156
|
"possibleTypes": null
|
3443
3157
|
},
|
@@ -3449,9 +3163,7 @@
|
|
3449
3163
|
{
|
3450
3164
|
"name": "cursor",
|
3451
3165
|
"description": "A cursor for use in pagination.",
|
3452
|
-
"args": [
|
3453
|
-
|
3454
|
-
],
|
3166
|
+
"args": [],
|
3455
3167
|
"type": {
|
3456
3168
|
"kind": "NON_NULL",
|
3457
3169
|
"name": null,
|
@@ -3467,9 +3179,7 @@
|
|
3467
3179
|
{
|
3468
3180
|
"name": "node",
|
3469
3181
|
"description": "The item at the end of the edge.",
|
3470
|
-
"args": [
|
3471
|
-
|
3472
|
-
],
|
3182
|
+
"args": [],
|
3473
3183
|
"type": {
|
3474
3184
|
"kind": "OBJECT",
|
3475
3185
|
"name": "Offer",
|
@@ -3480,9 +3190,7 @@
|
|
3480
3190
|
}
|
3481
3191
|
],
|
3482
3192
|
"inputFields": null,
|
3483
|
-
"interfaces": [
|
3484
|
-
|
3485
|
-
],
|
3193
|
+
"interfaces": [],
|
3486
3194
|
"enumValues": null,
|
3487
3195
|
"possibleTypes": null
|
3488
3196
|
},
|
@@ -3494,9 +3202,7 @@
|
|
3494
3202
|
{
|
3495
3203
|
"name": "endCursor",
|
3496
3204
|
"description": "When paginating forwards, the cursor to continue.",
|
3497
|
-
"args": [
|
3498
|
-
|
3499
|
-
],
|
3205
|
+
"args": [],
|
3500
3206
|
"type": {
|
3501
3207
|
"kind": "SCALAR",
|
3502
3208
|
"name": "String",
|
@@ -3508,9 +3214,7 @@
|
|
3508
3214
|
{
|
3509
3215
|
"name": "hasNextPage",
|
3510
3216
|
"description": "When paginating forwards, are there more items?",
|
3511
|
-
"args": [
|
3512
|
-
|
3513
|
-
],
|
3217
|
+
"args": [],
|
3514
3218
|
"type": {
|
3515
3219
|
"kind": "NON_NULL",
|
3516
3220
|
"name": null,
|
@@ -3526,9 +3230,7 @@
|
|
3526
3230
|
{
|
3527
3231
|
"name": "hasPreviousPage",
|
3528
3232
|
"description": "When paginating backwards, are there more items?",
|
3529
|
-
"args": [
|
3530
|
-
|
3531
|
-
],
|
3233
|
+
"args": [],
|
3532
3234
|
"type": {
|
3533
3235
|
"kind": "NON_NULL",
|
3534
3236
|
"name": null,
|
@@ -3544,9 +3246,7 @@
|
|
3544
3246
|
{
|
3545
3247
|
"name": "startCursor",
|
3546
3248
|
"description": "When paginating backwards, the cursor to continue.",
|
3547
|
-
"args": [
|
3548
|
-
|
3549
|
-
],
|
3249
|
+
"args": [],
|
3550
3250
|
"type": {
|
3551
3251
|
"kind": "SCALAR",
|
3552
3252
|
"name": "String",
|
@@ -3557,9 +3257,7 @@
|
|
3557
3257
|
}
|
3558
3258
|
],
|
3559
3259
|
"inputFields": null,
|
3560
|
-
"interfaces": [
|
3561
|
-
|
3562
|
-
],
|
3260
|
+
"interfaces": [],
|
3563
3261
|
"enumValues": null,
|
3564
3262
|
"possibleTypes": null
|
3565
3263
|
},
|
@@ -3571,9 +3269,7 @@
|
|
3571
3269
|
{
|
3572
3270
|
"name": "createdAt",
|
3573
3271
|
"description": null,
|
3574
|
-
"args": [
|
3575
|
-
|
3576
|
-
],
|
3272
|
+
"args": [],
|
3577
3273
|
"type": {
|
3578
3274
|
"kind": "NON_NULL",
|
3579
3275
|
"name": null,
|
@@ -3589,9 +3285,7 @@
|
|
3589
3285
|
{
|
3590
3286
|
"name": "id",
|
3591
3287
|
"description": "Alpha-numeric unique identifier",
|
3592
|
-
"args": [
|
3593
|
-
|
3594
|
-
],
|
3288
|
+
"args": [],
|
3595
3289
|
"type": {
|
3596
3290
|
"kind": "NON_NULL",
|
3597
3291
|
"name": null,
|
@@ -3607,9 +3301,7 @@
|
|
3607
3301
|
{
|
3608
3302
|
"name": "liveWebhookUrl",
|
3609
3303
|
"description": "Webhook URL for live/production requests",
|
3610
|
-
"args": [
|
3611
|
-
|
3612
|
-
],
|
3304
|
+
"args": [],
|
3613
3305
|
"type": {
|
3614
3306
|
"kind": "SCALAR",
|
3615
3307
|
"name": "String",
|
@@ -3621,9 +3313,7 @@
|
|
3621
3313
|
{
|
3622
3314
|
"name": "name",
|
3623
3315
|
"description": "Name of the partner",
|
3624
|
-
"args": [
|
3625
|
-
|
3626
|
-
],
|
3316
|
+
"args": [],
|
3627
3317
|
"type": {
|
3628
3318
|
"kind": "NON_NULL",
|
3629
3319
|
"name": null,
|
@@ -3639,9 +3329,7 @@
|
|
3639
3329
|
{
|
3640
3330
|
"name": "referralCode",
|
3641
3331
|
"description": "The partner's referral code",
|
3642
|
-
"args": [
|
3643
|
-
|
3644
|
-
],
|
3332
|
+
"args": [],
|
3645
3333
|
"type": {
|
3646
3334
|
"kind": "SCALAR",
|
3647
3335
|
"name": "String",
|
@@ -3653,9 +3341,7 @@
|
|
3653
3341
|
{
|
3654
3342
|
"name": "referralLink",
|
3655
3343
|
"description": "The partner's referral link",
|
3656
|
-
"args": [
|
3657
|
-
|
3658
|
-
],
|
3344
|
+
"args": [],
|
3659
3345
|
"type": {
|
3660
3346
|
"kind": "NON_NULL",
|
3661
3347
|
"name": null,
|
@@ -3671,9 +3357,7 @@
|
|
3671
3357
|
{
|
3672
3358
|
"name": "testWebhookUrl",
|
3673
3359
|
"description": "Webhook URL for test/development requests",
|
3674
|
-
"args": [
|
3675
|
-
|
3676
|
-
],
|
3360
|
+
"args": [],
|
3677
3361
|
"type": {
|
3678
3362
|
"kind": "SCALAR",
|
3679
3363
|
"name": "String",
|
@@ -3685,9 +3369,7 @@
|
|
3685
3369
|
{
|
3686
3370
|
"name": "updatedAt",
|
3687
3371
|
"description": null,
|
3688
|
-
"args": [
|
3689
|
-
|
3690
|
-
],
|
3372
|
+
"args": [],
|
3691
3373
|
"type": {
|
3692
3374
|
"kind": "NON_NULL",
|
3693
3375
|
"name": null,
|
@@ -3702,9 +3384,7 @@
|
|
3702
3384
|
}
|
3703
3385
|
],
|
3704
3386
|
"inputFields": null,
|
3705
|
-
"interfaces": [
|
3706
|
-
|
3707
|
-
],
|
3387
|
+
"interfaces": [],
|
3708
3388
|
"enumValues": null,
|
3709
3389
|
"possibleTypes": null
|
3710
3390
|
},
|
@@ -3716,9 +3396,7 @@
|
|
3716
3396
|
{
|
3717
3397
|
"name": "billFields",
|
3718
3398
|
"description": null,
|
3719
|
-
"args": [
|
3720
|
-
|
3721
|
-
],
|
3399
|
+
"args": [],
|
3722
3400
|
"type": {
|
3723
3401
|
"kind": "NON_NULL",
|
3724
3402
|
"name": null,
|
@@ -3742,9 +3420,7 @@
|
|
3742
3420
|
{
|
3743
3421
|
"name": "createdAt",
|
3744
3422
|
"description": null,
|
3745
|
-
"args": [
|
3746
|
-
|
3747
|
-
],
|
3423
|
+
"args": [],
|
3748
3424
|
"type": {
|
3749
3425
|
"kind": "NON_NULL",
|
3750
3426
|
"name": null,
|
@@ -3760,9 +3436,7 @@
|
|
3760
3436
|
{
|
3761
3437
|
"name": "id",
|
3762
3438
|
"description": null,
|
3763
|
-
"args": [
|
3764
|
-
|
3765
|
-
],
|
3439
|
+
"args": [],
|
3766
3440
|
"type": {
|
3767
3441
|
"kind": "NON_NULL",
|
3768
3442
|
"name": null,
|
@@ -3778,9 +3452,7 @@
|
|
3778
3452
|
{
|
3779
3453
|
"name": "logo",
|
3780
3454
|
"description": null,
|
3781
|
-
"args": [
|
3782
|
-
|
3783
|
-
],
|
3455
|
+
"args": [],
|
3784
3456
|
"type": {
|
3785
3457
|
"kind": "OBJECT",
|
3786
3458
|
"name": "Image",
|
@@ -3792,9 +3464,7 @@
|
|
3792
3464
|
{
|
3793
3465
|
"name": "name",
|
3794
3466
|
"description": null,
|
3795
|
-
"args": [
|
3796
|
-
|
3797
|
-
],
|
3467
|
+
"args": [],
|
3798
3468
|
"type": {
|
3799
3469
|
"kind": "NON_NULL",
|
3800
3470
|
"name": null,
|
@@ -3810,9 +3480,7 @@
|
|
3810
3480
|
{
|
3811
3481
|
"name": "services",
|
3812
3482
|
"description": null,
|
3813
|
-
"args": [
|
3814
|
-
|
3815
|
-
],
|
3483
|
+
"args": [],
|
3816
3484
|
"type": {
|
3817
3485
|
"kind": "NON_NULL",
|
3818
3486
|
"name": null,
|
@@ -3836,9 +3504,7 @@
|
|
3836
3504
|
{
|
3837
3505
|
"name": "updatedAt",
|
3838
3506
|
"description": null,
|
3839
|
-
"args": [
|
3840
|
-
|
3841
|
-
],
|
3507
|
+
"args": [],
|
3842
3508
|
"type": {
|
3843
3509
|
"kind": "NON_NULL",
|
3844
3510
|
"name": null,
|
@@ -3853,9 +3519,7 @@
|
|
3853
3519
|
}
|
3854
3520
|
],
|
3855
3521
|
"inputFields": null,
|
3856
|
-
"interfaces": [
|
3857
|
-
|
3858
|
-
],
|
3522
|
+
"interfaces": [],
|
3859
3523
|
"enumValues": null,
|
3860
3524
|
"possibleTypes": null
|
3861
3525
|
},
|
@@ -3867,9 +3531,7 @@
|
|
3867
3531
|
{
|
3868
3532
|
"name": "CalculateSavingsEstimate",
|
3869
3533
|
"description": null,
|
3870
|
-
"args": [
|
3871
|
-
|
3872
|
-
],
|
3534
|
+
"args": [],
|
3873
3535
|
"type": {
|
3874
3536
|
"kind": "NON_NULL",
|
3875
3537
|
"name": null,
|
@@ -3912,9 +3574,7 @@
|
|
3912
3574
|
{
|
3913
3575
|
"name": "FindCurrentPartner",
|
3914
3576
|
"description": null,
|
3915
|
-
"args": [
|
3916
|
-
|
3917
|
-
],
|
3577
|
+
"args": [],
|
3918
3578
|
"type": {
|
3919
3579
|
"kind": "NON_NULL",
|
3920
3580
|
"name": null,
|
@@ -4456,9 +4116,7 @@
|
|
4456
4116
|
{
|
4457
4117
|
"name": "ListProviders",
|
4458
4118
|
"description": null,
|
4459
|
-
"args": [
|
4460
|
-
|
4461
|
-
],
|
4119
|
+
"args": [],
|
4462
4120
|
"type": {
|
4463
4121
|
"kind": "NON_NULL",
|
4464
4122
|
"name": null,
|
@@ -4481,9 +4139,7 @@
|
|
4481
4139
|
}
|
4482
4140
|
],
|
4483
4141
|
"inputFields": null,
|
4484
|
-
"interfaces": [
|
4485
|
-
|
4486
|
-
],
|
4142
|
+
"interfaces": [],
|
4487
4143
|
"enumValues": null,
|
4488
4144
|
"possibleTypes": null
|
4489
4145
|
},
|
@@ -4530,9 +4186,7 @@
|
|
4530
4186
|
{
|
4531
4187
|
"name": "clientMutationId",
|
4532
4188
|
"description": "A unique identifier for the client performing the mutation.",
|
4533
|
-
"args": [
|
4534
|
-
|
4535
|
-
],
|
4189
|
+
"args": [],
|
4536
4190
|
"type": {
|
4537
4191
|
"kind": "SCALAR",
|
4538
4192
|
"name": "String",
|
@@ -4544,9 +4198,7 @@
|
|
4544
4198
|
{
|
4545
4199
|
"name": "errors",
|
4546
4200
|
"description": null,
|
4547
|
-
"args": [
|
4548
|
-
|
4549
|
-
],
|
4201
|
+
"args": [],
|
4550
4202
|
"type": {
|
4551
4203
|
"kind": "NON_NULL",
|
4552
4204
|
"name": null,
|
@@ -4570,9 +4222,7 @@
|
|
4570
4222
|
{
|
4571
4223
|
"name": "offer",
|
4572
4224
|
"description": null,
|
4573
|
-
"args": [
|
4574
|
-
|
4575
|
-
],
|
4225
|
+
"args": [],
|
4576
4226
|
"type": {
|
4577
4227
|
"kind": "OBJECT",
|
4578
4228
|
"name": "Offer",
|
@@ -4584,9 +4234,7 @@
|
|
4584
4234
|
{
|
4585
4235
|
"name": "success",
|
4586
4236
|
"description": null,
|
4587
|
-
"args": [
|
4588
|
-
|
4589
|
-
],
|
4237
|
+
"args": [],
|
4590
4238
|
"type": {
|
4591
4239
|
"kind": "NON_NULL",
|
4592
4240
|
"name": null,
|
@@ -4601,9 +4249,117 @@
|
|
4601
4249
|
}
|
4602
4250
|
],
|
4603
4251
|
"inputFields": null,
|
4604
|
-
"interfaces": [
|
4605
|
-
|
4252
|
+
"interfaces": [],
|
4253
|
+
"enumValues": null,
|
4254
|
+
"possibleTypes": null
|
4255
|
+
},
|
4256
|
+
{
|
4257
|
+
"kind": "INPUT_OBJECT",
|
4258
|
+
"name": "RenegotiateBillInput",
|
4259
|
+
"description": "Autogenerated input type of RenegotiateBill",
|
4260
|
+
"fields": null,
|
4261
|
+
"inputFields": [
|
4262
|
+
{
|
4263
|
+
"name": "id",
|
4264
|
+
"description": "Id of the bill that should be renegotiated",
|
4265
|
+
"type": {
|
4266
|
+
"kind": "NON_NULL",
|
4267
|
+
"name": null,
|
4268
|
+
"ofType": {
|
4269
|
+
"kind": "SCALAR",
|
4270
|
+
"name": "ID",
|
4271
|
+
"ofType": null
|
4272
|
+
}
|
4273
|
+
},
|
4274
|
+
"defaultValue": null
|
4275
|
+
},
|
4276
|
+
{
|
4277
|
+
"name": "clientMutationId",
|
4278
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4279
|
+
"type": {
|
4280
|
+
"kind": "SCALAR",
|
4281
|
+
"name": "String",
|
4282
|
+
"ofType": null
|
4283
|
+
},
|
4284
|
+
"defaultValue": null
|
4285
|
+
}
|
4286
|
+
],
|
4287
|
+
"interfaces": null,
|
4288
|
+
"enumValues": null,
|
4289
|
+
"possibleTypes": null
|
4290
|
+
},
|
4291
|
+
{
|
4292
|
+
"kind": "OBJECT",
|
4293
|
+
"name": "RenegotiateBillPayload",
|
4294
|
+
"description": "Autogenerated return type of RenegotiateBill",
|
4295
|
+
"fields": [
|
4296
|
+
{
|
4297
|
+
"name": "bill",
|
4298
|
+
"description": null,
|
4299
|
+
"args": [],
|
4300
|
+
"type": {
|
4301
|
+
"kind": "OBJECT",
|
4302
|
+
"name": "Bill",
|
4303
|
+
"ofType": null
|
4304
|
+
},
|
4305
|
+
"isDeprecated": false,
|
4306
|
+
"deprecationReason": null
|
4307
|
+
},
|
4308
|
+
{
|
4309
|
+
"name": "clientMutationId",
|
4310
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4311
|
+
"args": [],
|
4312
|
+
"type": {
|
4313
|
+
"kind": "SCALAR",
|
4314
|
+
"name": "String",
|
4315
|
+
"ofType": null
|
4316
|
+
},
|
4317
|
+
"isDeprecated": false,
|
4318
|
+
"deprecationReason": null
|
4319
|
+
},
|
4320
|
+
{
|
4321
|
+
"name": "errors",
|
4322
|
+
"description": null,
|
4323
|
+
"args": [],
|
4324
|
+
"type": {
|
4325
|
+
"kind": "NON_NULL",
|
4326
|
+
"name": null,
|
4327
|
+
"ofType": {
|
4328
|
+
"kind": "LIST",
|
4329
|
+
"name": null,
|
4330
|
+
"ofType": {
|
4331
|
+
"kind": "NON_NULL",
|
4332
|
+
"name": null,
|
4333
|
+
"ofType": {
|
4334
|
+
"kind": "SCALAR",
|
4335
|
+
"name": "String",
|
4336
|
+
"ofType": null
|
4337
|
+
}
|
4338
|
+
}
|
4339
|
+
}
|
4340
|
+
},
|
4341
|
+
"isDeprecated": false,
|
4342
|
+
"deprecationReason": null
|
4343
|
+
},
|
4344
|
+
{
|
4345
|
+
"name": "success",
|
4346
|
+
"description": null,
|
4347
|
+
"args": [],
|
4348
|
+
"type": {
|
4349
|
+
"kind": "NON_NULL",
|
4350
|
+
"name": null,
|
4351
|
+
"ofType": {
|
4352
|
+
"kind": "SCALAR",
|
4353
|
+
"name": "Boolean",
|
4354
|
+
"ofType": null
|
4355
|
+
}
|
4356
|
+
},
|
4357
|
+
"isDeprecated": false,
|
4358
|
+
"deprecationReason": null
|
4359
|
+
}
|
4606
4360
|
],
|
4361
|
+
"inputFields": null,
|
4362
|
+
"interfaces": [],
|
4607
4363
|
"enumValues": null,
|
4608
4364
|
"possibleTypes": null
|
4609
4365
|
},
|
@@ -4664,9 +4420,7 @@
|
|
4664
4420
|
{
|
4665
4421
|
"name": "bill",
|
4666
4422
|
"description": null,
|
4667
|
-
"args": [
|
4668
|
-
|
4669
|
-
],
|
4423
|
+
"args": [],
|
4670
4424
|
"type": {
|
4671
4425
|
"kind": "OBJECT",
|
4672
4426
|
"name": "Bill",
|
@@ -4678,9 +4432,7 @@
|
|
4678
4432
|
{
|
4679
4433
|
"name": "clientMutationId",
|
4680
4434
|
"description": "A unique identifier for the client performing the mutation.",
|
4681
|
-
"args": [
|
4682
|
-
|
4683
|
-
],
|
4435
|
+
"args": [],
|
4684
4436
|
"type": {
|
4685
4437
|
"kind": "SCALAR",
|
4686
4438
|
"name": "String",
|
@@ -4692,9 +4444,7 @@
|
|
4692
4444
|
{
|
4693
4445
|
"name": "errors",
|
4694
4446
|
"description": null,
|
4695
|
-
"args": [
|
4696
|
-
|
4697
|
-
],
|
4447
|
+
"args": [],
|
4698
4448
|
"type": {
|
4699
4449
|
"kind": "NON_NULL",
|
4700
4450
|
"name": null,
|
@@ -4718,9 +4468,7 @@
|
|
4718
4468
|
{
|
4719
4469
|
"name": "informationRequest",
|
4720
4470
|
"description": null,
|
4721
|
-
"args": [
|
4722
|
-
|
4723
|
-
],
|
4471
|
+
"args": [],
|
4724
4472
|
"type": {
|
4725
4473
|
"kind": "OBJECT",
|
4726
4474
|
"name": "InformationRequest",
|
@@ -4732,9 +4480,7 @@
|
|
4732
4480
|
{
|
4733
4481
|
"name": "negotiation",
|
4734
4482
|
"description": null,
|
4735
|
-
"args": [
|
4736
|
-
|
4737
|
-
],
|
4483
|
+
"args": [],
|
4738
4484
|
"type": {
|
4739
4485
|
"kind": "OBJECT",
|
4740
4486
|
"name": "Negotiation",
|
@@ -4746,9 +4492,7 @@
|
|
4746
4492
|
{
|
4747
4493
|
"name": "success",
|
4748
4494
|
"description": null,
|
4749
|
-
"args": [
|
4750
|
-
|
4751
|
-
],
|
4495
|
+
"args": [],
|
4752
4496
|
"type": {
|
4753
4497
|
"kind": "NON_NULL",
|
4754
4498
|
"name": null,
|
@@ -4763,9 +4507,7 @@
|
|
4763
4507
|
}
|
4764
4508
|
],
|
4765
4509
|
"inputFields": null,
|
4766
|
-
"interfaces": [
|
4767
|
-
|
4768
|
-
],
|
4510
|
+
"interfaces": [],
|
4769
4511
|
"enumValues": null,
|
4770
4512
|
"possibleTypes": null
|
4771
4513
|
},
|
@@ -4911,26 +4653,14 @@
|
|
4911
4653
|
}
|
4912
4654
|
],
|
4913
4655
|
"inputFields": null,
|
4914
|
-
"interfaces": [
|
4915
|
-
|
4916
|
-
],
|
4917
|
-
"enumValues": null,
|
4918
|
-
"possibleTypes": null
|
4919
|
-
},
|
4920
|
-
{
|
4921
|
-
"kind": "SCALAR",
|
4922
|
-
"name": "String",
|
4923
|
-
"description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.",
|
4924
|
-
"fields": null,
|
4925
|
-
"inputFields": null,
|
4926
|
-
"interfaces": null,
|
4656
|
+
"interfaces": [],
|
4927
4657
|
"enumValues": null,
|
4928
4658
|
"possibleTypes": null
|
4929
4659
|
},
|
4930
4660
|
{
|
4931
4661
|
"kind": "INPUT_OBJECT",
|
4932
|
-
"name": "
|
4933
|
-
"description": "Autogenerated input type of
|
4662
|
+
"name": "StopNegotiatingInput",
|
4663
|
+
"description": "Autogenerated input type of StopNegotiating",
|
4934
4664
|
"fields": null,
|
4935
4665
|
"inputFields": [
|
4936
4666
|
{
|
@@ -4947,20 +4677,6 @@
|
|
4947
4677
|
},
|
4948
4678
|
"defaultValue": null
|
4949
4679
|
},
|
4950
|
-
{
|
4951
|
-
"name": "customer",
|
4952
|
-
"description": null,
|
4953
|
-
"type": {
|
4954
|
-
"kind": "NON_NULL",
|
4955
|
-
"name": null,
|
4956
|
-
"ofType": {
|
4957
|
-
"kind": "INPUT_OBJECT",
|
4958
|
-
"name": "CustomerAttributes",
|
4959
|
-
"ofType": null
|
4960
|
-
}
|
4961
|
-
},
|
4962
|
-
"defaultValue": null
|
4963
|
-
},
|
4964
4680
|
{
|
4965
4681
|
"name": "clientMutationId",
|
4966
4682
|
"description": "A unique identifier for the client performing the mutation.",
|
@@ -4978,32 +4694,28 @@
|
|
4978
4694
|
},
|
4979
4695
|
{
|
4980
4696
|
"kind": "OBJECT",
|
4981
|
-
"name": "
|
4982
|
-
"description": "Autogenerated return type of
|
4697
|
+
"name": "StopNegotiatingPayload",
|
4698
|
+
"description": "Autogenerated return type of StopNegotiating",
|
4983
4699
|
"fields": [
|
4984
4700
|
{
|
4985
|
-
"name": "
|
4986
|
-
"description":
|
4987
|
-
"args": [
|
4988
|
-
|
4989
|
-
],
|
4701
|
+
"name": "bill",
|
4702
|
+
"description": null,
|
4703
|
+
"args": [],
|
4990
4704
|
"type": {
|
4991
|
-
"kind": "
|
4992
|
-
"name": "
|
4705
|
+
"kind": "OBJECT",
|
4706
|
+
"name": "Bill",
|
4993
4707
|
"ofType": null
|
4994
4708
|
},
|
4995
4709
|
"isDeprecated": false,
|
4996
4710
|
"deprecationReason": null
|
4997
4711
|
},
|
4998
4712
|
{
|
4999
|
-
"name": "
|
5000
|
-
"description":
|
5001
|
-
"args": [
|
5002
|
-
|
5003
|
-
],
|
4713
|
+
"name": "clientMutationId",
|
4714
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4715
|
+
"args": [],
|
5004
4716
|
"type": {
|
5005
|
-
"kind": "
|
5006
|
-
"name": "
|
4717
|
+
"kind": "SCALAR",
|
4718
|
+
"name": "String",
|
5007
4719
|
"ofType": null
|
5008
4720
|
},
|
5009
4721
|
"isDeprecated": false,
|
@@ -5012,9 +4724,7 @@
|
|
5012
4724
|
{
|
5013
4725
|
"name": "errors",
|
5014
4726
|
"description": null,
|
5015
|
-
"args": [
|
5016
|
-
|
5017
|
-
],
|
4727
|
+
"args": [],
|
5018
4728
|
"type": {
|
5019
4729
|
"kind": "NON_NULL",
|
5020
4730
|
"name": null,
|
@@ -5038,9 +4748,7 @@
|
|
5038
4748
|
{
|
5039
4749
|
"name": "success",
|
5040
4750
|
"description": null,
|
5041
|
-
"args": [
|
5042
|
-
|
5043
|
-
],
|
4751
|
+
"args": [],
|
5044
4752
|
"type": {
|
5045
4753
|
"kind": "NON_NULL",
|
5046
4754
|
"name": null,
|
@@ -5055,38 +4763,294 @@
|
|
5055
4763
|
}
|
5056
4764
|
],
|
5057
4765
|
"inputFields": null,
|
5058
|
-
"interfaces": [
|
5059
|
-
|
5060
|
-
|
4766
|
+
"interfaces": [],
|
4767
|
+
"enumValues": null,
|
4768
|
+
"possibleTypes": null
|
4769
|
+
},
|
4770
|
+
{
|
4771
|
+
"kind": "SCALAR",
|
4772
|
+
"name": "String",
|
4773
|
+
"description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.",
|
4774
|
+
"fields": null,
|
4775
|
+
"inputFields": null,
|
4776
|
+
"interfaces": null,
|
5061
4777
|
"enumValues": null,
|
5062
4778
|
"possibleTypes": null
|
5063
4779
|
},
|
5064
4780
|
{
|
5065
4781
|
"kind": "INPUT_OBJECT",
|
5066
|
-
"name": "
|
5067
|
-
"description": "Autogenerated input type of
|
4782
|
+
"name": "UpdateBillInput",
|
4783
|
+
"description": "Autogenerated input type of UpdateBill",
|
5068
4784
|
"fields": null,
|
5069
4785
|
"inputFields": [
|
5070
4786
|
{
|
5071
|
-
"name": "
|
4787
|
+
"name": "billId",
|
5072
4788
|
"description": null,
|
5073
4789
|
"type": {
|
5074
|
-
"kind": "
|
5075
|
-
"name":
|
5076
|
-
"ofType":
|
4790
|
+
"kind": "NON_NULL",
|
4791
|
+
"name": null,
|
4792
|
+
"ofType": {
|
4793
|
+
"kind": "SCALAR",
|
4794
|
+
"name": "ID",
|
4795
|
+
"ofType": null
|
4796
|
+
}
|
5077
4797
|
},
|
5078
4798
|
"defaultValue": null
|
5079
4799
|
},
|
5080
4800
|
{
|
5081
|
-
"name": "
|
4801
|
+
"name": "bill",
|
5082
4802
|
"description": null,
|
5083
4803
|
"type": {
|
5084
|
-
"kind": "
|
5085
|
-
"name":
|
5086
|
-
"ofType":
|
5087
|
-
|
5088
|
-
|
5089
|
-
|
4804
|
+
"kind": "NON_NULL",
|
4805
|
+
"name": null,
|
4806
|
+
"ofType": {
|
4807
|
+
"kind": "INPUT_OBJECT",
|
4808
|
+
"name": "BillAttributes",
|
4809
|
+
"ofType": null
|
4810
|
+
}
|
4811
|
+
},
|
4812
|
+
"defaultValue": null
|
4813
|
+
},
|
4814
|
+
{
|
4815
|
+
"name": "clientMutationId",
|
4816
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4817
|
+
"type": {
|
4818
|
+
"kind": "SCALAR",
|
4819
|
+
"name": "String",
|
4820
|
+
"ofType": null
|
4821
|
+
},
|
4822
|
+
"defaultValue": null
|
4823
|
+
}
|
4824
|
+
],
|
4825
|
+
"interfaces": null,
|
4826
|
+
"enumValues": null,
|
4827
|
+
"possibleTypes": null
|
4828
|
+
},
|
4829
|
+
{
|
4830
|
+
"kind": "OBJECT",
|
4831
|
+
"name": "UpdateBillPayload",
|
4832
|
+
"description": "Autogenerated return type of UpdateBill",
|
4833
|
+
"fields": [
|
4834
|
+
{
|
4835
|
+
"name": "bill",
|
4836
|
+
"description": null,
|
4837
|
+
"args": [],
|
4838
|
+
"type": {
|
4839
|
+
"kind": "OBJECT",
|
4840
|
+
"name": "Bill",
|
4841
|
+
"ofType": null
|
4842
|
+
},
|
4843
|
+
"isDeprecated": false,
|
4844
|
+
"deprecationReason": null
|
4845
|
+
},
|
4846
|
+
{
|
4847
|
+
"name": "clientMutationId",
|
4848
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4849
|
+
"args": [],
|
4850
|
+
"type": {
|
4851
|
+
"kind": "SCALAR",
|
4852
|
+
"name": "String",
|
4853
|
+
"ofType": null
|
4854
|
+
},
|
4855
|
+
"isDeprecated": false,
|
4856
|
+
"deprecationReason": null
|
4857
|
+
},
|
4858
|
+
{
|
4859
|
+
"name": "errors",
|
4860
|
+
"description": null,
|
4861
|
+
"args": [],
|
4862
|
+
"type": {
|
4863
|
+
"kind": "NON_NULL",
|
4864
|
+
"name": null,
|
4865
|
+
"ofType": {
|
4866
|
+
"kind": "LIST",
|
4867
|
+
"name": null,
|
4868
|
+
"ofType": {
|
4869
|
+
"kind": "NON_NULL",
|
4870
|
+
"name": null,
|
4871
|
+
"ofType": {
|
4872
|
+
"kind": "SCALAR",
|
4873
|
+
"name": "String",
|
4874
|
+
"ofType": null
|
4875
|
+
}
|
4876
|
+
}
|
4877
|
+
}
|
4878
|
+
},
|
4879
|
+
"isDeprecated": false,
|
4880
|
+
"deprecationReason": null
|
4881
|
+
},
|
4882
|
+
{
|
4883
|
+
"name": "success",
|
4884
|
+
"description": null,
|
4885
|
+
"args": [],
|
4886
|
+
"type": {
|
4887
|
+
"kind": "NON_NULL",
|
4888
|
+
"name": null,
|
4889
|
+
"ofType": {
|
4890
|
+
"kind": "SCALAR",
|
4891
|
+
"name": "Boolean",
|
4892
|
+
"ofType": null
|
4893
|
+
}
|
4894
|
+
},
|
4895
|
+
"isDeprecated": false,
|
4896
|
+
"deprecationReason": null
|
4897
|
+
}
|
4898
|
+
],
|
4899
|
+
"inputFields": null,
|
4900
|
+
"interfaces": [],
|
4901
|
+
"enumValues": null,
|
4902
|
+
"possibleTypes": null
|
4903
|
+
},
|
4904
|
+
{
|
4905
|
+
"kind": "INPUT_OBJECT",
|
4906
|
+
"name": "UpdateCustomerInput",
|
4907
|
+
"description": "Autogenerated input type of UpdateCustomer",
|
4908
|
+
"fields": null,
|
4909
|
+
"inputFields": [
|
4910
|
+
{
|
4911
|
+
"name": "id",
|
4912
|
+
"description": null,
|
4913
|
+
"type": {
|
4914
|
+
"kind": "NON_NULL",
|
4915
|
+
"name": null,
|
4916
|
+
"ofType": {
|
4917
|
+
"kind": "SCALAR",
|
4918
|
+
"name": "ID",
|
4919
|
+
"ofType": null
|
4920
|
+
}
|
4921
|
+
},
|
4922
|
+
"defaultValue": null
|
4923
|
+
},
|
4924
|
+
{
|
4925
|
+
"name": "customer",
|
4926
|
+
"description": null,
|
4927
|
+
"type": {
|
4928
|
+
"kind": "NON_NULL",
|
4929
|
+
"name": null,
|
4930
|
+
"ofType": {
|
4931
|
+
"kind": "INPUT_OBJECT",
|
4932
|
+
"name": "CustomerAttributes",
|
4933
|
+
"ofType": null
|
4934
|
+
}
|
4935
|
+
},
|
4936
|
+
"defaultValue": null
|
4937
|
+
},
|
4938
|
+
{
|
4939
|
+
"name": "clientMutationId",
|
4940
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4941
|
+
"type": {
|
4942
|
+
"kind": "SCALAR",
|
4943
|
+
"name": "String",
|
4944
|
+
"ofType": null
|
4945
|
+
},
|
4946
|
+
"defaultValue": null
|
4947
|
+
}
|
4948
|
+
],
|
4949
|
+
"interfaces": null,
|
4950
|
+
"enumValues": null,
|
4951
|
+
"possibleTypes": null
|
4952
|
+
},
|
4953
|
+
{
|
4954
|
+
"kind": "OBJECT",
|
4955
|
+
"name": "UpdateCustomerPayload",
|
4956
|
+
"description": "Autogenerated return type of UpdateCustomer",
|
4957
|
+
"fields": [
|
4958
|
+
{
|
4959
|
+
"name": "clientMutationId",
|
4960
|
+
"description": "A unique identifier for the client performing the mutation.",
|
4961
|
+
"args": [],
|
4962
|
+
"type": {
|
4963
|
+
"kind": "SCALAR",
|
4964
|
+
"name": "String",
|
4965
|
+
"ofType": null
|
4966
|
+
},
|
4967
|
+
"isDeprecated": false,
|
4968
|
+
"deprecationReason": null
|
4969
|
+
},
|
4970
|
+
{
|
4971
|
+
"name": "customer",
|
4972
|
+
"description": null,
|
4973
|
+
"args": [],
|
4974
|
+
"type": {
|
4975
|
+
"kind": "OBJECT",
|
4976
|
+
"name": "Customer",
|
4977
|
+
"ofType": null
|
4978
|
+
},
|
4979
|
+
"isDeprecated": false,
|
4980
|
+
"deprecationReason": null
|
4981
|
+
},
|
4982
|
+
{
|
4983
|
+
"name": "errors",
|
4984
|
+
"description": null,
|
4985
|
+
"args": [],
|
4986
|
+
"type": {
|
4987
|
+
"kind": "NON_NULL",
|
4988
|
+
"name": null,
|
4989
|
+
"ofType": {
|
4990
|
+
"kind": "LIST",
|
4991
|
+
"name": null,
|
4992
|
+
"ofType": {
|
4993
|
+
"kind": "NON_NULL",
|
4994
|
+
"name": null,
|
4995
|
+
"ofType": {
|
4996
|
+
"kind": "SCALAR",
|
4997
|
+
"name": "String",
|
4998
|
+
"ofType": null
|
4999
|
+
}
|
5000
|
+
}
|
5001
|
+
}
|
5002
|
+
},
|
5003
|
+
"isDeprecated": false,
|
5004
|
+
"deprecationReason": null
|
5005
|
+
},
|
5006
|
+
{
|
5007
|
+
"name": "success",
|
5008
|
+
"description": null,
|
5009
|
+
"args": [],
|
5010
|
+
"type": {
|
5011
|
+
"kind": "NON_NULL",
|
5012
|
+
"name": null,
|
5013
|
+
"ofType": {
|
5014
|
+
"kind": "SCALAR",
|
5015
|
+
"name": "Boolean",
|
5016
|
+
"ofType": null
|
5017
|
+
}
|
5018
|
+
},
|
5019
|
+
"isDeprecated": false,
|
5020
|
+
"deprecationReason": null
|
5021
|
+
}
|
5022
|
+
],
|
5023
|
+
"inputFields": null,
|
5024
|
+
"interfaces": [],
|
5025
|
+
"enumValues": null,
|
5026
|
+
"possibleTypes": null
|
5027
|
+
},
|
5028
|
+
{
|
5029
|
+
"kind": "INPUT_OBJECT",
|
5030
|
+
"name": "UpdateWebhookUrlsInput",
|
5031
|
+
"description": "Autogenerated input type of UpdateWebhookUrls",
|
5032
|
+
"fields": null,
|
5033
|
+
"inputFields": [
|
5034
|
+
{
|
5035
|
+
"name": "liveWebhookUrl",
|
5036
|
+
"description": null,
|
5037
|
+
"type": {
|
5038
|
+
"kind": "SCALAR",
|
5039
|
+
"name": "String",
|
5040
|
+
"ofType": null
|
5041
|
+
},
|
5042
|
+
"defaultValue": null
|
5043
|
+
},
|
5044
|
+
{
|
5045
|
+
"name": "testWebhookUrl",
|
5046
|
+
"description": null,
|
5047
|
+
"type": {
|
5048
|
+
"kind": "SCALAR",
|
5049
|
+
"name": "String",
|
5050
|
+
"ofType": null
|
5051
|
+
},
|
5052
|
+
"defaultValue": null
|
5053
|
+
},
|
5090
5054
|
{
|
5091
5055
|
"name": "clientMutationId",
|
5092
5056
|
"description": "A unique identifier for the client performing the mutation.",
|
@@ -5110,9 +5074,7 @@
|
|
5110
5074
|
{
|
5111
5075
|
"name": "clientMutationId",
|
5112
5076
|
"description": "A unique identifier for the client performing the mutation.",
|
5113
|
-
"args": [
|
5114
|
-
|
5115
|
-
],
|
5077
|
+
"args": [],
|
5116
5078
|
"type": {
|
5117
5079
|
"kind": "SCALAR",
|
5118
5080
|
"name": "String",
|
@@ -5124,9 +5086,7 @@
|
|
5124
5086
|
{
|
5125
5087
|
"name": "errors",
|
5126
5088
|
"description": null,
|
5127
|
-
"args": [
|
5128
|
-
|
5129
|
-
],
|
5089
|
+
"args": [],
|
5130
5090
|
"type": {
|
5131
5091
|
"kind": "NON_NULL",
|
5132
5092
|
"name": null,
|
@@ -5150,9 +5110,7 @@
|
|
5150
5110
|
{
|
5151
5111
|
"name": "partner",
|
5152
5112
|
"description": null,
|
5153
|
-
"args": [
|
5154
|
-
|
5155
|
-
],
|
5113
|
+
"args": [],
|
5156
5114
|
"type": {
|
5157
5115
|
"kind": "NON_NULL",
|
5158
5116
|
"name": null,
|
@@ -5168,9 +5126,7 @@
|
|
5168
5126
|
{
|
5169
5127
|
"name": "success",
|
5170
5128
|
"description": null,
|
5171
|
-
"args": [
|
5172
|
-
|
5173
|
-
],
|
5129
|
+
"args": [],
|
5174
5130
|
"type": {
|
5175
5131
|
"kind": "NON_NULL",
|
5176
5132
|
"name": null,
|
@@ -5185,9 +5141,7 @@
|
|
5185
5141
|
}
|
5186
5142
|
],
|
5187
5143
|
"inputFields": null,
|
5188
|
-
"interfaces": [
|
5189
|
-
|
5190
|
-
],
|
5144
|
+
"interfaces": [],
|
5191
5145
|
"enumValues": null,
|
5192
5146
|
"possibleTypes": null
|
5193
5147
|
},
|
@@ -5200,7 +5154,16 @@
|
|
5200
5154
|
"name": "args",
|
5201
5155
|
"description": null,
|
5202
5156
|
"args": [
|
5203
|
-
|
5157
|
+
{
|
5158
|
+
"name": "includeDeprecated",
|
5159
|
+
"description": null,
|
5160
|
+
"type": {
|
5161
|
+
"kind": "SCALAR",
|
5162
|
+
"name": "Boolean",
|
5163
|
+
"ofType": null
|
5164
|
+
},
|
5165
|
+
"defaultValue": "false"
|
5166
|
+
}
|
5204
5167
|
],
|
5205
5168
|
"type": {
|
5206
5169
|
"kind": "NON_NULL",
|
@@ -5225,9 +5188,7 @@
|
|
5225
5188
|
{
|
5226
5189
|
"name": "description",
|
5227
5190
|
"description": null,
|
5228
|
-
"args": [
|
5229
|
-
|
5230
|
-
],
|
5191
|
+
"args": [],
|
5231
5192
|
"type": {
|
5232
5193
|
"kind": "SCALAR",
|
5233
5194
|
"name": "String",
|
@@ -5239,9 +5200,7 @@
|
|
5239
5200
|
{
|
5240
5201
|
"name": "locations",
|
5241
5202
|
"description": null,
|
5242
|
-
"args": [
|
5243
|
-
|
5244
|
-
],
|
5203
|
+
"args": [],
|
5245
5204
|
"type": {
|
5246
5205
|
"kind": "NON_NULL",
|
5247
5206
|
"name": null,
|
@@ -5265,9 +5224,7 @@
|
|
5265
5224
|
{
|
5266
5225
|
"name": "name",
|
5267
5226
|
"description": null,
|
5268
|
-
"args": [
|
5269
|
-
|
5270
|
-
],
|
5227
|
+
"args": [],
|
5271
5228
|
"type": {
|
5272
5229
|
"kind": "NON_NULL",
|
5273
5230
|
"name": null,
|
@@ -5283,9 +5240,7 @@
|
|
5283
5240
|
{
|
5284
5241
|
"name": "onField",
|
5285
5242
|
"description": null,
|
5286
|
-
"args": [
|
5287
|
-
|
5288
|
-
],
|
5243
|
+
"args": [],
|
5289
5244
|
"type": {
|
5290
5245
|
"kind": "NON_NULL",
|
5291
5246
|
"name": null,
|
@@ -5301,9 +5256,7 @@
|
|
5301
5256
|
{
|
5302
5257
|
"name": "onFragment",
|
5303
5258
|
"description": null,
|
5304
|
-
"args": [
|
5305
|
-
|
5306
|
-
],
|
5259
|
+
"args": [],
|
5307
5260
|
"type": {
|
5308
5261
|
"kind": "NON_NULL",
|
5309
5262
|
"name": null,
|
@@ -5319,9 +5272,7 @@
|
|
5319
5272
|
{
|
5320
5273
|
"name": "onOperation",
|
5321
5274
|
"description": null,
|
5322
|
-
"args": [
|
5323
|
-
|
5324
|
-
],
|
5275
|
+
"args": [],
|
5325
5276
|
"type": {
|
5326
5277
|
"kind": "NON_NULL",
|
5327
5278
|
"name": null,
|
@@ -5336,9 +5287,7 @@
|
|
5336
5287
|
}
|
5337
5288
|
],
|
5338
5289
|
"inputFields": null,
|
5339
|
-
"interfaces": [
|
5340
|
-
|
5341
|
-
],
|
5290
|
+
"interfaces": [],
|
5342
5291
|
"enumValues": null,
|
5343
5292
|
"possibleTypes": null
|
5344
5293
|
},
|
@@ -5469,9 +5418,7 @@
|
|
5469
5418
|
{
|
5470
5419
|
"name": "deprecationReason",
|
5471
5420
|
"description": null,
|
5472
|
-
"args": [
|
5473
|
-
|
5474
|
-
],
|
5421
|
+
"args": [],
|
5475
5422
|
"type": {
|
5476
5423
|
"kind": "SCALAR",
|
5477
5424
|
"name": "String",
|
@@ -5483,9 +5430,7 @@
|
|
5483
5430
|
{
|
5484
5431
|
"name": "description",
|
5485
5432
|
"description": null,
|
5486
|
-
"args": [
|
5487
|
-
|
5488
|
-
],
|
5433
|
+
"args": [],
|
5489
5434
|
"type": {
|
5490
5435
|
"kind": "SCALAR",
|
5491
5436
|
"name": "String",
|
@@ -5497,9 +5442,7 @@
|
|
5497
5442
|
{
|
5498
5443
|
"name": "isDeprecated",
|
5499
5444
|
"description": null,
|
5500
|
-
"args": [
|
5501
|
-
|
5502
|
-
],
|
5445
|
+
"args": [],
|
5503
5446
|
"type": {
|
5504
5447
|
"kind": "NON_NULL",
|
5505
5448
|
"name": null,
|
@@ -5515,9 +5458,7 @@
|
|
5515
5458
|
{
|
5516
5459
|
"name": "name",
|
5517
5460
|
"description": null,
|
5518
|
-
"args": [
|
5519
|
-
|
5520
|
-
],
|
5461
|
+
"args": [],
|
5521
5462
|
"type": {
|
5522
5463
|
"kind": "NON_NULL",
|
5523
5464
|
"name": null,
|
@@ -5532,9 +5473,7 @@
|
|
5532
5473
|
}
|
5533
5474
|
],
|
5534
5475
|
"inputFields": null,
|
5535
|
-
"interfaces": [
|
5536
|
-
|
5537
|
-
],
|
5476
|
+
"interfaces": [],
|
5538
5477
|
"enumValues": null,
|
5539
5478
|
"possibleTypes": null
|
5540
5479
|
},
|
@@ -5547,7 +5486,16 @@
|
|
5547
5486
|
"name": "args",
|
5548
5487
|
"description": null,
|
5549
5488
|
"args": [
|
5550
|
-
|
5489
|
+
{
|
5490
|
+
"name": "includeDeprecated",
|
5491
|
+
"description": null,
|
5492
|
+
"type": {
|
5493
|
+
"kind": "SCALAR",
|
5494
|
+
"name": "Boolean",
|
5495
|
+
"ofType": null
|
5496
|
+
},
|
5497
|
+
"defaultValue": "false"
|
5498
|
+
}
|
5551
5499
|
],
|
5552
5500
|
"type": {
|
5553
5501
|
"kind": "NON_NULL",
|
@@ -5572,9 +5520,7 @@
|
|
5572
5520
|
{
|
5573
5521
|
"name": "deprecationReason",
|
5574
5522
|
"description": null,
|
5575
|
-
"args": [
|
5576
|
-
|
5577
|
-
],
|
5523
|
+
"args": [],
|
5578
5524
|
"type": {
|
5579
5525
|
"kind": "SCALAR",
|
5580
5526
|
"name": "String",
|
@@ -5586,9 +5532,7 @@
|
|
5586
5532
|
{
|
5587
5533
|
"name": "description",
|
5588
5534
|
"description": null,
|
5589
|
-
"args": [
|
5590
|
-
|
5591
|
-
],
|
5535
|
+
"args": [],
|
5592
5536
|
"type": {
|
5593
5537
|
"kind": "SCALAR",
|
5594
5538
|
"name": "String",
|
@@ -5600,9 +5544,7 @@
|
|
5600
5544
|
{
|
5601
5545
|
"name": "isDeprecated",
|
5602
5546
|
"description": null,
|
5603
|
-
"args": [
|
5604
|
-
|
5605
|
-
],
|
5547
|
+
"args": [],
|
5606
5548
|
"type": {
|
5607
5549
|
"kind": "NON_NULL",
|
5608
5550
|
"name": null,
|
@@ -5618,9 +5560,7 @@
|
|
5618
5560
|
{
|
5619
5561
|
"name": "name",
|
5620
5562
|
"description": null,
|
5621
|
-
"args": [
|
5622
|
-
|
5623
|
-
],
|
5563
|
+
"args": [],
|
5624
5564
|
"type": {
|
5625
5565
|
"kind": "NON_NULL",
|
5626
5566
|
"name": null,
|
@@ -5636,9 +5576,7 @@
|
|
5636
5576
|
{
|
5637
5577
|
"name": "type",
|
5638
5578
|
"description": null,
|
5639
|
-
"args": [
|
5640
|
-
|
5641
|
-
],
|
5579
|
+
"args": [],
|
5642
5580
|
"type": {
|
5643
5581
|
"kind": "NON_NULL",
|
5644
5582
|
"name": null,
|
@@ -5653,9 +5591,7 @@
|
|
5653
5591
|
}
|
5654
5592
|
],
|
5655
5593
|
"inputFields": null,
|
5656
|
-
"interfaces": [
|
5657
|
-
|
5658
|
-
],
|
5594
|
+
"interfaces": [],
|
5659
5595
|
"enumValues": null,
|
5660
5596
|
"possibleTypes": null
|
5661
5597
|
},
|
@@ -5667,9 +5603,19 @@
|
|
5667
5603
|
{
|
5668
5604
|
"name": "defaultValue",
|
5669
5605
|
"description": "A GraphQL-formatted string representing the default value for this input value.",
|
5670
|
-
"args": [
|
5671
|
-
|
5672
|
-
|
5606
|
+
"args": [],
|
5607
|
+
"type": {
|
5608
|
+
"kind": "SCALAR",
|
5609
|
+
"name": "String",
|
5610
|
+
"ofType": null
|
5611
|
+
},
|
5612
|
+
"isDeprecated": false,
|
5613
|
+
"deprecationReason": null
|
5614
|
+
},
|
5615
|
+
{
|
5616
|
+
"name": "deprecationReason",
|
5617
|
+
"description": null,
|
5618
|
+
"args": [],
|
5673
5619
|
"type": {
|
5674
5620
|
"kind": "SCALAR",
|
5675
5621
|
"name": "String",
|
@@ -5681,9 +5627,7 @@
|
|
5681
5627
|
{
|
5682
5628
|
"name": "description",
|
5683
5629
|
"description": null,
|
5684
|
-
"args": [
|
5685
|
-
|
5686
|
-
],
|
5630
|
+
"args": [],
|
5687
5631
|
"type": {
|
5688
5632
|
"kind": "SCALAR",
|
5689
5633
|
"name": "String",
|
@@ -5692,12 +5636,26 @@
|
|
5692
5636
|
"isDeprecated": false,
|
5693
5637
|
"deprecationReason": null
|
5694
5638
|
},
|
5639
|
+
{
|
5640
|
+
"name": "isDeprecated",
|
5641
|
+
"description": null,
|
5642
|
+
"args": [],
|
5643
|
+
"type": {
|
5644
|
+
"kind": "NON_NULL",
|
5645
|
+
"name": null,
|
5646
|
+
"ofType": {
|
5647
|
+
"kind": "SCALAR",
|
5648
|
+
"name": "Boolean",
|
5649
|
+
"ofType": null
|
5650
|
+
}
|
5651
|
+
},
|
5652
|
+
"isDeprecated": false,
|
5653
|
+
"deprecationReason": null
|
5654
|
+
},
|
5695
5655
|
{
|
5696
5656
|
"name": "name",
|
5697
5657
|
"description": null,
|
5698
|
-
"args": [
|
5699
|
-
|
5700
|
-
],
|
5658
|
+
"args": [],
|
5701
5659
|
"type": {
|
5702
5660
|
"kind": "NON_NULL",
|
5703
5661
|
"name": null,
|
@@ -5713,9 +5671,7 @@
|
|
5713
5671
|
{
|
5714
5672
|
"name": "type",
|
5715
5673
|
"description": null,
|
5716
|
-
"args": [
|
5717
|
-
|
5718
|
-
],
|
5674
|
+
"args": [],
|
5719
5675
|
"type": {
|
5720
5676
|
"kind": "NON_NULL",
|
5721
5677
|
"name": null,
|
@@ -5730,9 +5686,7 @@
|
|
5730
5686
|
}
|
5731
5687
|
],
|
5732
5688
|
"inputFields": null,
|
5733
|
-
"interfaces": [
|
5734
|
-
|
5735
|
-
],
|
5689
|
+
"interfaces": [],
|
5736
5690
|
"enumValues": null,
|
5737
5691
|
"possibleTypes": null
|
5738
5692
|
},
|
@@ -5744,9 +5698,7 @@
|
|
5744
5698
|
{
|
5745
5699
|
"name": "directives",
|
5746
5700
|
"description": "A list of all directives supported by this server.",
|
5747
|
-
"args": [
|
5748
|
-
|
5749
|
-
],
|
5701
|
+
"args": [],
|
5750
5702
|
"type": {
|
5751
5703
|
"kind": "NON_NULL",
|
5752
5704
|
"name": null,
|
@@ -5770,9 +5722,7 @@
|
|
5770
5722
|
{
|
5771
5723
|
"name": "mutationType",
|
5772
5724
|
"description": "If this server supports mutation, the type that mutation operations will be rooted at.",
|
5773
|
-
"args": [
|
5774
|
-
|
5775
|
-
],
|
5725
|
+
"args": [],
|
5776
5726
|
"type": {
|
5777
5727
|
"kind": "OBJECT",
|
5778
5728
|
"name": "__Type",
|
@@ -5784,9 +5734,7 @@
|
|
5784
5734
|
{
|
5785
5735
|
"name": "queryType",
|
5786
5736
|
"description": "The type that query operations will be rooted at.",
|
5787
|
-
"args": [
|
5788
|
-
|
5789
|
-
],
|
5737
|
+
"args": [],
|
5790
5738
|
"type": {
|
5791
5739
|
"kind": "NON_NULL",
|
5792
5740
|
"name": null,
|
@@ -5802,9 +5750,7 @@
|
|
5802
5750
|
{
|
5803
5751
|
"name": "subscriptionType",
|
5804
5752
|
"description": "If this server support subscription, the type that subscription operations will be rooted at.",
|
5805
|
-
"args": [
|
5806
|
-
|
5807
|
-
],
|
5753
|
+
"args": [],
|
5808
5754
|
"type": {
|
5809
5755
|
"kind": "OBJECT",
|
5810
5756
|
"name": "__Type",
|
@@ -5816,9 +5762,7 @@
|
|
5816
5762
|
{
|
5817
5763
|
"name": "types",
|
5818
5764
|
"description": "A list of all types supported by this server.",
|
5819
|
-
"args": [
|
5820
|
-
|
5821
|
-
],
|
5765
|
+
"args": [],
|
5822
5766
|
"type": {
|
5823
5767
|
"kind": "NON_NULL",
|
5824
5768
|
"name": null,
|
@@ -5841,9 +5785,7 @@
|
|
5841
5785
|
}
|
5842
5786
|
],
|
5843
5787
|
"inputFields": null,
|
5844
|
-
"interfaces": [
|
5845
|
-
|
5846
|
-
],
|
5788
|
+
"interfaces": [],
|
5847
5789
|
"enumValues": null,
|
5848
5790
|
"possibleTypes": null
|
5849
5791
|
},
|
@@ -5855,9 +5797,7 @@
|
|
5855
5797
|
{
|
5856
5798
|
"name": "description",
|
5857
5799
|
"description": null,
|
5858
|
-
"args": [
|
5859
|
-
|
5860
|
-
],
|
5800
|
+
"args": [],
|
5861
5801
|
"type": {
|
5862
5802
|
"kind": "SCALAR",
|
5863
5803
|
"name": "String",
|
@@ -5932,7 +5872,16 @@
|
|
5932
5872
|
"name": "inputFields",
|
5933
5873
|
"description": null,
|
5934
5874
|
"args": [
|
5935
|
-
|
5875
|
+
{
|
5876
|
+
"name": "includeDeprecated",
|
5877
|
+
"description": null,
|
5878
|
+
"type": {
|
5879
|
+
"kind": "SCALAR",
|
5880
|
+
"name": "Boolean",
|
5881
|
+
"ofType": null
|
5882
|
+
},
|
5883
|
+
"defaultValue": "false"
|
5884
|
+
}
|
5936
5885
|
],
|
5937
5886
|
"type": {
|
5938
5887
|
"kind": "LIST",
|
@@ -5953,9 +5902,7 @@
|
|
5953
5902
|
{
|
5954
5903
|
"name": "interfaces",
|
5955
5904
|
"description": null,
|
5956
|
-
"args": [
|
5957
|
-
|
5958
|
-
],
|
5905
|
+
"args": [],
|
5959
5906
|
"type": {
|
5960
5907
|
"kind": "LIST",
|
5961
5908
|
"name": null,
|
@@ -5975,9 +5922,7 @@
|
|
5975
5922
|
{
|
5976
5923
|
"name": "kind",
|
5977
5924
|
"description": null,
|
5978
|
-
"args": [
|
5979
|
-
|
5980
|
-
],
|
5925
|
+
"args": [],
|
5981
5926
|
"type": {
|
5982
5927
|
"kind": "NON_NULL",
|
5983
5928
|
"name": null,
|
@@ -5993,9 +5938,7 @@
|
|
5993
5938
|
{
|
5994
5939
|
"name": "name",
|
5995
5940
|
"description": null,
|
5996
|
-
"args": [
|
5997
|
-
|
5998
|
-
],
|
5941
|
+
"args": [],
|
5999
5942
|
"type": {
|
6000
5943
|
"kind": "SCALAR",
|
6001
5944
|
"name": "String",
|
@@ -6007,9 +5950,7 @@
|
|
6007
5950
|
{
|
6008
5951
|
"name": "ofType",
|
6009
5952
|
"description": null,
|
6010
|
-
"args": [
|
6011
|
-
|
6012
|
-
],
|
5953
|
+
"args": [],
|
6013
5954
|
"type": {
|
6014
5955
|
"kind": "OBJECT",
|
6015
5956
|
"name": "__Type",
|
@@ -6021,9 +5962,7 @@
|
|
6021
5962
|
{
|
6022
5963
|
"name": "possibleTypes",
|
6023
5964
|
"description": null,
|
6024
|
-
"args": [
|
6025
|
-
|
6026
|
-
],
|
5965
|
+
"args": [],
|
6027
5966
|
"type": {
|
6028
5967
|
"kind": "LIST",
|
6029
5968
|
"name": null,
|
@@ -6042,9 +5981,7 @@
|
|
6042
5981
|
}
|
6043
5982
|
],
|
6044
5983
|
"inputFields": null,
|
6045
|
-
"interfaces": [
|
6046
|
-
|
6047
|
-
],
|
5984
|
+
"interfaces": [],
|
6048
5985
|
"enumValues": null,
|
6049
5986
|
"possibleTypes": null
|
6050
5987
|
},
|
@@ -6164,7 +6101,9 @@
|
|
6164
6101
|
"description": "Marks an element of a GraphQL schema as no longer supported.",
|
6165
6102
|
"locations": [
|
6166
6103
|
"FIELD_DEFINITION",
|
6167
|
-
"ENUM_VALUE"
|
6104
|
+
"ENUM_VALUE",
|
6105
|
+
"ARGUMENT_DEFINITION",
|
6106
|
+
"INPUT_FIELD_DEFINITION"
|
6168
6107
|
],
|
6169
6108
|
"args": [
|
6170
6109
|
{
|