@ampeco/public-api-mcp 3.99.3 → 3.100.0

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.
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "totalEndpoints": 445,
3
- "originalSize": 2524648,
4
- "optimizedSize": 755748,
5
- "reductionPercent": 70.07,
6
- "buildDuration": 718,
3
+ "originalSize": 2537028,
4
+ "optimizedSize": 757612,
5
+ "reductionPercent": 70.14,
6
+ "buildDuration": 679,
7
7
  "responseSchemas": {
8
8
  "total": 445,
9
9
  "withSchemas": 445,
10
- "totalSchemaSize": 1378095,
11
- "averageSchemaSize": 3097
10
+ "totalSchemaSize": 1383701,
11
+ "averageSchemaSize": 3109
12
12
  }
13
13
  }
@@ -6952,6 +6952,11 @@
6952
6952
  "managedByOperator": {
6953
6953
  "type": "boolean"
6954
6954
  },
6955
+ "uptimeTrackingEnabled": {
6956
+ "type": "boolean",
6957
+ "default": false,
6958
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period. When set to false or omitted, Uptime tracking remains disabled. **Requirements:** - Charge point must be commercial type (public or private) - Operator must have operational availability enabled **Validation Errors:** - Returns HTTP 422 if charge point is personal type - Returns HTTP 422 if operator has operational availability disabled **Examples:** ```json { \"name\": \"CP-001\", \"accessType\": \"public\", \"uptimeTrackingEnabled\": true } ``` **Validation Error Examples:** Personal charge point error: ```json { \"message\": \"The given data was invalid.\", \"errors\": { \"uptimeTrackingEnabled\": [ \"Uptime tracking can only be enabled for commercial charge points\" ] } } ``` Operator settings error: ```json { \"message\": \"The given data was invalid.\", \"errors\": { \"uptimeTrackingEnabled\": [ \"Operator must have operational availability enabled to track uptime\" ] } } ```"
6959
+ },
6955
6960
  "tags": {
6956
6961
  "type": "array",
6957
6962
  "items": {
@@ -7212,6 +7217,11 @@
7212
7217
  "managedByOperator": {
7213
7218
  "type": "boolean"
7214
7219
  },
7220
+ "uptimeTrackingEnabled": {
7221
+ "type": "boolean",
7222
+ "default": false,
7223
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period. When set to false or omitted, Uptime tracking remains disabled. **Requirements:** - Charge point must be commercial type (public or private) - Operator must have operational availability enabled **Validation Errors:** - Returns HTTP 422 if charge point is personal type - Returns HTTP 422 if operator has operational availability disabled **Examples:** ```json { \"name\": \"CP-001\", \"accessType\": \"public\", \"uptimeTrackingEnabled\": true } ``` **Validation Error Examples:** Personal charge point error: ```json { \"message\": \"The given data was invalid.\", \"errors\": { \"uptimeTrackingEnabled\": [ \"Uptime tracking can only be enabled for commercial charge points\" ] } } ``` Operator settings error: ```json { \"message\": \"The given data was invalid.\", \"errors\": { \"uptimeTrackingEnabled\": [ \"Operator must have operational availability enabled to track uptime\" ] } } ```"
7224
+ },
7215
7225
  "tags": {
7216
7226
  "type": "array",
7217
7227
  "items": {
@@ -8051,6 +8061,12 @@
8051
8061
  "example": 123,
8052
8062
  "nullable": true,
8053
8063
  "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points."
8064
+ },
8065
+ "installationAndMaintenanceCompanyId": {
8066
+ "type": "integer",
8067
+ "example": 456,
8068
+ "nullable": true,
8069
+ "description": "Optional. The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. Validation: - If provided and not null, must reference a valid I&M company ID that belongs to the operator - Invalid or cross-operator I&M company IDs return validation error: \"The selected installation and maintenance company ID is invalid\" - Can be set to null to remove I&M company assignment"
8054
8070
  }
8055
8071
  },
8056
8072
  "required": [
@@ -8198,6 +8214,12 @@
8198
8214
  "nullable": true,
8199
8215
  "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points."
8200
8216
  },
8217
+ "installationAndMaintenanceCompanyId": {
8218
+ "type": "integer",
8219
+ "example": 456,
8220
+ "nullable": true,
8221
+ "description": "The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. Validation: - If provided and not null, must reference a valid I&M company ID that belongs to the operator - Invalid or cross-operator I&M company IDs return validation error: \"The selected installation and maintenance company ID is invalid\" - Can be set to null to remove I&M company assignment"
8222
+ },
8201
8223
  "subscription": {
8202
8224
  "type": "object",
8203
8225
  "properties": {
@@ -9800,65 +9822,6 @@
9800
9822
  "integrationId"
9801
9823
  ]
9802
9824
  },
9803
- {
9804
- "type": "object",
9805
- "properties": {
9806
- "enabled": {
9807
- "type": "boolean",
9808
- "default": true,
9809
- "description": "Enable or disable the smart charging from owner preferences"
9810
- },
9811
- "type": {
9812
- "type": "string",
9813
- "enum": [
9814
- "energi_elspot"
9815
- ]
9816
- },
9817
- "integrationId": {
9818
- "type": "integer"
9819
- },
9820
- "preferences": {
9821
- "type": "object",
9822
- "properties": {
9823
- "location": {
9824
- "type": "string",
9825
- "enum": [
9826
- "GB1"
9827
- ],
9828
- "description": "The price region based on energi elspot prices api"
9829
- },
9830
- "targetCharge": {
9831
- "type": "object",
9832
- "properties": {
9833
- "departureTime": {
9834
- "type": "string",
9835
- "format": "time"
9836
- },
9837
- "preconditioningTime": {
9838
- "type": "integer",
9839
- "description": "The time in minutes before departure when the charging will be performed with full power."
9840
- },
9841
- "targetChargeKwh": {
9842
- "type": "number",
9843
- "example": 10
9844
- }
9845
- },
9846
- "required": [
9847
- "departureTime",
9848
- "targetChargeKwh"
9849
- ]
9850
- }
9851
- },
9852
- "required": [
9853
- "location",
9854
- "targetCharge"
9855
- ]
9856
- }
9857
- },
9858
- "required": [
9859
- "type"
9860
- ]
9861
- },
9862
9825
  {
9863
9826
  "type": "object",
9864
9827
  "properties": {
@@ -9884,7 +9847,7 @@
9884
9847
  "enum": [
9885
9848
  "GB1"
9886
9849
  ],
9887
- "description": "The price region based on energi elspot prices api"
9850
+ "description": "The price region based on NordPool prices"
9888
9851
  },
9889
9852
  "targetCharge": {
9890
9853
  "type": "object",
@@ -10130,22 +10093,6 @@
10130
10093
  }
10131
10094
  }
10132
10095
  },
10133
- "energiElspot": {
10134
- "summary": "Energi Elspot",
10135
- "value": {
10136
- "enabled": true,
10137
- "type": "energi_elspot",
10138
- "integrationId": 96,
10139
- "preferences": {
10140
- "location": "GB1",
10141
- "targetCharge": {
10142
- "departureTime": "12:00",
10143
- "preconditioningTime": 10,
10144
- "targetChargeKwh": 10
10145
- }
10146
- }
10147
- }
10148
- },
10149
10096
  "nordPool": {
10150
10097
  "summary": "Nordpool",
10151
10098
  "value": {
@@ -14976,7 +14923,6 @@
14976
14923
  "admin_defined",
14977
14924
  "octopus_go",
14978
14925
  "agile_octopus",
14979
- "elspot",
14980
14926
  "nord_pool"
14981
14927
  ]
14982
14928
  }
@@ -17767,19 +17713,7 @@
17767
17713
  },
