@ampeco/public-api-mcp 3.106.2 → 3.106.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/build-stats.json +6 -6
- package/dist/generated/endpoints.json +52 -73
- package/dist/generated/response-schemas.json +141 -204
- package/dist/generated/schemas.d.ts +15 -15
- package/dist/generated/schemas.js +3 -3
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +3 -3
- package/package.json +1 -1
|
@@ -1582,27 +1582,27 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1582
1582
|
endAt: z.ZodString;
|
|
1583
1583
|
evseId: z.ZodOptional<z.ZodNumber>;
|
|
1584
1584
|
evseCriteria: z.ZodOptional<z.ZodObject<{
|
|
1585
|
-
currentType: z.ZodOptional<z.
|
|
1585
|
+
currentType: z.ZodOptional<z.ZodEnum<["ac", "dc"]>>;
|
|
1586
1586
|
minPower: z.ZodOptional<z.ZodNumber>;
|
|
1587
1587
|
maxPower: z.ZodOptional<z.ZodNumber>;
|
|
1588
|
-
connectorType: z.ZodOptional<z.
|
|
1588
|
+
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"]>>;
|
|
1589
1589
|
}, "strip", z.ZodTypeAny, {
|
|
1590
1590
|
maxPower?: number | undefined;
|
|
1591
|
-
currentType?: "ac" | "dc" |
|
|
1591
|
+
currentType?: "ac" | "dc" | undefined;
|
|
1592
1592
|
minPower?: number | undefined;
|
|
1593
|
-
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" |
|
|
1593
|
+
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;
|
|
1594
1594
|
}, {
|
|
1595
1595
|
maxPower?: number | undefined;
|
|
1596
|
-
currentType?: "ac" | "dc" |
|
|
1596
|
+
currentType?: "ac" | "dc" | undefined;
|
|
1597
1597
|
minPower?: number | undefined;
|
|
1598
|
-
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" |
|
|
1598
|
+
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;
|
|
1599
1599
|
}>>;
|
|
1600
1600
|
parkingSpaceCriteria: z.ZodOptional<z.ZodObject<{
|
|
1601
1601
|
vehicleWeightKg: z.ZodOptional<z.ZodNumber>;
|
|
1602
1602
|
vehicleHeightCm: z.ZodOptional<z.ZodNumber>;
|
|
1603
1603
|
vehicleLengthCm: z.ZodOptional<z.ZodNumber>;
|
|
1604
1604
|
vehicleWidthCm: z.ZodOptional<z.ZodNumber>;
|
|
1605
|
-
vehicleType: z.ZodOptional<z.
|
|
1605
|
+
vehicleType: z.ZodOptional<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"]>>;
|
|
1606
1606
|
driveThroughRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1607
1607
|
refrigerationOutletRequired: z.ZodOptional<z.ZodBoolean>;
|
|
1608
1608
|
dangerousGoodsAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1611,7 +1611,7 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1611
1611
|
vehicleHeightCm?: number | undefined;
|
|
1612
1612
|
vehicleLengthCm?: number | undefined;
|
|
1613
1613
|
vehicleWidthCm?: number | undefined;
|
|
1614
|
-
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" |
|
|
1614
|
+
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" | undefined;
|
|
1615
1615
|
driveThroughRequired?: boolean | undefined;
|
|
1616
1616
|
refrigerationOutletRequired?: boolean | undefined;
|
|
1617
1617
|
dangerousGoodsAllowed?: boolean | undefined;
|
|
@@ -1620,7 +1620,7 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1620
1620
|
vehicleHeightCm?: number | undefined;
|
|
1621
1621
|
vehicleLengthCm?: number | undefined;
|
|
1622
1622
|
vehicleWidthCm?: number | undefined;
|
|
1623
|
-
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" |
|
|
1623
|
+
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" | undefined;
|
|
1624
1624
|
driveThroughRequired?: boolean | undefined;
|
|
1625
1625
|
refrigerationOutletRequired?: boolean | undefined;
|
|
1626
1626
|
dangerousGoodsAllowed?: boolean | undefined;
|
|
@@ -1641,16 +1641,16 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1641
1641
|
externalId?: string | undefined;
|
|
1642
1642
|
evseCriteria?: {
|
|
1643
1643
|
maxPower?: number | undefined;
|
|
1644
|
-
currentType?: "ac" | "dc" |
|
|
1644
|
+
currentType?: "ac" | "dc" | undefined;
|
|
1645
1645
|
minPower?: number | undefined;
|
|
1646
|
-
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" |
|
|
1646
|
+
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;
|
|
1647
1647
|
} | undefined;
|
|
1648
1648
|
parkingSpaceCriteria?: {
|
|
1649
1649
|
vehicleWeightKg?: number | undefined;
|
|
1650
1650
|
vehicleHeightCm?: number | undefined;
|
|
1651
1651
|
vehicleLengthCm?: number | undefined;
|
|
1652
1652
|
vehicleWidthCm?: number | undefined;
|
|
1653
|
-
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" |
|
|
1653
|
+
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" | undefined;
|
|
1654
1654
|
driveThroughRequired?: boolean | undefined;
|
|
1655
1655
|
refrigerationOutletRequired?: boolean | undefined;
|
|
1656
1656
|
dangerousGoodsAllowed?: boolean | undefined;
|
|
@@ -1671,16 +1671,16 @@ export declare const bookingRequestCreateBody: z.ZodUnion<[z.ZodObject<{
|
|
|
1671
1671
|
externalId?: string | undefined;
|
|
1672
1672
|
evseCriteria?: {
|
|
1673
1673
|
maxPower?: number | undefined;
|
|
1674
|
-
currentType?: "ac" | "dc" |
|
|
1674
|
+
currentType?: "ac" | "dc" | undefined;
|
|
1675
1675
|
minPower?: number | undefined;
|
|
1676
|
-
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" |
|
|
1676
|
+
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;
|
|
1677
1677
|
} | undefined;
|
|
1678
1678
|
parkingSpaceCriteria?: {
|
|
1679
1679
|
vehicleWeightKg?: number | undefined;
|
|
1680
1680
|
vehicleHeightCm?: number | undefined;
|
|
1681
1681
|
vehicleLengthCm?: number | undefined;
|
|
1682
1682
|
vehicleWidthCm?: number | undefined;
|
|
1683
|
-
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" |
|
|
1683
|
+
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" | undefined;
|
|
1684
1684
|
driveThroughRequired?: boolean | undefined;
|
|
1685
1685
|
refrigerationOutletRequired?: boolean | undefined;
|
|
1686
1686
|
dangerousGoodsAllowed?: boolean | undefined;
|
|
@@ -521,17 +521,17 @@ export const bookingRequestCreateBody = z.union([z.object({
|
|
|
521
521
|
endAt: z.string().datetime(),
|
|
522
522
|
evseId: z.number().int().optional(),
|
|
523
523
|
evseCriteria: z.object({
|
|
524
|
-
currentType: z.
|
|
524
|
+
currentType: z.enum(["ac", "dc"]).optional(),
|
|
525
525
|
minPower: z.number().optional(),
|
|
526
526
|
maxPower: z.number().optional(),
|
|
527
|
-
connectorType: z.
|
|
527
|
+
connectorType: z.enum(["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"]).optional()
|
|
528
528
|
}).optional(),
|
|
529
529
|
parkingSpaceCriteria: z.object({
|
|
530
530
|
vehicleWeightKg: z.number().int().min(1).optional(),
|
|
531
531
|
vehicleHeightCm: z.number().int().min(1).optional(),
|
|
532
532
|
vehicleLengthCm: z.number().int().min(1).optional(),
|
|
533
533
|
vehicleWidthCm: z.number().int().min(1).optional(),
|
|
534
|
-
vehicleType: z.
|
|
534
|
+
vehicleType: z.enum(["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"]).optional(),
|
|
535
535
|
driveThroughRequired: z.boolean().optional(),
|
|
536
536
|
refrigerationOutletRequired: z.boolean().optional(),
|
|
537
537
|
dangerousGoodsAllowed: z.boolean().optional()
|