@ampeco/public-api-mcp 3.103.10 → 3.103.12
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 +972 -223
- package/dist/generated/response-schemas.json +8604 -2173
- package/dist/generated/schemas.d.ts +468 -185
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +143 -62
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +145 -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,25 +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
|
-
|
|
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">>;
|
|
1552
1622
|
}, "strip", z.ZodTypeAny, {
|
|
1553
1623
|
type: "create";
|
|
1554
1624
|
userId: number;
|
|
@@ -1561,12 +1631,24 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1561
1631
|
lastUpdatedAt?: string | undefined;
|
|
1562
1632
|
rejectionReason?: string | undefined;
|
|
1563
1633
|
createdAt?: string | undefined;
|
|
1634
|
+
externalId?: string | undefined;
|
|
1564
1635
|
evseCriteria?: {
|
|
1565
1636
|
maxPower?: number | undefined;
|
|
1566
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1637
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1567
1638
|
minPower?: number | undefined;
|
|
1568
|
-
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;
|
|
1569
1640
|
} | undefined;
|
|
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;
|
|
1570
1652
|
}, {
|
|
1571
1653
|
type: "create";
|
|
1572
1654
|
userId: number;
|
|
@@ -1579,12 +1661,24 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1579
1661
|
lastUpdatedAt?: string | undefined;
|
|
1580
1662
|
rejectionReason?: string | undefined;
|
|
1581
1663
|
createdAt?: string | undefined;
|
|
1664
|
+
externalId?: string | undefined;
|
|
1582
1665
|
evseCriteria?: {
|
|
1583
1666
|
maxPower?: number | undefined;
|
|
1584
|
-
currentType?: "ac" | "dc" | undefined;
|
|
1667
|
+
currentType?: "ac" | "dc" | null | undefined;
|
|
1585
1668
|
minPower?: number | 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" | undefined;
|
|
1587
|
-
} | undefined;
|
|
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;
|
|
1588
1682
|
}>, z.ZodObject<{
|
|
1589
1683
|
id: z.ZodOptional<z.ZodNumber>;
|
|
1590
1684
|
type: z.ZodEnum<["update"]>;
|
|
@@ -1594,8 +1688,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1594
1688
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1595
1689
|
bookingId: z.ZodNumber;
|
|
1596
1690
|
userId: z.ZodOptional<z.ZodNumber>;
|
|
1691
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
1597
1692
|
startAt: z.ZodOptional<z.ZodString>;
|
|
1598
1693
|
endAt: z.ZodOptional<z.ZodString>;
|
|
1694
|
+
authorizedTokenIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
1599
1695
|
}, "strip", z.ZodTypeAny, {
|
|
1600
1696
|
type: "update";
|
|
1601
1697
|
bookingId: number;
|
|
@@ -1605,8 +1701,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1605
1701
|
lastUpdatedAt?: string | undefined;
|
|
1606
1702
|
rejectionReason?: string | undefined;
|
|
1607
1703
|
createdAt?: string | undefined;
|
|
1704
|
+
externalId?: string | undefined;
|
|
1608
1705
|
startAt?: string | undefined;
|
|
1609
1706
|
endAt?: string | undefined;
|
|
1707
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1610
1708
|
}, {
|
|
1611
1709
|
type: "update";
|
|
1612
1710
|
bookingId: number;
|
|
@@ -1616,8 +1714,10 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1616
1714
|
lastUpdatedAt?: string | undefined;
|
|
1617
1715
|
rejectionReason?: string | undefined;
|
|
1618
1716
|
createdAt?: string | undefined;
|
|
1717
|
+
externalId?: string | undefined;
|
|
1619
1718
|
startAt?: string | undefined;
|
|
1620
1719
|
endAt?: string | undefined;
|
|
1720
|
+
authorizedTokenIds?: number[] | undefined;
|
|
1621
1721
|
}>, z.ZodObject<{
|
|
1622
1722
|
id: z.ZodOptional<z.ZodNumber>;
|
|
1623
1723
|
type: z.ZodEnum<["cancel"]>;
|
|
@@ -1626,6 +1726,7 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1626
1726
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1627
1727
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
1628
1728
|
bookingId: z.ZodNumber;
|
|
1729
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
1629
1730
|
}, "strip", z.ZodTypeAny, {
|
|
1630
1731
|
type: "cancel";
|
|
1631
1732
|
bookingId: number;
|
|
@@ -1634,6 +1735,7 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1634
1735
|
lastUpdatedAt?: string | undefined;
|
|
1635
1736
|
rejectionReason?: string | undefined;
|
|
1636
1737
|
createdAt?: string | undefined;
|
|
1738
|
+
externalId?: string | undefined;
|
|
1637
1739
|
}, {
|
|
1638
1740
|
type: "cancel";
|
|
1639
1741
|
bookingId: number;
|
|
@@ -1642,6 +1744,7 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1642
1744
|
lastUpdatedAt?: string | undefined;
|
|
1643
1745
|
rejectionReason?: string | undefined;
|
|
1644
1746
|
createdAt?: string | undefined;
|
|
1747
|
+
externalId?: string | undefined;
|
|
1645
1748
|
}>]>;
|
|
1646
1749
|
export declare const chargePointDowntimePeriodCreateBody: z.ZodObject<{
|
|
1647
1750
|
evseId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1768,6 +1871,7 @@ export declare const chargePointCreateDeprecatedBody: z.ZodObject<{
|
|
|
1768
1871
|
tags?: string[] | undefined;
|
|
1769
1872
|
capabilities?: ("REMOTE_START_STOP_CAPABLE" | "METER_VALUES" | "STOP_TRANSACTION_ON_EV_DISCONNECT")[] | undefined;
|
|
1770
1873
|
locationId?: number | undefined;
|
|
1874
|
+
externalId?: string | undefined;
|
|
1771
1875
|
networkProtocol?: "ocpp 1.5" | "ocpp 1.6" | "ocpp 1.6 soap" | "ocpp 2.0.1" | undefined;
|
|
1772
1876
|
networkPassword?: string | undefined;
|
|
1773
1877
|
networkIp?: string | undefined;
|
|
@@ -1788,7 +1892,6 @@ export declare const chargePointCreateDeprecatedBody: z.ZodObject<{
|
|
|
1788
1892
|
physicalReference?: string | undefined;
|
|
1789
1893
|
maxAmperage?: number | undefined;
|
|
1790
1894
|
}> | undefined;
|
|
1791
|
-
externalId?: string | undefined;
|
|
1792
1895
|
}, {
|
|
1793
1896
|
name: string;
|
|
1794
1897
|
status: "disabled" | "active" | "out of order" | "demo";
|
|
@@ -1797,6 +1900,7 @@ export declare const chargePointCreateDeprecatedBody: z.ZodObject<{
|
|
|
1797
1900
|
tags?: string[] | undefined;
|
|
1798
1901
|
capabilities?: ("REMOTE_START_STOP_CAPABLE" | "METER_VALUES" | "STOP_TRANSACTION_ON_EV_DISCONNECT")[] | undefined;
|
|
1799
1902
|
locationId?: number | undefined;
|
|
1903
|
+
externalId?: string | undefined;
|
|
1800
1904
|
networkProtocol?: "ocpp 1.5" | "ocpp 1.6" | "ocpp 1.6 soap" | "ocpp 2.0.1" | undefined;
|
|
1801
1905
|
networkPassword?: string | undefined;
|
|
1802
1906
|
networkIp?: string | undefined;
|
|
@@ -1817,7 +1921,6 @@ export declare const chargePointCreateDeprecatedBody: z.ZodObject<{
|
|
|
1817
1921
|
physicalReference?: string | undefined;
|
|
1818
1922
|
maxAmperage?: number | undefined;
|
|
1819
1923
|
}> | undefined;
|
|
1820
|
-
externalId?: string | undefined;
|
|
1821
1924
|
}>;
|
|
1822
1925
|
export declare const chargePointUpdateDeprecatedBody: z.ZodObject<{
|
|
1823
1926
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1863,6 +1966,7 @@ export declare const chargePointUpdateDeprecatedBody: z.ZodObject<{
|
|
|
1863
1966
|
status?: "disabled" | "active" | "out of order" | "demo" | undefined;
|
|
1864
1967
|
capabilities?: ("REMOTE_START_STOP_CAPABLE" | "METER_VALUES" | "STOP_TRANSACTION_ON_EV_DISCONNECT")[] | undefined;
|
|
1865
1968
|
locationId?: number | undefined;
|
|
1969
|
+
externalId?: string | undefined;
|
|
1866
1970
|
networkId?: string | undefined;
|
|
1867
1971
|
networkProtocol?: "ocpp 1.5" | "ocpp 1.6" | "ocpp 1.6 soap" | "ocpp 2.0.1" | undefined;
|
|
1868
1972
|
networkPassword?: string | undefined;
|
|
@@ -1884,13 +1988,13 @@ export declare const chargePointUpdateDeprecatedBody: z.ZodObject<{
|
|
|
1884
1988
|
physicalReference?: string | undefined;
|
|
1885
1989
|
maxAmperage?: number | undefined;
|
|
1886
1990
|
}> | undefined;
|
|
1887
|
-
externalId?: string | undefined;
|
|
1888
1991
|
}, {
|
|
1889
1992
|
tags?: string[] | undefined;
|
|
1890
1993
|
name?: string | undefined;
|
|
1891
1994
|
status?: "disabled" | "active" | "out of order" | "demo" | undefined;
|
|
1892
1995
|
capabilities?: ("REMOTE_START_STOP_CAPABLE" | "METER_VALUES" | "STOP_TRANSACTION_ON_EV_DISCONNECT")[] | undefined;
|
|
1893
1996
|
locationId?: number | undefined;
|
|
1997
|
+
externalId?: string | undefined;
|
|
1894
1998
|
networkId?: string | undefined;
|
|
1895
1999
|
networkProtocol?: "ocpp 1.5" | "ocpp 1.6" | "ocpp 1.6 soap" | "ocpp 2.0.1" | undefined;
|
|
1896
2000
|
networkPassword?: string | undefined;
|
|
@@ -1912,7 +2016,6 @@ export declare const chargePointUpdateDeprecatedBody: z.ZodObject<{
|
|
|
1912
2016
|
physicalReference?: string | undefined;
|
|
1913
2017
|
maxAmperage?: number | undefined;
|
|
1914
2018
|
}> | undefined;
|
|
1915
|
-
externalId?: string | undefined;
|
|
1916
2019
|
}>;
|
|
1917
2020
|
export declare const chargePointConfigurationUpdateDeprecatedBody: z.ZodObject<{
|
|
1918
2021
|
value: z.ZodOptional<z.ZodString>;
|
|
@@ -2188,10 +2291,10 @@ export declare const chargePointCreateBody: z.ZodObject<{
|
|
|
2188
2291
|
chargingZoneId?: number | undefined;
|
|
2189
2292
|
locationId?: number | undefined;
|
|
2190
2293
|
createdAt?: string | undefined;
|
|
2294
|
+
externalId?: string | undefined;
|
|
2191
2295
|
noticeId?: number | undefined;
|
|
2192
2296
|
pin?: string | undefined;
|
|
2193
2297
|
managedByOperator?: boolean | undefined;
|
|
2194
|
-
externalId?: string | undefined;
|
|
2195
2298
|
electricityRateId?: number | undefined;
|
|
2196
2299
|
subscription?: {
|
|
2197
2300
|
required?: boolean | undefined;
|
|
@@ -2288,10 +2391,10 @@ export declare const chargePointCreateBody: z.ZodObject<{
|
|
|
2288
2391
|
chargingZoneId?: number | undefined;
|
|
2289
2392
|
locationId?: number | undefined;
|
|
2290
2393
|
createdAt?: string | undefined;
|
|
2394
|
+
externalId?: string | undefined;
|
|
2291
2395
|
noticeId?: number | undefined;
|
|
2292
2396
|
pin?: string | undefined;
|
|
2293
2397
|
managedByOperator?: boolean | undefined;
|
|
2294
|
-
externalId?: string | undefined;
|
|
2295
2398
|
electricityRateId?: number | undefined;
|
|
2296
2399
|
subscription?: {
|
|
2297
2400
|
required?: boolean | undefined;
|
|
@@ -2485,10 +2588,10 @@ export declare const chargePointUpdateBody: z.ZodObject<{
|
|
|
2485
2588
|
id?: number | undefined;
|
|
2486
2589
|
chargingZoneId?: number | undefined;
|
|
2487
2590
|
locationId?: number | undefined;
|
|
2591
|
+
externalId?: string | undefined;
|
|
2488
2592
|
noticeId?: number | undefined;
|
|
2489
2593
|
pin?: string | undefined;
|
|
2490
2594
|
managedByOperator?: boolean | undefined;
|
|
2491
|
-
externalId?: string | undefined;
|
|
2492
2595
|
electricityRateId?: number | undefined;
|
|
2493
2596
|
subscription?: {
|
|
2494
2597
|
required?: boolean | undefined;
|
|
@@ -2543,10 +2646,10 @@ export declare const chargePointUpdateBody: z.ZodObject<{
|
|
|
2543
2646
|
id?: number | undefined;
|
|
2544
2647
|
chargingZoneId?: number | undefined;
|
|
2545
2648
|
locationId?: number | undefined;
|
|
2649
|
+
externalId?: string | undefined;
|
|
2546
2650
|
noticeId?: number | undefined;
|
|
2547
2651
|
pin?: string | undefined;
|
|
2548
2652
|
managedByOperator?: boolean | undefined;
|
|
2549
|
-
externalId?: string | undefined;
|
|
2550
2653
|
electricityRateId?: number | undefined;
|
|
2551
2654
|
subscription?: {
|
|
2552
2655
|
required?: boolean | undefined;
|
|
@@ -2697,11 +2800,11 @@ export declare const chargePointEvseUpdateBody: z.ZodObject<{
|
|
|
2697
2800
|
externalId: z.ZodOptional<z.ZodString>;
|
|
2698
2801
|
}, "strip", z.ZodTypeAny, {
|
|
2699
2802
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
2803
|
+
tariffGroupId?: number | undefined;
|
|
2804
|
+
externalId?: string | undefined;
|
|
2700
2805
|
currentType?: "ac" | "dc" | undefined;
|
|
2701
2806
|
networkId?: string | undefined;
|
|
2702
|
-
tariffGroupId?: number | undefined;
|
|
2703
2807
|
physicalReference?: string | undefined;
|
|
2704
|
-
externalId?: string | undefined;
|
|
2705
2808
|
label?: string | undefined;
|
|
2706
2809
|
midMeterCertificationEndYear?: number | undefined;
|
|
2707
2810
|
allowsReservation?: boolean | undefined;
|
|
@@ -2716,11 +2819,11 @@ export declare const chargePointEvseUpdateBody: z.ZodObject<{
|
|
|
2716
2819
|
} | undefined;
|
|
2717
2820
|
}, {
|
|
2718
2821
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
2822
|
+
tariffGroupId?: number | undefined;
|
|
2823
|
+
externalId?: string | undefined;
|
|
2719
2824
|
currentType?: "ac" | "dc" | undefined;
|
|
2720
2825
|
networkId?: string | undefined;
|
|
2721
|
-
tariffGroupId?: number | undefined;
|
|
2722
2826
|
physicalReference?: string | undefined;
|
|
2723
|
-
externalId?: string | undefined;
|
|
2724
2827
|
label?: string | undefined;
|
|
2725
2828
|
midMeterCertificationEndYear?: number | undefined;
|
|
2726
2829
|
allowsReservation?: boolean | undefined;
|
|
@@ -4562,8 +4665,8 @@ export declare const evseUpdateDeprecatedBody: z.ZodObject<{
|
|
|
4562
4665
|
purpose?: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile" | undefined;
|
|
4563
4666
|
} | undefined;
|
|
4564
4667
|
tariffGroupId?: number | undefined;
|
|
4565
|
-
maxAmperage?: number | undefined;
|
|
4566
4668
|
externalId?: string | undefined;
|
|
4669
|
+
maxAmperage?: number | undefined;
|
|
4567
4670
|
hardwareStatus?: "available" | "unavailable" | "faulted" | "charging" | "reserved" | "preparing" | "suspendedEV" | "suspendedEVSE" | "finishing" | undefined;
|
|
4568
4671
|
midMeterCertificationEndYear?: number | undefined;
|
|
4569
4672
|
phaseRotation?: "rst" | "rts" | "srt" | "str" | "trs" | "tsr" | undefined;
|
|
@@ -4609,8 +4712,8 @@ export declare const evseUpdateDeprecatedBody: z.ZodObject<{
|
|
|
4609
4712
|
purpose?: "ChargePointMaxProfile" | "TxDefaultProfile" | "TxProfile" | undefined;
|
|
4610
4713
|
} | undefined;
|
|
4611
4714
|
tariffGroupId?: number | undefined;
|
|
4612
|
-
maxAmperage?: number | undefined;
|
|
4613
4715
|
externalId?: string | undefined;
|
|
4716
|
+
maxAmperage?: number | undefined;
|
|
4614
4717
|
hardwareStatus?: "available" | "unavailable" | "faulted" | "charging" | "reserved" | "preparing" | "suspendedEV" | "suspendedEVSE" | "finishing" | undefined;
|
|
4615
4718
|
midMeterCertificationEndYear?: number | undefined;
|
|
4616
4719
|
phaseRotation?: "rst" | "rts" | "srt" | "str" | "trs" | "tsr" | undefined;
|
|
@@ -4737,11 +4840,11 @@ export declare const evseUpdateBody: z.ZodObject<{
|
|
|
4737
4840
|
externalId: z.ZodOptional<z.ZodString>;
|
|
4738
4841
|
}, "strip", z.ZodTypeAny, {
|
|
4739
4842
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
4843
|
+
tariffGroupId?: number | undefined;
|
|
4844
|
+
externalId?: string | undefined;
|
|
4740
4845
|
currentType?: "ac" | "dc" | undefined;
|
|
4741
4846
|
networkId?: string | undefined;
|
|
4742
|
-
tariffGroupId?: number | undefined;
|
|
4743
4847
|
physicalReference?: string | undefined;
|
|
4744
|
-
externalId?: string | undefined;
|
|
4745
4848
|
label?: string | undefined;
|
|
4746
4849
|
midMeterCertificationEndYear?: number | undefined;
|
|
4747
4850
|
allowsReservation?: boolean | undefined;
|
|
@@ -4756,11 +4859,11 @@ export declare const evseUpdateBody: z.ZodObject<{
|
|
|
4756
4859
|
} | undefined;
|
|
4757
4860
|
}, {
|
|
4758
4861
|
status?: "enabled" | "disabled" | "out of order" | undefined;
|
|
4862
|
+
tariffGroupId?: number | undefined;
|
|
4863
|
+
externalId?: string | undefined;
|
|
4759
4864
|
currentType?: "ac" | "dc" | undefined;
|
|
4760
4865
|
networkId?: string | undefined;
|
|
4761
|
-
tariffGroupId?: number | undefined;
|
|
4762
4866
|
physicalReference?: string | undefined;
|
|
4763
|
-
externalId?: string | undefined;
|
|
4764
4867
|
label?: string | undefined;
|
|
4765
4868
|
midMeterCertificationEndYear?: number | undefined;
|
|
4766
4869
|
allowsReservation?: boolean | undefined;
|
|
@@ -4934,9 +5037,9 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
4934
5037
|
lastUpdatedAt?: string | undefined;
|
|
4935
5038
|
createdAt?: string | undefined;
|
|
4936
5039
|
externalId?: string | undefined;
|
|
5040
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4937
5041
|
idLabel?: string | undefined;
|
|
4938
5042
|
expireAt?: string | undefined;
|
|
4939
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4940
5043
|
partnerId?: number | undefined;
|
|
4941
5044
|
}, {
|
|
4942
5045
|
type: "rfid" | "mac_address";
|
|
@@ -4948,9 +5051,9 @@ export declare const idTagCreateBody: z.ZodObject<{
|
|
|
4948
5051
|
lastUpdatedAt?: string | undefined;
|
|
4949
5052
|
createdAt?: string | undefined;
|
|
4950
5053
|
externalId?: string | undefined;
|
|
5054
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4951
5055
|
idLabel?: string | undefined;
|
|
4952
5056
|
expireAt?: string | undefined;
|
|
4953
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4954
5057
|
partnerId?: number | undefined;
|
|
4955
5058
|
}>;
|
|
4956
5059
|
export declare const idTagUpdateBody: z.ZodObject<{
|
|
@@ -4976,10 +5079,10 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
4976
5079
|
lastUpdatedAt?: string | undefined;
|
|
4977
5080
|
createdAt?: string | undefined;
|
|
4978
5081
|
externalId?: string | undefined;
|
|
5082
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4979
5083
|
idTagUid?: string | undefined;
|
|
4980
5084
|
idLabel?: string | undefined;
|
|
4981
5085
|
expireAt?: string | undefined;
|
|
4982
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4983
5086
|
partnerId?: number | undefined;
|
|
4984
5087
|
}, {
|
|
4985
5088
|
type?: "rfid" | "mac_address" | undefined;
|
|
@@ -4990,10 +5093,10 @@ export declare const idTagUpdateBody: z.ZodObject<{
|
|
|
4990
5093
|
lastUpdatedAt?: string | undefined;
|
|
4991
5094
|
createdAt?: string | undefined;
|
|
4992
5095
|
externalId?: string | undefined;
|
|
5096
|
+
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4993
5097
|
idTagUid?: string | undefined;
|
|
4994
5098
|
idLabel?: string | undefined;
|
|
4995
5099
|
expireAt?: string | undefined;
|
|
4996
|
-
vehicleType?: "company_car" | "private_car" | null | undefined;
|
|
4997
5100
|
partnerId?: number | undefined;
|
|
4998
5101
|
}>;
|
|
4999
5102
|
export declare const createInstallerJobBody: z.ZodObject<{
|
|
@@ -5805,6 +5908,7 @@ export declare const locationUpdateDeprecatedBody: z.ZodObject<{
|
|
|
5805
5908
|
}>;
|
|
5806
5909
|
export declare const locationCreateBody: z.ZodObject<{
|
|
5807
5910
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5911
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
5808
5912
|
name: z.ZodArray<z.ZodObject<{
|
|
5809
5913
|
locale: z.ZodOptional<z.ZodString>;
|
|
5810
5914
|
translation: z.ZodOptional<z.ZodString>;
|
|
@@ -5815,7 +5919,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5815
5919
|
locale?: string | undefined;
|
|
5816
5920
|
translation?: string | undefined;
|
|
5817
5921
|
}>, "many">;
|
|
5818
|
-
|
|
5922
|
+
description: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5819
5923
|
locale: z.ZodOptional<z.ZodString>;
|
|
5820
5924
|
translation: z.ZodOptional<z.ZodString>;
|
|
5821
5925
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5825,7 +5929,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5825
5929
|
locale?: string | undefined;
|
|
5826
5930
|
translation?: string | undefined;
|
|
5827
5931
|
}>, "many">>;
|
|
5828
|
-
|
|
5932
|
+
shortDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5829
5933
|
locale: z.ZodOptional<z.ZodString>;
|
|
5830
5934
|
translation: z.ZodOptional<z.ZodString>;
|
|
5831
5935
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5845,32 +5949,6 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5845
5949
|
locale?: string | undefined;
|
|
5846
5950
|
translation?: string | undefined;
|
|
5847
5951
|
}>, "many">>;
|
|
5848
|
-
locationImage: z.ZodOptional<z.ZodObject<{
|
|
5849
|
-
original: z.ZodString;
|
|
5850
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5851
|
-
mimeType: z.ZodString;
|
|
5852
|
-
}, "strip", z.ZodTypeAny, {
|
|
5853
|
-
mimeType: string;
|
|
5854
|
-
original: string;
|
|
5855
|
-
thumbnail?: string | undefined;
|
|
5856
|
-
}, {
|
|
5857
|
-
mimeType: string;
|
|
5858
|
-
original: string;
|
|
5859
|
-
thumbnail?: string | undefined;
|
|
5860
|
-
}>>;
|
|
5861
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5862
|
-
original: z.ZodString;
|
|
5863
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
5864
|
-
mimeType: z.ZodString;
|
|
5865
|
-
}, "strip", z.ZodTypeAny, {
|
|
5866
|
-
mimeType: string;
|
|
5867
|
-
original: string;
|
|
5868
|
-
thumbnail?: string | undefined;
|
|
5869
|
-
}, {
|
|
5870
|
-
mimeType: string;
|
|
5871
|
-
original: string;
|
|
5872
|
-
thumbnail?: string | undefined;
|
|
5873
|
-
}>, "many">>;
|
|
5874
5952
|
geoposition: z.ZodObject<{
|
|
5875
5953
|
latitude: z.ZodNumber;
|
|
5876
5954
|
longitude: z.ZodNumber;
|
|
@@ -5906,6 +5984,36 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
5906
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"]>]>>;
|
|
5907
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"]>;
|
|
5908
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">>;
|
|
5909
6017
|
workingHours: z.ZodOptional<z.ZodObject<{
|
|
5910
6018
|
isAlwaysOpen: z.ZodOptional<z.ZodBoolean>;
|
|
5911
6019
|
stopSessionOutsideWorkingHours: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6109,10 +6217,6 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6109
6217
|
stopSessionOutsideWorkingHours?: boolean | undefined;
|
|
6110
6218
|
alwaysOpenForUserGroupIds?: number[] | undefined;
|
|
6111
6219
|
}>>;
|
|
6112
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
6113
|
-
externalId: z.ZodOptional<z.ZodString>;
|
|
6114
|
-
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6115
|
-
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6116
6220
|
chargingZones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6117
6221
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6118
6222
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6194,7 +6298,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6194
6298
|
enabled?: boolean | undefined;
|
|
6195
6299
|
} | undefined;
|
|
6196
6300
|
}>, "many">>;
|
|
6197
|
-
|
|
6301
|
+
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6198
6302
|
roaming: z.ZodOptional<z.ZodObject<{
|
|
6199
6303
|
owner: z.ZodOptional<z.ZodObject<{
|
|
6200
6304
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6239,6 +6343,8 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6239
6343
|
} | undefined;
|
|
6240
6344
|
}>>;
|
|
6241
6345
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6346
|
+
externalAppData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6347
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6242
6348
|
}, "strip", z.ZodTypeAny, {
|
|
6243
6349
|
name: {
|
|
6244
6350
|
locale?: string | undefined;
|
|
@@ -6290,16 +6396,19 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6290
6396
|
locale?: string | undefined;
|
|
6291
6397
|
translation?: string | undefined;
|
|
6292
6398
|
}[] | undefined;
|
|
6293
|
-
locationImage?: {
|
|
6294
|
-
mimeType: string;
|
|
6295
|
-
original: string;
|
|
6296
|
-
thumbnail?: string | undefined;
|
|
6297
|
-
} | undefined;
|
|
6298
6399
|
streetAddress?: {
|
|
6299
6400
|
locale?: string | undefined;
|
|
6300
6401
|
translation?: string | undefined;
|
|
6301
6402
|
}[] | undefined;
|
|
6302
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;
|
|
6303
6412
|
workingHours?: {
|
|
6304
6413
|
hours?: {
|
|
6305
6414
|
monday?: {
|
|
@@ -6404,16 +6513,19 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6404
6513
|
locale?: string | undefined;
|
|
6405
6514
|
translation?: string | undefined;
|
|
6406
6515
|
}[] | undefined;
|
|
6407
|
-
locationImage?: {
|
|
6408
|
-
mimeType: string;
|
|
6409
|
-
original: string;
|
|
6410
|
-
thumbnail?: string | undefined;
|
|
6411
|
-
} | undefined;
|
|
6412
6516
|
streetAddress?: {
|
|
6413
6517
|
locale?: string | undefined;
|
|
6414
6518
|
translation?: string | undefined;
|
|
6415
6519
|
}[] | undefined;
|
|
6416
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;
|
|
6417
6529
|
workingHours?: {
|
|
6418
6530
|
hours?: {
|
|
6419
6531
|
monday?: {
|
|
@@ -6470,6 +6582,7 @@ export declare const locationCreateBody: z.ZodObject<{
|
|
|
6470
6582
|
}>;
|
|
6471
6583
|
export declare const locationUpdateBody: z.ZodObject<{
|
|
6472
6584
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6585
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
6473
6586
|
name: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6474
6587
|
locale: z.ZodOptional<z.ZodString>;
|
|
6475
6588
|
translation: z.ZodOptional<z.ZodString>;
|
|
@@ -6480,7 +6593,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6480
6593
|
locale?: string | undefined;
|
|
6481
6594
|
translation?: string | undefined;
|
|
6482
6595
|
}>, "many">>;
|
|
6483
|
-
|
|
6596
|
+
description: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6484
6597
|
locale: z.ZodOptional<z.ZodString>;
|
|
6485
6598
|
translation: z.ZodOptional<z.ZodString>;
|
|
6486
6599
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6490,7 +6603,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6490
6603
|
locale?: string | undefined;
|
|
6491
6604
|
translation?: string | undefined;
|
|
6492
6605
|
}>, "many">>;
|
|
6493
|
-
|
|
6606
|
+
shortDescription: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6494
6607
|
locale: z.ZodOptional<z.ZodString>;
|
|
6495
6608
|
translation: z.ZodOptional<z.ZodString>;
|
|
6496
6609
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6510,32 +6623,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6510
6623
|
locale?: string | undefined;
|
|
6511
6624
|
translation?: string | undefined;
|
|
6512
6625
|
}>, "many">>;
|
|
6513
|
-
locationImage: z.ZodOptional<z.ZodObject<{
|
|
6514
|
-
original: z.ZodString;
|
|
6515
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6516
|
-
mimeType: z.ZodString;
|
|
6517
|
-
}, "strip", z.ZodTypeAny, {
|
|
6518
|
-
mimeType: string;
|
|
6519
|
-
original: string;
|
|
6520
|
-
thumbnail?: string | undefined;
|
|
6521
|
-
}, {
|
|
6522
|
-
mimeType: string;
|
|
6523
|
-
original: string;
|
|
6524
|
-
thumbnail?: string | undefined;
|
|
6525
|
-
}>>;
|
|
6526
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6527
|
-
original: z.ZodString;
|
|
6528
|
-
thumbnail: z.ZodOptional<z.ZodString>;
|
|
6529
|
-
mimeType: z.ZodString;
|
|
6530
|
-
}, "strip", z.ZodTypeAny, {
|
|
6531
|
-
mimeType: string;
|
|
6532
|
-
original: string;
|
|
6533
|
-
thumbnail?: string | undefined;
|
|
6534
|
-
}, {
|
|
6535
|
-
mimeType: string;
|
|
6536
|
-
original: string;
|
|
6537
|
-
thumbnail?: string | undefined;
|
|
6538
|
-
}>, "many">>;
|
|
6539
6626
|
geoposition: z.ZodOptional<z.ZodObject<{
|
|
6540
6627
|
latitude: z.ZodNumber;
|
|
6541
6628
|
longitude: z.ZodNumber;
|
|
@@ -6571,6 +6658,36 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6571
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"]>]>>;
|
|
6572
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"]>>;
|
|
6573
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">>;
|
|
6574
6691
|
workingHours: z.ZodOptional<z.ZodObject<{
|
|
6575
6692
|
isAlwaysOpen: z.ZodOptional<z.ZodBoolean>;
|
|
6576
6693
|
stopSessionOutsideWorkingHours: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6774,10 +6891,6 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6774
6891
|
stopSessionOutsideWorkingHours?: boolean | undefined;
|
|
6775
6892
|
alwaysOpenForUserGroupIds?: number[] | undefined;
|
|
6776
6893
|
}>>;
|
|
6777
|
-
timezone: z.ZodOptional<z.ZodString>;
|
|
6778
|
-
externalId: z.ZodOptional<z.ZodString>;
|
|
6779
|
-
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6780
|
-
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6781
6894
|
chargingZones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6782
6895
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6783
6896
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6859,7 +6972,7 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6859
6972
|
enabled?: boolean | undefined;
|
|
6860
6973
|
} | undefined;
|
|
6861
6974
|
}>, "many">>;
|
|
6862
|
-
|
|
6975
|
+
roamingOperatorId: z.ZodOptional<z.ZodNumber>;
|
|
6863
6976
|
roaming: z.ZodOptional<z.ZodObject<{
|
|
6864
6977
|
owner: z.ZodOptional<z.ZodObject<{
|
|
6865
6978
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6904,6 +7017,8 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6904
7017
|
} | undefined;
|
|
6905
7018
|
}>>;
|
|
6906
7019
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7020
|
+
externalAppData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7021
|
+
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
6907
7022
|
}, "strip", z.ZodTypeAny, {
|
|
6908
7023
|
tags?: string[] | undefined;
|
|
6909
7024
|
description?: {
|
|
@@ -6955,16 +7070,19 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
6955
7070
|
locale?: string | undefined;
|
|
6956
7071
|
translation?: string | undefined;
|
|
6957
7072
|
}[] | undefined;
|
|
6958
|
-
locationImage?: {
|
|
6959
|
-
mimeType: string;
|
|
6960
|
-
original: string;
|
|
6961
|
-
thumbnail?: string | undefined;
|
|
6962
|
-
} | undefined;
|
|
6963
7073
|
streetAddress?: {
|
|
6964
7074
|
locale?: string | undefined;
|
|
6965
7075
|
translation?: string | undefined;
|
|
6966
7076
|
}[] | undefined;
|
|
6967
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;
|
|
6968
7086
|
workingHours?: {
|
|
6969
7087
|
hours?: {
|
|
6970
7088
|
monday?: {
|
|
@@ -7069,16 +7187,19 @@ export declare const locationUpdateBody: z.ZodObject<{
|
|
|
7069
7187
|
locale?: string | undefined;
|
|
7070
7188
|
translation?: string | undefined;
|
|
7071
7189
|
}[] | undefined;
|
|
7072
|
-
locationImage?: {
|
|
7073
|
-
mimeType: string;
|
|
7074
|
-
original: string;
|
|
7075
|
-
thumbnail?: string | undefined;
|
|
7076
|
-
} | undefined;
|
|
7077
7190
|
streetAddress?: {
|
|
7078
7191
|
locale?: string | undefined;
|
|
7079
7192
|
translation?: string | undefined;
|
|
7080
7193
|
}[] | undefined;
|
|
7081
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;
|
|
7082
7203
|
workingHours?: {
|
|
7083
7204
|
hours?: {
|
|
7084
7205
|
monday?: {
|
|
@@ -7307,16 +7428,16 @@ export declare const createParkingSpaceBody: z.ZodObject<{
|
|
|
7307
7428
|
locationId: number;
|
|
7308
7429
|
label: string;
|
|
7309
7430
|
status?: "enabled" | "disabled" | undefined;
|
|
7310
|
-
evses?: number[] | undefined;
|
|
7311
7431
|
externalId?: string | undefined;
|
|
7432
|
+
evses?: number[] | undefined;
|
|
7312
7433
|
occupancyStatus?: "unknown" | "available" | "occupied" | undefined;
|
|
7313
7434
|
disabilitiesAccessible?: boolean | undefined;
|
|
7314
7435
|
}, {
|
|
7315
7436
|
locationId: number;
|
|
7316
7437
|
label: string;
|
|
7317
7438
|
status?: "enabled" | "disabled" | undefined;
|
|
7318
|
-
evses?: number[] | undefined;
|
|
7319
7439
|
externalId?: string | undefined;
|
|
7440
|
+
evses?: number[] | undefined;
|
|
7320
7441
|
occupancyStatus?: "unknown" | "available" | "occupied" | undefined;
|
|
7321
7442
|
disabilitiesAccessible?: boolean | undefined;
|
|
7322
7443
|
}>;
|
|
@@ -7332,16 +7453,16 @@ export declare const updateParkingSpaceBody: z.ZodObject<{
|
|
|
7332
7453
|
locationId: number;
|
|
7333
7454
|
label: string;
|
|
7334
7455
|
status?: "enabled" | "disabled" | undefined;
|
|
7335
|
-
evses?: number[] | undefined;
|
|
7336
7456
|
externalId?: string | undefined;
|
|
7457
|
+
evses?: number[] | undefined;
|
|
7337
7458
|
occupancyStatus?: "unknown" | "available" | "occupied" | undefined;
|
|
7338
7459
|
disabilitiesAccessible?: boolean | undefined;
|
|
7339
7460
|
}, {
|
|
7340
7461
|
locationId: number;
|
|
7341
7462
|
label: string;
|
|
7342
7463
|
status?: "enabled" | "disabled" | undefined;
|
|
7343
|
-
evses?: number[] | undefined;
|
|
7344
7464
|
externalId?: string | undefined;
|
|
7465
|
+
evses?: number[] | undefined;
|
|
7345
7466
|
occupancyStatus?: "unknown" | "available" | "occupied" | undefined;
|
|
7346
7467
|
disabilitiesAccessible?: boolean | undefined;
|
|
7347
7468
|
}>;
|
|
@@ -8545,7 +8666,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8545
8666
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8546
8667
|
name: z.ZodString;
|
|
8547
8668
|
integrationId: z.ZodNumber;
|
|
8548
|
-
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"]>;
|
|
8549
8670
|
operatorId: z.ZodNumber;
|
|
8550
8671
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8551
8672
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8588,7 +8709,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8588
8709
|
name: string;
|
|
8589
8710
|
integrationId: number;
|
|
8590
8711
|
phone: string;
|
|
8591
|
-
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";
|
|
8592
8713
|
operatorId: number;
|
|
8593
8714
|
defaultLanguage: string;
|
|
8594
8715
|
bundle: {
|
|
@@ -8615,7 +8736,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8615
8736
|
name: string;
|
|
8616
8737
|
integrationId: number;
|
|
8617
8738
|
phone: string;
|
|
8618
|
-
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";
|
|
8619
8740
|
operatorId: number;
|
|
8620
8741
|
defaultLanguage: string;
|
|
8621
8742
|
bundle: {
|
|
@@ -8638,7 +8759,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8638
8759
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8639
8760
|
name: z.ZodString;
|
|
8640
8761
|
integrationId: z.ZodNumber;
|
|
8641
|
-
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"]>;
|
|
8642
8763
|
operatorId: z.ZodNumber;
|
|
8643
8764
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8644
8765
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8647,7 +8768,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8647
8768
|
}, "strip", z.ZodTypeAny, {
|
|
8648
8769
|
name: string;
|
|
8649
8770
|
integrationId: number;
|
|
8650
|
-
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";
|
|
8651
8772
|
operatorId: number;
|
|
8652
8773
|
serialNumber: string;
|
|
8653
8774
|
chargePointId?: number | undefined;
|
|
@@ -8657,7 +8778,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8657
8778
|
}, {
|
|
8658
8779
|
name: string;
|
|
8659
8780
|
integrationId: number;
|
|
8660
|
-
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";
|
|
8661
8782
|
operatorId: number;
|
|
8662
8783
|
serialNumber: string;
|
|
8663
8784
|
chargePointId?: number | undefined;
|
|
@@ -8668,7 +8789,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8668
8789
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8669
8790
|
name: z.ZodString;
|
|
8670
8791
|
integrationId: z.ZodNumber;
|
|
8671
|
-
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"]>;
|
|
8672
8793
|
operatorId: z.ZodNumber;
|
|
8673
8794
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8674
8795
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8679,7 +8800,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8679
8800
|
}, "strip", z.ZodTypeAny, {
|
|
8680
8801
|
name: string;
|
|
8681
8802
|
integrationId: number;
|
|
8682
|
-
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";
|
|
8683
8804
|
operatorId: number;
|
|
8684
8805
|
chargePointId?: number | undefined;
|
|
8685
8806
|
id?: number | undefined;
|
|
@@ -8691,7 +8812,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8691
8812
|
}, {
|
|
8692
8813
|
name: string;
|
|
8693
8814
|
integrationId: number;
|
|
8694
|
-
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";
|
|
8695
8816
|
operatorId: number;
|
|
8696
8817
|
chargePointId?: number | undefined;
|
|
8697
8818
|
id?: number | undefined;
|
|
@@ -8704,7 +8825,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8704
8825
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8705
8826
|
name: z.ZodString;
|
|
8706
8827
|
integrationId: z.ZodNumber;
|
|
8707
|
-
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"]>;
|
|
8708
8829
|
operatorId: z.ZodNumber;
|
|
8709
8830
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8710
8831
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8714,7 +8835,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8714
8835
|
}, "strip", z.ZodTypeAny, {
|
|
8715
8836
|
name: string;
|
|
8716
8837
|
integrationId: number;
|
|
8717
|
-
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";
|
|
8718
8839
|
operatorId: number;
|
|
8719
8840
|
terminalId: string;
|
|
8720
8841
|
chargePointId?: number | undefined;
|
|
@@ -8725,7 +8846,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8725
8846
|
}, {
|
|
8726
8847
|
name: string;
|
|
8727
8848
|
integrationId: number;
|
|
8728
|
-
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";
|
|
8729
8850
|
operatorId: number;
|
|
8730
8851
|
terminalId: string;
|
|
8731
8852
|
chargePointId?: number | undefined;
|
|
@@ -8737,7 +8858,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8737
8858
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8738
8859
|
name: z.ZodString;
|
|
8739
8860
|
integrationId: z.ZodNumber;
|
|
8740
|
-
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"]>;
|
|
8741
8862
|
operatorId: z.ZodNumber;
|
|
8742
8863
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8743
8864
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8746,7 +8867,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8746
8867
|
}, "strip", z.ZodTypeAny, {
|
|
8747
8868
|
name: string;
|
|
8748
8869
|
integrationId: number;
|
|
8749
|
-
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";
|
|
8750
8871
|
operatorId: number;
|
|
8751
8872
|
chargePointId?: number | undefined;
|
|
8752
8873
|
id?: number | undefined;
|
|
@@ -8756,7 +8877,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8756
8877
|
}, {
|
|
8757
8878
|
name: string;
|
|
8758
8879
|
integrationId: number;
|
|
8759
|
-
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";
|
|
8760
8881
|
operatorId: number;
|
|
8761
8882
|
chargePointId?: number | undefined;
|
|
8762
8883
|
id?: number | undefined;
|
|
@@ -8767,7 +8888,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8767
8888
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8768
8889
|
name: z.ZodString;
|
|
8769
8890
|
integrationId: z.ZodNumber;
|
|
8770
|
-
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"]>;
|
|
8771
8892
|
operatorId: z.ZodNumber;
|
|
8772
8893
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8773
8894
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8793,7 +8914,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8793
8914
|
}[];
|
|
8794
8915
|
name: string;
|
|
8795
8916
|
integrationId: number;
|
|
8796
|
-
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";
|
|
8797
8918
|
operatorId: number;
|
|
8798
8919
|
defaultLanguage: string;
|
|
8799
8920
|
verificationCode: string;
|
|
@@ -8810,7 +8931,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8810
8931
|
}[];
|
|
8811
8932
|
name: string;
|
|
8812
8933
|
integrationId: number;
|
|
8813
|
-
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";
|
|
8814
8935
|
operatorId: number;
|
|
8815
8936
|
defaultLanguage: string;
|
|
8816
8937
|
verificationCode: string;
|
|
@@ -8824,7 +8945,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8824
8945
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8825
8946
|
name: z.ZodString;
|
|
8826
8947
|
integrationId: z.ZodNumber;
|
|
8827
|
-
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"]>;
|
|
8828
8949
|
operatorId: z.ZodNumber;
|
|
8829
8950
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8830
8951
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8833,7 +8954,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8833
8954
|
}, "strip", z.ZodTypeAny, {
|
|
8834
8955
|
name: string;
|
|
8835
8956
|
integrationId: number;
|
|
8836
|
-
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";
|
|
8837
8958
|
operatorId: number;
|
|
8838
8959
|
chargePointId?: number | undefined;
|
|
8839
8960
|
id?: number | undefined;
|
|
@@ -8843,7 +8964,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8843
8964
|
}, {
|
|
8844
8965
|
name: string;
|
|
8845
8966
|
integrationId: number;
|
|
8846
|
-
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";
|
|
8847
8968
|
operatorId: number;
|
|
8848
8969
|
chargePointId?: number | undefined;
|
|
8849
8970
|
id?: number | undefined;
|
|
@@ -8854,7 +8975,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8854
8975
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8855
8976
|
name: z.ZodString;
|
|
8856
8977
|
integrationId: z.ZodNumber;
|
|
8857
|
-
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"]>;
|
|
8858
8979
|
operatorId: z.ZodNumber;
|
|
8859
8980
|
invoiceFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8860
8981
|
field: z.ZodString;
|
|
@@ -8872,7 +8993,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8872
8993
|
}, "strip", z.ZodTypeAny, {
|
|
8873
8994
|
name: string;
|
|
8874
8995
|
integrationId: number;
|
|
8875
|
-
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";
|
|
8876
8997
|
operatorId: number;
|
|
8877
8998
|
id?: number | undefined;
|
|
8878
8999
|
invoiceFields?: {
|
|
@@ -8883,7 +9004,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8883
9004
|
}, {
|
|
8884
9005
|
name: string;
|
|
8885
9006
|
integrationId: number;
|
|
8886
|
-
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";
|
|
8887
9008
|
operatorId: number;
|
|
8888
9009
|
id?: number | undefined;
|
|
8889
9010
|
invoiceFields?: {
|
|
@@ -8895,7 +9016,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8895
9016
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8896
9017
|
name: z.ZodString;
|
|
8897
9018
|
integrationId: z.ZodNumber;
|
|
8898
|
-
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"]>;
|
|
8899
9020
|
operatorId: z.ZodNumber;
|
|
8900
9021
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8901
9022
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8929,7 +9050,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8929
9050
|
name: string;
|
|
8930
9051
|
integrationId: number;
|
|
8931
9052
|
phone: string;
|
|
8932
|
-
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";
|
|
8933
9054
|
operatorId: number;
|
|
8934
9055
|
defaultLanguage: string;
|
|
8935
9056
|
merchantAccount: string;
|
|
@@ -8953,7 +9074,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8953
9074
|
name: string;
|
|
8954
9075
|
integrationId: number;
|
|
8955
9076
|
phone: string;
|
|
8956
|
-
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";
|
|
8957
9078
|
operatorId: number;
|
|
8958
9079
|
defaultLanguage: string;
|
|
8959
9080
|
merchantAccount: string;
|
|
@@ -8973,7 +9094,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
8973
9094
|
id: z.ZodOptional<z.ZodNumber>;
|
|
8974
9095
|
name: z.ZodString;
|
|
8975
9096
|
integrationId: z.ZodNumber;
|
|
8976
|
-
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"]>;
|
|
8977
9098
|
operatorId: z.ZodNumber;
|
|
8978
9099
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
8979
9100
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9016,7 +9137,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9016
9137
|
name: string;
|
|
9017
9138
|
integrationId: number;
|
|
9018
9139
|
phone: string;
|
|
9019
|
-
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";
|
|
9020
9141
|
operatorId: number;
|
|
9021
9142
|
defaultLanguage: string;
|
|
9022
9143
|
bundle: {
|
|
@@ -9043,7 +9164,7 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9043
9164
|
name: string;
|
|
9044
9165
|
integrationId: number;
|
|
9045
9166
|
phone: string;
|
|
9046
|
-
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";
|
|
9047
9168
|
operatorId: number;
|
|
9048
9169
|
defaultLanguage: string;
|
|
9049
9170
|
bundle: {
|
|
@@ -9062,6 +9183,99 @@ export declare const createPaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9062
9183
|
supportedLanguages?: string[] | undefined;
|
|
9063
9184
|
networkStatusMonitoringEnabled?: boolean | undefined;
|
|
9064
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;
|
|
9065
9279
|
}>]>;
|
|
9066
9280
|
export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
9067
9281
|
preauthorizeAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9085,7 +9299,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9085
9299
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9086
9300
|
name: z.ZodOptional<z.ZodString>;
|
|
9087
9301
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9088
|
-
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"]>>;
|
|
9089
9303
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9090
9304
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9091
9305
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9121,7 +9335,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9121
9335
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9122
9336
|
integrationId?: number | undefined;
|
|
9123
9337
|
phone?: string | undefined;
|
|
9124
|
-
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;
|
|
9125
9339
|
operatorId?: number | undefined;
|
|
9126
9340
|
adminToken?: string | undefined;
|
|
9127
9341
|
isOnline?: boolean | undefined;
|
|
@@ -9142,7 +9356,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9142
9356
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9143
9357
|
integrationId?: number | undefined;
|
|
9144
9358
|
phone?: string | undefined;
|
|
9145
|
-
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;
|
|
9146
9360
|
operatorId?: number | undefined;
|
|
9147
9361
|
adminToken?: string | undefined;
|
|
9148
9362
|
isOnline?: boolean | undefined;
|
|
@@ -9154,7 +9368,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9154
9368
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9155
9369
|
name: z.ZodOptional<z.ZodString>;
|
|
9156
9370
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9157
|
-
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"]>>;
|
|
9158
9372
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9159
9373
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9160
9374
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9167,7 +9381,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9167
9381
|
chargingZoneId?: number | undefined;
|
|
9168
9382
|
externalId?: string | undefined;
|
|
9169
9383
|
integrationId?: number | undefined;
|
|
9170
|
-
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;
|
|
9171
9385
|
operatorId?: number | undefined;
|
|
9172
9386
|
serialNumber?: string | undefined;
|
|
9173
9387
|
}, {
|
|
@@ -9177,14 +9391,14 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9177
9391
|
chargingZoneId?: number | undefined;
|
|
9178
9392
|
externalId?: string | undefined;
|
|
9179
9393
|
integrationId?: number | undefined;
|
|
9180
|
-
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;
|
|
9181
9395
|
operatorId?: number | undefined;
|
|
9182
9396
|
serialNumber?: string | undefined;
|
|
9183
9397
|
}>, z.ZodObject<{
|
|
9184
9398
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9185
9399
|
name: z.ZodOptional<z.ZodString>;
|
|
9186
9400
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9187
|
-
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"]>>;
|
|
9188
9402
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9189
9403
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9190
9404
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9199,7 +9413,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9199
9413
|
chargingZoneId?: number | undefined;
|
|
9200
9414
|
externalId?: string | undefined;
|
|
9201
9415
|
integrationId?: number | undefined;
|
|
9202
|
-
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;
|
|
9203
9417
|
operatorId?: number | undefined;
|
|
9204
9418
|
adminToken?: string | undefined;
|
|
9205
9419
|
serialNumber?: string | undefined;
|
|
@@ -9211,7 +9425,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9211
9425
|
chargingZoneId?: number | undefined;
|
|
9212
9426
|
externalId?: string | undefined;
|
|
9213
9427
|
integrationId?: number | undefined;
|
|
9214
|
-
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;
|
|
9215
9429
|
operatorId?: number | undefined;
|
|
9216
9430
|
adminToken?: string | undefined;
|
|
9217
9431
|
serialNumber?: string | undefined;
|
|
@@ -9220,7 +9434,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9220
9434
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9221
9435
|
name: z.ZodOptional<z.ZodString>;
|
|
9222
9436
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9223
|
-
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"]>>;
|
|
9224
9438
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9225
9439
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9226
9440
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9234,7 +9448,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9234
9448
|
chargingZoneId?: number | undefined;
|
|
9235
9449
|
externalId?: string | undefined;
|
|
9236
9450
|
integrationId?: number | undefined;
|
|
9237
|
-
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;
|
|
9238
9452
|
operatorId?: number | undefined;
|
|
9239
9453
|
serialNumber?: string | undefined;
|
|
9240
9454
|
terminalId?: string | undefined;
|
|
@@ -9245,7 +9459,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9245
9459
|
chargingZoneId?: number | undefined;
|
|
9246
9460
|
externalId?: string | undefined;
|
|
9247
9461
|
integrationId?: number | undefined;
|
|
9248
|
-
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;
|
|
9249
9463
|
operatorId?: number | undefined;
|
|
9250
9464
|
serialNumber?: string | undefined;
|
|
9251
9465
|
terminalId?: string | undefined;
|
|
@@ -9253,7 +9467,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9253
9467
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9254
9468
|
name: z.ZodOptional<z.ZodString>;
|
|
9255
9469
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9256
|
-
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"]>>;
|
|
9257
9471
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9258
9472
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9259
9473
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9266,7 +9480,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9266
9480
|
chargingZoneId?: number | undefined;
|
|
9267
9481
|
externalId?: string | undefined;
|
|
9268
9482
|
integrationId?: number | undefined;
|
|
9269
|
-
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;
|
|
9270
9484
|
operatorId?: number | undefined;
|
|
9271
9485
|
serialNumber?: string | undefined;
|
|
9272
9486
|
}, {
|
|
@@ -9276,14 +9490,14 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9276
9490
|
chargingZoneId?: number | undefined;
|
|
9277
9491
|
externalId?: string | undefined;
|
|
9278
9492
|
integrationId?: number | undefined;
|
|
9279
|
-
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;
|
|
9280
9494
|
operatorId?: number | undefined;
|
|
9281
9495
|
serialNumber?: string | undefined;
|
|
9282
9496
|
}>, z.ZodObject<{
|
|
9283
9497
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9284
9498
|
name: z.ZodOptional<z.ZodString>;
|
|
9285
9499
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9286
|
-
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"]>>;
|
|
9287
9501
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9288
9502
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9289
9503
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9313,7 +9527,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9313
9527
|
chargingZoneId?: number | undefined;
|
|
9314
9528
|
externalId?: string | undefined;
|
|
9315
9529
|
integrationId?: number | undefined;
|
|
9316
|
-
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;
|
|
9317
9531
|
operatorId?: number | undefined;
|
|
9318
9532
|
defaultLanguage?: string | undefined;
|
|
9319
9533
|
presentCardOnStopSession?: boolean | undefined;
|
|
@@ -9330,7 +9544,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9330
9544
|
chargingZoneId?: number | undefined;
|
|
9331
9545
|
externalId?: string | undefined;
|
|
9332
9546
|
integrationId?: number | undefined;
|
|
9333
|
-
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;
|
|
9334
9548
|
operatorId?: number | undefined;
|
|
9335
9549
|
defaultLanguage?: string | undefined;
|
|
9336
9550
|
presentCardOnStopSession?: boolean | undefined;
|
|
@@ -9340,7 +9554,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9340
9554
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9341
9555
|
name: z.ZodOptional<z.ZodString>;
|
|
9342
9556
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9343
|
-
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"]>>;
|
|
9344
9558
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9345
9559
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9346
9560
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9353,7 +9567,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9353
9567
|
chargingZoneId?: number | undefined;
|
|
9354
9568
|
externalId?: string | undefined;
|
|
9355
9569
|
integrationId?: number | undefined;
|
|
9356
|
-
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;
|
|
9357
9571
|
operatorId?: number | undefined;
|
|
9358
9572
|
serialNumber?: string | undefined;
|
|
9359
9573
|
}, {
|
|
@@ -9363,32 +9577,32 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9363
9577
|
chargingZoneId?: number | undefined;
|
|
9364
9578
|
externalId?: string | undefined;
|
|
9365
9579
|
integrationId?: number | undefined;
|
|
9366
|
-
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;
|
|
9367
9581
|
operatorId?: number | undefined;
|
|
9368
9582
|
serialNumber?: string | undefined;
|
|
9369
9583
|
}>, z.ZodObject<{
|
|
9370
9584
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9371
9585
|
name: z.ZodOptional<z.ZodString>;
|
|
9372
9586
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9373
|
-
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"]>>;
|
|
9374
9588
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9375
9589
|
}, "strip", z.ZodTypeAny, {
|
|
9376
9590
|
name?: string | undefined;
|
|
9377
9591
|
id?: number | undefined;
|
|
9378
9592
|
integrationId?: number | undefined;
|
|
9379
|
-
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;
|
|
9380
9594
|
operatorId?: number | undefined;
|
|
9381
9595
|
}, {
|
|
9382
9596
|
name?: string | undefined;
|
|
9383
9597
|
id?: number | undefined;
|
|
9384
9598
|
integrationId?: number | undefined;
|
|
9385
|
-
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;
|
|
9386
9600
|
operatorId?: number | undefined;
|
|
9387
9601
|
}>, z.ZodObject<{
|
|
9388
9602
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9389
9603
|
name: z.ZodOptional<z.ZodString>;
|
|
9390
9604
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9391
|
-
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"]>>;
|
|
9392
9606
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9393
9607
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9394
9608
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9426,7 +9640,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9426
9640
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9427
9641
|
integrationId?: number | undefined;
|
|
9428
9642
|
phone?: string | undefined;
|
|
9429
|
-
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;
|
|
9430
9644
|
operatorId?: number | undefined;
|
|
9431
9645
|
adminToken?: string | undefined;
|
|
9432
9646
|
defaultLanguage?: string | undefined;
|
|
@@ -9449,7 +9663,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9449
9663
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9450
9664
|
integrationId?: number | undefined;
|
|
9451
9665
|
phone?: string | undefined;
|
|
9452
|
-
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;
|
|
9453
9667
|
operatorId?: number | undefined;
|
|
9454
9668
|
adminToken?: string | undefined;
|
|
9455
9669
|
defaultLanguage?: string | undefined;
|
|
@@ -9463,7 +9677,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9463
9677
|
id: z.ZodOptional<z.ZodNumber>;
|
|
9464
9678
|
name: z.ZodOptional<z.ZodString>;
|
|
9465
9679
|
integrationId: z.ZodOptional<z.ZodNumber>;
|
|
9466
|
-
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"]>>;
|
|
9467
9681
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
9468
9682
|
chargingZoneId: z.ZodOptional<z.ZodNumber>;
|
|
9469
9683
|
chargePointId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9499,7 +9713,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9499
9713
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9500
9714
|
integrationId?: number | undefined;
|
|
9501
9715
|
phone?: string | undefined;
|
|
9502
|
-
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;
|
|
9503
9717
|
operatorId?: number | undefined;
|
|
9504
9718
|
adminToken?: string | undefined;
|
|
9505
9719
|
defaultLanguage?: string | undefined;
|
|
@@ -9520,7 +9734,7 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9520
9734
|
networkStatus?: "unknown" | "online" | "offline" | undefined;
|
|
9521
9735
|
integrationId?: number | undefined;
|
|
9522
9736
|
phone?: string | undefined;
|
|
9523
|
-
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;
|
|
9524
9738
|
operatorId?: number | undefined;
|
|
9525
9739
|
adminToken?: string | undefined;
|
|
9526
9740
|
defaultLanguage?: string | undefined;
|
|
@@ -9528,6 +9742,75 @@ export declare const updatePaymentTerminalBody: z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
|
9528
9742
|
serialNumber?: string | undefined;
|
|
9529
9743
|
supportedLanguages?: string[] | undefined;
|
|
9530
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;
|
|
9531
9814
|
}>]>;
|
|
9532
9815
|
export declare const createPcIdBody: z.ZodObject<{
|
|
9533
9816
|
id: z.ZodOptional<z.ZodNumber>;
|