17768
17714
  "integrationParameters": {
17769
17715
  "type": "object",
17770
- "additionalProperties": {
17771
- "type": "string",
17772
- "nullable": true
17773
- },
17774
- "example": {
17775
- "meterId": "123456789",
17776
- "meterSerialNumber": "123456789",
17777
- "transformerId": "123456789",
17778
- "priceZone": "123456789",
17779
- "latitude": "123.45",
17780
- "longitude": "123.45",
17781
- "dso": "dso"
17782
- },
17716
+ "additionalProperties": true,
17783
17717
  "description": "Flexibility integration parameters."
17784
17718
  },
17785
17719
  "status": {
@@ -17918,19 +17852,7 @@
17918
17852
  },
17919
17853
  "integrationParameters": {
17920
17854
  "type": "object",
17921
- "additionalProperties": {
17922
- "type": "string",
17923
- "nullable": true
17924
- },
17925
- "example": {
17926
- "meterId": "123456789",
17927
- "meterSerialNumber": "123456789",
17928
- "transformerId": "123456789",
17929
- "priceZone": "123456789",
17930
- "latitude": "123.45",
17931
- "longitude": "123.45",
17932
- "dso": "dso"
17933
- },
17855
+ "additionalProperties": true,
17934
17856
  "description": "Flexibility integration parameters."
17935
17857
  }
17936
17858
  }
