@epilot/metering-client 0.6.0 → 0.7.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.
- package/README.md +1 -1
- package/dist/definition.js +1 -1
- package/dist/index.js +0 -1
- package/dist/openapi.d.ts +128 -81
- package/dist/openapi.json +266 -130
- package/package.json +4 -4
- package/LICENSE +0 -21
package/README.md
CHANGED
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={914:function(e,t,r){var s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var n=s(r(534));t.default=n.default},534:e=>{e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"Metering API","version":"1.0.0"},"tags":[{"name":"ECP","description":"APIs defined for a portal user"},{"name":"ECP Admin","description":"APIs defined for a ECP Admin"}],"security":[{"EpilotAuth":[]},{"PortalAuth":[]},{"EitherAuth":[]}],"paths":{"/v1/metering/meter":{"get":{"operationId":"getCustomerMeters","summary":"Get Customer Meters","description":"Retrieves all meters related to a customer.","tags":["ECP"],"security":[{"PortalAuth":[]}],"responses":{"200":{"description":"Customer meters retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Meter"},{"type":"object","properties":{"journey_actions":{"$ref":"#/components/schemas/JourneyActions"}}}]}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/contract/meters/{contract_id}":{"get":{"operationId":"getMetersByContractId","summary":"getMetersByContractId","description":"Retrieves all meters related to a contract.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"contract_id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the Contract."}],"responses":{"200":{"description":"Meters related to the contract retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/Meter"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/meter/{id}":{"patch":{"operationId":"updateMeter","summary":"Update Meter","description":"Updates the details of a meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the meter."}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Entity"}}}},"responses":{"200":{"description":"Meter updated successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Meter"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"get":{"operationId":"getMeter","summary":"Get Meter","description":"Retrieves the details of a meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the meter."}],"responses":{"200":{"description":"Meter retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"entity":{"$ref":"#/components/schemas/Meter"},"journey_actions":{"$ref":"#/components/schemas/JourneyActions"},"relations":{"type":"array","items":{"$ref":"#/components/schemas/EntityItem"}}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/counter":{"get":{"operationId":"getMeterCounters","summary":"Get Meter Counters","description":"Retrieves all counters for a given meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"query","name":"meter_id","required":true,"schema":{"$ref":"#/components/schemas/EntityId"}}],"responses":{"200":{"description":"Counters retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterCounter"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/counter/{counter_id}":{"get":{"operationId":"getCounterDetails","summary":"Get Counter Details","description":"Retrieves the details of a meter counter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter."}],"responses":{"200":{"description":"Counter details retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterCounter"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading":{"post":{"operationId":"createMeterReading","summary":"Create Meter Reading","description":"Inserts a new meter reading.","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeterReading"}}}},"responses":{"200":{"description":"Meter reading created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/readings":{"post":{"operationId":"createMeterReadings","summary":"Create Meter Readings","description":"Inserts multiple meter readings at once. Limited to 100 readings per request.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"query","name":"async","description":"Don\'t wait for the reading to become available in GetReadings API. Useful for large migrations","required":false,"schema":{"type":"boolean","default":true}},{"$ref":"#/components/parameters/ActivityIdQueryParam"}],"requestBody":{"description":"Meter readings payload. Limited to 100 readings per request.","required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"readings":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"responses":{"200":{"description":"Meter readings created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/submission":{"post":{"operationId":"createMeterReadingFromSubmission","summary":"Create Meter Reading from Submission","description":"Creates a reading from a journey submission.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"properties":{"org_id":{"type":"string","example":"123","description":"ID of the organization"},"entity":{"type":"object","additionalProperties":true,"properties":{"_org":{"type":"string","example":"123","description":"ID of the organization"},"meterReadings":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionMeterReading"}}}}}}}}},"responses":{"200":{"description":"Meter reading created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","enum":["Successfully Processed"]}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/allowed/reading/{meter_id}":{"get":{"operationId":"getAllowedReadingForMeter","summary":"getAllowedReadingForMeter","description":"Get allowed reading for the given meter","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter."},{"in":"query","name":"timestamp","required":false,"description":"If not provided, the system will default to now.","schema":{"type":"string","example":"2022-10-01T10:10:00.000Z"}}],"responses":{"200":{"description":"Recent reading for the meter fetched successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"counter_id":{"$ref":"#/components/schemas/Id"},"min_value":{"type":"number","description":"Minimum allowed reading value for the meter"},"max_value":{"type":"number","description":"Maximum allowed reading value for the meter"}}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/with-meter":{"post":{"operationId":"createReadingWithMeter","summary":"Create Reading with Meter","description":"Creates a reading along with a meter.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadingWithMeter"}}}},"responses":{"200":{"description":"Reading with meter created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/{meter_id}/{counter_id}":{"get":{"operationId":"getReadingsByInterval","summary":"Get Readings by Interval","description":"Retrieves all readings specified in an interval.\\nIf the start_date and end_date are equal, then it returns the readings of the specified date.\\nThe start_date should be less than or equal to the end_date.\\n","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter."},{"in":"query","name":"start_date","required":false,"description":"If not provided, the system will default to 2000-01-01.","schema":{"type":"string","example":"2022-10-01"}},{"in":"query","name":"end_date","required":false,"description":"If not provided, the system will default to today\'s date.","schema":{"type":"string","example":"2022-10-10"}},{"in":"query","name":"direction","required":false,"schema":{"$ref":"#/components/schemas/Direction"}},{"in":"query","name":"size","description":"Returns the first n results after the specified offset (from).\\nIf this value is provided as -1, then it returns all results at once.\\n","required":false,"schema":{"type":"number","example":20,"default":20}},{"in":"query","name":"from","required":false,"schema":{"type":"number","example":0,"default":0}},{"in":"query","name":"type","required":true,"description":"Since meter readings are cumulative, users may need to request actual consumptions, which are the difference between consecutive measurements.\\nIf this value is provided as \\"cumulative\\", then actual readings will be returned.\\nIf this value is provided as \\"relative\\", then actual consumption will be returned.\\n","schema":{"type":"string","default":"cumulative","enum":["cumulative","relative"]}},{"in":"query","name":"sort","required":false,"schema":{"type":"string","default":"asc","enum":["asc","desc"]},"description":"If this value is provided as \\"asc\\", then the results will be sorted by the timestamp field in ascending order.\\nIf this value is provided as \\"desc\\", then the results will be sorted by the timestamp field in descending order.\\n"}],"responses":{"200":{"description":"Readings retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}},"hits":{"type":"number","example":120},"firstRecordCreatedAt":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"put":{"operationId":"updateMeterReading","summary":"Update Meter Reading","description":"Updates a meter reading.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter entity."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter entity."},{"in":"query","name":"timestamp","required":true,"description":"The timestamp when the reading was created.","schema":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}],"requestBody":{"description":"Update meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeterReading"}}}},"responses":{"200":{"description":"Meter reading updated successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"delete":{"operationId":"deleteMeterReading","summary":"Delete Meter Reading","description":"Deletes a meter reading.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter entity."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter entity."},{"in":"query","name":"timestamp","required":true,"description":"The timestamp when the reading was created.","schema":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}],"responses":{"200":{"description":"Meter reading deleted successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"meterId":{"$ref":"#/components/schemas/Id"},"counterId":{"$ref":"#/components/schemas/Id"},"timestamp":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/down-sample/readings/{meter_id}/{counter_id}":{"get":{"operationId":"getDownSampleReadingsByInterval","summary":"Get Down Sample Readings by Interval","description":"Retrieves the downsampled data of the entire readings specified in an interval.\\nIf the start_date and end_date are equal, then it returns the readings of the specified date.\\nThe start_date should be less than or equal to the end_date.\\n","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter."},{"in":"query","name":"start_date","required":false,"description":"If not provided, the system will default to 2000-01-01.","schema":{"type":"string","example":"2022-10-01"}},{"in":"query","name":"end_date","required":false,"description":"If not provided, the system will default to today\'s date.","schema":{"type":"string","example":"2022-10-10"}},{"in":"query","name":"group_by","schema":{"type":"string","default":"day","enum":["day","week","month","year"]}},{"in":"query","name":"direction","required":false,"schema":{"$ref":"#/components/schemas/Direction"}},{"in":"query","name":"sort","required":false,"schema":{"type":"string","default":"asc","enum":["asc","desc"]},"description":"If this value is provided as \\"asc\\", then the results will be sorted by the timestamp field in ascending order.\\nIf this value is provided as \\"desc\\", then the results will be sorted by the timestamp field in descending order.\\n"}],"responses":{"200":{"description":"Downsampled readings retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"responses":{"InvalidRequest":{"description":"The request could not be validated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"Unauthorized":{"description":"Could not authenticate the user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"Forbidden":{"description":"The user is not allowed to access this resource","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"NotFound":{"description":"The specified resource was not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"InternalServerError":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}}},"securitySchemes":{"EpilotAuth":{"type":"http","scheme":"bearer","description":"Authorization header with ePilot OAuth2 bearer token","bearerFormat":"JWT"},"PortalAuth":{"type":"http","scheme":"bearer","description":"Authorization header with customer portal OAuth2 bearer token","bearerFormat":"JWT"},"EitherAuth":{"type":"http","scheme":"bearer","description":"Portal or Epilot Bearer Token"},"AsOrganization":{"type":"apiKey","in":"header","name":"x-ivy-org-id","description":"Set organization id as internal user"}},"schemas":{"ErrorResp":{"type":"object","properties":{"message":{"type":"string","description":"Error message"}}},"EntityId":{"type":"string","format":"uuid"},"EntitySlug":{"description":"URL-friendly identifier for the entity schema","type":"string","example":"contact"},"BaseEntity":{"type":"object","properties":{"_id":{"$ref":"#/components/schemas/EntityId","description":"Entity ID","example":"3fa85f64-5717-4562-b3fc-2c963f66afa6"},"_title":{"type":"string","description":"Title of the entity","example":"Example Entity"},"_org":{"type":"string","description":"Organization ID the entity belongs to","example":"123"},"_tags":{"type":"array","items":{"type":"string"},"description":"Array of entity tags","example":["example","mock"]},"_created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the entity","example":"2021-02-09T12:41:43.662Z"},"_updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the entity","example":"2021-02-09T12:41:43.662Z"}},"required":["_id","_title","_org","_created_at","_updated_at"]},"Entity":{"type":"object","properties":{},"additionalProperties":true},"EntityItem":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"$ref":"#/components/schemas/Entity"}]},"Id":{"type":"string"},"EntityRelation":{"type":"object","properties":{"entity_id":{"$ref":"#/components/schemas/EntityId"},"_slug":{"type":"string","enum":["contact","contract"]}}},"Meter":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"type":"object","required":["_schema"],"properties":{"_schema":{"type":"string","enum":["meter"],"description":"The schema type of the meter"},"ma_lo_id":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"meter_type":{"type":"string","enum":["three-phase-meter","bellow-gas-meter","rotary-piston-meter","smart-meter","performance-meter","maximum-meter","turbine-gas-meter","ultrasonic-gas-meter","alternating-current-meter","modern-metering-system","intelligent-measuring-system","electronic-meter"],"description":"The type of the meter"},"tariff_type":{"type":"string","example":"Peak load tariff","description":"The tariff type of the meter"},"meter_number":{"type":"string","example":"J-1093-1AK","description":"The number of the meter"},"sector":{"type":"string","enum":["power","water","gas","district_heating","waste_water"],"description":"The sector to which the meter belongs"},"location":{"type":"object","example":[{"country":"Germany","city":"Koln","postal_code":81475,"street":"Melatengürtel","street_number":71,"additional_info":"5. Etage","_tags":["billing","delivery"]}],"description":"The location information of the meter"},"used_for":{"type":"string","example":"Domestic Usage","description":"The usage purpose of the meter"},"manufacturer":{"type":"string","example":"Energy One","description":"The manufacturer of the meter"},"calibration_date":{"type":"string","example":"2022-10-10T00:00:00.000Z","description":"The calibration date of the meter"},"contract":{"type":"object","properties":{"$relation":{"type":"array","items":{"$ref":"#/components/schemas/EntityRelation"}}},"description":"The contract associated with the meter"},"customer":{"type":"object","properties":{"$relation":{"type":"array","items":{"$ref":"#/components/schemas/EntityRelation"}}},"description":"The customer associated with the meter"}}}]},"Direction":{"type":"string","enum":["feed-in","feed-out"]},"TariffType":{"type":"string","enum":["ht","nt"]},"Reason":{"type":"string","nullable":true,"example":"Storing the feed-in record","description":"The reason for recording the reading"},"ReadBy":{"type":"string","nullable":true,"example":"John Doe","description":"The person who recorded the reading"},"ReadingStatus":{"type":"string","nullable":true,"enum":["valid","in-validation","implausible",null,""]},"MeterReading":{"type":"object","required":["value","meter_id","source"],"properties":{"value":{"type":"number","example":240,"description":"The reading value of the meter"},"read_by":{"$ref":"#/components/schemas/ReadBy"},"reason":{"$ref":"#/components/schemas/Reason"},"meter_id":{"$ref":"#/components/schemas/EntityId","description":"The ID of the associated meter"},"counter_id":{"$ref":"#/components/schemas/EntityId","description":"The ID of the associated meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading (feed-in or feed-out)"},"timestamp":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T00:00:00.000Z"},"source":{"$ref":"#/components/schemas/Source","description":"The source of the reading"},"status":{"$ref":"#/components/schemas/ReadingStatus","description":"The status of the reading"}}},"MeterCounter":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"type":"object","required":["_schema"],"properties":{"_id":{"$ref":"#/components/schemas/EntityId"},"_schema":{"type":"string","enum":["meter_counter"]},"obis_number":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the meter counter"},"transformer_ratio":{"type":"number","example":70,"description":"The transformer ratio of the meter counter"},"unit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the meter counter"},"forecast_reading_value":{"type":"string","example":270,"description":"The forecast reading value of the meter counter"},"forecast_as_of":{"type":"string","example":"2022-12-10T00:00:00.000Z","description":"The date as of which the forecast reading value is applicable"},"current_consumption":{"type":"number","example":240,"description":"The current consumption value of the meter counter"},"last_reading":{"type":"string","example":"2022-10-10T00:00:00.000Z","description":"The timestamp of the last reading"},"conversion_factor":{"type":"number","example":3,"description":"The conversion factor for the meter counter"},"tariff_type":{"$ref":"#/components/schemas/TariffType","description":"The tariff type of the meter counter"}}}]},"CounterReadingOnSubmission":{"type":"object","required":["counterId","direction","value"],"properties":{"counterId":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading (feed-in or feed-out)"},"unit":{"type":"string","enum":["w","wh","kw","kWh","kvarh","mw","mWh","unit","cubic-meter","hour","day","month","year","percentage"],"description":"The unit of measurement for the reading"},"value":{"type":"number","example":240,"description":"The reading value of the meter counter"}}},"SubmissionMeterReading":{"type":"object","required":["meterId"],"nullable":true,"properties":{"meterId":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter"},"readings":{"type":"array","items":{"$ref":"#/components/schemas/CounterReadingOnSubmission"},"description":"- The counter readings of a meter\\n- This is only sent when the user is authenticated while submitting a journey\\n"},"readingValue":{"type":"number","example":240,"description":"The reading value of the meter when the counterId is passed or when the meterType is one-tariff"},"readingDate":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T10:10:00.000Z"},"readBy":{"type":"string","example":"John Doe","description":"The person who recorded the reading"},"reason":{"$ref":"#/components/schemas/Reason"},"maloId":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"obisNumber":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"readingUnit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the reading"},"meterType":{"type":"string","enum":["one_tariff","two_tariff","bi_directional"],"description":"The type of the meter"},"feedInValue":{"type":"number","example":240,"description":"The feed-in value of the meter when meterType is one-tariff or bi-directional"},"feedOutValue":{"type":"number","example":240,"description":"The feed-out value of the meter when meterType is bi-directional"},"htValue":{"type":"number","example":240,"description":"The high-peak tariff value of the meter when meterType is two-tariff"},"ntValue":{"type":"number","example":240,"description":"The off-peak tariff value of the meter when meterType is two-tariff"}}},"Unit":{"type":"string","enum":["w","wh","kw","kWh","kvarh","mw","mWh","unit","cubic-meter","hour","day","month","year","percentage"]},"Source":{"type":"string","enum":["ECP","ERP","360","journey-submission"]},"ActionLabel":{"type":"object","properties":{"en":{"type":"string","nullable":true},"de":{"type":"string","nullable":true}}},"Rule":{"type":"object","properties":{"entity":{"type":"string","nullable":true},"attribute":{"type":"string","nullable":true},"attribute_value":{"type":"string","nullable":true}}},"JourneyActions":{"type":"object","properties":{"journey_id":{"type":"string","nullable":true},"action_label":{"type":"object","$ref":"#/components/schemas/ActionLabel","nullable":true},"slug":{"type":"string","nullable":true},"rules":{"type":"array","items":{"$ref":"#/components/schemas/Rule"},"nullable":true}}},"ReadingWithMeter":{"type":"object","properties":{"ma_lo_id":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"meter_id":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter"},"obis_number":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"unit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the reading"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading"},"tariff_type":{"$ref":"#/components/schemas/TariffType","description":"The tariff type of the reading"},"value":{"type":"number","example":240,"description":"The reading value"},"read_by":{"$ref":"#/components/schemas/ReadBy"},"reason":{"$ref":"#/components/schemas/Reason"},"timestamp":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T10:10:00.000Z"},"source":{"$ref":"#/components/schemas/Source","description":"The source of the reading"}}},"ActivityId":{"type":"string","format":"ulid","description":"See https://github.com/ulid/spec","example":"01F130Q52Q6MWSNS8N2AVXV4JN"}},"parameters":{"ActivityIdQueryParam":{"name":"activity_id","description":"Activity to include in event feed","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ActivityId"}}}},"servers":[{"url":"https://metering.sls.epilot.io"}]}')}},t={},r=function r(s){var n=t[s];if(void 0!==n)return n.exports;var o=t[s]={exports:{}};return e[s].call(o.exports,o,o.exports,r),o.exports}(914),s=exports;for(var n in r)s[n]=r[n];r.__esModule&&Object.defineProperty(s,"__esModule",{value:!0})})();
|
|
1
|
+
(()=>{"use strict";var e={914:function(e,t,r){var s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var n=s(r(534));t.default=n.default},534:e=>{e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"Metering API","version":"1.0.0"},"tags":[{"name":"ECP","description":"APIs defined for a portal user"},{"name":"ECP Admin","description":"APIs defined for a ECP Admin"}],"security":[{"EpilotAuth":[]},{"PortalAuth":[]},{"EitherAuth":[]}],"paths":{"/v1/metering/meter":{"get":{"operationId":"getCustomerMeters","summary":"Get Customer Meters","description":"Retrieves all meters related to a customer.","tags":["ECP"],"security":[{"PortalAuth":[]}],"responses":{"200":{"description":"Customer meters retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Meter"},{"type":"object","properties":{"journey_actions":{"$ref":"#/components/schemas/JourneyActions"}}}]}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/contract/meters/{contract_id}":{"get":{"operationId":"getMetersByContractId","summary":"getMetersByContractId","description":"Retrieves all meters related to a contract.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"contract_id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the Contract."}],"responses":{"200":{"description":"Meters related to the contract retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/Meter"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/meter/{id}":{"patch":{"operationId":"updateMeter","summary":"Update Meter","description":"Updates the details of a meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the meter."}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Entity"}}}},"responses":{"200":{"description":"Meter updated successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Meter"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestUpdateMeter"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"get":{"operationId":"getMeter","summary":"Get Meter","description":"Retrieves the details of a meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"id","schema":{"$ref":"#/components/schemas/EntityId"},"required":true,"description":"The ID of the meter."}],"responses":{"200":{"description":"Meter retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"entity":{"$ref":"#/components/schemas/Meter"},"journey_actions":{"$ref":"#/components/schemas/JourneyActions"},"relations":{"type":"array","items":{"$ref":"#/components/schemas/EntityItem"}}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/counter":{"get":{"operationId":"getMeterCounters","summary":"Get Meter Counters","description":"Retrieves all counters for a given meter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"query","name":"meter_id","required":true,"schema":{"$ref":"#/components/schemas/EntityId"}}],"responses":{"200":{"description":"Counters retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterCounter"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/counter/{counter_id}":{"get":{"operationId":"getCounterDetails","summary":"Get Counter Details","description":"Retrieves the details of a meter counter.","tags":["ECP"],"security":[{"PortalAuth":[]}],"parameters":[{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter."}],"responses":{"200":{"description":"Counter details retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterCounter"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading":{"post":{"operationId":"createMeterReading","summary":"Create Meter Reading","description":"Inserts a new meter reading.","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeterReading"}}}},"responses":{"200":{"description":"Meter reading created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestCreateMeterReading"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/readings":{"post":{"operationId":"createMeterReadings","summary":"Create Meter Readings","description":"Inserts multiple meter readings at once. Limited to 100 readings per request.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"query","name":"async","description":"Don\'t wait for the reading to become available in GetReadings API. Useful for large migrations","required":false,"schema":{"type":"boolean","default":true}},{"$ref":"#/components/parameters/ActivityIdQueryParam"}],"requestBody":{"description":"Meter readings payload. Limited to 100 readings per request.","required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"readings":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"responses":{"200":{"description":"Meter readings created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestCreateMeterReadings"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v2/metering/readings":{"post":{"operationId":"batchWriteMeterReadings","summary":"Batch Write Readings","description":"Upserts/Deletes multiple meter readings at once. Limited to 100 readings per request.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"query","name":"async","description":"Don\'t wait for the reading to become available in GetReadings API. Useful for large migrations","required":false,"schema":{"type":"boolean","default":true}},{"$ref":"#/components/parameters/ActivityIdQueryParam"}],"requestBody":{"description":"Meter readings payload. Limited to 100 readings per request.","required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"readings":{"type":"array","items":{"allOf":[{"$ref":"#/components/schemas/MeterReading"},{"properties":{"operation":{"type":"string","enum":["create","update","delete"],"default":"create"}}}]}}}}}}},"responses":{"200":{"description":"Meter readings created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestCreateMeterReadings"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/submission":{"post":{"operationId":"createMeterReadingFromSubmission","summary":"Create Meter Reading from Submission","description":"Creates a reading from a journey submission.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"properties":{"org_id":{"type":"string","example":"123","description":"ID of the organization"},"entity":{"type":"object","additionalProperties":true,"properties":{"_org":{"type":"string","example":"123","description":"ID of the organization"},"meterReadings":{"type":"array","items":{"$ref":"#/components/schemas/SubmissionMeterReading"}}}}}}}}},"responses":{"200":{"description":"Meter reading created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","enum":["Successfully Processed"]}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestCreateMeterReadingFromSubmission"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/allowed/reading/{meter_id}":{"get":{"operationId":"getAllowedReadingForMeter","summary":"getAllowedReadingForMeter","description":"Get allowed reading for the given meter","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter."},{"in":"query","name":"timestamp","required":false,"description":"If not provided, the system will default to now.","schema":{"type":"string","example":"2022-10-01T10:10:00.000Z"}}],"responses":{"200":{"description":"Recent reading for the meter fetched successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"type":"object","properties":{"counter_id":{"$ref":"#/components/schemas/Id"},"min_value":{"type":"number","description":"Minimum allowed reading value for the meter"},"max_value":{"type":"number","description":"Maximum allowed reading value for the meter"}}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/with-meter":{"post":{"operationId":"createReadingWithMeter","summary":"Create Reading with Meter","description":"Creates a reading along with a meter.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"requestBody":{"description":"Meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadingWithMeter"}}}},"responses":{"200":{"description":"Reading with meter created successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestCreateReadingWithMeter"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}},"/v1/metering/reading/{meter_id}/{counter_id}":{"get":{"operationId":"getReadingsByInterval","summary":"Get Readings by Interval","description":"Retrieves all readings specified in an interval.\\nIf the start_date and end_date are equal, then it returns the readings of the specified date.\\nThe start_date should be less than or equal to the end_date.\\n","tags":["ECP Admin","ECP"],"security":[{"EitherAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter."},{"in":"query","name":"start_date","required":false,"description":"If not provided, the system will default to 2000-01-01.","schema":{"type":"string","example":"2022-10-01"}},{"in":"query","name":"end_date","required":false,"description":"If not provided, the system will default to today\'s date.","schema":{"type":"string","example":"2022-10-10"}},{"in":"query","name":"direction","required":false,"schema":{"$ref":"#/components/schemas/Direction"}},{"in":"query","name":"size","description":"Returns the first n results after the specified offset (from).\\nIf this value is provided as -1, then it returns all results at once.\\n","required":false,"schema":{"type":"number","example":20,"default":20}},{"in":"query","name":"from","required":false,"schema":{"type":"number","example":0,"default":0}},{"in":"query","name":"type","required":true,"description":"Since meter readings are cumulative, users may need to request actual consumptions, which are the difference between consecutive measurements.\\nIf this value is provided as \\"cumulative\\", then actual readings will be returned.\\nIf this value is provided as \\"relative\\", then actual consumption will be returned.\\n","schema":{"type":"string","default":"cumulative","enum":["cumulative","relative"]}},{"in":"query","name":"sort","required":false,"schema":{"type":"string","default":"asc","enum":["asc","desc"]},"description":"If this value is provided as \\"asc\\", then the results will be sorted by the timestamp field in ascending order.\\nIf this value is provided as \\"desc\\", then the results will be sorted by the timestamp field in descending order.\\n"}],"responses":{"200":{"description":"Readings retrieved successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"results":{"type":"array","items":{"$ref":"#/components/schemas/MeterReading"}},"hits":{"type":"number","example":120},"firstRecordCreatedAt":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"put":{"operationId":"updateMeterReading","summary":"Update Meter Reading","description":"Updates a meter reading.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter entity."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter entity."},{"in":"query","name":"timestamp","required":true,"description":"The timestamp when the reading was created.","schema":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}],"requestBody":{"description":"Update meter reading payload.","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MeterReading"}}}},"responses":{"200":{"description":"Meter reading updated successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/MeterReading"}}}}}},"400":{"$ref":"#/components/responses/InvalidRequestUpdateMeterReading"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}},"delete":{"operationId":"deleteMeterReading","summary":"Delete Meter Reading","description":"Deletes a meter reading.","tags":["ECP Admin"],"security":[{"EpilotAuth":[]}],"parameters":[{"in":"path","name":"meter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the meter entity."},{"in":"path","name":"counter_id","schema":{"$ref":"#/components/schemas/Id"},"required":true,"description":"The ID of the counter entity."},{"in":"query","name":"timestamp","required":true,"description":"The timestamp when the reading was created.","schema":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}],"responses":{"200":{"description":"Meter reading deleted successfully.","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"meterId":{"$ref":"#/components/schemas/Id"},"counterId":{"$ref":"#/components/schemas/Id"},"timestamp":{"type":"string","example":"2022-10-01T20:00:00.000Z"}}}}}}}},"400":{"$ref":"#/components/responses/InvalidRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"500":{"$ref":"#/components/responses/InternalServerError"}}}}},"components":{"responses":{"InvalidRequest":{"description":"The request could not be validated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"Unauthorized":{"description":"Could not authenticate the user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"Forbidden":{"description":"The user is not allowed to access this resource","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"NotFound":{"description":"The specified resource was not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"InternalServerError":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResp"}}}},"InvalidRequestUpdateMeter":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["missing_params"]}}}]}}}},"InvalidRequestCreateMeterReading":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["contract_period","no_counter","no_direction","timestamp_future","less_than_previous","greater_than_subsequent","meter_decommissioned"]}}}]}}}},"InvalidRequestCreateMeterReadings":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["too_many_records","timestamp_future","duplicate_reading","less_than_previous"]}}}]}}}},"InvalidRequestCreateMeterReadingFromSubmission":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["timestamp_future","less_than_previous","greater_than_subsequent"]}}}]}}}},"InvalidRequestCreateReadingWithMeter":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["missing_params","timestamp_future","less_than_previous","contract_period","greater_than_subsequent"]}}}]}}}},"InvalidRequestUpdateMeterReading":{"description":"The request could not be validated","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/ErrorResp"},{"properties":{"reason":{"type":"string","enum":["missing_params","timestamp_future","less_than_previous","greater_than_subsequent"]}}}]}}}}},"securitySchemes":{"EpilotAuth":{"type":"http","scheme":"bearer","description":"Authorization header with ePilot OAuth2 bearer token","bearerFormat":"JWT"},"PortalAuth":{"type":"http","scheme":"bearer","description":"Authorization header with customer portal OAuth2 bearer token","bearerFormat":"JWT"},"EitherAuth":{"type":"http","scheme":"bearer","description":"Portal or Epilot Bearer Token"},"AsOrganization":{"type":"apiKey","in":"header","name":"x-ivy-org-id","description":"Set organization id as internal user"}},"schemas":{"ErrorResp":{"type":"object","properties":{"message":{"type":"string","description":"Error message"}}},"EntityId":{"type":"string","format":"uuid"},"EntitySlug":{"description":"URL-friendly identifier for the entity schema","type":"string","example":"contact"},"BaseEntity":{"type":"object","properties":{"_id":{"$ref":"#/components/schemas/EntityId","description":"Entity ID","example":"3fa85f64-5717-4562-b3fc-2c963f66afa6"},"_title":{"type":"string","description":"Title of the entity","example":"Example Entity"},"_org":{"type":"string","description":"Organization ID the entity belongs to","example":"123"},"_tags":{"type":"array","items":{"type":"string"},"description":"Array of entity tags","example":["example","mock"]},"_created_at":{"type":"string","format":"date-time","description":"Creation timestamp of the entity","example":"2021-02-09T12:41:43.662Z"},"_updated_at":{"type":"string","format":"date-time","description":"Last update timestamp of the entity","example":"2021-02-09T12:41:43.662Z"}},"required":["_id","_title","_org","_created_at","_updated_at"]},"Entity":{"type":"object","properties":{},"additionalProperties":true},"EntityItem":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"$ref":"#/components/schemas/Entity"}]},"Id":{"type":"string"},"EntityRelation":{"type":"object","properties":{"entity_id":{"$ref":"#/components/schemas/EntityId"},"_slug":{"type":"string","enum":["contact","contract"]}}},"Meter":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"type":"object","required":["_schema"],"properties":{"_schema":{"type":"string","enum":["meter"],"description":"The schema type of the meter"},"ma_lo_id":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"meter_type":{"type":"string","enum":["three-phase-meter","bellow-gas-meter","rotary-piston-meter","smart-meter","performance-meter","maximum-meter","turbine-gas-meter","ultrasonic-gas-meter","alternating-current-meter","modern-metering-system","intelligent-measuring-system","electronic-meter"],"description":"The type of the meter"},"tariff_type":{"type":"string","example":"Peak load tariff","description":"The tariff type of the meter"},"meter_number":{"type":"string","example":"J-1093-1AK","description":"The number of the meter"},"sector":{"type":"string","enum":["power","water","gas","district_heating","waste_water"],"description":"The sector to which the meter belongs"},"location":{"type":"object","example":[{"country":"Germany","city":"Koln","postal_code":81475,"street":"Melatengürtel","street_number":71,"additional_info":"5. Etage","_tags":["billing","delivery"]}],"description":"The location information of the meter"},"used_for":{"type":"string","example":"Domestic Usage","description":"The usage purpose of the meter"},"manufacturer":{"type":"string","example":"Energy One","description":"The manufacturer of the meter"},"calibration_date":{"type":"string","example":"2022-10-10T00:00:00.000Z","description":"The calibration date of the meter"},"contract":{"type":"object","properties":{"$relation":{"type":"array","items":{"$ref":"#/components/schemas/EntityRelation"}}},"description":"The contract associated with the meter"},"customer":{"type":"object","properties":{"$relation":{"type":"array","items":{"$ref":"#/components/schemas/EntityRelation"}}},"description":"The customer associated with the meter"}}}]},"Direction":{"type":"string","enum":["feed-in","feed-out"]},"TariffType":{"type":"string","enum":["ht","nt"]},"Reason":{"type":"string","nullable":true,"example":"Storing the feed-in record","description":"The reason for recording the reading"},"ReadBy":{"type":"string","nullable":true,"example":"John Doe","description":"The person who recorded the reading"},"ReadingStatus":{"type":"string","nullable":true,"enum":["valid","in-validation","implausible",null,""]},"MeterReading":{"type":"object","required":["value","meter_id","source"],"properties":{"value":{"type":"number","example":240,"description":"The reading value of the meter"},"read_by":{"$ref":"#/components/schemas/ReadBy"},"reason":{"$ref":"#/components/schemas/Reason"},"meter_id":{"$ref":"#/components/schemas/EntityId","description":"The ID of the associated meter"},"counter_id":{"$ref":"#/components/schemas/EntityId","description":"The ID of the associated meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading (feed-in or feed-out)"},"timestamp":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T00:00:00.000Z"},"source":{"$ref":"#/components/schemas/Source","description":"The source of the reading"},"status":{"$ref":"#/components/schemas/ReadingStatus","description":"The status of the reading"}}},"MeterCounter":{"allOf":[{"$ref":"#/components/schemas/BaseEntity"},{"type":"object","required":["_schema"],"properties":{"_id":{"$ref":"#/components/schemas/EntityId"},"_schema":{"type":"string","enum":["meter_counter"]},"obis_number":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the meter counter"},"transformer_ratio":{"type":"number","example":70,"description":"The transformer ratio of the meter counter"},"unit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the meter counter"},"forecast_reading_value":{"type":"string","example":270,"description":"The forecast reading value of the meter counter"},"forecast_as_of":{"type":"string","example":"2022-12-10T00:00:00.000Z","description":"The date as of which the forecast reading value is applicable"},"current_consumption":{"type":"number","example":240,"description":"The current consumption value of the meter counter"},"last_reading":{"type":"string","example":"2022-10-10T00:00:00.000Z","description":"The timestamp of the last reading"},"conversion_factor":{"type":"number","example":3,"description":"The conversion factor for the meter counter"},"tariff_type":{"$ref":"#/components/schemas/TariffType","description":"The tariff type of the meter counter"}}}]},"CounterReadingOnSubmission":{"type":"object","required":["counterId","direction","value"],"properties":{"counterId":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter counter"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading (feed-in or feed-out)"},"unit":{"type":"string","enum":["w","wh","kw","kWh","kvarh","mw","mWh","unit","cubic-meter","hour","day","month","year","percentage"],"description":"The unit of measurement for the reading"},"value":{"type":"number","example":240,"description":"The reading value of the meter counter"}}},"SubmissionMeterReading":{"type":"object","required":["meterId"],"nullable":true,"properties":{"meterId":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter"},"readings":{"type":"array","items":{"$ref":"#/components/schemas/CounterReadingOnSubmission"},"description":"- The counter readings of a meter\\n- This is only sent when the user is authenticated while submitting a journey\\n"},"readingValue":{"type":"number","example":240,"description":"The reading value of the meter when the counterId is passed or when the meterType is one-tariff"},"readingDate":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T10:10:00.000Z"},"readBy":{"type":"string","example":"John Doe","description":"The person who recorded the reading"},"reason":{"$ref":"#/components/schemas/Reason"},"maloId":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"obisNumber":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"readingUnit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the reading"},"meterType":{"type":"string","enum":["one_tariff","two_tariff","bi_directional"],"description":"The type of the meter"},"feedInValue":{"type":"number","example":240,"description":"The feed-in value of the meter when meterType is one-tariff or bi-directional"},"feedOutValue":{"type":"number","example":240,"description":"The feed-out value of the meter when meterType is bi-directional"},"htValue":{"type":"number","example":240,"description":"The high-peak tariff value of the meter when meterType is two-tariff"},"ntValue":{"type":"number","example":240,"description":"The off-peak tariff value of the meter when meterType is two-tariff"}}},"Unit":{"type":"string","enum":["w","wh","kw","kWh","kvarh","mw","mWh","unit","cubic-meter","hour","day","month","year","percentage"]},"Source":{"type":"string","enum":["ECP","ERP","360","journey-submission"]},"ActionLabel":{"type":"object","properties":{"en":{"type":"string","nullable":true},"de":{"type":"string","nullable":true}}},"Rule":{"type":"object","properties":{"entity":{"type":"string","nullable":true},"attribute":{"type":"string","nullable":true},"attribute_value":{"type":"string","nullable":true}}},"JourneyActions":{"type":"object","properties":{"journey_id":{"type":"string","nullable":true},"action_label":{"type":"object","$ref":"#/components/schemas/ActionLabel","nullable":true},"slug":{"type":"string","nullable":true},"rules":{"type":"array","items":{"$ref":"#/components/schemas/Rule"},"nullable":true}}},"ReadingWithMeter":{"type":"object","properties":{"ma_lo_id":{"type":"string","example":"A09-123","description":"The MA-LO ID of the meter"},"meter_id":{"$ref":"#/components/schemas/Id","description":"The ID of the associated meter"},"obis_number":{"type":"string","example":"A-34","description":"The OBIS number of the meter counter"},"unit":{"$ref":"#/components/schemas/Unit","description":"The unit of measurement for the reading"},"direction":{"$ref":"#/components/schemas/Direction","description":"The direction of the reading"},"tariff_type":{"$ref":"#/components/schemas/TariffType","description":"The tariff type of the reading"},"value":{"type":"number","example":240,"description":"The reading value"},"read_by":{"$ref":"#/components/schemas/ReadBy"},"reason":{"$ref":"#/components/schemas/Reason"},"timestamp":{"type":"string","description":"If the value is not provided, the system will be set with the time the request is processed.","example":"2022-10-10T10:10:00.000Z"},"source":{"$ref":"#/components/schemas/Source","description":"The source of the reading"}}},"ActivityId":{"type":"string","format":"ulid","description":"See https://github.com/ulid/spec","example":"01F130Q52Q6MWSNS8N2AVXV4JN"}},"parameters":{"ActivityIdQueryParam":{"name":"activity_id","description":"Activity to include in event feed","in":"query","required":false,"schema":{"$ref":"#/components/schemas/ActivityId"}}}},"servers":[{"url":"https://metering.sls.epilot.io"}]}')}},t={},r=function r(s){var n=t[s];if(void 0!==n)return n.exports;var o=t[s]={exports:{}};return e[s].call(o.exports,o,o.exports,r),o.exports}(914),s=exports;for(var n in r)s[n]=r[n];r.__esModule&&Object.defineProperty(s,"__esModule",{value:!0})})();
|
package/dist/index.js
CHANGED
|
@@ -15,5 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./client"), exports);
|
|
18
|
-
__exportStar(require("./openapi"), exports);
|
|
19
18
|
//# sourceMappingURL=index.js.map
|
package/dist/openapi.d.ts
CHANGED
|
@@ -24,6 +24,48 @@ declare namespace Components {
|
|
|
24
24
|
export type Forbidden = Schemas.ErrorResp;
|
|
25
25
|
export type InternalServerError = Schemas.ErrorResp;
|
|
26
26
|
export type InvalidRequest = Schemas.ErrorResp;
|
|
27
|
+
export interface InvalidRequestCreateMeterReading {
|
|
28
|
+
/**
|
|
29
|
+
* Error message
|
|
30
|
+
*/
|
|
31
|
+
message?: string;
|
|
32
|
+
reason?: "contract_period" | "no_counter" | "no_direction" | "timestamp_future" | "less_than_previous" | "greater_than_subsequent" | "meter_decommissioned";
|
|
33
|
+
}
|
|
34
|
+
export interface InvalidRequestCreateMeterReadingFromSubmission {
|
|
35
|
+
/**
|
|
36
|
+
* Error message
|
|
37
|
+
*/
|
|
38
|
+
message?: string;
|
|
39
|
+
reason?: "timestamp_future" | "less_than_previous" | "greater_than_subsequent";
|
|
40
|
+
}
|
|
41
|
+
export interface InvalidRequestCreateMeterReadings {
|
|
42
|
+
/**
|
|
43
|
+
* Error message
|
|
44
|
+
*/
|
|
45
|
+
message?: string;
|
|
46
|
+
reason?: "too_many_records" | "timestamp_future" | "duplicate_reading" | "less_than_previous";
|
|
47
|
+
}
|
|
48
|
+
export interface InvalidRequestCreateReadingWithMeter {
|
|
49
|
+
/**
|
|
50
|
+
* Error message
|
|
51
|
+
*/
|
|
52
|
+
message?: string;
|
|
53
|
+
reason?: "missing_params" | "timestamp_future" | "less_than_previous" | "contract_period" | "greater_than_subsequent";
|
|
54
|
+
}
|
|
55
|
+
export interface InvalidRequestUpdateMeter {
|
|
56
|
+
/**
|
|
57
|
+
* Error message
|
|
58
|
+
*/
|
|
59
|
+
message?: string;
|
|
60
|
+
reason?: "missing_params";
|
|
61
|
+
}
|
|
62
|
+
export interface InvalidRequestUpdateMeterReading {
|
|
63
|
+
/**
|
|
64
|
+
* Error message
|
|
65
|
+
*/
|
|
66
|
+
message?: string;
|
|
67
|
+
reason?: "missing_params" | "timestamp_future" | "less_than_previous" | "greater_than_subsequent";
|
|
68
|
+
}
|
|
27
69
|
export type NotFound = Schemas.ErrorResp;
|
|
28
70
|
export type Unauthorized = Schemas.ErrorResp;
|
|
29
71
|
}
|
|
@@ -571,13 +613,71 @@ declare namespace Components {
|
|
|
571
613
|
}
|
|
572
614
|
}
|
|
573
615
|
declare namespace Paths {
|
|
616
|
+
namespace BatchWriteMeterReadings {
|
|
617
|
+
namespace Parameters {
|
|
618
|
+
export type ActivityId = /**
|
|
619
|
+
* See https://github.com/ulid/spec
|
|
620
|
+
* example:
|
|
621
|
+
* 01F130Q52Q6MWSNS8N2AVXV4JN
|
|
622
|
+
*/
|
|
623
|
+
Components.Schemas.ActivityId /* ulid */;
|
|
624
|
+
export type Async = boolean;
|
|
625
|
+
}
|
|
626
|
+
export interface QueryParameters {
|
|
627
|
+
async?: Parameters.Async;
|
|
628
|
+
activity_id?: Parameters.ActivityId;
|
|
629
|
+
}
|
|
630
|
+
export interface RequestBody {
|
|
631
|
+
readings?: {
|
|
632
|
+
/**
|
|
633
|
+
* The reading value of the meter
|
|
634
|
+
* example:
|
|
635
|
+
* 240
|
|
636
|
+
*/
|
|
637
|
+
value: number;
|
|
638
|
+
read_by?: /**
|
|
639
|
+
* The person who recorded the reading
|
|
640
|
+
* example:
|
|
641
|
+
* John Doe
|
|
642
|
+
*/
|
|
643
|
+
Components.Schemas.ReadBy;
|
|
644
|
+
reason?: /**
|
|
645
|
+
* The reason for recording the reading
|
|
646
|
+
* example:
|
|
647
|
+
* Storing the feed-in record
|
|
648
|
+
*/
|
|
649
|
+
Components.Schemas.Reason;
|
|
650
|
+
meter_id: Components.Schemas.EntityId /* uuid */;
|
|
651
|
+
counter_id?: Components.Schemas.EntityId /* uuid */;
|
|
652
|
+
direction?: Components.Schemas.Direction;
|
|
653
|
+
/**
|
|
654
|
+
* If the value is not provided, the system will be set with the time the request is processed.
|
|
655
|
+
* example:
|
|
656
|
+
* 2022-10-10T00:00:00.000Z
|
|
657
|
+
*/
|
|
658
|
+
timestamp?: string;
|
|
659
|
+
source: Components.Schemas.Source;
|
|
660
|
+
status?: Components.Schemas.ReadingStatus;
|
|
661
|
+
operation?: "create" | "update" | "delete";
|
|
662
|
+
}[];
|
|
663
|
+
}
|
|
664
|
+
namespace Responses {
|
|
665
|
+
export interface $200 {
|
|
666
|
+
data?: Components.Schemas.MeterReading[];
|
|
667
|
+
}
|
|
668
|
+
export type $400 = Components.Responses.InvalidRequestCreateMeterReadings;
|
|
669
|
+
export type $401 = Components.Responses.Unauthorized;
|
|
670
|
+
export type $403 = Components.Responses.Forbidden;
|
|
671
|
+
export type $500 = Components.Responses.InternalServerError;
|
|
672
|
+
}
|
|
673
|
+
}
|
|
574
674
|
namespace CreateMeterReading {
|
|
575
675
|
export type RequestBody = Components.Schemas.MeterReading;
|
|
576
676
|
namespace Responses {
|
|
577
677
|
export interface $200 {
|
|
578
678
|
data?: Components.Schemas.MeterReading;
|
|
579
679
|
}
|
|
580
|
-
export type $400 = Components.Responses.
|
|
680
|
+
export type $400 = Components.Responses.InvalidRequestCreateMeterReading;
|
|
581
681
|
export type $401 = Components.Responses.Unauthorized;
|
|
582
682
|
export type $403 = Components.Responses.Forbidden;
|
|
583
683
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -607,7 +707,7 @@ declare namespace Paths {
|
|
|
607
707
|
export interface $200 {
|
|
608
708
|
message?: "Successfully Processed";
|
|
609
709
|
}
|
|
610
|
-
export type $400 = Components.Responses.
|
|
710
|
+
export type $400 = Components.Responses.InvalidRequestCreateMeterReadingFromSubmission;
|
|
611
711
|
export type $401 = Components.Responses.Unauthorized;
|
|
612
712
|
export type $403 = Components.Responses.Forbidden;
|
|
613
713
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -634,7 +734,7 @@ declare namespace Paths {
|
|
|
634
734
|
export interface $200 {
|
|
635
735
|
data?: Components.Schemas.MeterReading[];
|
|
636
736
|
}
|
|
637
|
-
export type $400 = Components.Responses.
|
|
737
|
+
export type $400 = Components.Responses.InvalidRequestCreateMeterReadings;
|
|
638
738
|
export type $401 = Components.Responses.Unauthorized;
|
|
639
739
|
export type $403 = Components.Responses.Forbidden;
|
|
640
740
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -646,7 +746,7 @@ declare namespace Paths {
|
|
|
646
746
|
export interface $200 {
|
|
647
747
|
data?: Components.Schemas.MeterReading;
|
|
648
748
|
}
|
|
649
|
-
export type $400 = Components.Responses.
|
|
749
|
+
export type $400 = Components.Responses.InvalidRequestCreateReadingWithMeter;
|
|
650
750
|
export type $401 = Components.Responses.Unauthorized;
|
|
651
751
|
export type $403 = Components.Responses.Forbidden;
|
|
652
752
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -875,53 +975,6 @@ declare namespace Paths {
|
|
|
875
975
|
export type $500 = Components.Responses.InternalServerError;
|
|
876
976
|
}
|
|
877
977
|
}
|
|
878
|
-
namespace GetDownSampleReadingsByInterval {
|
|
879
|
-
namespace Parameters {
|
|
880
|
-
export type CounterId = Components.Schemas.Id;
|
|
881
|
-
export type Direction = Components.Schemas.Direction;
|
|
882
|
-
/**
|
|
883
|
-
* example:
|
|
884
|
-
* 2022-10-10
|
|
885
|
-
*/
|
|
886
|
-
export type EndDate = string;
|
|
887
|
-
export type GroupBy = "day" | "week" | "month" | "year";
|
|
888
|
-
export type MeterId = Components.Schemas.Id;
|
|
889
|
-
export type Sort = "asc" | "desc";
|
|
890
|
-
/**
|
|
891
|
-
* example:
|
|
892
|
-
* 2022-10-01
|
|
893
|
-
*/
|
|
894
|
-
export type StartDate = string;
|
|
895
|
-
}
|
|
896
|
-
export interface PathParameters {
|
|
897
|
-
meter_id: Parameters.MeterId;
|
|
898
|
-
counter_id: Parameters.CounterId;
|
|
899
|
-
}
|
|
900
|
-
export interface QueryParameters {
|
|
901
|
-
start_date?: /**
|
|
902
|
-
* example:
|
|
903
|
-
* 2022-10-01
|
|
904
|
-
*/
|
|
905
|
-
Parameters.StartDate;
|
|
906
|
-
end_date?: /**
|
|
907
|
-
* example:
|
|
908
|
-
* 2022-10-10
|
|
909
|
-
*/
|
|
910
|
-
Parameters.EndDate;
|
|
911
|
-
group_by?: Parameters.GroupBy;
|
|
912
|
-
direction?: Parameters.Direction;
|
|
913
|
-
sort?: Parameters.Sort;
|
|
914
|
-
}
|
|
915
|
-
namespace Responses {
|
|
916
|
-
export interface $200 {
|
|
917
|
-
data?: Components.Schemas.MeterReading[];
|
|
918
|
-
}
|
|
919
|
-
export type $400 = Components.Responses.InvalidRequest;
|
|
920
|
-
export type $401 = Components.Responses.Unauthorized;
|
|
921
|
-
export type $403 = Components.Responses.Forbidden;
|
|
922
|
-
export type $500 = Components.Responses.InternalServerError;
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
978
|
namespace GetMeter {
|
|
926
979
|
namespace Parameters {
|
|
927
980
|
export type Id = Components.Schemas.EntityId /* uuid */;
|
|
@@ -1066,7 +1119,7 @@ declare namespace Paths {
|
|
|
1066
1119
|
export interface $200 {
|
|
1067
1120
|
data?: Components.Schemas.Meter;
|
|
1068
1121
|
}
|
|
1069
|
-
export type $400 = Components.Responses.
|
|
1122
|
+
export type $400 = Components.Responses.InvalidRequestUpdateMeter;
|
|
1070
1123
|
export type $401 = Components.Responses.Unauthorized;
|
|
1071
1124
|
export type $403 = Components.Responses.Forbidden;
|
|
1072
1125
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -1098,7 +1151,7 @@ declare namespace Paths {
|
|
|
1098
1151
|
export interface $200 {
|
|
1099
1152
|
data?: Components.Schemas.MeterReading;
|
|
1100
1153
|
}
|
|
1101
|
-
export type $400 = Components.Responses.
|
|
1154
|
+
export type $400 = Components.Responses.InvalidRequestUpdateMeterReading;
|
|
1102
1155
|
export type $401 = Components.Responses.Unauthorized;
|
|
1103
1156
|
export type $403 = Components.Responses.Forbidden;
|
|
1104
1157
|
export type $500 = Components.Responses.InternalServerError;
|
|
@@ -1187,6 +1240,16 @@ export interface OperationMethods {
|
|
|
1187
1240
|
data?: Paths.CreateMeterReadings.RequestBody,
|
|
1188
1241
|
config?: AxiosRequestConfig
|
|
1189
1242
|
): OperationResponse<Paths.CreateMeterReadings.Responses.$200>
|
|
1243
|
+
/**
|
|
1244
|
+
* batchWriteMeterReadings - Batch Write Readings
|
|
1245
|
+
*
|
|
1246
|
+
* Upserts/Deletes multiple meter readings at once. Limited to 100 readings per request.
|
|
1247
|
+
*/
|
|
1248
|
+
'batchWriteMeterReadings'(
|
|
1249
|
+
parameters?: Parameters<Paths.BatchWriteMeterReadings.QueryParameters> | null,
|
|
1250
|
+
data?: Paths.BatchWriteMeterReadings.RequestBody,
|
|
1251
|
+
config?: AxiosRequestConfig
|
|
1252
|
+
): OperationResponse<Paths.BatchWriteMeterReadings.Responses.$200>
|
|
1190
1253
|
/**
|
|
1191
1254
|
* createMeterReadingFromSubmission - Create Meter Reading from Submission
|
|
1192
1255
|
*
|
|
@@ -1250,19 +1313,6 @@ export interface OperationMethods {
|
|
|
1250
1313
|
data?: any,
|
|
1251
1314
|
config?: AxiosRequestConfig
|
|
1252
1315
|
): OperationResponse<Paths.DeleteMeterReading.Responses.$200>
|
|
1253
|
-
/**
|
|
1254
|
-
* getDownSampleReadingsByInterval - Get Down Sample Readings by Interval
|
|
1255
|
-
*
|
|
1256
|
-
* Retrieves the downsampled data of the entire readings specified in an interval.
|
|
1257
|
-
* If the start_date and end_date are equal, then it returns the readings of the specified date.
|
|
1258
|
-
* The start_date should be less than or equal to the end_date.
|
|
1259
|
-
*
|
|
1260
|
-
*/
|
|
1261
|
-
'getDownSampleReadingsByInterval'(
|
|
1262
|
-
parameters?: Parameters<Paths.GetDownSampleReadingsByInterval.QueryParameters & Paths.GetDownSampleReadingsByInterval.PathParameters> | null,
|
|
1263
|
-
data?: any,
|
|
1264
|
-
config?: AxiosRequestConfig
|
|
1265
|
-
): OperationResponse<Paths.GetDownSampleReadingsByInterval.Responses.$200>
|
|
1266
1316
|
}
|
|
1267
1317
|
|
|
1268
1318
|
export interface PathsDictionary {
|
|
@@ -1360,6 +1410,18 @@ export interface PathsDictionary {
|
|
|
1360
1410
|
config?: AxiosRequestConfig
|
|
1361
1411
|
): OperationResponse<Paths.CreateMeterReadings.Responses.$200>
|
|
1362
1412
|
}
|
|
1413
|
+
['/v2/metering/readings']: {
|
|
1414
|
+
/**
|
|
1415
|
+
* batchWriteMeterReadings - Batch Write Readings
|
|
1416
|
+
*
|
|
1417
|
+
* Upserts/Deletes multiple meter readings at once. Limited to 100 readings per request.
|
|
1418
|
+
*/
|
|
1419
|
+
'post'(
|
|
1420
|
+
parameters?: Parameters<Paths.BatchWriteMeterReadings.QueryParameters> | null,
|
|
1421
|
+
data?: Paths.BatchWriteMeterReadings.RequestBody,
|
|
1422
|
+
config?: AxiosRequestConfig
|
|
1423
|
+
): OperationResponse<Paths.BatchWriteMeterReadings.Responses.$200>
|
|
1424
|
+
}
|
|
1363
1425
|
['/v1/metering/reading/submission']: {
|
|
1364
1426
|
/**
|
|
1365
1427
|
* createMeterReadingFromSubmission - Create Meter Reading from Submission
|
|
@@ -1431,21 +1493,6 @@ export interface PathsDictionary {
|
|
|
1431
1493
|
config?: AxiosRequestConfig
|
|
1432
1494
|
): OperationResponse<Paths.DeleteMeterReading.Responses.$200>
|
|
1433
1495
|
}
|
|
1434
|
-
['/v1/metering/down-sample/readings/{meter_id}/{counter_id}']: {
|
|
1435
|
-
/**
|
|
1436
|
-
* getDownSampleReadingsByInterval - Get Down Sample Readings by Interval
|
|
1437
|
-
*
|
|
1438
|
-
* Retrieves the downsampled data of the entire readings specified in an interval.
|
|
1439
|
-
* If the start_date and end_date are equal, then it returns the readings of the specified date.
|
|
1440
|
-
* The start_date should be less than or equal to the end_date.
|
|
1441
|
-
*
|
|
1442
|
-
*/
|
|
1443
|
-
'get'(
|
|
1444
|
-
parameters?: Parameters<Paths.GetDownSampleReadingsByInterval.QueryParameters & Paths.GetDownSampleReadingsByInterval.PathParameters> | null,
|
|
1445
|
-
data?: any,
|
|
1446
|
-
config?: AxiosRequestConfig
|
|
1447
|
-
): OperationResponse<Paths.GetDownSampleReadingsByInterval.Responses.$200>
|
|
1448
|
-
}
|
|
1449
1496
|
}
|
|
1450
1497
|
|
|
1451
1498
|
export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
|
package/dist/openapi.json
CHANGED
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
"400": {
|
|
196
|
-
"$ref": "#/components/responses/
|
|
196
|
+
"$ref": "#/components/responses/InvalidRequestUpdateMeter"
|
|
197
197
|
},
|
|
198
198
|
"401": {
|
|
199
199
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
}
|
|
429
429
|
},
|
|
430
430
|
"400": {
|
|
431
|
-
"$ref": "#/components/responses/
|
|
431
|
+
"$ref": "#/components/responses/InvalidRequestCreateMeterReading"
|
|
432
432
|
},
|
|
433
433
|
"401": {
|
|
434
434
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -509,7 +509,105 @@
|
|
|
509
509
|
}
|
|
510
510
|
},
|
|
511
511
|
"400": {
|
|
512
|
-
"$ref": "#/components/responses/
|
|
512
|
+
"$ref": "#/components/responses/InvalidRequestCreateMeterReadings"
|
|
513
|
+
},
|
|
514
|
+
"401": {
|
|
515
|
+
"$ref": "#/components/responses/Unauthorized"
|
|
516
|
+
},
|
|
517
|
+
"403": {
|
|
518
|
+
"$ref": "#/components/responses/Forbidden"
|
|
519
|
+
},
|
|
520
|
+
"500": {
|
|
521
|
+
"$ref": "#/components/responses/InternalServerError"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"/v2/metering/readings": {
|
|
527
|
+
"post": {
|
|
528
|
+
"operationId": "batchWriteMeterReadings",
|
|
529
|
+
"summary": "Batch Write Readings",
|
|
530
|
+
"description": "Upserts/Deletes multiple meter readings at once. Limited to 100 readings per request.",
|
|
531
|
+
"tags": [
|
|
532
|
+
"ECP Admin"
|
|
533
|
+
],
|
|
534
|
+
"security": [
|
|
535
|
+
{
|
|
536
|
+
"EpilotAuth": []
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"parameters": [
|
|
540
|
+
{
|
|
541
|
+
"in": "query",
|
|
542
|
+
"name": "async",
|
|
543
|
+
"description": "Don't wait for the reading to become available in GetReadings API. Useful for large migrations",
|
|
544
|
+
"required": false,
|
|
545
|
+
"schema": {
|
|
546
|
+
"type": "boolean",
|
|
547
|
+
"default": true
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"$ref": "#/components/parameters/ActivityIdQueryParam"
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"requestBody": {
|
|
555
|
+
"description": "Meter readings payload. Limited to 100 readings per request.",
|
|
556
|
+
"required": true,
|
|
557
|
+
"content": {
|
|
558
|
+
"application/json": {
|
|
559
|
+
"schema": {
|
|
560
|
+
"type": "object",
|
|
561
|
+
"properties": {
|
|
562
|
+
"readings": {
|
|
563
|
+
"type": "array",
|
|
564
|
+
"items": {
|
|
565
|
+
"allOf": [
|
|
566
|
+
{
|
|
567
|
+
"$ref": "#/components/schemas/MeterReading"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"properties": {
|
|
571
|
+
"operation": {
|
|
572
|
+
"type": "string",
|
|
573
|
+
"enum": [
|
|
574
|
+
"create",
|
|
575
|
+
"update",
|
|
576
|
+
"delete"
|
|
577
|
+
],
|
|
578
|
+
"default": "create"
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
]
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"responses": {
|
|
591
|
+
"200": {
|
|
592
|
+
"description": "Meter readings created successfully.",
|
|
593
|
+
"content": {
|
|
594
|
+
"application/json": {
|
|
595
|
+
"schema": {
|
|
596
|
+
"type": "object",
|
|
597
|
+
"properties": {
|
|
598
|
+
"data": {
|
|
599
|
+
"type": "array",
|
|
600
|
+
"items": {
|
|
601
|
+
"$ref": "#/components/schemas/MeterReading"
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"400": {
|
|
610
|
+
"$ref": "#/components/responses/InvalidRequestCreateMeterReadings"
|
|
513
611
|
},
|
|
514
612
|
"401": {
|
|
515
613
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -592,7 +690,7 @@
|
|
|
592
690
|
}
|
|
593
691
|
},
|
|
594
692
|
"400": {
|
|
595
|
-
"$ref": "#/components/responses/
|
|
693
|
+
"$ref": "#/components/responses/InvalidRequestCreateMeterReadingFromSubmission"
|
|
596
694
|
},
|
|
597
695
|
"401": {
|
|
598
696
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -729,7 +827,7 @@
|
|
|
729
827
|
}
|
|
730
828
|
},
|
|
731
829
|
"400": {
|
|
732
|
-
"$ref": "#/components/responses/
|
|
830
|
+
"$ref": "#/components/responses/InvalidRequestCreateReadingWithMeter"
|
|
733
831
|
},
|
|
734
832
|
"401": {
|
|
735
833
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -965,7 +1063,7 @@
|
|
|
965
1063
|
}
|
|
966
1064
|
},
|
|
967
1065
|
"400": {
|
|
968
|
-
"$ref": "#/components/responses/
|
|
1066
|
+
"$ref": "#/components/responses/InvalidRequestUpdateMeterReading"
|
|
969
1067
|
},
|
|
970
1068
|
"401": {
|
|
971
1069
|
"$ref": "#/components/responses/Unauthorized"
|
|
@@ -1062,130 +1160,6 @@
|
|
|
1062
1160
|
}
|
|
1063
1161
|
}
|
|
1064
1162
|
}
|
|
1065
|
-
},
|
|
1066
|
-
"/v1/metering/down-sample/readings/{meter_id}/{counter_id}": {
|
|
1067
|
-
"get": {
|
|
1068
|
-
"operationId": "getDownSampleReadingsByInterval",
|
|
1069
|
-
"summary": "Get Down Sample Readings by Interval",
|
|
1070
|
-
"description": "Retrieves the downsampled data of the entire readings specified in an interval.\nIf the start_date and end_date are equal, then it returns the readings of the specified date.\nThe start_date should be less than or equal to the end_date.\n",
|
|
1071
|
-
"tags": [
|
|
1072
|
-
"ECP Admin",
|
|
1073
|
-
"ECP"
|
|
1074
|
-
],
|
|
1075
|
-
"security": [
|
|
1076
|
-
{
|
|
1077
|
-
"EitherAuth": []
|
|
1078
|
-
}
|
|
1079
|
-
],
|
|
1080
|
-
"parameters": [
|
|
1081
|
-
{
|
|
1082
|
-
"in": "path",
|
|
1083
|
-
"name": "meter_id",
|
|
1084
|
-
"schema": {
|
|
1085
|
-
"$ref": "#/components/schemas/Id"
|
|
1086
|
-
},
|
|
1087
|
-
"required": true,
|
|
1088
|
-
"description": "The ID of the meter."
|
|
1089
|
-
},
|
|
1090
|
-
{
|
|
1091
|
-
"in": "path",
|
|
1092
|
-
"name": "counter_id",
|
|
1093
|
-
"schema": {
|
|
1094
|
-
"$ref": "#/components/schemas/Id"
|
|
1095
|
-
},
|
|
1096
|
-
"required": true,
|
|
1097
|
-
"description": "The ID of the counter."
|
|
1098
|
-
},
|
|
1099
|
-
{
|
|
1100
|
-
"in": "query",
|
|
1101
|
-
"name": "start_date",
|
|
1102
|
-
"required": false,
|
|
1103
|
-
"description": "If not provided, the system will default to 2000-01-01.",
|
|
1104
|
-
"schema": {
|
|
1105
|
-
"type": "string",
|
|
1106
|
-
"example": "2022-10-01"
|
|
1107
|
-
}
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
"in": "query",
|
|
1111
|
-
"name": "end_date",
|
|
1112
|
-
"required": false,
|
|
1113
|
-
"description": "If not provided, the system will default to today's date.",
|
|
1114
|
-
"schema": {
|
|
1115
|
-
"type": "string",
|
|
1116
|
-
"example": "2022-10-10"
|
|
1117
|
-
}
|
|
1118
|
-
},
|
|
1119
|
-
{
|
|
1120
|
-
"in": "query",
|
|
1121
|
-
"name": "group_by",
|
|
1122
|
-
"schema": {
|
|
1123
|
-
"type": "string",
|
|
1124
|
-
"default": "day",
|
|
1125
|
-
"enum": [
|
|
1126
|
-
"day",
|
|
1127
|
-
"week",
|
|
1128
|
-
"month",
|
|
1129
|
-
"year"
|
|
1130
|
-
]
|
|
1131
|
-
}
|
|
1132
|
-
},
|
|
1133
|
-
{
|
|
1134
|
-
"in": "query",
|
|
1135
|
-
"name": "direction",
|
|
1136
|
-
"required": false,
|
|
1137
|
-
"schema": {
|
|
1138
|
-
"$ref": "#/components/schemas/Direction"
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"in": "query",
|
|
1143
|
-
"name": "sort",
|
|
1144
|
-
"required": false,
|
|
1145
|
-
"schema": {
|
|
1146
|
-
"type": "string",
|
|
1147
|
-
"default": "asc",
|
|
1148
|
-
"enum": [
|
|
1149
|
-
"asc",
|
|
1150
|
-
"desc"
|
|
1151
|
-
]
|
|
1152
|
-
},
|
|
1153
|
-
"description": "If this value is provided as \"asc\", then the results will be sorted by the timestamp field in ascending order.\nIf this value is provided as \"desc\", then the results will be sorted by the timestamp field in descending order.\n"
|
|
1154
|
-
}
|
|
1155
|
-
],
|
|
1156
|
-
"responses": {
|
|
1157
|
-
"200": {
|
|
1158
|
-
"description": "Downsampled readings retrieved successfully.",
|
|
1159
|
-
"content": {
|
|
1160
|
-
"application/json": {
|
|
1161
|
-
"schema": {
|
|
1162
|
-
"type": "object",
|
|
1163
|
-
"properties": {
|
|
1164
|
-
"data": {
|
|
1165
|
-
"type": "array",
|
|
1166
|
-
"items": {
|
|
1167
|
-
"$ref": "#/components/schemas/MeterReading"
|
|
1168
|
-
}
|
|
1169
|
-
}
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
}
|
|
1174
|
-
},
|
|
1175
|
-
"400": {
|
|
1176
|
-
"$ref": "#/components/responses/InvalidRequest"
|
|
1177
|
-
},
|
|
1178
|
-
"401": {
|
|
1179
|
-
"$ref": "#/components/responses/Unauthorized"
|
|
1180
|
-
},
|
|
1181
|
-
"403": {
|
|
1182
|
-
"$ref": "#/components/responses/Forbidden"
|
|
1183
|
-
},
|
|
1184
|
-
"500": {
|
|
1185
|
-
"$ref": "#/components/responses/InternalServerError"
|
|
1186
|
-
}
|
|
1187
|
-
}
|
|
1188
|
-
}
|
|
1189
1163
|
}
|
|
1190
1164
|
},
|
|
1191
1165
|
"components": {
|
|
@@ -1239,6 +1213,168 @@
|
|
|
1239
1213
|
}
|
|
1240
1214
|
}
|
|
1241
1215
|
}
|
|
1216
|
+
},
|
|
1217
|
+
"InvalidRequestUpdateMeter": {
|
|
1218
|
+
"description": "The request could not be validated",
|
|
1219
|
+
"content": {
|
|
1220
|
+
"application/json": {
|
|
1221
|
+
"schema": {
|
|
1222
|
+
"allOf": [
|
|
1223
|
+
{
|
|
1224
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"properties": {
|
|
1228
|
+
"reason": {
|
|
1229
|
+
"type": "string",
|
|
1230
|
+
"enum": [
|
|
1231
|
+
"missing_params"
|
|
1232
|
+
]
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
]
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"InvalidRequestCreateMeterReading": {
|
|
1242
|
+
"description": "The request could not be validated",
|
|
1243
|
+
"content": {
|
|
1244
|
+
"application/json": {
|
|
1245
|
+
"schema": {
|
|
1246
|
+
"allOf": [
|
|
1247
|
+
{
|
|
1248
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"properties": {
|
|
1252
|
+
"reason": {
|
|
1253
|
+
"type": "string",
|
|
1254
|
+
"enum": [
|
|
1255
|
+
"contract_period",
|
|
1256
|
+
"no_counter",
|
|
1257
|
+
"no_direction",
|
|
1258
|
+
"timestamp_future",
|
|
1259
|
+
"less_than_previous",
|
|
1260
|
+
"greater_than_subsequent",
|
|
1261
|
+
"meter_decommissioned"
|
|
1262
|
+
]
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
]
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"InvalidRequestCreateMeterReadings": {
|
|
1272
|
+
"description": "The request could not be validated",
|
|
1273
|
+
"content": {
|
|
1274
|
+
"application/json": {
|
|
1275
|
+
"schema": {
|
|
1276
|
+
"allOf": [
|
|
1277
|
+
{
|
|
1278
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"properties": {
|
|
1282
|
+
"reason": {
|
|
1283
|
+
"type": "string",
|
|
1284
|
+
"enum": [
|
|
1285
|
+
"too_many_records",
|
|
1286
|
+
"timestamp_future",
|
|
1287
|
+
"duplicate_reading",
|
|
1288
|
+
"less_than_previous"
|
|
1289
|
+
]
|
|
1290
|
+
}
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
]
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"InvalidRequestCreateMeterReadingFromSubmission": {
|
|
1299
|
+
"description": "The request could not be validated",
|
|
1300
|
+
"content": {
|
|
1301
|
+
"application/json": {
|
|
1302
|
+
"schema": {
|
|
1303
|
+
"allOf": [
|
|
1304
|
+
{
|
|
1305
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"properties": {
|
|
1309
|
+
"reason": {
|
|
1310
|
+
"type": "string",
|
|
1311
|
+
"enum": [
|
|
1312
|
+
"timestamp_future",
|
|
1313
|
+
"less_than_previous",
|
|
1314
|
+
"greater_than_subsequent"
|
|
1315
|
+
]
|
|
1316
|
+
}
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
]
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"InvalidRequestCreateReadingWithMeter": {
|
|
1325
|
+
"description": "The request could not be validated",
|
|
1326
|
+
"content": {
|
|
1327
|
+
"application/json": {
|
|
1328
|
+
"schema": {
|
|
1329
|
+
"allOf": [
|
|
1330
|
+
{
|
|
1331
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"properties": {
|
|
1335
|
+
"reason": {
|
|
1336
|
+
"type": "string",
|
|
1337
|
+
"enum": [
|
|
1338
|
+
"missing_params",
|
|
1339
|
+
"timestamp_future",
|
|
1340
|
+
"less_than_previous",
|
|
1341
|
+
"contract_period",
|
|
1342
|
+
"greater_than_subsequent"
|
|
1343
|
+
]
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1347
|
+
]
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"InvalidRequestUpdateMeterReading": {
|
|
1353
|
+
"description": "The request could not be validated",
|
|
1354
|
+
"content": {
|
|
1355
|
+
"application/json": {
|
|
1356
|
+
"schema": {
|
|
1357
|
+
"allOf": [
|
|
1358
|
+
{
|
|
1359
|
+
"$ref": "#/components/schemas/ErrorResp"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"properties": {
|
|
1363
|
+
"reason": {
|
|
1364
|
+
"type": "string",
|
|
1365
|
+
"enum": [
|
|
1366
|
+
"missing_params",
|
|
1367
|
+
"timestamp_future",
|
|
1368
|
+
"less_than_previous",
|
|
1369
|
+
"greater_than_subsequent"
|
|
1370
|
+
]
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1242
1378
|
}
|
|
1243
1379
|
},
|
|
1244
1380
|
"securitySchemes": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/metering-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "API Client for epilot Metering API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"bundle-definition": "webpack",
|
|
25
25
|
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/metering.yaml",
|
|
26
26
|
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
27
|
-
"build": "tsc && npm run bundle-definition",
|
|
27
|
+
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
28
|
+
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
28
29
|
"build:watch": "npm run build && tsc -w",
|
|
29
30
|
"prepublishOnly": "npm run typegen && npm run build",
|
|
30
31
|
"lint": "../../node_modules/eslint/bin/eslint.js src"
|
|
@@ -68,6 +69,5 @@
|
|
|
68
69
|
"typescript": "^4.1.3",
|
|
69
70
|
"webpack": "^5.18.0",
|
|
70
71
|
"webpack-cli": "^4.4.0"
|
|
71
|
-
}
|
|
72
|
-
"gitHead": "6c12dc4aaf7ddf60ad11c6f596fb478559fa3052"
|
|
72
|
+
}
|
|
73
73
|
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 epilot GmbH
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|