-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from marverix/master
Version 0.32.0
- Loading branch information
Showing
40 changed files
with
565 additions
and
418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
import APIResource from './APIResource'; | ||
import APIList from './APIList'; | ||
import InputFileset from './extra-class/InputFileset'; | ||
import OutputFileset from './extra-class/OutputFileset'; | ||
declare class APIAdminResourceDeviceSession extends APIResource { | ||
constructor(parent: object, id: number); | ||
changeBillable(): APIResource; | ||
connections(): APIList; | ||
connection(id: number): APIResource; | ||
input(): InputFileset; | ||
output(): OutputFileset; | ||
release(): APIResource; | ||
screenshots(): APIList; | ||
screenshot(id: number): APIResource; | ||
steps(): APIList; | ||
step(id: number | 'current'): APIResource; | ||
currentStep(): APIResource; | ||
testCaseRuns(): APIList; | ||
import APIResourceDeviceSessionCommon from './APIResourceDeviceSessionCommon'; | ||
declare class APIAdminResourceDeviceSession extends APIResourceDeviceSessionCommon { | ||
changeBillable(billable: boolean): APIResource; | ||
} | ||
export default APIAdminResourceDeviceSession; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import APIResource from './APIResource'; | ||
import APIList from './APIList'; | ||
import APIResourceDeviceSessionCommon from './APIResourceDeviceSessionCommon'; | ||
import DeviceSessionStandalone from './interface/DeviceSessionStandalone'; | ||
import DeviceSessionCommon from './interface/DeviceSessionCommon'; | ||
declare class APIAdminResourceDeviceSessionStandalone extends APIResourceDeviceSessionCommon implements DeviceSessionCommon, DeviceSessionStandalone { | ||
changeBillable(billable: boolean): APIResource; | ||
connections(): APIList; | ||
connection(id: number): APIResource; | ||
release(): APIResource; | ||
} | ||
export default APIAdminResourceDeviceSessionStandalone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
import APIResource from './APIResource'; | ||
import APIResourceRunCommon from './APIResourceRunCommon'; | ||
import APIAdminResourceDeviceSession from './APIAdminResourceDeviceSession'; | ||
declare class APIAdminResourceRun extends APIResourceRunCommon { | ||
buildLogsZip(ids?: Array<number>): APIResource; | ||
buildLogsZip(ids?: Array<number>): import("./APIResource").default; | ||
deviceSession(id: number): APIAdminResourceDeviceSession; | ||
} | ||
export default APIAdminResourceRun; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
import APIList from './APIList'; | ||
import APIResource from './APIResource'; | ||
import APIResourceDeviceSessionCommon from './APIResourceDeviceSessionCommon'; | ||
declare class APIAdminResourceRunStandalone extends APIResource { | ||
constructor(parent: object, id: number); | ||
abort(): APIResource; | ||
changeBillable(billable: boolean): APIResource; | ||
changePriority(priority: boolean): APIResource; | ||
retry(ids?: Array<number>): APIResource; | ||
deviceSessions(): APIList; | ||
deviceSession(id: number): APIResourceDeviceSessionCommon; | ||
} | ||
export default APIAdminResourceRunStandalone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,8 @@ | ||
import APIResource from './APIResource'; | ||
import APIList from './APIList'; | ||
import InputFileset from './extra-class/InputFileset'; | ||
import OutputFileset from './extra-class/OutputFileset'; | ||
declare class APIResourceDeviceSession extends APIResource { | ||
constructor(parent: object, id: number); | ||
clusterLogs(): APIResource; | ||
dataAvailability(): APIResource; | ||
fixturesZip(): APIResource; | ||
junitXml(): APIResource; | ||
logs(): APIResource; | ||
performance(): APIResource; | ||
release(): APIResource; | ||
resultDataZip(): APIResource; | ||
screenshots(): APIList; | ||
screenshot(id: number): APIResource; | ||
steps(): APIList; | ||
step(id: number | 'current'): APIResource; | ||
currentStep(): APIResource; | ||
testCaseRuns(): APIList; | ||
import APIResourceDeviceSessionCommon from './APIResourceDeviceSessionCommon'; | ||
import DeviceSession from './interface/DeviceSession'; | ||
declare class APIResourceDeviceSession extends APIResourceDeviceSessionCommon implements DeviceSession { | ||
abort(): APIResource; | ||
retry(): APIResource; | ||
input(): InputFileset; | ||
output(): OutputFileset; | ||
videos(): APIList; | ||
connections(): APIList; | ||
} | ||
export default APIResourceDeviceSession; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import APIResource from './APIResource'; | ||
import APIList from './APIList'; | ||
import InputFileset from './class/InputFileset'; | ||
import OutputFileset from './class/OutputFileset'; | ||
import DeviceSessionCommon from './interface/DeviceSessionCommon'; | ||
declare class APIResourceDeviceSessionCommon extends APIResource implements DeviceSessionCommon { | ||
constructor(parent: object, id: number); | ||
input(): InputFileset; | ||
output(): OutputFileset; | ||
screenshots(): APIList; | ||
screenshot(id: number): APIResource; | ||
steps(): APIList; | ||
step(id: number | 'current'): APIResource; | ||
currentStep(): APIResource; | ||
testCaseRuns(): APIList; | ||
} | ||
export default APIResourceDeviceSessionCommon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import APIList from './APIList'; | ||
import APIResource from './APIResource'; | ||
import OutputFileset from './class/OutputFileset'; | ||
declare class APIResourceDeviceSessionStandalone extends APIResource { | ||
constructor(parent: object, id: number); | ||
connections(): APIList; | ||
connection(id: number): APIResource; | ||
output(): OutputFileset; | ||
release(): APIResource; | ||
} | ||
export default APIResourceDeviceSessionStandalone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import APIEntity from '../APIEntity'; | ||
import APIResource from '../APIResource'; | ||
declare function postAdminDeviceSessionChangeBillable(parent: APIEntity, billable: boolean): APIResource; | ||
export default postAdminDeviceSessionChangeBillable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import APIResource from '../APIResource'; | ||
import DeviceSessionCommon from './DeviceSessionCommon'; | ||
interface DeviceSession extends DeviceSessionCommon { | ||
abort(): APIResource; | ||
retry(): APIResource; | ||
} | ||
export default DeviceSession; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import APIResource from '../APIResource'; | ||
import InputFileset from '../class/InputFileset'; | ||
import OutputFileset from '../class/OutputFileset'; | ||
interface DeviceSessionBase extends APIResource { | ||
input(): InputFileset; | ||
output(): OutputFileset; | ||
} | ||
export default DeviceSessionBase; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import APIList from '../APIList'; | ||
import APIResource from '../APIResource'; | ||
import DeviceSessionBase from './DeviceSessionBase'; | ||
interface DeviceSessionCommon extends DeviceSessionBase { | ||
screenshots(): APIList; | ||
screenshot(id: number): APIResource; | ||
steps(): APIList; | ||
step(id: number | 'current'): APIResource; | ||
currentStep(): APIResource; | ||
testCaseRuns(): APIList; | ||
} | ||
export default DeviceSessionCommon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import APIList from '../APIList'; | ||
import APIResource from '../APIResource'; | ||
import DeviceSessionBase from './DeviceSessionBase'; | ||
interface DeviceSessionStandalone extends DeviceSessionBase { | ||
connections(): APIList; | ||
connection(id: number): APIResource; | ||
release(): APIResource; | ||
} | ||
export default DeviceSessionStandalone; |
Oops, something went wrong.