Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ export type UserApiDownloadImpactReportRequest = {
*/
organizationId?: string
/**
* The start date of the period for which you want to download a report (ISO 8601 format, e.g., 2025-05-01T00:00:00Z).
* The start date of the period for which you want to download a report (ISO 8601 format, e.g. 2025-05-01T00:00:00Z).
*/
date?: Date
/**
* Type of report to download (e.g., monthly). Defaults to monthly.
* Type of report to download (e.g. `monthly`).
*/
type?: ReportType
}
Expand All @@ -141,19 +141,19 @@ export type UserApiGetImpactDataRequest = {
*/
organizationId?: string
/**
* Start date (inclusive) of the period for which you want to retrieve impact data (ISO 8601 format, e.g., 2025-05-01T00:00:00Z).
* Start date (inclusive) of the period for which you want to retrieve impact data (ISO 8601 format, e.g. 2025-05-01T00:00:00Z).
*/
startDate?: Date
/**
* End date (exclusive) of the period for which you want to retrieve impact data (ISO 8601 format, with time in UTC, `YYYY-MM-DDTHH:MM:SSZ`). Defaults to today's date.
*/
endDate?: Date
/**
* List of regions to filter by (\"fr-par\"). Defaults to all regions.
* List of regions to filter by (e.g. `fr-par`). Defaults to all regions.
*/
regions?: string[]
/**
* List of zones to filter by (\"fr-par-1\"). Defaults to all zones.
* List of zones to filter by (e.g. `fr-par-1`). Defaults to all zones.
*/
zones?: string[]
/**
Expand All @@ -180,7 +180,7 @@ export type UserApiGetImpactReportAvailabilityRequest = {
*/
startDate?: Date
/**
* End date of the search period (ISO 8601 format, with time in UTC, `YYYY-MM-DDTHH:MM:SSZ`). The date is exclusive. Defaults to today's date.
* End date of the search period (ISO 8601 format, with time in UTC, `YYYY-MM-DDTHH:MM:SSZ`). The date is inclusive. Defaults to today's date.
*/
endDate?: Date
}
Loading