@ampeco/public-api-mcp 3.104.2 → 3.104.4
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.
- package/dist/generated/build-stats.json +9 -9
- package/dist/generated/endpoints.json +832 -251
- package/dist/generated/response-schemas.json +2412 -956
- package/dist/generated/schemas.d.ts +457 -189
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +137 -62
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +138 -62
- package/package.json +1 -1
|
@@ -583,6 +583,46 @@ export declare const electricityMeterReportConsumptionBody: z.ZodObject<{
|
|
|
583
583
|
currentL2?: number | undefined;
|
|
584
584
|
currentL3?: number | undefined;
|
|
585
585
|
}>;
|
|
586
|
+
export declare const evseBulkAssignTariffGroupsBody: z.ZodObject<{
|
|
587
|
+
filters: z.ZodOptional<z.ZodObject<{
|
|
588
|
+
locationIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
589
|
+
partnerIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
590
|
+
evseIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
591
|
+
chargePointIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
592
|
+
tariffGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
593
|
+
}, "strip", z.ZodTypeAny, {
|
|
594
|
+
evseIds?: number[] | undefined;
|
|
595
|
+
chargePointIds?: number[] | undefined;
|
|
596
|
+
locationIds?: number[] | undefined;
|
|
597
|
+
partnerIds?: number[] | undefined;
|
|
598
|
+
tariffGroupIds?: number[] | undefined;
|
|
599
|
+
}, {
|
|
600
|
+
evseIds?: number[] | undefined;
|
|
601
|
+
chargePointIds?: number[] | undefined;
|
|
602
|
+
locationIds?: number[] | undefined;
|
|
603
|
+
partnerIds?: number[] | undefined;
|
|
604
|
+
tariffGroupIds?: number[] | undefined;
|
|
605
|
+
}>>;
|
|
606
|
+
tariffGroupId: z.ZodNumber;
|
|
607
|
+
}, "strip", z.ZodTypeAny, {
|
|
608
|
+
tariffGroupId: number;
|
|
609
|
+
filters?: {
|
|
610
|
+
evseIds?: number[] | undefined;
|
|
611
|
+
chargePointIds?: number[] | undefined;
|
|
612
|
+
locationIds?: number[] | undefined;
|
|
613
|
+
partnerIds?: number[] | undefined;
|
|
614
|
+
tariffGroupIds?: number[] | undefined;
|
|
615
|
+
} | undefined;
|
|
616
|
+
}, {
|
|
617
|
+
tariffGroupId: number;
|
|
618
|
+
filters?: {
|
|
619
|
+
evseIds?: number[] | undefined;
|
|
620
|
+
chargePointIds?: number[] | undefined;
|
|
621
|
+
locationIds?: number[] | undefined;
|
|
622
|
+
partnerIds?: number[] | undefined;
|
|
623
|
+
tariffGroupIds?: number[] | undefined;
|
|
624
|
+
} | undefined;
|
|
625
|
+
}>;
|
|
586
626
|
export declare const evseStartChargingWithEvseIdBody: z.ZodObject<{
|
|
587
627
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
588
628
|
paymentMethodId: z.ZodOptional<z.ZodString>;
|
|
@@ -1530,26 +1570,55 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1530
1570
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1531
1571
|
userId: z.ZodNumber;
|
|
1532
1572
|
locationId: z.ZodNumber;
|
|
1573
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
1574
|
+
startAt: z.ZodString;
|
|
1575
|
+
endAt: z.ZodString;
|
|
1533
1576
|
evseId: z.ZodOptional<z.ZodNumber>;
|
|
1534
1577
|
evseCriteria: z.ZodOptional<z.ZodObject<{
|
|
1535
|
-
currentType: z.ZodOptional<z.ZodEnum<["ac", "dc"]>>;
|
|
1578
|
+
currentType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["ac", "dc"]>, z.ZodNull]>>;
|
|
1536
1579
|
minPower: z.ZodOptional<z.ZodNumber>;
|
|
1537
1580
|
maxPower: z.ZodOptional<z.ZodNumber>;
|
|
1538
|
-
connectorType: z.ZodOptional<z.ZodEnum<["type1", "type2", "type3", "chademo", "ccs1", "ccs2", "schuko", "nacs", "cee16", "cee32", "j1772", "inductive", "nema-5-20", "type-e-french", "type-g-british", "type-j-swiss", "avcon", "gb-t-ac", "gb-t-dc", "chaoji", "nema-6-30", "nema-6-50"]>>;
|
|
1581
|
+
connectorType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["type1", "type2", "type3", "chademo", "ccs1", "ccs2", "schuko", "nacs", "cee16", "cee32", "j1772", "inductive", "nema-5-20", "type-e-french", "type-g-british", "type-j-swiss", "avcon", "gb-t-ac", "gb-t-dc", "chaoji", "nema-6-30", "nema-6-50"]>, z.ZodNull]>>;
|
|
1539
1582
|
}, "strip", z.ZodTypeAny, {
|
|
1540
1583
|
maxPower?: number | undefined;
|
|
1541
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1584
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1542
1585
|
minPower?: number | undefined;
|
|
1543
|
-
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | undefined;
|
|
1586
|
+
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | null | undefined;
|
|
1544
1587
|
}, {
|
|
1545
1588
|
maxPower?: number | undefined;
|
|
1546
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1589
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1547
1590
|
minPower?: number | undefined;
|
|
1548
|
-
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | undefined;
|
|
1591
|
+
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | null | undefined;
|
|
1549
1592
|
}>>;
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1593
|
+
parkingSpaceCriteria: z.ZodOptional<z.ZodObject<{
|
|
1594
|
+
vehicleWeightKg: z.ZodOptional<z.ZodNumber>;
|
|
1595
|
+
vehicleHeightCm: z.ZodOptional<z.ZodNumber>;
|
|
1596
|
+
vehicleLengthCm: z.ZodOptional<z.ZodNumber>;
|
|
1597
|
+
vehicleWidthCm: z.ZodOptional<z.ZodNumber>;
|
|
1598
|
+
vehicleType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["two_and_three_wheel_vehicles_and_quadricycles", "passenger_vehicles", "passenger_vehicles_with_trailer", "light_duty_vans", "heavy_duty_tractor_units_without_trailer", "heavy_duty_trucks_without_articulation_point", "heavy_duty_trucks_with_trailer_attached", "buses_or_motor_coaches"]>, z.ZodNull]>>;
|
|
1599
|
+
driveThroughRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1600
|
+
refrigerationOutletRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1601
|
+
dangerousGoodsAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
1602
|
+
}, "strip", z.ZodTypeAny, {
|
|
1603
|
+
vehicleWeightKg?: number | undefined;
|
|
1604
|
+
vehicleHeightCm?: number | undefined;
|
|
1605
|
+
vehicleLengthCm?: number | undefined;
|
|
1606
|
+
vehicleWidthCm?: number | undefined;
|
|
1607
|
+
vehicleType?: "two_and_three_wheel_vehicles_and_quadricycles" | "passenger_vehicles" | "passenger_vehicles_with_trailer" | "light_duty_vans" | "heavy_duty_tractor_units_without_trailer" | "heavy_duty_trucks_without_articulation_point" | "heavy_duty_trucks_with_trailer_attached" | "buses_or_motor_coaches" | null | undefined;
|
|
1608
|
+
driveThroughRequired?: boolean | undefined;
|
|
1609
|
+
refrigerationOutletRequired?: boolean | undefined;
|
|
1610
|
+
dangerousGoodsAllowed?: boolean | undefined;
|
|
1611
|
+
}, {
|
|
1612
|
+
vehicleWeightKg?: number | undefined;
|
|
1613
|
+
vehicleHeightCm?: number | undefined;
|
|
1614
|
+
vehicleLengthCm?: number | undefined;
|
|
1615
|
+
vehicleWidthCm?: number | undefined;
|
|
1616
|
+
vehicleType?: "two_and_three_wheel_vehicles_and_quadricycles" | "passenger_vehicles" | "passenger_vehicles_with_trailer" | "light_duty_vans" | "heavy_duty_tractor_units_without_trailer" | "heavy_duty_trucks_without_articulation_point" | "heavy_duty_trucks_with_trailer_attached" | "buses_or_motor_coaches" | null | undefined;
|
|
1617
|
+
driveThroughRequired?: boolean | undefined;
|
|
1618
|
+
refrigerationOutletRequired?: boolean | undefined;
|
|
1619
|
+
dangerousGoodsAllowed?: boolean | undefined;
|
|
1620
|
+
}>>;
|
|
1621
|
+
authorizedTokenIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1553
1622
|
}, "strip", z.ZodTypeAny, {
|
|
1554
1623
|
type: "create";
|
|
1555
1624
|
userId: number;
|
|
@@ -1562,13 +1631,24 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1562
1631
|
lastUpdatedAt?: string | undefined;
|
|
1563
1632
|
rejectionReason?: string | undefined;
|
|
1564
1633
|
createdAt?: string | undefined;
|
|
1634
|
+
externalId?: string | undefined;
|
|
1565
1635
|
evseCriteria?: {
|
|
1566
1636
|
maxPower?: number | undefined;
|
|
1567
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1637
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1568
1638
|
minPower?: number | undefined;
|
|
1569
|
-
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | undefined;
|
|
1639
|
+
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | null | undefined;
|
|
1570
1640
|
} | undefined;
|
|
1571
|
-
|
|
1641
|
+
parkingSpaceCriteria?: {
|
|
1642
|
+
vehicleWeightKg?: number | undefined;
|
|
1643
|
+
vehicleHeightCm?: number | undefined;
|
|
1644
|
+
vehicleLengthCm?: number | undefined;
|
|
1645
|
+
vehicleWidthCm?: number | undefined;
|
|
1646
|
+
vehicleType?: "two_and_three_wheel_vehicles_and_quadricycles" | "passenger_vehicles" | "passenger_vehicles_with_trailer" | "light_duty_vans" | "heavy_duty_tractor_units_without_trailer" | "heavy_duty_trucks_without_articulation_point" | "heavy_duty_trucks_with_trailer_attached" | "buses_or_motor_coaches" | null | undefined;
|
|
1647
|
+
driveThroughRequired?: boolean | undefined;
|
|
1648
|
+
refrigerationOutletRequired?: boolean | undefined;
|
|
1649
|
+
dangerousGoodsAllowed?: boolean | undefined;
|
|
1650
|
+
} | undefined;
|
|
1651
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1572
1652
|
}, {
|
|
1573
1653
|
type: "create";
|
|
1574
1654
|
userId: number;
|
|
@@ -1581,13 +1661,24 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1581
1661
|
lastUpdatedAt?: string | undefined;
|
|
1582
1662
|
rejectionReason?: string | undefined;
|
|
1583
1663
|
createdAt?: string | undefined;
|
|
1664
|
+
externalId?: string | undefined;
|
|
1584
1665
|
evseCriteria?: {
|
|
1585
1666
|
maxPower?: number | undefined;
|
|
1586
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1667
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1587
1668
|
minPower?: number | undefined;
|
|
1588
|
-
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | undefined;
|
|
1589
|
-
} | undefined;
|
|
1590
|
-
|
|
1669
|
+
connectorType?: "type1" | "type2" | "type3" | "chademo" | "ccs1" | "ccs2" | "schuko" | "nacs" | "cee16" | "cee32" | "j1772" | "inductive" | "nema-5-20" | "type-e-french" | "type-g-british" | "type-j-swiss" | "avcon" | "gb-t-ac" | "gb-t-dc" | "chaoji" | "nema-6-30" | "nema-6-50" | null | undefined;
|
|
1670
|
+
} | undefined;
|
|
1671
|
+
parkingSpaceCriteria?: {
|
|
1672
|
+
vehicleWeightKg?: number | undefined;
|
|
1673
|
+
vehicleHeightCm?: number | undefined;
|
|
1674
|
+
vehicleLengthCm?: number | undefined;
|
|
1675
|
+
vehicleWidthCm?: number | undefined;
|
|
1676
|
+
vehicleType?: "two_and_three_wheel_vehicles_and_quadricycles" | "passenger_vehicles" | "passenger_vehicles_with_trailer" | "light_duty_vans" | "heavy_duty_tractor_units_without_trailer" | "heavy_duty_trucks_without_articulation_point" | "heavy_duty_trucks_with_trailer_attached" | "buses_or_motor_coaches" | null | undefined;
|
|
1677
|
+
driveThroughRequired?: boolean | undefined;
|
|
1678
|
+
refrigerationOutletRequired?: boolean | undefined;
|
|
1679
|
+
dangerousGoodsAllowed?: boolean | undefined;
|
|
1680
|
+
} | undefined;
|
|
1681
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1591
1682
|
}>, z.ZodObject<{
|
|
1592
1683
|
id: z.ZodOptional<z.ZodNumber>;
|
|
1593
1684
|
type: z.ZodEnum<["update"]>;
|
|
@@ -1597,9 +1688,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1597
1688
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1598
1689
|
bookingId: z.ZodNumber;
|
|
1599
1690
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
1691
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
1600
1692
|
startAt: z.ZodOptional<z.ZodString>;
|
|
1601
1693
|
endAt: z.ZodOptional<z.ZodString>;
|
|
1602
|
-
|
|
1694
|
+
authorizedTokenIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1603
1695
|
}, "strip", z.ZodTypeAny, {
|
|
1604
1696
|
type: "update";
|
|
1605
1697
|
bookingId: number;
|
|
@@ -1609,9 +1701,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1609
1701
|
lastUpdatedAt?: string | undefined;
|
|
1610
1702
|
rejectionReason?: string | undefined;
|
|
1611
1703
|
createdAt?: string | undefined;
|
|
1704
|
+
externalId?: string | undefined;
|
|
1612
1705
|
startAt?: string | undefined;
|
|
1613
1706
|
endAt?: string | undefined;
|
|
1614
|
-
|
|
1707
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1615
1708
|
}, {
|
|
1616
1709
|
type: "update";
|
|
1617
1710
|
bookingId: number;
|
|
@@ -1621,9 +1714,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1621
1714
|
lastUpdatedAt?: string | undefined;
|
|
1622
1715
|
rejectionReason?: string | undefined;
|
|
1623
1716
|
createdAt?: string | undefined;
|
|
1717
|
+
externalId?: string | undefined;
|
|
1624
1718
|
startAt?: string | undefined;
|
|
1625
1719
|
endAt?: string | undefined;
|
|
1626
|
-
|
|
1720
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1627
1721
|
}>, z.ZodObject<{
|
|
1628
1722
|
id: z.ZodOptional<z.ZodNumber>;
|
|
1629
1723
|
type: z.ZodEnum<["cancel"]>;
|
|
@@ -2637,8 +2731,8 @@ export declare const chargePointEvseCreateBody: z.ZodObject<{
|
|
|
2637
2731
|
currentType: "ac" | "dc";
|
|
2638
2732
|
networkId: string;
|
|
2639
2733
|
physicalReference: string;
|
|
2640
|
-
externalId?: string | undefined;
|
|
2641
2734
|
tariffGroupId?: number | undefined;
|
|
2735
|
+
externalId?: string | undefined;
|
|
2642
2736
|
label?: string | undefined;
|
|
2643
2737
|
midMeterCertificationEndYear?: number | undefined;
|
|
2644
2738
|
allowsReservation?: boolean | undefined;
|
|
@@ -2656,8 +2750,8 @@ export declare const chargePointEvseCreateBody: z.ZodObject<{
|
|
|
2656
2750
|
currentType: "ac" | "dc";
|
|
2657
2751
|
networkId: string;
|
|
2658
2752
|
physicalReference: string;
|
|
2659
|
-
externalId?: string | undefined;
|
|
2660
2753
|
tariffGroupId?: number | undefined;
|
|
2754
|
+
externalId?: string | undefined;
|
|
2661
2755
|
label?: string | undefined;
|
|
2662
2756
|
midMeterCertificationEndYear?: number | undefined;
|
|
2663
2757
|
allowsReservation?: boolean | undefined;
|
|
@@ -2706,10 +2800,10 @@ export declare const chargePointEvseUpdateBody: z.ZodObject<{
|
|
|
2706
2800
|
externalId: z.ZodOptional<z.ZodString>;
|
|
2707
2801
|
}, "strip", z.ZodTypeAny, {
|
|
2708
2802
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
2709
|
-
|
|
2803
|
+
tariffGroupId?: number | undefined;
|
|
2710
2804
|
externalId?: string | undefined;
|
|
2805
|
+
currentType?: "ac" | "dc" | undefined;
|
|
2711
2806
|
networkId?: string | undefined;
|
|
2712
|
-
tariffGroupId?: number | undefined;
|
|
2713
2807
|
physicalReference?: string | undefined;
|
|
2714
2808
|
label?: string | undefined;
|
|
2715
2809
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -2725,10 +2819,10 @@ export declare const chargePointEvseUpdateBody: z.ZodObject<{
|
|
|
2725
2819
|
} | undefined;
|
|
2726
2820
|
}, {
|
|
2727
2821
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
2728
|
-
|
|
2822
|
+
tariffGroupId?: number | undefined;
|
|
2729
2823
|
externalId?: string | undefined;
|
|
2824
|
+
currentType?: "ac" | "dc" | undefined;
|
|
2730
2825
|
networkId?: string | undefined;
|
|
2731
|
-
tariffGroupId?: number | undefined;
|
|
2732
2826
|
physicalReference?: string | undefined;
|
|
2733
2827
|
label?: string | undefined;
|
|
2734
2828
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -4570,8 +4664,8 @@ export declare const evseUpdateDeprecatedBody: z.ZodObject<{
|
|
|
4570
4664
|
chargingCompleteAt?: string | undefined;
|
|
4571
4665
|
purpose?: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile" | undefined;
|
|
4572
4666
|
} | undefined;
|
|
4573
|
-
externalId?: string | undefined;
|
|
4574
4667
|
tariffGroupId?: number | undefined;
|
|
4668
|
+
externalId?: string | undefined;
|
|
4575
4669
|
maxAmperage?: number | undefined;
|
|
4576
4670
|
hardwareStatus?: "available" | "unavailable" | "faulted" | "charging" | "reserved" | "preparing" | "suspendedEV" | "suspendedEVSE" | "finishing" | undefined;
|
|
4577
4671
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -4617,8 +4711,8 @@ export declare const evseUpdateDeprecatedBody: z.ZodObject<{
|
|
|
4617
4711
|
chargingCompleteAt?: string | undefined;
|
|
4618
4712
|
purpose?: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile" | undefined;
|
|
4619
4713
|
} | undefined;
|
|
4620
|
-
externalId?: string | undefined;
|
|
4621
4714
|
tariffGroupId?: number | undefined;
|
|
4715
|
+
externalId?: string | undefined;
|
|
4622
4716
|
maxAmperage?: number | undefined;
|
|
4623
4717
|
hardwareStatus?: "available" | "unavailable" | "faulted" | "charging" | "reserved" | "preparing" | "suspendedEV" | "suspendedEVSE" | "finishing" | undefined;
|
|
4624
4718
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -4676,8 +4770,8 @@ export declare const evseCreateBody: z.ZodObject<{
|
|
|
4676
4770
|
currentType: "ac" | "dc";
|
|
4677
4771
|
networkId: string;
|
|
4678
4772
|
physicalReference: string;
|
|
4679
|
-
externalId?: string | undefined;
|
|
4680
4773
|
tariffGroupId?: number | undefined;
|
|
4774
|
+
externalId?: string | undefined;
|
|
4681
4775
|
label?: string | undefined;
|
|
4682
4776
|
midMeterCertificationEndYear?: number | undefined;
|
|
4683
4777
|
allowsReservation?: boolean | undefined;
|
|
@@ -4696,8 +4790,8 @@ export declare const evseCreateBody: z.ZodObject<{
|
|
|
4696
4790
|
currentType: "ac" | "dc";
|
|
4697
4791
|
networkId: string;
|
|
4698
4792
|
physicalReference: string;
|
|
4699
|
-
externalId?: string | undefined;
|
|
4700
4793
|
tariffGroupId?: number | undefined;
|
|
4794
|
+
externalId?: string | undefined;
|
|
4701
4795
|
label?: string | undefined;
|
|
4702
4796
|
midMeterCertificationEndYear?: number | undefined;
|
|
4703
4797
|
allowsReservation?: boolean | undefined;
|
|
@@ -4746,10 +4840,10 @@ export declare const evseUpdateBody: z.ZodObject<{
|
|
|
4746
4840
|
externalId: z.ZodOptional<z.ZodString>;
|
|
4747
4841
|
}, "strip", z.ZodTypeAny, {
|
|
4748
4842
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
4749
|
-
|
|
4843
|
+
tariffGroupId?: number | undefined;
|
|
4750
4844
|
externalId?: string | undefined;
|
|
4845
|
+
currentType?: "ac" | "dc" | undefined;
|
|
4751
4846
|
networkId?: string | undefined;
|
|
4752
|
-
tariffGroupId?: number | undefined;
|
|
4753
4847
|
physicalReference?: string | undefined;
|
|
4754
4848
|
label?: string | undefined;
|
|
4755
4849
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -4765,10 +4859,10 @@ export declare const evseUpdateBody: z.ZodObject<{
|
|
|
4765
4859
|
} | undefined;
|
|
4766
4860
|
}, {
|
|
4767
4861
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
4768
|
-
|
|
4862
|
+
tariffGroupId?: number | undefined;
|
|
4769
4863
|
externalId?: string | undefined;
|
|
4864
|
+
currentType?: "ac" | "dc" | undefined;
|
|
4770
4865
|
networkId?: string | undefined;
|
|
4771
|
-
tariffGroupId?: number | undefined;
|
|
4772
4866
|
physicalReference?: string | undefined;
|
|
4773
4867
|
label?: string | undefined;
|
|
4774
4868
|
midMeterCertificationEndYear?: number | undefined;
|
|
@@ -4943,9 +5037,9 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
4943
5037
|
lastUpdatedAt?: string | undefined;
|
|
4944
5038
|
createdAt?: string | undefined;
|
|
4945
5039
|
externalId?: string | undefined;
|
|
5040
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4946
5041
|
idLabel?: string | undefined;
|
|
4947
5042
|
expireAt?: string | undefined;
|
|
4948
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4949
5043
|
partnerId?: number | undefined;
|
|
4950
5044
|
}, {
|
|
4951
5045
|
type: "rfid" | "mac_address";
|
|
@@ -4957,9 +5051,9 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
4957
5051
|
lastUpdatedAt?: string | undefined;
|
|
4958
5052
|
createdAt?: string | undefined;
|
|
4959
5053
|
externalId?: string | undefined;
|
|
5054
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4960
5055
|
idLabel?: string | undefined;
|
|
4961
5056
|
expireAt?: string | undefined;
|
|
4962
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4963
5057
|
partnerId?: number | undefined;
|
|
4964
5058
|
}>;
|
|
4965
5059
|
export declare const idTagUpdateBody: z.ZodObject<{
|
|
@@ -4985,10 +5079,10 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
4985
5079
|
lastUpdatedAt?: string | undefined;
|
|
4986
5080
|
createdAt?: string | undefined;
|
|
4987
5081
|
externalId?: string | undefined;
|
|
5082
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4988
5083
|
idTagUid?: string | undefined;
|
|
4989
5084
|
idLabel?: string | undefined;
|
|
4990
5085
|
expireAt?: string | undefined;
|
|
4991
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4992
5086
|
partnerId?: number | undefined;
|
|
4993
5087
|
}, {
|
|
4994
5088
|
type?: "rfid" | "mac_address" | undefined;
|
|
@@ -4999,10 +5093,10 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
4999
5093
|
lastUpdatedAt?: string | undefined;
|
|
5000
5094
|
createdAt?: string | undefined;
|
|
5001
5095
|
externalId?: string | undefined;
|
|
5096
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
5002
5097
|
idTagUid?: string | undefined;
|
|
5003
5098
|
idLabel?: string | undefined;
|
|
5004
5099
|
expireAt?: string | undefined;
|
|
5005
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
5006
5100
|
partnerId?: number | undefined;
|
|
5007
5101
|
}>;
|
|
5008
5102
|
export declare const createInstallerJobBody: z.ZodObject<{
|
|
@@ -5814,6 +5908,7 @@ export declare const locationUpdateDeprecatedBody: z.ZodObject<{
|
|
|
5814
5908
|
}>;
|
|
5815
5909
|
export declare const locationCreateBody: z.ZodObject<{
|
|
5816
5910
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5911
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
5817
5912
|
name: z.ZodArray<z.ZodObject<{
|
|
5818
5913
|
locale: z.ZodOptional<z.ZodString>;
|
|
5819
5914
|
translation: z.ZodOptional<z.ZodString>;
|
|
@@ -5824,7 +5919,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5824
5919
|
locale?: string | undefined;
|
|
5825
5920
|
translation?: string | undefined;
|
|
5826
5921
|
}>, "many">;
|
|
5827
|
-
|
|
5922
|
+
description: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5828
5923
|
locale: z.ZodOptional<z.ZodString>;
|
|
5829
5924
|
translation: z.ZodOptional<z.ZodString>;
|
|
5830
5925
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5834,7 +5929,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5834
5929
|
locale?: string | undefined;
|
|
5835
5930
|
translation?: string | undefined;
|
|
5836
5931
|
}>, "many">>;
|
|
5837
|
-
|
|
5932
|
+
shortDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5838
5933
|
locale: z.ZodOptional<z.ZodString>;
|
|
5839
5934
|
translation: z.ZodOptional<z.ZodString>;
|
|
5840
5935
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5854,32 +5949,6 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5854
5949
|
locale?: string | undefined;
|
|
5855
5950
|
translation?: string | undefined;
|
|
5856
5951
|
}>, "many">>;
|
|
5857
|
-
locationImage: z.ZodOptional<z.ZodObject<{
|
|
5858
|
-
original: z.ZodString;
|
|
5859
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5860
|
-
mimeType: z.ZodString;
|
|
5861
|
-
}, "strip", z.ZodTypeAny, {
|
|
5862
|
-
mimeType: string;
|
|
5863
|
-
original: string;
|
|
5864
|
-
thumbnail?: string | undefined;
|
|
5865
|
-
}, {
|
|
5866
|
-
mimeType: string;
|
|
5867
|
-
original: string;
|
|
5868
|
-
thumbnail?: string | undefined;
|
|
5869
|
-
}>>;
|
|
5870
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5871
|
-
original: z.ZodString;
|
|
5872
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5873
|
-
mimeType: z.ZodString;
|
|
5874
|
-
}, "strip", z.ZodTypeAny, {
|
|
5875
|
-
mimeType: string;
|
|
5876
|
-
original: string;
|
|
5877
|
-
thumbnail?: string | undefined;
|
|
5878
|
-
}, {
|
|
5879
|
-
mimeType: string;
|
|
5880
|
-
original: string;
|
|
5881
|
-
thumbnail?: string | undefined;
|
|
5882
|
-
}>, "many">>;
|
|
5883
5952
|
geoposition: z.ZodObject<{
|
|
5884
5953
|
latitude: z.ZodNumber;
|
|
5885
5954
|
longitude: z.ZodNumber;
|
|
@@ -5915,6 +5984,36 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5915
5984
|
state: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["AL", "AK", "AS", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FM", "FL", "GA", "GU", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MH", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "MP", "OH", "OK", "OR", "PW", "PA", "PR", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VI", "VA", "WA", "WV", "WI", "WY"]>, z.ZodEnum<["NSW", "VIC", "QLD", "WA", "SA", "TAS", "ACT", "NT", "JBT", "CX", "NF", "CC", "AQ", "CSI", "ACI", "HM"]>, z.ZodEnum<["AB", "BC", "MB", "NB", "NL", "NT", "NS", "NU", "ON", "PE", "QC", "SK", "YT"]>, z.ZodEnum<["81", "84", "85", "67", "89", "71", "76", "95", "79"]>, z.ZodEnum<["AB", "AR", "AG", "BC", "BH", "BN", "BT", "BV", "BR", "B", "BZ", "CL", "CS", "CT", "CV", "DB", "DJ", "GL", "GR", "GJ", "HR", "HD", "IL", "IS", "IF", "MM", "MH", "MS", "NT", "OT", "PH", "SM", "SJ", "SB", "SV", "TR", "TM", "TL", "VS", "VL", "VN"]>]>>;
|
|
5916
5985
|
country: z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "XK", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>;
|
|
5917
5986
|
postCode: z.ZodOptional<z.ZodString>;
|
|
5987
|
+
timezone: z.ZodOptional<z.ZodString>;
|
|
5988
|
+
parkingType: z.ZodOptional<z.ZodEnum<["ALONG_MOTORWAY", "PARKING_GARAGE", "PARKING_LOT", "ON_DRIVEWAY", "ON_STREET", "UNDERGROUND_GARAGE"]>>;
|
|
5989
|
+
accessMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["OPEN", "TOKEN", "LICENSE_PLATE", "ACCESS_CODE", "INTERCOM", "PARKING_TICKET"]>, "many">>;
|
|
5990
|
+
facilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["AIRPORT", "BIKE_SHARING", "BUS_STOP", "CAFE", "CARPOOL_PARKING", "FUEL_STATION", "HOTEL", "MALL", "METRO_STATION", "MUSEUM", "NATURE", "PARKING_LOT", "RECREATION_AREA", "RESTAURANT", "SPORT", "SUPERMARKET", "TAXI_STAND", "TRAIN_STATION", "TRAM_STOP", "WIFI"]>, "many">>;
|
|
5991
|
+
locationImage: z.ZodOptional<z.ZodObject<{
|
|
5992
|
+
original: z.ZodString;
|
|
5993
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5994
|
+
mimeType: z.ZodString;
|
|
5995
|
+
}, "strip", z.ZodTypeAny, {
|
|
5996
|
+
mimeType: string;
|
|
5997
|
+
original: string;
|
|
5998
|
+
thumbnail?: string | undefined;
|
|
5999
|
+
}, {
|
|
6000
|
+
mimeType: string;
|
|
6001
|
+
original: string;
|
|
6002
|
+
thumbnail?: string | undefined;
|
|
6003
|
+
}>>;
|
|
6004
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6005
|
+
original: z.ZodString;
|
|
6006
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6007
|
+
mimeType: z.ZodString;
|
|
6008
|
+
}, "strip", z.ZodTypeAny, {
|
|
6009
|
+
mimeType: string;
|
|
6010
|
+
original: string;
|
|
6011
|
+
thumbnail?: string | undefined;
|
|
6012
|
+
}, {
|
|
6013
|
+
mimeType: string;
|
|
6014
|
+
original: string;
|
|
6015
|
+
thumbnail?: string | undefined;
|
|
6016
|
+
}>, "many">>;
|
|
5918
6017
|
workingHours: z.ZodOptional<z.ZodObject<{
|
|
5919
6018
|
isAlwaysOpen: z.ZodOptional<z.ZodBoolean>;
|
|
5920
6019
|
stopSessionOutsideWorkingHours: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6118,10 +6217,6 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6118
6217
|
stopSessionOutsideWorkingHours?: boolean | undefined;
|
|
6119
6218
|
alwaysOpenForUserGroupIds?: number[] | undefined;
|
|
6120
6219
|
}>>;
|
|
6121
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
6122
|
-
externalId: z.ZodOptional<z.ZodString>;
|
|
6123
|
-
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6124
|
-
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6125
6220
|
chargingZones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6126
6221
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6127
6222
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6203,7 +6298,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6203
6298
|
enabled?: boolean | undefined;
|
|
6204
6299
|
} | undefined;
|
|
6205
6300
|
}>, "many">>;
|
|
6206
|
-
|
|
6301
|
+
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6207
6302
|
roaming: z.ZodOptional<z.ZodObject<{
|
|
6208
6303
|
owner: z.ZodOptional<z.ZodObject<{
|
|
6209
6304
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6248,7 +6343,8 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6248
6343
|
} | undefined;
|
|
6249
6344
|
}>>;
|
|
6250
6345
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6251
|
-
|
|
6346
|
+
externalAppData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6347
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6252
6348
|
}, "strip", z.ZodTypeAny, {
|
|
6253
6349
|
name: {
|
|
6254
6350
|
locale?: string | undefined;
|
|
@@ -6300,16 +6396,19 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6300
6396
|
locale?: string | undefined;
|
|
6301
6397
|
translation?: string | undefined;
|
|
6302
6398
|
}[] | undefined;
|
|
6303
|
-
locationImage?: {
|
|
6304
|
-
mimeType: string;
|
|
6305
|
-
original: string;
|
|
6306
|
-
thumbnail?: string | undefined;
|
|
6307
|
-
} | undefined;
|
|
6308
6399
|
streetAddress?: {
|
|
6309
6400
|
locale?: string | undefined;
|
|
6310
6401
|
translation?: string | undefined;
|
|
6311
6402
|
}[] | undefined;
|
|
6312
6403
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
6404
|
+
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | undefined;
|
|
6405
|
+
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
6406
|
+
facilities?: ("PARKING_LOT" | "AIRPORT" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
6407
|
+
locationImage?: {
|
|
6408
|
+
mimeType: string;
|
|
6409
|
+
original: string;
|
|
6410
|
+
thumbnail?: string | undefined;
|
|
6411
|
+
} | undefined;
|
|
6313
6412
|
workingHours?: {
|
|
6314
6413
|
hours?: {
|
|
6315
6414
|
monday?: {
|
|
@@ -6363,7 +6462,6 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6363
6462
|
} | undefined;
|
|
6364
6463
|
}[] | undefined;
|
|
6365
6464
|
externalAppData?: Record<string, unknown> | undefined;
|
|
6366
|
-
accessMethods?: string[] | undefined;
|
|
6367
6465
|
}, {
|
|
6368
6466
|
name: {
|
|
6369
6467
|
locale?: string | undefined;
|
|
@@ -6415,16 +6513,19 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6415
6513
|
locale?: string | undefined;
|
|
6416
6514
|
translation?: string | undefined;
|
|
6417
6515
|
}[] | undefined;
|
|
6418
|
-
locationImage?: {
|
|
6419
|
-
mimeType: string;
|
|
6420
|
-
original: string;
|
|
6421
|
-
thumbnail?: string | undefined;
|
|
6422
|
-
} | undefined;
|
|
6423
6516
|
streetAddress?: {
|
|
6424
6517
|
locale?: string | undefined;
|
|
6425
6518
|
translation?: string | undefined;
|
|
6426
6519
|
}[] | undefined;
|
|
6427
6520
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
6521
|
+
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | undefined;
|
|
6522
|
+
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
6523
|
+
facilities?: ("PARKING_LOT" | "AIRPORT" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
6524
|
+
locationImage?: {
|
|
6525
|
+
mimeType: string;
|
|
6526
|
+
original: string;
|
|
6527
|
+
thumbnail?: string | undefined;
|
|
6528
|
+
} | undefined;
|
|
6428
6529
|
workingHours?: {
|
|
6429
6530
|
hours?: {
|
|
6430
6531
|
monday?: {
|
|
@@ -6478,10 +6579,10 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6478
6579
|
} | undefined;
|
|
6479
6580
|
}[] | undefined;
|
|
6480
6581
|
externalAppData?: Record<string, unknown> | undefined;
|
|
6481
|
-
accessMethods?: string[] | undefined;
|
|
6482
6582
|
}>;
|
|
6483
6583
|
export declare const locationUpdateBody: z.ZodObject<{
|
|
6484
6584
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6585
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
6485
6586
|
name: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6486
6587
|
locale: z.ZodOptional<z.ZodString>;
|
|
6487
6588
|
translation: z.ZodOptional<z.ZodString>;
|
|
@@ -6492,7 +6593,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6492
6593
|
locale?: string | undefined;
|
|
6493
6594
|
translation?: string | undefined;
|
|
6494
6595
|
}>, "many">>;
|
|
6495
|
-
|
|
6596
|
+
description: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6496
6597
|
locale: z.ZodOptional<z.ZodString>;
|
|
6497
6598
|
translation: z.ZodOptional<z.ZodString>;
|
|
6498
6599
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6502,7 +6603,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6502
6603
|
locale?: string | undefined;
|
|
6503
6604
|
translation?: string | undefined;
|
|
6504
6605
|
}>, "many">>;
|
|
6505
|
-
|
|
6606
|
+
shortDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6506
6607
|
locale: z.ZodOptional<z.ZodString>;
|
|
6507
6608
|
translation: z.ZodOptional<z.ZodString>;
|
|
6508
6609
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6522,32 +6623,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6522
6623
|
locale?: string | undefined;
|
|
6523
6624
|
translation?: string | undefined;
|
|
6524
6625
|
}>, "many">>;
|
|
6525
|
-
locationImage: z.ZodOptional<z.ZodObject<{
|
|
6526
|
-
original: z.ZodString;
|
|
6527
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6528
|
-
mimeType: z.ZodString;
|
|
6529
|
-
}, "strip", z.ZodTypeAny, {
|
|
6530
|
-
mimeType: string;
|
|
6531
|
-
original: string;
|
|
6532
|
-
thumbnail?: string | undefined;
|
|
6533
|
-
}, {
|
|
6534
|
-
mimeType: string;
|
|
6535
|
-
original: string;
|
|
6536
|
-
thumbnail?: string | undefined;
|
|
6537
|
-
}>>;
|
|
6538
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6539
|
-
original: z.ZodString;
|
|
6540
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6541
|
-
mimeType: z.ZodString;
|
|
6542
|
-
}, "strip", z.ZodTypeAny, {
|
|
6543
|
-
mimeType: string;
|
|
6544
|
-
original: string;
|
|
6545
|
-
thumbnail?: string | undefined;
|
|
6546
|
-
}, {
|
|
6547
|
-
mimeType: string;
|
|
6548
|
-
original: string;
|
|
6549
|
-
thumbnail?: string | undefined;
|
|
6550
|
-
}>, "many">>;
|
|
6551
6626
|
geoposition: z.ZodOptional<z.ZodObject<{
|
|
6552
6627
|
latitude: z.ZodNumber;
|
|
6553
6628
|
longitude: z.ZodNumber;
|
|
@@ -6583,6 +6658,36 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6583
6658
|
state: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["AL", "AK", "AS", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FM", "FL", "GA", "GU", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MH", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "MP", "OH", "OK", "OR", "PW", "PA", "PR", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VI", "VA", "WA", "WV", "WI", "WY"]>, z.ZodEnum<["NSW", "VIC", "QLD", "WA", "SA", "TAS", "ACT", "NT", "JBT", "CX", "NF", "CC", "AQ", "CSI", "ACI", "HM"]>, z.ZodEnum<["AB", "BC", "MB", "NB", "NL", "NT", "NS", "NU", "ON", "PE", "QC", "SK", "YT"]>, z.ZodEnum<["81", "84", "85", "67", "89", "71", "76", "95", "79"]>, z.ZodEnum<["AB", "AR", "AG", "BC", "BH", "BN", "BT", "BV", "BR", "B", "BZ", "CL", "CS", "CT", "CV", "DB", "DJ", "GL", "GR", "GJ", "HR", "HD", "IL", "IS", "IF", "MM", "MH", "MS", "NT", "OT", "PH", "SM", "SJ", "SB", "SV", "TR", "TM", "TL", "VS", "VL", "VN"]>]>>;
|
|
6584
6659
|
country: z.ZodOptional<z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "XK", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
|
|
6585
6660
|
postCode: z.ZodOptional<z.ZodString>;
|
|
6661
|
+
timezone: z.ZodOptional<z.ZodString>;
|
|
6662
|
+
parkingType: z.ZodOptional<z.ZodEnum<["ALONG_MOTORWAY", "PARKING_GARAGE", "PARKING_LOT", "ON_DRIVEWAY", "ON_STREET", "UNDERGROUND_GARAGE"]>>;
|
|
6663
|
+
accessMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["OPEN", "TOKEN", "LICENSE_PLATE", "ACCESS_CODE", "INTERCOM", "PARKING_TICKET"]>, "many">>;
|
|
6664
|
+
facilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["AIRPORT", "BIKE_SHARING", "BUS_STOP", "CAFE", "CARPOOL_PARKING", "FUEL_STATION", "HOTEL", "MALL", "METRO_STATION", "MUSEUM", "NATURE", "PARKING_LOT", "RECREATION_AREA", "RESTAURANT", "SPORT", "SUPERMARKET", "TAXI_STAND", "TRAIN_STATION", "TRAM_STOP", "WIFI"]>, "many">>;
|
|
6665
|
+
locationImage: z.ZodOptional<z.ZodObject<{
|
|
6666
|
+
original: z.ZodString;
|
|
6667
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6668
|
+
mimeType: z.ZodString;
|
|
6669
|
+
}, "strip", z.ZodTypeAny, {
|
|
6670
|
+
mimeType: string;
|
|
6671
|
+
original: string;
|
|
6672
|
+
thumbnail?: string | undefined;
|
|
6673
|
+
}, {
|
|
6674
|
+
mimeType: string;
|
|
6675
|
+
original: string;
|
|
6676
|
+
thumbnail?: string | undefined;
|
|
6677
|
+
}>>;
|
|
6678
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6679
|
+
original: z.ZodString;
|
|
6680
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6681
|
+
mimeType: z.ZodString;
|
|
6682
|
+
}, "strip", z.ZodTypeAny, {
|
|
6683
|
+
mimeType: string;
|
|
6684
|
+
original: string;
|
|
6685
|
+
thumbnail?: string | undefined;
|
|
6686
|
+
}, {
|
|
6687
|
+
mimeType: string;
|
|
6688
|
+
original: string;
|
|
6689
|
+
thumbnail?: string | undefined;
|
|
6690
|
+
}>, "many">>;
|
|
6586
6691
|
workingHours: z.ZodOptional<z.ZodObject<{
|
|
6587
6692
|
isAlwaysOpen: z.ZodOptional<z.ZodBoolean>;
|
|
6588
6693
|
stopSessionOutsideWorkingHours: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6786,10 +6891,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6786
6891
|
stopSessionOutsideWorkingHours?: boolean | undefined;
|
|
6787
6892
|
alwaysOpenForUserGroupIds?: number[] | undefined;
|
|
6788
6893
|
}>>;
|
|
6789
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
6790
|
-
externalId: z.ZodOptional<z.ZodString>;
|
|
6791
|
-
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6792
|
-
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6793
6894
|
chargingZones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6794
6895
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6795
6896
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6871,7 +6972,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6871
6972
|
enabled?: boolean | undefined;
|
|
6872
6973
|
} | undefined;
|
|
6873
6974
|
}>, "many">>;
|
|
6874
|
-
|
|
6975
|
+
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6875
6976
|
roaming: z.ZodOptional<z.ZodObject<{
|
|
6876
6977
|
owner: z.ZodOptional<z.ZodObject<{
|
|
6877
6978
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6916,7 +7017,8 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6916
7017
|
} | undefined;
|
|
6917
7018
|
}>>;
|
|
6918
7019
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6919
|
-
|
|
7020
|
+
externalAppData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7021
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6920
7022
|
}, "strip", z.ZodTypeAny, {
|
|
6921
7023
|
tags?: string[] | undefined;
|
|
6922
7024
|
description?: {
|
|
@@ -6968,16 +7070,19 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6968
7070
|
locale?: string | undefined;
|
|
6969
7071
|
translation?: string | undefined;
|
|
6970
7072
|
}[] | undefined;
|
|
6971
|
-
locationImage?: {
|
|
6972
|
-
mimeType: string;
|
|
6973
|
-
original: string;
|
|
6974
|
-
thumbnail?: string | undefined;
|
|
6975
|
-
} | undefined;
|
|
6976
7073
|
streetAddress?: {
|
|
6977
7074
|
locale?: string | undefined;
|
|
6978
7075
|
translation?: string | undefined;
|
|
6979
7076
|
}[] | undefined;
|
|
6980
7077
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
7078
|
+
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | undefined;
|
|
7079
|
+
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
7080
|
+
facilities?: ("PARKING_LOT" | "AIRPORT" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
7081
|
+
locationImage?: {
|
|
7082
|
+
mimeType: string;
|
|
7083
|
+
original: string;
|
|
7084
|
+
thumbnail?: string | undefined;
|
|
7085
|
+
} | undefined;
|
|
6981
7086
|
workingHours?: {
|
|
6982
7087
|
hours?: {
|
|
6983
7088
|
monday?: {
|
|
@@ -7031,7 +7136,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
7031
7136
|
} | undefined;
|
|
7032
7137
|
}[] | undefined;
|
|
7033
7138
|
externalAppData?: Record<string, unknown> | undefined;
|
|
7034
|
-
accessMethods?: string[] | undefined;
|
|
7035
7139
|
}, {
|
|
7036
7140
|
tags?: string[] | undefined;
|
|
7037
7141
|
description?: {
|
|
@@ -7083,16 +7187,19 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
7083
7187
|
locale?: string | undefined;
|
|
7084
7188
|
translation?: string | undefined;
|
|
7085
7189
|
}[] | undefined;
|
|
7086
|
-
locationImage?: {
|
|
7087
|
-
mimeType: string;
|
|
7088
|
-
original: string;
|
|
7089
|
-
thumbnail?: string | undefined;
|
|
7090
|
-
} | undefined;
|
|
7091
7190
|
streetAddress?: {
|
|
7092
7191
|
locale?: string | undefined;
|
|
7093
7192
|
translation?: string | undefined;
|
|
7094
7193
|
}[] | undefined;
|
|
7095
7194
|
state?: "AL" | "AS" | "AQ" | "AG" | "AR" | "AZ" | "BH" | "BZ" | "BT" | "BV" | "BR" | "BN" | "CA" | "CV" | "KY" | "CL" | "CX" | "CC" | "CO" | "HR" | "DJ" | "SV" | "GA" | "DE" | "GR" | "GL" | "GU" | "HM" | "VA" | "IS" | "IN" | "ID" | "IL" | "LA" | "MO" | "MT" | "MH" | "YT" | "FM" | "MD" | "MN" | "ME" | "MS" | "MA" | "MM" | "NL" | "NC" | "NE" | "NU" | "NF" | "MP" | "PW" | "PA" | "PE" | "PH" | "PR" | "SM" | "SA" | "SC" | "SK" | "SB" | "SD" | "SJ" | "TL" | "TN" | "TR" | "TM" | "VN" | "VI" | "67" | "71" | "76" | "79" | "81" | "84" | "85" | "89" | "95" | "AK" | "CT" | "DC" | "FL" | "HI" | "IA" | "KS" | "MI" | "NV" | "NH" | "NJ" | "NM" | "NY" | "ND" | "OH" | "OK" | "OR" | "RI" | "TX" | "UT" | "VT" | "WA" | "WV" | "WI" | "WY" | "NSW" | "VIC" | "QLD" | "TAS" | "ACT" | "NT" | "JBT" | "CSI" | "ACI" | "AB" | "BC" | "MB" | "NB" | "NS" | "ON" | "QC" | "B" | "CS" | "DB" | "GJ" | "HD" | "IF" | "OT" | "VS" | "VL" | undefined;
|
|
7195
|
+
parkingType?: "ALONG_MOTORWAY" | "PARKING_GARAGE" | "PARKING_LOT" | "ON_DRIVEWAY" | "ON_STREET" | "UNDERGROUND_GARAGE" | undefined;
|
|
7196
|
+
accessMethods?: ("OPEN" | "TOKEN" | "LICENSE_PLATE" | "ACCESS_CODE" | "INTERCOM" | "PARKING_TICKET")[] | undefined;
|
|
7197
|
+
facilities?: ("PARKING_LOT" | "AIRPORT" | "BIKE_SHARING" | "BUS_STOP" | "CAFE" | "CARPOOL_PARKING" | "FUEL_STATION" | "HOTEL" | "MALL" | "METRO_STATION" | "MUSEUM" | "NATURE" | "RECREATION_AREA" | "RESTAURANT" | "SPORT" | "SUPERMARKET" | "TAXI_STAND" | "TRAIN_STATION" | "TRAM_STOP" | "WIFI")[] | undefined;
|
|
7198
|
+
locationImage?: {
|
|
7199
|
+
mimeType: string;
|
|
7200
|
+
original: string;
|
|
7201
|
+
thumbnail?: string | undefined;
|
|
7202
|
+
} | undefined;
|
|
7096
7203
|
workingHours?: {
|
|
7097
7204
|
hours?: {
|
|
7098
7205
|
monday?: {
|
|
@@ -7146,7 +7253,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
7146
7253
|
} | undefined;
|
|
7147
7254
|
}[] | undefined;
|
|
7148
7255
|
externalAppData?: Record<string, unknown> | undefined;
|
|
7149
|
-
accessMethods?: string[] | undefined;
|
|
7150
7256
|
}>;
|
|
7151
7257
|
export declare const locationChargingZoneCreateBody: z.ZodObject<{
|
|
7152
7258
|
id: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8560,7 +8666,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8560
8666
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8561
8667
|
name: z.ZodString;
|
|
8562
8668
|
integrationId: z.ZodNumber;
|
|
8563
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8669
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8564
8670
|
operatorId: z.ZodNumber;
|
|
8565
8671
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8566
8672
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8603,7 +8709,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8603
8709
|
name: string;
|
|
8604
8710
|
integrationId: number;
|
|
8605
8711
|
phone: string;
|
|
8606
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8712
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8607
8713
|
operatorId: number;
|
|
8608
8714
|
defaultLanguage: string;
|
|
8609
8715
|
bundle: {
|
|
@@ -8630,7 +8736,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8630
8736
|
name: string;
|
|
8631
8737
|
integrationId: number;
|
|
8632
8738
|
phone: string;
|
|
8633
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8739
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8634
8740
|
operatorId: number;
|
|
8635
8741
|
defaultLanguage: string;
|
|
8636
8742
|
bundle: {
|
|
@@ -8653,7 +8759,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8653
8759
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8654
8760
|
name: z.ZodString;
|
|
8655
8761
|
integrationId: z.ZodNumber;
|
|
8656
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8762
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8657
8763
|
operatorId: z.ZodNumber;
|
|
8658
8764
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8659
8765
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8662,7 +8768,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8662
8768
|
}, "strip", z.ZodTypeAny, {
|
|
8663
8769
|
name: string;
|
|
8664
8770
|
integrationId: number;
|
|
8665
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8771
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8666
8772
|
operatorId: number;
|
|
8667
8773
|
serialNumber: string;
|
|
8668
8774
|
chargePointId?: number | undefined;
|
|
@@ -8672,7 +8778,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8672
8778
|
}, {
|
|
8673
8779
|
name: string;
|
|
8674
8780
|
integrationId: number;
|
|
8675
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8781
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8676
8782
|
operatorId: number;
|
|
8677
8783
|
serialNumber: string;
|
|
8678
8784
|
chargePointId?: number | undefined;
|
|
@@ -8683,7 +8789,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8683
8789
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8684
8790
|
name: z.ZodString;
|
|
8685
8791
|
integrationId: z.ZodNumber;
|
|
8686
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8792
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8687
8793
|
operatorId: z.ZodNumber;
|
|
8688
8794
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8689
8795
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8694,7 +8800,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8694
8800
|
}, "strip", z.ZodTypeAny, {
|
|
8695
8801
|
name: string;
|
|
8696
8802
|
integrationId: number;
|
|
8697
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8803
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8698
8804
|
operatorId: number;
|
|
8699
8805
|
chargePointId?: number | undefined;
|
|
8700
8806
|
id?: number | undefined;
|
|
@@ -8706,7 +8812,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8706
8812
|
}, {
|
|
8707
8813
|
name: string;
|
|
8708
8814
|
integrationId: number;
|
|
8709
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8815
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8710
8816
|
operatorId: number;
|
|
8711
8817
|
chargePointId?: number | undefined;
|
|
8712
8818
|
id?: number | undefined;
|
|
@@ -8719,7 +8825,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8719
8825
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8720
8826
|
name: z.ZodString;
|
|
8721
8827
|
integrationId: z.ZodNumber;
|
|
8722
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8828
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8723
8829
|
operatorId: z.ZodNumber;
|
|
8724
8830
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8725
8831
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8729,7 +8835,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8729
8835
|
}, "strip", z.ZodTypeAny, {
|
|
8730
8836
|
name: string;
|
|
8731
8837
|
integrationId: number;
|
|
8732
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8838
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8733
8839
|
operatorId: number;
|
|
8734
8840
|
terminalId: string;
|
|
8735
8841
|
chargePointId?: number | undefined;
|
|
@@ -8740,7 +8846,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8740
8846
|
}, {
|
|
8741
8847
|
name: string;
|
|
8742
8848
|
integrationId: number;
|
|
8743
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8849
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8744
8850
|
operatorId: number;
|
|
8745
8851
|
terminalId: string;
|
|
8746
8852
|
chargePointId?: number | undefined;
|
|
@@ -8752,7 +8858,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8752
8858
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8753
8859
|
name: z.ZodString;
|
|
8754
8860
|
integrationId: z.ZodNumber;
|
|
8755
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8861
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8756
8862
|
operatorId: z.ZodNumber;
|
|
8757
8863
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8758
8864
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8761,7 +8867,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8761
8867
|
}, "strip", z.ZodTypeAny, {
|
|
8762
8868
|
name: string;
|
|
8763
8869
|
integrationId: number;
|
|
8764
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8870
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8765
8871
|
operatorId: number;
|
|
8766
8872
|
chargePointId?: number | undefined;
|
|
8767
8873
|
id?: number | undefined;
|
|
@@ -8771,7 +8877,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8771
8877
|
}, {
|
|
8772
8878
|
name: string;
|
|
8773
8879
|
integrationId: number;
|
|
8774
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8880
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8775
8881
|
operatorId: number;
|
|
8776
8882
|
chargePointId?: number | undefined;
|
|
8777
8883
|
id?: number | undefined;
|
|
@@ -8782,7 +8888,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8782
8888
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8783
8889
|
name: z.ZodString;
|
|
8784
8890
|
integrationId: z.ZodNumber;
|
|
8785
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8891
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8786
8892
|
operatorId: z.ZodNumber;
|
|
8787
8893
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8788
8894
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8808,7 +8914,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8808
8914
|
}[];
|
|
8809
8915
|
name: string;
|
|
8810
8916
|
integrationId: number;
|
|
8811
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8917
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8812
8918
|
operatorId: number;
|
|
8813
8919
|
defaultLanguage: string;
|
|
8814
8920
|
verificationCode: string;
|
|
@@ -8825,7 +8931,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8825
8931
|
}[];
|
|
8826
8932
|
name: string;
|
|
8827
8933
|
integrationId: number;
|
|
8828
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8934
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8829
8935
|
operatorId: number;
|
|
8830
8936
|
defaultLanguage: string;
|
|
8831
8937
|
verificationCode: string;
|
|
@@ -8839,7 +8945,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8839
8945
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8840
8946
|
name: z.ZodString;
|
|
8841
8947
|
integrationId: z.ZodNumber;
|
|
8842
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8948
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8843
8949
|
operatorId: z.ZodNumber;
|
|
8844
8950
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8845
8951
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8848,7 +8954,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8848
8954
|
}, "strip", z.ZodTypeAny, {
|
|
8849
8955
|
name: string;
|
|
8850
8956
|
integrationId: number;
|
|
8851
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8957
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8852
8958
|
operatorId: number;
|
|
8853
8959
|
chargePointId?: number | undefined;
|
|
8854
8960
|
id?: number | undefined;
|
|
@@ -8858,7 +8964,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8858
8964
|
}, {
|
|
8859
8965
|
name: string;
|
|
8860
8966
|
integrationId: number;
|
|
8861
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8967
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8862
8968
|
operatorId: number;
|
|
8863
8969
|
chargePointId?: number | undefined;
|
|
8864
8970
|
id?: number | undefined;
|
|
@@ -8869,7 +8975,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8869
8975
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8870
8976
|
name: z.ZodString;
|
|
8871
8977
|
integrationId: z.ZodNumber;
|
|
8872
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
8978
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8873
8979
|
operatorId: z.ZodNumber;
|
|
8874
8980
|
invoiceFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8875
8981
|
field: z.ZodString;
|
|
@@ -8887,7 +8993,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8887
8993
|
}, "strip", z.ZodTypeAny, {
|
|
8888
8994
|
name: string;
|
|
8889
8995
|
integrationId: number;
|
|
8890
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
8996
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8891
8997
|
operatorId: number;
|
|
8892
8998
|
id?: number | undefined;
|
|
8893
8999
|
invoiceFields?: {
|
|
@@ -8898,7 +9004,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8898
9004
|
}, {
|
|
8899
9005
|
name: string;
|
|
8900
9006
|
integrationId: number;
|
|
8901
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
9007
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8902
9008
|
operatorId: number;
|
|
8903
9009
|
id?: number | undefined;
|
|
8904
9010
|
invoiceFields?: {
|
|
@@ -8910,7 +9016,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8910
9016
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8911
9017
|
name: z.ZodString;
|
|
8912
9018
|
integrationId: z.ZodNumber;
|
|
8913
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
9019
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8914
9020
|
operatorId: z.ZodNumber;
|
|
8915
9021
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8916
9022
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8944,7 +9050,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8944
9050
|
name: string;
|
|
8945
9051
|
integrationId: number;
|
|
8946
9052
|
phone: string;
|
|
8947
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
9053
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8948
9054
|
operatorId: number;
|
|
8949
9055
|
defaultLanguage: string;
|
|
8950
9056
|
merchantAccount: string;
|
|
@@ -8968,7 +9074,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8968
9074
|
name: string;
|
|
8969
9075
|
integrationId: number;
|
|
8970
9076
|
phone: string;
|
|
8971
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
9077
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
8972
9078
|
operatorId: number;
|
|
8973
9079
|
defaultLanguage: string;
|
|
8974
9080
|
merchantAccount: string;
|
|
@@ -8988,7 +9094,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8988
9094
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8989
9095
|
name: z.ZodString;
|
|
8990
9096
|
integrationId: z.ZodNumber;
|
|
8991
|
-
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>;
|
|
9097
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
8992
9098
|
operatorId: z.ZodNumber;
|
|
8993
9099
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8994
9100
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9031,7 +9137,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9031
9137
|
name: string;
|
|
9032
9138
|
integrationId: number;
|
|
9033
9139
|
phone: string;
|
|
9034
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
9140
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
9035
9141
|
operatorId: number;
|
|
9036
9142
|
defaultLanguage: string;
|
|
9037
9143
|
bundle: {
|
|
@@ -9058,7 +9164,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9058
9164
|
name: string;
|
|
9059
9165
|
integrationId: number;
|
|
9060
9166
|
phone: string;
|
|
9061
|
-
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles";
|
|
9167
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
9062
9168
|
operatorId: number;
|
|
9063
9169
|
defaultLanguage: string;
|
|
9064
9170
|
bundle: {
|
|
@@ -9077,6 +9183,99 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9077
9183
|
supportedLanguages?: string[] | undefined;
|
|
9078
9184
|
networkStatusMonitoringEnabled?: boolean | undefined;
|
|
9079
9185
|
countryCode?: string | undefined;
|
|
9186
|
+
}>, z.ZodObject<{
|
|
9187
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
9188
|
+
name: z.ZodString;
|
|
9189
|
+
integrationId: z.ZodNumber;
|
|
9190
|
+
terminalType: z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>;
|
|
9191
|
+
operatorId: z.ZodNumber;
|
|
9192
|
+
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9193
|
+
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
9194
|
+
adminToken: z.ZodOptional<z.ZodString>;
|
|
9195
|
+
isOnline: z.ZodOptional<z.ZodBoolean>;
|
|
9196
|
+
networkStatus: z.ZodOptional<z.ZodEnum<["online", "offline", "unknown"]>>;
|
|
9197
|
+
phone: z.ZodString;
|
|
9198
|
+
defaultLanguage: z.ZodString;
|
|
9199
|
+
presentCardOnStopSession: z.ZodOptional<z.ZodBoolean>;
|
|
9200
|
+
info: z.ZodArray<z.ZodObject<{
|
|
9201
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
9202
|
+
translation: z.ZodOptional<z.ZodString>;
|
|
9203
|
+
}, "strip", z.ZodTypeAny, {
|
|
9204
|
+
locale?: string | undefined;
|
|
9205
|
+
translation?: string | undefined;
|
|
9206
|
+
}, {
|
|
9207
|
+
locale?: string | undefined;
|
|
9208
|
+
translation?: string | undefined;
|
|
9209
|
+
}>, "many">;
|
|
9210
|
+
currencyCode: z.ZodOptional<z.ZodString>;
|
|
9211
|
+
serialNumber: z.ZodOptional<z.ZodString>;
|
|
9212
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
9213
|
+
supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9214
|
+
bundle: z.ZodObject<{
|
|
9215
|
+
version: z.ZodOptional<z.ZodString>;
|
|
9216
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
9217
|
+
}, "strip", z.ZodTypeAny, {
|
|
9218
|
+
version?: string | undefined;
|
|
9219
|
+
downloadUrl?: string | undefined;
|
|
9220
|
+
}, {
|
|
9221
|
+
version?: string | undefined;
|
|
9222
|
+
downloadUrl?: string | undefined;
|
|
9223
|
+
}>;
|
|
9224
|
+
networkStatusMonitoringEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9225
|
+
}, "strip", z.ZodTypeAny, {
|
|
9226
|
+
info: {
|
|
9227
|
+
locale?: string | undefined;
|
|
9228
|
+
translation?: string | undefined;
|
|
9229
|
+
}[];
|
|
9230
|
+
name: string;
|
|
9231
|
+
integrationId: number;
|
|
9232
|
+
phone: string;
|
|
9233
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
9234
|
+
operatorId: number;
|
|
9235
|
+
defaultLanguage: string;
|
|
9236
|
+
bundle: {
|
|
9237
|
+
version?: string | undefined;
|
|
9238
|
+
downloadUrl?: string | undefined;
|
|
9239
|
+
};
|
|
9240
|
+
chargePointId?: number | undefined;
|
|
9241
|
+
id?: number | undefined;
|
|
9242
|
+
chargingZoneId?: number | undefined;
|
|
9243
|
+
externalId?: string | undefined;
|
|
9244
|
+
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9245
|
+
adminToken?: string | undefined;
|
|
9246
|
+
isOnline?: boolean | undefined;
|
|
9247
|
+
presentCardOnStopSession?: boolean | undefined;
|
|
9248
|
+
currencyCode?: string | undefined;
|
|
9249
|
+
serialNumber?: string | undefined;
|
|
9250
|
+
supportedLanguages?: string[] | undefined;
|
|
9251
|
+
networkStatusMonitoringEnabled?: boolean | undefined;
|
|
9252
|
+
}, {
|
|
9253
|
+
info: {
|
|
9254
|
+
locale?: string | undefined;
|
|
9255
|
+
translation?: string | undefined;
|
|
9256
|
+
}[];
|
|
9257
|
+
name: string;
|
|
9258
|
+
integrationId: number;
|
|
9259
|
+
phone: string;
|
|
9260
|
+
terminalType: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles";
|
|
9261
|
+
operatorId: number;
|
|
9262
|
+
defaultLanguage: string;
|
|
9263
|
+
bundle: {
|
|
9264
|
+
version?: string | undefined;
|
|
9265
|
+
downloadUrl?: string | undefined;
|
|
9266
|
+
};
|
|
9267
|
+
chargePointId?: number | undefined;
|
|
9268
|
+
id?: number | undefined;
|
|
9269
|
+
chargingZoneId?: number | undefined;
|
|
9270
|
+
externalId?: string | undefined;
|
|
9271
|
+
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9272
|
+
adminToken?: string | undefined;
|
|
9273
|
+
isOnline?: boolean | undefined;
|
|
9274
|
+
presentCardOnStopSession?: boolean | undefined;
|
|
9275
|
+
currencyCode?: string | undefined;
|
|
9276
|
+
serialNumber?: string | undefined;
|
|
9277
|
+
supportedLanguages?: string[] | undefined;
|
|
9278
|
+
networkStatusMonitoringEnabled?: boolean | undefined;
|
|
9080
9279
|
}>]>;
|
|
9081
9280
|
export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
9082
9281
|
preauthorizeAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9100,7 +9299,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9100
9299
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9101
9300
|
name: z.ZodOptional<z.ZodString>;
|
|
9102
9301
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9103
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9302
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9104
9303
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9105
9304
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9106
9305
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9136,7 +9335,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9136
9335
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9137
9336
|
integrationId?: number | undefined;
|
|
9138
9337
|
phone?: string | undefined;
|
|
9139
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9338
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9140
9339
|
operatorId?: number | undefined;
|
|
9141
9340
|
adminToken?: string | undefined;
|
|
9142
9341
|
isOnline?: boolean | undefined;
|
|
@@ -9157,7 +9356,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9157
9356
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9158
9357
|
integrationId?: number | undefined;
|
|
9159
9358
|
phone?: string | undefined;
|
|
9160
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9359
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9161
9360
|
operatorId?: number | undefined;
|
|
9162
9361
|
adminToken?: string | undefined;
|
|
9163
9362
|
isOnline?: boolean | undefined;
|
|
@@ -9169,7 +9368,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9169
9368
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9170
9369
|
name: z.ZodOptional<z.ZodString>;
|
|
9171
9370
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9172
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9371
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9173
9372
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9174
9373
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9175
9374
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9182,7 +9381,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9182
9381
|
chargingZoneId?: number | undefined;
|
|
9183
9382
|
externalId?: string | undefined;
|
|
9184
9383
|
integrationId?: number | undefined;
|
|
9185
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9384
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9186
9385
|
operatorId?: number | undefined;
|
|
9187
9386
|
serialNumber?: string | undefined;
|
|
9188
9387
|
}, {
|
|
@@ -9192,14 +9391,14 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9192
9391
|
chargingZoneId?: number | undefined;
|
|
9193
9392
|
externalId?: string | undefined;
|
|
9194
9393
|
integrationId?: number | undefined;
|
|
9195
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9394
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9196
9395
|
operatorId?: number | undefined;
|
|
9197
9396
|
serialNumber?: string | undefined;
|
|
9198
9397
|
}>, z.ZodObject<{
|
|
9199
9398
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9200
9399
|
name: z.ZodOptional<z.ZodString>;
|
|
9201
9400
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9202
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9401
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9203
9402
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9204
9403
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9205
9404
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9214,7 +9413,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9214
9413
|
chargingZoneId?: number | undefined;
|
|
9215
9414
|
externalId?: string | undefined;
|
|
9216
9415
|
integrationId?: number | undefined;
|
|
9217
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9416
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9218
9417
|
operatorId?: number | undefined;
|
|
9219
9418
|
adminToken?: string | undefined;
|
|
9220
9419
|
serialNumber?: string | undefined;
|
|
@@ -9226,7 +9425,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9226
9425
|
chargingZoneId?: number | undefined;
|
|
9227
9426
|
externalId?: string | undefined;
|
|
9228
9427
|
integrationId?: number | undefined;
|
|
9229
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9428
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9230
9429
|
operatorId?: number | undefined;
|
|
9231
9430
|
adminToken?: string | undefined;
|
|
9232
9431
|
serialNumber?: string | undefined;
|
|
@@ -9235,7 +9434,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9235
9434
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9236
9435
|
name: z.ZodOptional<z.ZodString>;
|
|
9237
9436
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9238
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9437
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9239
9438
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9240
9439
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9241
9440
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9249,7 +9448,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9249
9448
|
chargingZoneId?: number | undefined;
|
|
9250
9449
|
externalId?: string | undefined;
|
|
9251
9450
|
integrationId?: number | undefined;
|
|
9252
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9451
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9253
9452
|
operatorId?: number | undefined;
|
|
9254
9453
|
serialNumber?: string | undefined;
|
|
9255
9454
|
terminalId?: string | undefined;
|
|
@@ -9260,7 +9459,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9260
9459
|
chargingZoneId?: number | undefined;
|
|
9261
9460
|
externalId?: string | undefined;
|
|
9262
9461
|
integrationId?: number | undefined;
|
|
9263
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9462
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9264
9463
|
operatorId?: number | undefined;
|
|
9265
9464
|
serialNumber?: string | undefined;
|
|
9266
9465
|
terminalId?: string | undefined;
|
|
@@ -9268,7 +9467,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9268
9467
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9269
9468
|
name: z.ZodOptional<z.ZodString>;
|
|
9270
9469
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9271
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9470
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9272
9471
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9273
9472
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9274
9473
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9281,7 +9480,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9281
9480
|
chargingZoneId?: number | undefined;
|
|
9282
9481
|
externalId?: string | undefined;
|
|
9283
9482
|
integrationId?: number | undefined;
|
|
9284
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9483
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9285
9484
|
operatorId?: number | undefined;
|
|
9286
9485
|
serialNumber?: string | undefined;
|
|
9287
9486
|
}, {
|
|
@@ -9291,14 +9490,14 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9291
9490
|
chargingZoneId?: number | undefined;
|
|
9292
9491
|
externalId?: string | undefined;
|
|
9293
9492
|
integrationId?: number | undefined;
|
|
9294
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9493
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9295
9494
|
operatorId?: number | undefined;
|
|
9296
9495
|
serialNumber?: string | undefined;
|
|
9297
9496
|
}>, z.ZodObject<{
|
|
9298
9497
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9299
9498
|
name: z.ZodOptional<z.ZodString>;
|
|
9300
9499
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9301
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9500
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9302
9501
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9303
9502
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9304
9503
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9328,7 +9527,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9328
9527
|
chargingZoneId?: number | undefined;
|
|
9329
9528
|
externalId?: string | undefined;
|
|
9330
9529
|
integrationId?: number | undefined;
|
|
9331
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9530
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9332
9531
|
operatorId?: number | undefined;
|
|
9333
9532
|
defaultLanguage?: string | undefined;
|
|
9334
9533
|
presentCardOnStopSession?: boolean | undefined;
|
|
@@ -9345,7 +9544,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9345
9544
|
chargingZoneId?: number | undefined;
|
|
9346
9545
|
externalId?: string | undefined;
|
|
9347
9546
|
integrationId?: number | undefined;
|
|
9348
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9547
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9349
9548
|
operatorId?: number | undefined;
|
|
9350
9549
|
defaultLanguage?: string | undefined;
|
|
9351
9550
|
presentCardOnStopSession?: boolean | undefined;
|
|
@@ -9355,7 +9554,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9355
9554
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9356
9555
|
name: z.ZodOptional<z.ZodString>;
|
|
9357
9556
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9358
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9557
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9359
9558
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9360
9559
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9361
9560
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9368,7 +9567,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9368
9567
|
chargingZoneId?: number | undefined;
|
|
9369
9568
|
externalId?: string | undefined;
|
|
9370
9569
|
integrationId?: number | undefined;
|
|
9371
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9570
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9372
9571
|
operatorId?: number | undefined;
|
|
9373
9572
|
serialNumber?: string | undefined;
|
|
9374
9573
|
}, {
|
|
@@ -9378,32 +9577,32 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9378
9577
|
chargingZoneId?: number | undefined;
|
|
9379
9578
|
externalId?: string | undefined;
|
|
9380
9579
|
integrationId?: number | undefined;
|
|
9381
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9580
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9382
9581
|
operatorId?: number | undefined;
|
|
9383
9582
|
serialNumber?: string | undefined;
|
|
9384
9583
|
}>, z.ZodObject<{
|
|
9385
9584
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9386
9585
|
name: z.ZodOptional<z.ZodString>;
|
|
9387
9586
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9388
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9587
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9389
9588
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9390
9589
|
}, "strip", z.ZodTypeAny, {
|
|
9391
9590
|
name?: string | undefined;
|
|
9392
9591
|
id?: number | undefined;
|
|
9393
9592
|
integrationId?: number | undefined;
|
|
9394
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9593
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9395
9594
|
operatorId?: number | undefined;
|
|
9396
9595
|
}, {
|
|
9397
9596
|
name?: string | undefined;
|
|
9398
9597
|
id?: number | undefined;
|
|
9399
9598
|
integrationId?: number | undefined;
|
|
9400
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9599
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9401
9600
|
operatorId?: number | undefined;
|
|
9402
9601
|
}>, z.ZodObject<{
|
|
9403
9602
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9404
9603
|
name: z.ZodOptional<z.ZodString>;
|
|
9405
9604
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9406
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9605
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9407
9606
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9408
9607
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9409
9608
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9441,7 +9640,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9441
9640
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9442
9641
|
integrationId?: number | undefined;
|
|
9443
9642
|
phone?: string | undefined;
|
|
9444
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9643
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9445
9644
|
operatorId?: number | undefined;
|
|
9446
9645
|
adminToken?: string | undefined;
|
|
9447
9646
|
defaultLanguage?: string | undefined;
|
|
@@ -9464,7 +9663,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9464
9663
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9465
9664
|
integrationId?: number | undefined;
|
|
9466
9665
|
phone?: string | undefined;
|
|
9467
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9666
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9468
9667
|
operatorId?: number | undefined;
|
|
9469
9668
|
adminToken?: string | undefined;
|
|
9470
9669
|
defaultLanguage?: string | undefined;
|
|
@@ -9478,7 +9677,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9478
9677
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9479
9678
|
name: z.ZodOptional<z.ZodString>;
|
|
9480
9679
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9481
|
-
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles"]>>;
|
|
9680
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9482
9681
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9483
9682
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9484
9683
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9514,7 +9713,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9514
9713
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9515
9714
|
integrationId?: number | undefined;
|
|
9516
9715
|
phone?: string | undefined;
|
|
9517
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9716
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9518
9717
|
operatorId?: number | undefined;
|
|
9519
9718
|
adminToken?: string | undefined;
|
|
9520
9719
|
defaultLanguage?: string | undefined;
|
|
@@ -9535,7 +9734,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9535
9734
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9536
9735
|
integrationId?: number | undefined;
|
|
9537
9736
|
phone?: string | undefined;
|
|
9538
|
-
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | undefined;
|
|
9737
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9539
9738
|
operatorId?: number | undefined;
|
|
9540
9739
|
adminToken?: string | undefined;
|
|
9541
9740
|
defaultLanguage?: string | undefined;
|
|
@@ -9543,6 +9742,75 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9543
9742
|
serialNumber?: string | undefined;
|
|
9544
9743
|
supportedLanguages?: string[] | undefined;
|
|
9545
9744
|
networkStatusMonitoringEnabled?: boolean | undefined;
|
|
9745
|
+
}>, z.ZodObject<{
|
|
9746
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
9747
|
+
name: z.ZodOptional<z.ZodString>;
|
|
9748
|
+
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9749
|
+
terminalType: z.ZodOptional<z.ZodEnum<["Payter", "Valina", "Crane", "Ampeco", "Nayax", "Embedded", "Pax", "Windcave", "Web portal", "AdyenCastles", "Printec Castles", "Cardlink Castles"]>>;
|
|
9750
|
+
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9751
|
+
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9752
|
+
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
9753
|
+
adminToken: z.ZodOptional<z.ZodString>;
|
|
9754
|
+
isOnline: z.ZodOptional<z.ZodBoolean>;
|
|
9755
|
+
networkStatus: z.ZodOptional<z.ZodEnum<["online", "offline", "unknown"]>>;
|
|
9756
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
9757
|
+
defaultLanguage: z.ZodOptional<z.ZodString>;
|
|
9758
|
+
presentCardOnStopSession: z.ZodOptional<z.ZodBoolean>;
|
|
9759
|
+
info: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9760
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
9761
|
+
translation: z.ZodOptional<z.ZodString>;
|
|
9762
|
+
}, "strip", z.ZodTypeAny, {
|
|
9763
|
+
locale?: string | undefined;
|
|
9764
|
+
translation?: string | undefined;
|
|
9765
|
+
}, {
|
|
9766
|
+
locale?: string | undefined;
|
|
9767
|
+
translation?: string | undefined;
|
|
9768
|
+
}>, "many">>;
|
|
9769
|
+
serialNumber: z.ZodOptional<z.ZodString>;
|
|
9770
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
9771
|
+
supportedLanguages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9772
|
+
}, "strip", z.ZodTypeAny, {
|
|
9773
|
+
info?: {
|
|
9774
|
+
locale?: string | undefined;
|
|
9775
|
+
translation?: string | undefined;
|
|
9776
|
+
}[] | undefined;
|
|
9777
|
+
name?: string | undefined;
|
|
9778
|
+
chargePointId?: number | undefined;
|
|
9779
|
+
id?: number | undefined;
|
|
9780
|
+
chargingZoneId?: number | undefined;
|
|
9781
|
+
externalId?: string | undefined;
|
|
9782
|
+
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9783
|
+
integrationId?: number | undefined;
|
|
9784
|
+
phone?: string | undefined;
|
|
9785
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9786
|
+
operatorId?: number | undefined;
|
|
9787
|
+
adminToken?: string | undefined;
|
|
9788
|
+
isOnline?: boolean | undefined;
|
|
9789
|
+
defaultLanguage?: string | undefined;
|
|
9790
|
+
presentCardOnStopSession?: boolean | undefined;
|
|
9791
|
+
serialNumber?: string | undefined;
|
|
9792
|
+
supportedLanguages?: string[] | undefined;
|
|
9793
|
+
}, {
|
|
9794
|
+
info?: {
|
|
9795
|
+
locale?: string | undefined;
|
|
9796
|
+
translation?: string | undefined;
|
|
9797
|
+
}[] | undefined;
|
|
9798
|
+
name?: string | undefined;
|
|
9799
|
+
chargePointId?: number | undefined;
|
|
9800
|
+
id?: number | undefined;
|
|
9801
|
+
chargingZoneId?: number | undefined;
|
|
9802
|
+
externalId?: string | undefined;
|
|
9803
|
+
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9804
|
+
integrationId?: number | undefined;
|
|
9805
|
+
phone?: string | undefined;
|
|
9806
|
+
terminalType?: "Payter" | "Valina" | "Crane" | "Ampeco" | "Nayax" | "Embedded" | "Pax" | "Windcave" | "Web portal" | "AdyenCastles" | "Printec Castles" | "Cardlink Castles" | undefined;
|
|
9807
|
+
operatorId?: number | undefined;
|
|
9808
|
+
adminToken?: string | undefined;
|
|
9809
|
+
isOnline?: boolean | undefined;
|
|
9810
|
+
defaultLanguage?: string | undefined;
|
|
9811
|
+
presentCardOnStopSession?: boolean | undefined;
|
|
9812
|
+
serialNumber?: string | undefined;
|
|
9813
|
+
supportedLanguages?: string[] | undefined;
|
|
9546
9814
|
}>]>;
|
|
9547
9815
|
export declare const createPcIdBody: z.ZodObject<{
|
|
9548
9816
|
id: z.ZodOptional<z.ZodNumber>;
|