Split PWS ID and API key into 2 parameters

This commit is contained in:
Matthew Oslan
2019-07-06 09:30:32 -04:00
parent 7ea1824048
commit c53e60e090
2 changed files with 23 additions and 25 deletions

View File

@@ -57,6 +57,8 @@ export interface AdjustmentMethodResponse {
}
export interface AdjustmentOptions {
/** Information about the PWS to use in the format "pws:API_KEY@PWS_ID". */
/** The ID of the PWS to use, prefixed with "pws:". */
pws?: string;
/** The API key to use to access PWS data. */
key?: string;
}