-
Notifications
You must be signed in to change notification settings - Fork 2
/
graphql_schema.gql
1047 lines (931 loc) · 18.8 KB
/
graphql_schema.gql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://github.com/leeyuentuen/polestar_api/issues/10#issuecomment-1859263398
type Acceleration {
value: Float!
unit: String!
description: String!
}
type AcceptedHandoverTime {
start: String
end: String
timezone: String
}
type AdditionalCustomerId {
id: String
code: String
}
type App {
name: String
host(tld: String): String
patterns: [String]
environment: String
domain: String
}
input Attachment {
name: String
body: String
}
input Attachments {
name: String
body: String
}
type AuthTokens {
access_token: String
refresh_token: String
id_token: String
expires_in: Int
}
type Battery {
averageEnergyConsumptionKwhPer100Km: Float
batteryChargeLevelPercentage: Float
chargerConnectionStatus: String
chargingCurrentAmps: Int
chargingPowerWatts: Int
chargingStatus: String
estimatedChargingTimeMinutesToTargetDistance: Int
estimatedChargingTimeToFullMinutes: Int
estimatedDistanceToEmptyKm: Int
estimatedDistanceToEmptyMiles: Int
eventUpdatedTimestamp: EventUpdatedTimestamp
}
type BrandStatus {
code: String
timestamp: String
description: String
}
input CancellationCase {
caseId: String!
caseNumber: String!
paymentMethod: PaymentMethod!
bankName: String
bankAccountHolder: String
bankAccountNumber: String
bankSortCode: String
iban: String
bic: String
attachment: [Attachment]
returnReason: String
currentOdometerReading: Int
returnOdometerReading: Int
returnLocation: String
returnTimeSlots: String
extrasOrdered: String
damagedCar: Boolean
otherInformation: String
}
type Car {
id: Int @deprecated(reason: "id is deprecated. Use vin instead.")
vin: String
model: String
modelYear: String
modelCode: String
package: String
exteriorImageUrl: String
imageAngles: [String!]
}
type CarImage {
imageUrl: String
}
type CarImages {
studio: VDMSImage
location: VDMSImage
interior: VDMSImage
}
type CarInformation {
id: Int
consumerId: String
status: String
orderStatus: String
vin: String
}
enum CaseRecordType {
CUSTOMERSUPPORT
DAMAGEREPAIR
SALESTOORDER
SERVICEORDER
}
type Claim {
type: String
validFromDate: String
validUntilDate: String
validUntilMileage: String
performedJobs: [PerformedClaimJob]
}
type ClaimOperation {
code: String
}
type ClaimPart {
code: String
}
type CommonStatusPoint {
code: Int
timestamp: String
description: String
}
type Consent {
termsAndConditionVersion: String
consent: Boolean!
}
type Consumer {
salesforceId: String
firstName: String
lastName: String
email: String
birthdate: String
mobilePhone: String
language: String
preferredLanguage: String
countryCode: String
country: String
city: String
zipCode: String
streetAddress: String
state: String
additionalCustomerIds: [AdditionalCustomerId]
hasOptedOutOfEmail: Boolean
optInDate: String
optOutDate: String
customerType: String
username: String
gtmId: String
isPolestarOrVolvoEmployee: Boolean
linkToken: String
}
type ConsumerUpdateResponse {
salesforceId: String
error: String
message: String
}
type Content {
exterior: Property
exteriorDetails: Property
interior: Property
performancePackage: Property
performanceOptimizationSpecification: performanceOptimizationSpecification
wheels: Property
plusPackage: Property
pilotPackage: Property
motor: Property
model: Model
images: CarImages
specification: Specification
dimensions: Dimensions
towbar: Property
}
enum ContentDisposition {
Attachment
Inline
Formdata
Signal
}
enum CountryFilter {
Alltime
Year
}
type CountryLeaderboard {
scores: [LeaderboardCountry]!
country: LeaderboardCountry
}
type CreateCaseResponse {
message: String
error: String
}
type CreateFleetResponse {
message: String
error: String
}
type CreateLeadResponse {
message: String
error: String
}
type Dimensions {
wheelbase: ValueLabel
groundClearanceWithPerformance: ValueLabel
groundClearanceWithoutPerformance: ValueLabel
dimensions: ValueLabel
}
type DocumentData {
documentType: String
subType: String
documentId: String
dateCreated: String
size: Int
contentType: String
}
type DocumentDataV2 {
documentId: String
link: String
name: String
expirationDate: String
documentType: String
dateCreated: String
version: String
contentType: String
extension: String
subType: String
size: Int
linkedEntity: LinkedEntity
}
type DocumentMetadata {
link: String
}
enum DocumentSearchType {
VIN
}
enum DocumentSearchTypeV2 {
Vin
PolestarId
PomsId
}
type ElectricalEngineNumber {
number: String!
placement: String!
}
type Energy {
elecRange: String
elecRangeUnit: String
elecEnergyConsumption: String
elecEnergyUnit: String
weightedCombinedCO2: String
weightedCombinedCO2Unit: String
weightedCombinedFuelConsumption: String
weightedCombinedFuelConsumptionUnit: String
}
type Event {
name: String
date: String
location: String
text: String
image: Image
times: String
link: String
}
type EventUpdatedTimestamp {
iso: String
unix: String
}
type Extras {
id: Int
articleNumber: String
title: String
description: String
sortorder: Int
requires: [ItemOption]
incompatible: [ItemOption]
}
type FeatureImage {
url: String!
alt: String
}
type FeatureProperty {
type: String!
code: String!
name: String
description: String
excluded: Boolean
galleryImage: [FeatureImage]!
thumbnail: FeatureImage
}
input FleetCase {
country: String
subject: String!
description: String
caseType: String
caseSubType: String
caseStatus: String
externalFspId: String
model: String
attachment: [Attachments]
}
type GetCartResult {
Item: OutputCart
}
input GetDocumentMetadataRequest {
id: String!
contentDisposition: ContentDisposition
downloadFileName: String
}
type HandoverBooking {
acceptedHandoverTime: AcceptedHandoverTime
}
type Hardware {
nodeAddress: String!
partNo: String
description: HardwareDescription
software: [Software]
}
type HardwareDescription {
text: String
short: String
}
type Image {
alt: String
url: String
}
input InputCart {
cart: [InputCartItem]!
finance: InputFinance!
itemsCount: Int!
consumer: InputCartConsumer!
orderStatus: Int!
market: InputMarket!
deliveryMethod: String!
connectId: String
transactions: [InputTransaction]
}
input InputCartConsumer {
firstName: String
lastName: String
email: String
mobilePhone: String
birthdate: String
language: String
streetAddress: String
zipCode: String
city: String
country: String
countryCode: String
companyName: String
vatNo: String
orgNo: String
careOf: String
customerType: String
}
input InputCartItem {
id: Int
title: String
description: String
featuredImageUrl: String
marketPrice: Float
marketVat: Float
quantity: Int
maxQuantity: Int
minQuantity: Int
extras: [InputExtras]
currency: String
}
input InputExtras {
id: Int
articleNumber: String
title: String
description: String
sortorder: Int
requires: [InputItemOption]
incompatible: [InputItemOption]
}
input InputFinance {
totalPrice: Float!
totalVat: Float!
currency: String
}
input InputItemOption {
type: String
code: String
}
input InputMarket {
country: String
language: String
}
input InputTransaction {
createdAt: String
id: String
transactionStatus: Int
}
type InternalCar {
origin: String!
registeredAt: String!
}
type IntrospectResponse {
active: Boolean
}
type ItemOption {
type: String
code: String
}
type LatestClaimStatus {
mileage: String
mileageUnit: String
registeredDate: String
vehicleAge: String
}
input LeadCase {
firstName: String
lastName: String
email: String
mobilePhone: String
source: String
emailOptOut: Boolean
doubleOptInDate: String
newsletterSubscribed: String
polestarId: String
market: String
country: String
preferredLanguage: String
consentName: String
consentType: String
consentDate: String
privacyPolicy: String
campaignSourceCode: String
role: String
description: String
leadRecordType: String
postalCode: String
type: String
leasingCompanyName: String
companyName: String
bringAFriend: Int
clothingSize: String
foodPreferences: String
parkingSpotNeeded: Boolean
rideAlong: Boolean
ticketNeeded: Boolean
vehicle: String
birthday: String
street: String
city: String
state: String
}
type LeaderboardCountry {
code: String!
score: Int!
rank: Int!
trend: String!
}
type LeaderboardUser {
displayName: String!
score: Int!
rank: Int!
trend: String!
psid: String!
country: String!
favorite: Boolean
locatedOnPage: Int
scoreToMoveUp: Int
}
union LinkedEntity = Car | Order
type LoadResponse {
returnUrl: String
orderId: String
configuration: String
}
type LoginConfig {
loginUrl: String
logoutUrl: String
baseUrl: String
}
type Market {
locale: String
marketName: String
marketType: String
countryCode: String
cmsLocale: String
languageCode: String
languageName: String
region: String
apiRegion: String
dateFormat: String
features: [String]
}
type Model {
name: String
code: String
}
type Motor {
description: String
code: String
}
type Mutation {
revokeToken(token: String!): TokenRevokeResponse
setConsent(consent: Boolean!, displayName: String, termsAndConditionVersion: String, market: String!): Boolean
addFavorite(psid: String!): Boolean
removeFavorite(psid: String!): Boolean
saveCart(orderId: String, cart: InputCart!): SaveCartResponse
updateConsumer(body: MutationableConsumer!): ConsumerUpdateResponse
createFleetRequest(body: FleetCase!): CreateFleetResponse
createLeadRequest(body: LeadCase!): CreateLeadResponse
createCaseRequest(body: SupportCase!): CreateCaseResponse
createGDPRRequest(body: SupportCase!): CreateCaseResponse
createCancellationRequest(body: CancellationCase!): CreateCaseResponse
}
input MutationableConsumer {
firstName: String
lastName: String
email: String
birthdate: String
mobilePhone: String
language: String
countryCode: String
country: String
city: String
zipCode: String
streetAddress: String
state: String
stateCode: String
hasOptedOutOfEmail: Boolean
}
type Odometer {
averageSpeedKmPerHour: Int
eventUpdatedTimestamp: EventUpdatedTimestamp
odometerMeters: Int
tripMeterAutomaticKm: Float
tripMeterManualKm: Float
}
type Operation {
id: String!
code: String!
description: String
quantity: Float
performedDate: String!
}
type Order {
orderId: String
type: String
consumerId: Int
packageId: Int
configurationId: String
source: String
externalOrderId: String
placedAt: String
placeAtIso: String
termsAndConditionsUrl: String
redirectUrl: String
totalPrice: Float
deposit: Float
depositUsed: Boolean
orderState: String
lockState: String
downPayment: Float
addressLine1: String
address: String @deprecated(reason: "Use 'addressLine1'.")
addressLine2: String
zipCode: String
city: String
district: String
province: String
countryCode: String
country: String
car: Car
lines: [OrderItem]
items: [OrderItem] @deprecated(reason: "Use 'lines'.")
roles: [String]
handoverBooking: HandoverBooking
}
type OrderItem {
id: Int
title: String
price: Float
total: Float
deposit: Float
downPayment: Float
currency: String
quantity: Int
type: String
}
enum Origin {
EMAIL
PHONE
WEB
FACEBOOK
TWITTER
CONTACTFORM
}
type OutputCart {
orderId: String
cart: [OutputCartItem]
finance: OutputFinance
itemsCount: Int
consumer: OutputCartConsumer
orderStatus: Int
market: OutputMarket
deliveryMethod: String
connectId: String
transactions: [OutputTransaction]
}
type OutputCartConsumer {
firstName: String
lastName: String
email: String
mobilePhone: String
birthdate: String
language: String
streetAddress: String
zipCode: String
city: String
country: String
countryCode: String
companyName: String
vatNo: String
orgNo: String
careOf: String
customerType: String
}
type OutputCartItem {
id: Int
title: String
description: String
featuredImageUrl: String
marketPrice: Float
marketVat: Float
quantity: Int
maxQuantity: Int
minQuantity: Int
extras: [Extras]
currency: String
}
type OutputFinance {
totalPrice: Float!
totalVat: Float!
currency: String
}
type OutputMarket {
country: String
language: String
}
type OutputTransaction {
createdAt: String
id: String
transactionStatus: Int
}
type Owner {
id: String!
registeredAt: String!
information: OwnerInformation
}
type OwnerInformation {
polestarId: String
ownerType: String
}
type Part {
id: String!
code: String!
description: String
quantity: Float
performedDate: String!
}
enum PaymentMethod {
BANKTRANSACTION
CREDITCARD
OTHER
}
type PerformanceOptimization {
value: Boolean!
description: String
timestamp: String
}
type performanceOptimizationSpecification {
power: [Power]
torqueMax: [TorqueMax]
acceleration: [Acceleration]
}
type PerformedClaimJob {
repairDate: String
}
type PerformedClaims {
claimType: String
workshopId: String
market: String
orderNumber: String
claimPerformedManually: Boolean
orderEndDate: String
mileage: String
mileageUnit: String
vehicleAge: String
symptomCode: String
parts: [ClaimPart]
operations: [ClaimOperation]
}
type Power {
value: Int!
unit: String!
}
type Property {
code: String!
name: String
description: String
excluded: Boolean
galleryImage: [FeatureImage]!
thumbnail: FeatureImage
}
type Query {
applications(env: String): [App]
getApplications(env: String): [App]
application(name: String!, env: String): App
getAuthToken(code: String): AuthTokens
getAuthConfig(market: String): LoginConfig
refreshAuthToken(token: String!): Token
getConsumer(id: String): Consumer
introspectToken(token: String!): IntrospectResponse
hello(message: String): String
getUserLeaderboard(market: String!, filter: UserFilter!, limit: Int, skip: Int, name: String, onlyFavorites: Boolean): UserLeaderboard!
getConsent: Consent
getCountryLeaderboard(market: String!, filter: CountryFilter!, searchValue: String): CountryLeaderboard!
getMarkets(marketNames: [String]): [Market]
markets(marketNames: [String]): [Market]
market(marketName: String, locale: String, cmsLocale: String): Market
getBatteryData(vin: String!): Battery
getOdometerData(vin: String!): Odometer
getConsumerCars: [Car]!
getConsumerCarsV2(locale: String): [VehicleInformation!]!
getConsumerCarsByVin(vin: [String]!): [CarInformation]
getCart(market: String): GetCartResult
getConfiguration(orderId: String!): LoadResponse
getDocumentMetadata(input: GetDocumentMetadataRequest!): DocumentMetadata
searchDocuments(input: SearchDocumentsRequest!): [DocumentData]
getEvents: [Event]
getOrders: [Order]!
searchDocumentsV2(input: SearchDocumentsRequestV2!): [DocumentDataV2]!
getUserDocuments: [DocumentDataV2]!
}
type RemoveCartResponse {
message: String
error: String
}
type SaveCartResponse {
orderId: String
status: Int
message: String
}
input SearchDocumentsRequest {
searchVal: String!
searchType: DocumentSearchType
documentType: String
}
input SearchDocumentsRequestV2 {
searchVal: String!
entityType: DocumentSearchTypeV2!
}
type Software {
partNo: String!
}
type Specification {
battery: String
bodyType: String
brakes: String
combustionEngine: String
electricMotors: String
performance: String
suspension: String
tireSizes: String
torque: String
totalHp: String
totalKw: String
trunkCapacity: ValueLabel
}
input SupportCase {
caseRecordType: CaseRecordType
origin: Origin
firstName: String
lastName: String
email: String
market: String
country: String
preferredLanguage: String
subject: String
description: String
streetAddress: String
salesforceId: String
reason: String
mobilePhone: String
caseType: String
caseSubType: String
additionalCountry: String
requestSource: String
region: String
zipCode: String
city: String
privacyPolicy: String
isEscalated: String
caseStatus: String
}
type Token {
access_token: String
refresh_token: String
id_token: String
expires_in: Int
}
type TokenRevokeResponse {
success: Boolean
}
type TorqueMax {
value: Int!
unit: String!
}
type TransactionReponse {
id: String
transactionStatus: Int
createdAt: String
}
enum UserFilter {
GlobalAlltime
GlobalYear
CountryAlltime
CountryYear
}
type UserLeaderboard {
top: [LeaderboardUser]!
before: LeaderboardUser
user: LeaderboardUser
after: LeaderboardUser
totalUsersCount: Int
}
type ValueLabel {
label: String
value: String
}
type VDMSImage {
url: String!
angles: [String]
resolutions: [String]
}
type VehicleInformation {
vin: String!
internalVehicleIdentifier: String!
salesType: String
currentPlannedDeliveryDate: String
market: String!
originalMarket: String!
pno34: String!
modelYear: String!
belongsToFleet: Boolean!
registrationNo: String
metaOrderNumber: String!
factoryCompleteDate: String
registrationDate: String
deliveryDate: String
serviceHistory: [WorkOrder]
content: Content
primaryDriver: String
primaryDriverRegistrationTimestamp: String
owners: [Owner]
wltpNedcData: WltpNedcData
energy: Energy
fuelType: String
drivetrain: String
numberOfDoors: Int
numberOfSeats: Int
motor: Motor
maxTrailerWeight: Weight
curbWeight: Weight
hasPerformancePackage: Boolean
numberOfCylinders: Int
cylinderVolume: Int
cylinderVolumeUnit: String
transmission: String
numberOfGears: Int
structureWeek: String
hardware: [Hardware]
software: VehicleSoftware
claims: [Claim]
performedClaims: [PerformedClaims]
latestClaimStatus: LatestClaimStatus
internalCar: InternalCar
edition: String
commonStatusPoint: CommonStatusPoint
brandStatus: BrandStatus
intermediateDestinationCode: String
partnerDestinationCode: String
features: [FeatureProperty]
electricalEngineNumbers: [ElectricalEngineNumber]
}
type VehicleInformationByLocale {