@@ -23566,9 +23488,6 @@
23566
23488
  "schema": {
23567
23489
  "type": "object",
23568
23490
  "properties": {
23569
- "id": {
23570
- "type": "integer"
23571
- },
23572
23491
  "title": {
23573
23492
  "type": "string"
23574
23493
  },
@@ -23589,6 +23508,12 @@
23589
23508
  "autoRenewal": {
23590
23509
  "type": "boolean"
23591
23510
  },
23511
+ "externalId": {
23512
+ "type": "string",
23513
+ "maxLength": 255,
23514
+ "nullable": true,
23515
+ "description": "Used to store custom information, usually used for external references or metadata to the resource."
23516
+ },
23592
23517
  "accessAndPermissions": {
23593
23518
  "type": "object",
23594
23519
  "properties": {
@@ -23645,13 +23570,13 @@
23645
23570
  "type": "number",
23646
23571
  "format": "float",
23647
23572
  "nullable": true,
23648
- "description": "Additional flat fee that is applied for every billed session and subtracted from the Partners share of the revenue for each session on AC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23573
+ "description": "Additional flat fee that is applied for every billed session and subtracted from the Partner's share of the revenue for each session on AC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23649
23574
  },
23650
23575
  "fixedFeePerSessionDc": {
23651
23576
  "type": "number",
23652
23577
  "format": "float",
23653
23578
  "nullable": true,
23654
- "description": "Additional flat fee that is applied for every billed session and subtracted from the Partners share of the revenue for each session on DC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23579
+ "description": "Additional flat fee that is applied for every billed session and subtracted from the Partner's share of the revenue for each session on DC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23655
23580
  },
23656
23581
  "feePerKwhAc": {
23657
23582
  "type": "number",
@@ -23694,11 +23619,6 @@
23694
23619
  "description": "The provided amount should be excluding VAT."
23695
23620
  }
23696
23621
  }
23697
- },
23698
- "lastUpdatedAt": {
23699
- "type": "string",
23700
- "format": "date-time",
23701
- "description": "ISO 8601 formatted date"
23702
23622
  }
23703
23623
  },
23704
23624
  "required": [
@@ -23771,9 +23691,6 @@
23771
23691
  "schema": {
23772
23692
  "type": "object",
23773
23693
  "properties": {
23774
- "id": {
23775
- "type": "integer"
23776
- },
23777
23694
  "title": {
23778
23695
  "type": "string"
23779
23696
  },
@@ -23794,6 +23711,12 @@
23794
23711
  "autoRenewal": {
23795
23712
  "type": "boolean"
23796
23713
  },
23714
+ "externalId": {
23715
+ "type": "string",
23716
+ "maxLength": 255,
23717
+ "nullable": true,
23718
+ "description": "Used to store custom information, usually used for external references or metadata to the resource."
23719
+ },
23797
23720
  "accessAndPermissions": {
23798
23721
  "type": "object",
23799
23722
  "properties": {
@@ -23850,13 +23773,13 @@
23850
23773
  "type": "number",
23851
23774
  "format": "float",
23852
23775
  "nullable": true,
23853
- "description": "Additional flat fee that is applied for every billed session and subtracted from the Partners share of the revenue for each session on AC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23776
+ "description": "Additional flat fee that is applied for every billed session and subtracted from the Partner's share of the revenue for each session on AC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23854
23777
  },
23855
23778
  "fixedFeePerSessionDc": {
23856
23779
  "type": "number",
23857
23780
  "format": "float",
23858
23781
  "nullable": true,
23859
- "description": "Additional flat fee that is applied for every billed session and subtracted from the Partners share of the revenue for each session on DC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23782
+ "description": "Additional flat fee that is applied for every billed session and subtracted from the Partner's share of the revenue for each session on DC Charging Station. This fee is available only if the feature \"Additional Platform Fees\" is enabled for the system."
23860
23783
  },
23861
23784
  "feePerKwhAc": {
23862
23785
  "type": "number",
@@ -23899,11 +23822,6 @@
23899
23822
  "description": "The provided amount should be excluding VAT."
23900
23823
  }
23901
23824
  }
23902
- },
23903
- "lastUpdatedAt": {
23904
- "type": "string",
23905
- "format": "date-time",
23906
- "description": "ISO 8601 formatted date"
23907
23825
  }
23908
23826
  },
23909
23827
  "required": [
@@ -40882,7 +40800,7 @@
40882
40800
  ],
40883
40801
  "info": {
40884
40802
  "title": "AMPECO.CHARGE Public API",
40885
- "version": "3.99.3",
40803
+ "version": "3.100.0",
40886
40804
  "description": "AMPECO.CHARGE Public API provides you with the option to use AMPECO.CHARGE's backend in a server-to-server manner\n"
40887
40805
  },
40888
40806
  "servers": [
@@ -40896,18 +40814,18 @@
40896
40814
  }
40897
40815
  }
40898
40816
  ],
40899
- "buildTimestamp": "2025-10-29T11:31:08.646Z",
40817
+ "buildTimestamp": "2025-10-29T13:54:37.951Z",
40900
40818
  "stats": {
40901
40819
  "totalEndpoints": 445,
40902
- "originalSize": 2524648,
40903
- "optimizedSize": 755748,
40904
- "reductionPercent": 70.07,
40905
- "buildDuration": 718,
40820
+ "originalSize": 2537028,
40821
+ "optimizedSize": 757612,
40822
+ "reductionPercent": 70.14,
40823
+ "buildDuration": 679,
40906
40824
  "responseSchemas": {
40907
40825
  "total": 445,
40908
40826
  "withSchemas": 445,
40909
- "totalSchemaSize": 1378095,
40910
- "averageSchemaSize": 3097
40827
+ "totalSchemaSize": 1383701,
40828
+ "averageSchemaSize": 3109
40911
40829
  }
40912
40830
  }
40913
40831
  }